:root {
  color-scheme: light;
  --bg: #fff8ee;
  --bg-elevated: rgba(255, 250, 242, 0.72);
  --bg-strong: #fffefb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffdf8;
  --surface-muted: rgba(255, 255, 255, 0.58);
  --text: #111827;
  --text-soft: #475569;
  --heading: #1f2937;
  --line: rgba(17, 24, 39, 0.08);
  --primary: #f97316;
  --primary-strong: #ea580c;
  --accent: #fbbf24;
  --success: #2e7d32;
  --shadow-soft: 0 18px 50px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 32px 80px rgba(17, 24, 39, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
  --transition: 220ms ease;
}

body[data-theme="dark"] {
  color-scheme: dark;
  --bg: #100a06;
  --bg-elevated: rgba(28, 20, 14, 0.78);
  --bg-strong: #1a120c;
  --surface: rgba(34, 24, 16, 0.82);
  --surface-strong: #221810;
  --surface-muted: rgba(46, 32, 22, 0.78);
  --text: #f5ece0;
  --text-soft: #d4c4ae;
  --heading: #fff8ee;
  --line: rgba(255, 224, 184, 0.1);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 36px 90px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 191, 36, 0.2), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(249, 115, 22, 0.06), transparent 42%),
    linear-gradient(180deg, var(--bg-strong) 0%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 191, 36, 0.12), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(249, 115, 22, 0.14), transparent 32%),
    radial-gradient(circle at 50% 60%, rgba(217, 119, 6, 0.06), transparent 46%),
    radial-gradient(circle at 20% 95%, rgba(251, 191, 36, 0.05), transparent 38%),
    linear-gradient(180deg, var(--bg-strong) 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 140px;
  background: rgba(249, 115, 22, 0.28);
}

.page-shell::after {
  width: 360px;
  height: 360px;
  right: -110px;
  top: 540px;
  background: rgba(251, 191, 36, 0.22);
}

body[data-theme="dark"] .page-shell::before {
  background: rgba(249, 115, 22, 0.34);
  opacity: 0.6;
}

body[data-theme="dark"] .page-shell::after {
  background: rgba(251, 191, 36, 0.28);
  opacity: 0.55;
}

.glass-panel {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 999px;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-strong);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  transition: transform var(--transition);
}

.brand-mark:hover .brand-logo {
  transform: scale(1.04);
}

.brand-logo--footer {
  height: 72px;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 14px;
}

.brand-mark.is-fallback .brand-logo {
  display: none;
}

.brand-mark.is-fallback .brand-fallback {
  display: inline-flex;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fffef8;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.32);
}

.brand-mark--footer .brand-badge {
  width: 60px;
  height: 60px;
  border-radius: 22px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-copy,
.form-note {
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a,
.theme-toggle {
  color: var(--text);
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover,
.theme-toggle:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.theme-toggle,
.nav-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 4px auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 104px 0 48px;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(120deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.18)),
    url("assets/images/hero-sunset.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.72) 100%),
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.2), transparent 24%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.hero-copy {
  max-width: 720px;
  color: #fffdf8;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  margin: 0 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.spotlight-card h2,
.split-copy h2,
.waitlist-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3.6rem, 8vw, 7.4rem);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 680px;
  margin: 22px 0 12px;
}

.hero-description {
  max-width: 600px;
  font-size: 1.02rem;
  color: rgba(255, 253, 248, 0.84);
}

.hero-actions,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.34);
}

.button--secondary {
  color: #fffef9;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button--full {
  width: 100%;
}

.hero-meta {
  margin-top: 28px;
}

.meta-pill {
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 18px;
  border-radius: var(--radius-md);
  color: #fffef8;
}

.meta-pill span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.94rem;
}

.hero-sidecard {
  align-self: end;
  justify-self: end;
  width: min(100%, 380px);
}

.spotlight-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #fffef8;
}

.spotlight-card__label {
  margin: 0 0 12px;
  color: rgba(255, 253, 248, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.spotlight-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.spotlight-card p,
.spotlight-list {
  color: rgba(255, 253, 248, 0.84);
}

.spotlight-list {
  padding-left: 18px;
  margin: 18px 0 0;
}

.section {
  padding: 96px 0;
}

.section-grid,
.vision-grid,
.waitlist-grid {
  display: grid;
  gap: 28px;
}

.section-heading {
  max-width: 720px;
}

.heading-center {
  text-align: center;
  margin: 0 auto 34px;
}

.section-heading .eyebrow,
.split-copy .eyebrow,
.waitlist-copy .eyebrow,
.founder-intro .eyebrow {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.12);
  color: var(--primary-strong);
}

.section-heading h2,
.split-copy h2,
.waitlist-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--heading);
}

.section-heading p,
.split-copy p,
.waitlist-copy p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.feature-grid,
.benefit-grid,
.revenue-grid,
.waitlist-highlights {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.benefit-card,
.revenue-pill,
.timeline-item,
.masonry-card,
.waitlist-form,
.founder-card,
.roadmap-card,
.india-map-shell {
  border: 1px solid var(--line);
}

.feature-card,
.benefit-card,
.timeline-item,
.roadmap-card,
.waitlist-form,
.founder-card {
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(249, 115, 22, 0.18));
  color: var(--primary-strong);
  font-weight: 800;
}

