:root {
  --bg: #f7f4ee;
  --ink: #1f2221;
  --muted: #5a5d5c;
  --line: #d8d2c6;
  --card: rgba(255, 255, 255, 0.72);
  --accent: #d64d2f;
  --accent-soft: #f2b44f;
  --aqua: #1f8f8d;
  --shadow: 0 22px 48px rgba(31, 34, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Archivo', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 8%, #f7d8b8, transparent 36%),
    radial-gradient(circle at 90% 20%, #c8ebe2, transparent 34%),
    linear-gradient(180deg, #f7f4ee, #f3ede2 60%, #efe8da);
  min-height: 100vh;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(38px);
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
}

.ambient-a {
  width: 360px;
  height: 360px;
  top: 8vh;
  right: -120px;
  background: rgba(214, 77, 47, 0.3);
  animation: floatY 12s ease-in-out infinite;
}

.ambient-b {
  width: 380px;
  height: 380px;
  bottom: -110px;
  left: -100px;
  background: rgba(31, 143, 141, 0.25);
  animation: floatY 15s ease-in-out infinite reverse;
}

.site-wrap {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 1.2rem auto 2rem;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(31, 34, 33, 0.14);
}

.brand-name {
  font-family: 'Syne', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.main-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.main-nav a,
.topbar-cta,
.footer-links a {
  text-decoration: none;
  color: var(--ink);
}

.main-nav a {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 220ms ease, color 220ms ease;
}

.main-nav a:hover {
  background: rgba(214, 77, 47, 0.1);
  color: #90290e;
}

.topbar-cta {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff7ea;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 200ms ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
}

.hero {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.hero-copy,
.hero-device,
.service-card,
.pathway article,
.proof-main,
.proof-side,
.about-banner,
.contact-copy,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  animation: rise 820ms ease both;
}

.hero-copy {
  padding: 2.4rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: 'Syne', 'Segoe UI', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 5.9vw, 4.6rem);
  line-height: 0.95;
  max-width: 13ch;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(214, 77, 47, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 34, 33, 0.12);
}

.hero-points {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-points span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed rgba(31, 34, 33, 0.3);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-device {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, rgba(31, 143, 141, 0.12), rgba(214, 77, 47, 0.1));
  overflow: hidden;
}

.radar-core {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(31, 34, 33, 0.22);
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation: pulse 3.4s ease-in-out infinite;
}

.radar-core strong {
  font-family: 'Syne', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
}

.radar-core span {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 34, 33, 0.22);
}

.ring-one {
  width: 280px;
  height: 280px;
  animation: spin 16s linear infinite;
}

.ring-two {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: spin 24s linear infinite reverse;
}

.ring-three {
  width: 430px;
  height: 430px;
  opacity: 0.42;
  animation: spin 30s linear infinite;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 34, 33, 0.2);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 28px rgba(31, 34, 33, 0.12);
  animation: bob 5s ease-in-out infinite;
}

.floating-chip span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 700;
}

.floating-chip strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 0.92rem;
}

.chip-owner {
  top: 16%;
  left: 22px;
}

.chip-location {
  right: 18px;
  bottom: 12%;
  animation-delay: 0.6s;
}

.ticker {
  overflow: hidden;
  margin: 1rem 0 0.2rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 34, 33, 0.16);
  background: rgba(255, 255, 255, 0.55);
}

.ticker-track {
  display: flex;
  gap: 1.2rem;
  padding: 0.7rem 0;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font-size: 0.83rem;
  padding: 0.2rem 0.88rem;
  border-right: 1px solid rgba(31, 34, 33, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.section {
  margin-top: 1.5rem;
}

.section-head {
  margin-bottom: 0.85rem;
}

h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.5rem, 3.3vw, 2.7rem);
  max-width: 22ch;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-card {
  padding: 1.4rem;
  min-height: 230px;
}

.card-lg {
  background: linear-gradient(155deg, rgba(214, 77, 47, 0.12), rgba(255, 255, 255, 0.72));
}

.card-accent {
  background: linear-gradient(170deg, rgba(31, 143, 141, 0.15), rgba(255, 255, 255, 0.74));
}

.card-index,
.proof-side span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 700;
}

.service-card h3 {
  margin-top: 0.7rem;
  font-size: 1.35rem;
}

.service-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.62;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.pathway article {
  padding: 1rem;
  min-height: 220px;
  position: relative;
}

.pathway article span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  background: rgba(214, 77, 47, 0.14);
  color: #8e2f19;
  font-weight: 700;
}

.pathway h3 {
  margin-top: 0.9rem;
  font-size: 1.15rem;
}

.pathway p {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.58;
}

.proof {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.8rem;
}

.proof-main,
.proof-side,
.about-banner,
.contact-copy,
.contact-form {
  padding: 1.6rem;
}

.proof-main p,
.contact-copy p,
.about-banner p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 62ch;
}

.proof-side {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.proof-side div {
  border: 1px dashed rgba(31, 34, 33, 0.26);
  border-radius: 14px;
  padding: 0.85rem;
}

.proof-side strong {
  display: block;
  margin-top: 0.34rem;
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  background: #fffaf2;
  border: 1px solid rgba(31, 34, 33, 0.16);
  box-shadow: 0 20px 40px rgba(31, 34, 33, 0.12);
}

.contact-form h3 {
  font-size: 1.35rem;
  color: #121414;
}

.form-note {
  margin-top: -0.25rem;
  margin-bottom: 0.2rem;
  color: #4c514f;
  font-size: 0.92rem;
}

label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d100f;
}

.contact-form label {
  color: #000000;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid rgba(31, 34, 33, 0.26);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: #101312;
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #5f6462;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(214, 77, 47, 0.34);
  outline-offset: 1px;
  border-color: rgba(214, 77, 47, 0.66);
}

.site-footer {
  margin-top: 1.7rem;
  border-top: 1px solid rgba(31, 34, 33, 0.16);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .card-lg {
    grid-row: span 1;
    min-height: auto;
  }

  .pathway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-device {
    min-height: 410px;
  }
}

@media (max-width: 760px) {
  .site-wrap {
    width: min(1160px, calc(100% - 1.2rem));
    margin-top: 0.7rem;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    border-radius: 24px;
    padding: 0.75rem;
    justify-items: center;
  }

  .main-nav {
    justify-content: center;
  }

  h1 {
    max-width: 16ch;
  }

  .pathway {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-copy {
    padding: 1.1rem;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(24px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stack-card.accent {
  background: linear-gradient(135deg, rgba(89, 211, 156, 0.18), rgba(255, 255, 255, 0.04));
}

.ticker {
  overflow: hidden;
  margin: 2px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d2e3dd;
  white-space: nowrap;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.results-intro h2,
.about-copy h2,
.contact-panel h2,
.final-banner h2 {
  margin-top: 18px;
  color: #f7fbfa;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
}

.section-heading p,
.results-intro p,
.about-copy p,
.contact-panel p {
  max-width: 64ch;
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border-radius: 30px;
  padding: 24px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -30% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 211, 156, 0.16), transparent 65%);
  filter: blur(10px);
}

.feature-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(89, 211, 156, 0.12), rgba(255, 255, 255, 0.03));
}

.feature-card-tall {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(243, 166, 77, 0.12), rgba(255, 255, 255, 0.03));
}

.feature-kicker {
  color: #88ffca;
}

.feature-card h3,
.timeline-panel h3,
.result-card h3 {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 0.95;
}

.feature-card p,
.timeline-panel p,
.result-card p,
.about-copy p,
.contact-panel p {
  margin-top: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.timeline-panel {
  display: grid;
  gap: 14px;
}

.timeline-panel article {
  border-radius: 26px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-panel article span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(89, 211, 156, 0.12);
  color: #88ffca;
}

.results-section {
  display: grid;
  gap: 28px;
}

.results-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  border-radius: 30px;
  padding: 20px;
}