.feature-card h3,
.timeline-item h3,
.benefit-card strong,
.roadmap h3 {
  margin: 0 0 8px;
}

.feature-card p,
.timeline-item p,
.benefit-card span,
.form-status {
  margin: 0;
  color: var(--text-soft);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(249, 115, 22, 0));
}

.timeline-item {
  position: relative;
  margin-left: 20px;
  padding: 22px 22px 22px 34px;
  border-radius: var(--radius-lg);
}

.timeline-count {
  position: absolute;
  left: -20px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fffaf2;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.masonry-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 180px;
}

.masonry-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-muted);
  box-shadow: var(--shadow-soft);
}

.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.masonry-card:hover img {
  transform: scale(1.05);
}

.masonry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.72) 100%);
}

.masonry-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fffef8;
  font-weight: 700;
}

.span-tall {
  grid-row: span 2;
}

.span-wide {
  grid-column: span 2;
}

.split-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.benefit-grid {
  margin: 28px 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.benefit-card {
  padding: 18px;
  border-radius: 22px;
}

.benefit-card span {
  display: block;
  margin-top: 8px;
}

.revenue-grid {
  margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.revenue-pill,
.highlight-pill {
  padding: 16px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
}

.revenue-pill {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 191, 36, 0.16));
}

.vision-grid {
  align-items: start;
}

.roadmap-card,
.india-map-shell {
  padding: 26px;
  border-radius: 30px;
}

.roadmap {
  display: grid;
  gap: 18px;
}

.roadmap article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.roadmap article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.roadmap span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--primary-strong);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.map-card {
  min-height: 100%;
}

.india-map-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(251, 191, 36, 0.12), transparent 38%),
    var(--surface-strong);
  overflow: hidden;
}

.india-map {
  width: min(100%, 320px);
  height: auto;
}

.map-rings circle {
  fill: rgba(255, 248, 238, 0.85);
  stroke: rgba(255, 255, 255, 0.38);
  transform-origin: center;
  animation: pulse 3.2s infinite;
}

.map-rings circle:first-child {
  fill: #fff5e7;
  stroke: rgba(249, 115, 22, 0.7);
}

.map-rings--2 circle {
  animation-delay: 0.5s;
}

.map-rings--3 circle {
  animation-delay: 1s;
}

.map-label {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #111827;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.map-label--pilot {
  left: 18px;
  bottom: 38%;
}

.map-label--growth {
  right: 14px;
  top: 26%;
}

.map-label--network {
  right: 34px;
  bottom: 20%;
}

.waitlist-grid {
  align-items: center;
}

.waitlist-highlights {
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.highlight-pill {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.12);
  color: var(--primary-strong);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
}

.waitlist-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--heading);
}

.waitlist-form input,
.waitlist-form select {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.form-status {
  min-height: 24px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: #dc2626;
}

.founder-block {
  display: grid;
  gap: 48px;
}

.founder-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.founder-intro blockquote {
  margin: 18px 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.18;
  color: var(--heading);
}

.founder-signoff {
  margin-top: 18px;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.founder-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.founder-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.founder-photo {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  padding: 4px;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.25);
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg-strong);
  z-index: 0;
}

.founder-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.founder-photo[data-initials]::after {
  content: attr(data-initials);
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  z-index: 1;
}

.founder-photo.is-fallback img {
  display: none;
}

.founder-tagline {
  margin: 14px 0 16px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.founder-meta h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--heading);
  letter-spacing: -0.01em;
}

.founder-meta p {
  margin: 4px 0 14px;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition);
}

.founder-link:hover {
  background: rgba(249, 115, 22, 0.18);
  transform: translateY(-1px);
}

.site-footer {
  padding: 0 0 28px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.18);
  }
}

@media (min-width: 768px) {
  .hero-grid,
  .waitlist-grid,
  .vision-grid,
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    align-items: end;
  }

  .split-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout--reverse .split-copy {
    order: 1;
  }

  .split-layout--reverse .split-media {
    order: 2;
  }

  .vision-grid .section-heading {
    grid-column: span 2;
  }

  .roadmap-card,
  .map-card {
    min-height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 380px);
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .timeline::before {
    left: 48px;
    right: 48px;
    top: 24px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline-item {
    margin-left: 0;
    padding: 82px 22px 22px;
  }

  .timeline-count {
    left: 22px;
    top: 2px;
  }

  .masonry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .span-wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    border-radius: 26px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    color: var(--text);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .theme-toggle {
    min-height: 46px;
    padding: 0 8px;
    justify-content: center;
  }

  .hero-section {
    padding-top: 140px;
  }

  .hero-sidecard {
    justify-self: stretch;
  }

  .section,
  .hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .span-wide,
  .span-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .split-media img {
    min-height: 320px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