.result-card.highlight {
  background: linear-gradient(180deg, rgba(93, 134, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.result-top {
  width: 100%;
  height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(89, 211, 156, 0.95), rgba(93, 134, 255, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.result-card:nth-child(2) .result-top {
  background:
    linear-gradient(120deg, rgba(243, 166, 77, 0.9), rgba(89, 211, 156, 0.85));
}

.result-card:nth-child(3) .result-top {
  background:
    linear-gradient(120deg, rgba(93, 134, 255, 0.9), rgba(243, 166, 77, 0.82));
}

.result-top::before,
.result-top::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.result-top::before {
  width: 36%;
  height: 12px;
  left: 16px;
  top: 16px;
}

.result-top::after {
  width: 74%;
  height: 70px;
  left: 16px;
  bottom: 16px;
}

.about-strip,
.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.about-panel,
.contact-panel,
.contact-form {
  border-radius: 30px;
  padding: 28px;
}

.about-panel {
  display: grid;
  gap: 14px;
}

.metric-pill {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-pill strong,
.contact-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-meta div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #111413 !important;
  font-weight: 700 !important;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1.5px solid rgba(31, 34, 33, 0.35);
  background: #ffffff;
  color: #111413;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, box-shadow 220ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 77, 47, 0.7);
  box-shadow: 0 0 0 3px rgba(214, 77, 47, 0.12);
}

.contact-form button {
  justify-self: start;
}

.closing-grid {
  margin: 12px 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.closing-main,
.closing-side {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 30px;
}

.closing-main {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.closing-main::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 211, 156, 0.2), transparent 62%);
  animation: drift 12s ease-in-out infinite;
}

.closing-main h2 {
  margin-top: 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.95;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  color: #f7fbfa;
  max-width: 14ch;
}

.closing-main p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}

.closing-side {
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  background:
    linear-gradient(160deg, rgba(243, 166, 77, 0.12), rgba(255, 255, 255, 0.03) 42%),
    rgba(20, 28, 27, 0.82);
}

.closing-points {
  display: grid;
  gap: 12px;
}

.closing-points span {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border-left: 3px solid rgba(89, 211, 156, 0.7);
  background: rgba(255, 255, 255, 0.05);
  color: #dbe8e3;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reveal {
  animation: riseIn 900ms ease both;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 220ms; }
.delay-3 { animation-delay: 340ms; }
.delay-4 { animation-delay: 460ms; }
.delay-5 { animation-delay: 580ms; }
.delay-6 { animation-delay: 700ms; }

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    border-radius: 28px;
  }

  .header-cta,
  .site-nav {
    justify-self: center;
  }

  .hero-editorial,
  .about-strip,
  .contact-strip,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .results-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-wide,
  .feature-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy-panel,
  .hero-orbit-panel,
  .hero-side-panel {
    min-height: auto;
  }

  .hero-orbit-panel {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1240px);
  }

  .site-header {
    position: static;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-top: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    padding-bottom: 4px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero-copy-panel,
  .hero-orbit-panel,
  .hero-side-panel,
  .feature-card,
  .timeline-panel article,
  .result-card,
  .about-panel,
  .contact-panel,
  .contact-form,
  .closing-main,
  .closing-side {
    border-radius: 24px;
  }

  .hero-copy-panel {
    padding: 26px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .feature-grid,
  .results-layout,
  .hero-editorial,
  .hero-tags {
    grid-template-columns: 1fr;
  }

  .hero-editorial {
    gap: 14px;
  }

  .hero-orbit-panel {
    min-height: 420px;
    order: -1;
  }

  .orbit-core {
    width: 180px;
    height: 180px;
  }

  .orbit-card {
    width: min(180px, 74vw);
  }

  .feature-card-wide,
  .feature-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .timeline-panel article {
    grid-template-columns: 1fr;
  }

  .timeline-panel article span {
    width: 46px;
    height: 46px;
  }

  .closing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@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;
  }
}
