/*
Theme Name: Senticy
Author: Senticy
Version: 0.6.6
*/

:root {
  --blue: #09a3b2;
  --navy: #043a4b;
  --gray: #e1e1e1;
  --orange: #fb842c;
  --ink: #10242b;
  --paper: #f7fbfc;
  --deep: #021e29;
  --panel: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: rgba(255,255,255,.88);
  background:
    radial-gradient(circle at 78% 8%, rgba(9,163,178,.18), transparent 28%),
    linear-gradient(180deg, var(--deep), var(--navy) 42%, #031923);
  font-family: "Roboto", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(2,30,41,.9);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}
.site-header--overlay {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header--overlay .nav,
.site-header--overlay .brand {
  text-shadow: 0 3px 18px rgba(0,0,0,.5);
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  display: block;
  width: 118px;
  height: auto;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.nav-group {
  position: relative;
}
.nav-group summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 4px;
  font-weight: 750;
}
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}
.nav-group[open] summary {
  color: #fff;
}
.nav > .nav-group:hover > summary,
.nav > .nav-group:focus-within > summary {
  color: var(--orange);
}
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: #062b38;
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  z-index: 40;
}
.nav-group:last-of-type .nav-menu {
  right: 0;
  left: auto;
}
.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
}
.nav-menu a:hover,
.nav-menu a:focus {
  background: rgba(9,163,178,.14);
  color: var(--blue);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-weight: 750;
}
.btn.alt {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.nav > .btn {
  color: var(--orange);
}
a.btn[href="/schedule-a-call/"],
.final-cta a.btn[href="/schedule-a-call/"] {
  color: var(--orange);
}
.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 18%, rgba(9,163,178,.28), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(251,132,44,.12), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--deep));
}
.hero-stage {
  position: sticky;
  top: 76px;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(40px, 7vw, 96px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}
.site-header--overlay + main .hero-stage {
  top: 0;
  min-height: 100vh;
}
.hero-video,
.hero-video-shade {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  filter: saturate(1.08) contrast(1.05);
}
.hero-video-shade {
  background:
    radial-gradient(circle at 50% 46%, rgba(9,163,178,.08), transparent 36%),
    linear-gradient(180deg, rgba(2,30,41,.74), rgba(2,30,41,.46) 42%, rgba(2,30,41,.86)),
    linear-gradient(90deg, rgba(2,30,41,.8), rgba(2,30,41,.18) 50%, rgba(2,30,41,.8));
}
.hero-copy {
  position: relative;
  width: min(1100px, 100%);
  min-height: clamp(430px, 58vh, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
}
.hero-slot {
  outline: none;
}
.hero-slot-wheel {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  min-height: clamp(270px, 36vh, 360px);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}
.hero-slot-word {
  appearance: none;
  border: 1px solid rgba(225,225,225,.12);
  grid-area: 1 / 1;
  width: max-content;
  min-width: min(720px, 92vw);
  max-width: 92vw;
  min-height: clamp(66px, 9vw, 112px);
  padding: clamp(14px, 2.2vw, 24px) clamp(34px, 5vw, 72px);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  color: var(--gray);
  cursor: pointer;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 44px rgba(0,0,0,.24);
  transition:
    transform 650ms cubic-bezier(.16, 1, .3, 1),
    opacity 650ms ease,
    filter 650ms ease,
    color 650ms ease,
    border-color 650ms ease,
    background 650ms ease,
    box-shadow 650ms ease;
}
.hero-slot-word--active {
  border-color: rgba(251,132,44,.65);
  background: rgba(4,58,75,.46);
  color: var(--orange);
  font-size: clamp(34px, 5vw, 76px);
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1.04);
  box-shadow:
    0 0 20px rgba(251,132,44,.18),
    0 18px 54px rgba(0,0,0,.42),
    inset 0 0 18px rgba(251,132,44,.08);
  text-shadow:
    0 2px 0 rgba(0,0,0,.28),
    0 0 10px rgba(251,132,44,.16);
}
.hero-slot-word img {
  display: block;
  width: min(320px, 58vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.48));
}
.hero-slot-word--active.is-logo {
  border-color: transparent;
  padding-block: clamp(18px, 3vw, 30px);
  background: transparent;
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
}
.hero-slot-word--active.is-logo img {
  filter: none;
}
.hero-slot.is-logo-active .hero-slot-word--prev,
.hero-slot.is-logo-active .hero-slot-word--next {
  opacity: 0;
  visibility: hidden;
  filter: none;
  pointer-events: none;
  animation: none;
}
.hero-slot-word:focus-visible,
.hero-slot-dots button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
.hero-slot-word--active.is-long {
  font-size: clamp(28px, 4.2vw, 60px);
}
.hero-slot-word--prev,
.hero-slot-word--next {
  font-size: clamp(24px, 3.4vw, 44px);
  opacity: .3;
  filter: blur(6px);
}
.hero-slot-word--prev {
  transform: translateY(-118%) scale(.88);
}
.hero-slot-word--next {
  transform: translateY(118%) scale(.88);
}
.hero-slot-word--prev.is-long,
.hero-slot-word--next.is-long {
  font-size: clamp(20px, 2.8vw, 36px);
}
.hero-slot.is-spinning .hero-slot-word--active {
  animation: slot-focus 650ms cubic-bezier(.16, 1, .3, 1);
}
.hero-slot[data-direction="up"].is-spinning .hero-slot-word--active {
  animation-name: slot-focus-up;
}
.hero-slot.is-spinning .hero-slot-word--prev {
  animation: slot-prev-down 650ms cubic-bezier(.16, 1, .3, 1);
}
.hero-slot.is-spinning .hero-slot-word--next {
  animation: slot-next-down 650ms cubic-bezier(.16, 1, .3, 1);
}
.hero-slot[data-direction="up"].is-spinning .hero-slot-word--prev {
  animation-name: slot-prev-up;
}
.hero-slot[data-direction="up"].is-spinning .hero-slot-word--next {
  animation-name: slot-next-up;
}
.hero-slot-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(52px, 7vh, 76px);
  justify-content: center;
  width: min(680px, calc(100% - 40px));
  margin: 0;
  transform: translateX(-50%);
}
.hero-slot-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.hero-slot-dots button {
  appearance: none;
  padding: 0;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease, opacity 250ms ease;
}
.hero-slot-dots button.is-active {
  width: 24px;
  background: var(--orange);
}
@keyframes slot-focus {
  from {
    opacity: .48;
    filter: blur(5px);
    transform: translateY(76%) scale(.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.04);
  }
}
@keyframes slot-focus-up {
  from {
    opacity: .48;
    filter: blur(5px);
    transform: translateY(-76%) scale(.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.04);
  }
}
@keyframes slot-prev-down {
  from { opacity: 1; filter: blur(0); transform: translateY(0) scale(1.04); }
  to { opacity: .3; filter: blur(6px); transform: translateY(-118%) scale(.88); }
}
@keyframes slot-next-down {
  from { opacity: .08; filter: blur(8px); transform: translateY(170%) scale(.82); }
  to { opacity: .3; filter: blur(6px); transform: translateY(118%) scale(.88); }
}
@keyframes slot-prev-up {
  from { opacity: .08; filter: blur(8px); transform: translateY(-170%) scale(.82); }
  to { opacity: .3; filter: blur(6px); transform: translateY(-118%) scale(.88); }
}
@keyframes slot-next-up {
  from { opacity: 1; filter: blur(0); transform: translateY(0) scale(1.04); }
  to { opacity: .3; filter: blur(6px); transform: translateY(118%) scale(.88); }
}
.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1 {
  margin: 14px 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}
.lead {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
}
.hero-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}
.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #052836, var(--deep));
}
.page-hero {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 18%, rgba(9,163,178,.26), transparent 32%),
    radial-gradient(circle at 16% 80%, rgba(251,132,44,.12), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--deep));
}
.page-hero h1 {
  max-width: 900px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}
.list {
  display: grid;
  gap: 12px;
}
.list div {
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  background: rgba(255,255,255,.075);
  color: #fff;
  font-weight: 800;
}
.section h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}
.section-copy {
  max-width: 820px;
  margin: -10px 0 32px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
}
.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 850;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pain-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #26313a 0%, #0b2330 48%, #061925 100%);
}
.pain-section .eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
}
.pain-section h2 {
  max-width: 980px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 5.6vw, 74px);
  letter-spacing: -.035em;
  text-transform: capitalize;
}
.pain-section .section-copy {
  max-width: 980px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}
.pain-grid {
  width: min(1160px, 100%);
  gap: 22px;
  align-items: stretch;
}
.pain-card {
  min-height: 260px;
  padding: 30px 30px 30px 32px;
  border-color: rgba(255,255,255,.22);
  border-left: 5px solid var(--orange);
  background: rgba(255,255,255,.07);
  text-align: left;
}
.pain-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.2;
}
.pain-card p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.55;
}
.pain-cta {
  margin-top: 36px;
  border-color: transparent;
  background: linear-gradient(180deg, var(--orange), #b95a24);
  color: #fff;
  box-shadow: 0 16px 38px rgba(251,132,44,.22);
}
.centered-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.centered-section .eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
}
.centered-section h2 {
  max-width: 980px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 5.6vw, 74px);
  letter-spacing: -.035em;
  text-transform: capitalize;
}
.centered-section .section-copy,
.centered-section .lead {
  max-width: 980px;
  margin: 0 auto clamp(38px, 5vw, 54px);
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}
.centered-section .grid,
.centered-section .steps,
.centered-section .metrics {
  width: min(1160px, 100%);
  gap: 22px;
}
.centered-section .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.centered-section .card,
.centered-section .steps article,
.centered-section .metrics div {
  min-height: 220px;
  padding: 30px 30px 30px 32px;
  border: 1px solid rgba(255,255,255,.22);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
  text-align: left;
}
.centered-section .card h3,
.centered-section .steps h3 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.2;
}
.centered-section .card p,
.centered-section .steps p,
.centered-section .metrics span {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.55;
}
.centered-section .card a {
  color: var(--orange);
}
.support-section .card h3,
.support-section .card a {
  text-align: center;
}
.support-section .card a {
  display: block;
  font-size: 14px;
}
.centered-section .metrics div {
  border-right: 1px solid rgba(255,255,255,.22);
}
.centered-section .metrics div:last-child {
  border-right: 1px solid rgba(255,255,255,.22);
}
.centered-section .hero-actions {
  justify-content: center;
  margin-top: 0;
}
.centered-section .hero-actions .btn:first-child {
  border-color: transparent;
  background: linear-gradient(180deg, var(--orange), #b95a24);
  color: #fff;
  box-shadow: 0 16px 38px rgba(251,132,44,.22);
}
.centered-section.faq details {
  width: min(960px, 100%);
  text-align: left;
}
.proof {
  overflow: hidden;
  background: linear-gradient(135deg, #031923 0%, #052f3c 52%, #021923 100%);
}
.roadmap-section {
  display: block;
  text-align: center;
}
.roadmap-section .eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
}
.roadmap-section h2 {
  max-width: 980px;
  margin: 0 auto clamp(52px, 7vw, 88px);
  font-size: clamp(42px, 5.2vw, 70px);
  letter-spacing: -.035em;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 48px);
  width: 100%;
  padding-top: 120px;
}
.steps::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 0;
  top: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(9,163,178,.78));
  box-shadow: 0 0 24px rgba(9,163,178,.45);
}
.steps::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 45px;
  border-left: 18px solid var(--blue);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  filter: drop-shadow(0 0 12px rgba(9,163,178,.55));
}
.steps article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 250px;
  margin-top: 0;
  padding: 78px 30px 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-top: 5px solid var(--orange);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(9,58,75,.84), rgba(4,33,45,.76));
  box-shadow: 0 22px 70px rgba(0,0,0,.24), 0 0 30px rgba(9,163,178,.12);
  text-align: left;
}
.steps article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  width: 3px;
  height: 34px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(9,163,178,.55);
  transform: translateX(-50%);
}
.steps article::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(9,163,178,.72);
  transform: translateX(-50%);
}
.steps span {
  position: absolute;
  left: 50%;
  top: -98px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: rgba(2,30,41,.96);
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(9,163,178,.12), 0 0 28px rgba(9,163,178,.42);
  transform: translateX(-50%);
}
.steps h3 {
  margin: 0 0 14px;
  min-height: 32px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}
.steps p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.6;
}
.standards {
  background: linear-gradient(135deg, #062b38, var(--deep));
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.metrics div {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.metrics div:last-child { border-right: 0; }
.metrics strong {
  display: block;
  margin-bottom: 42px;
  color: #fff;
  font-size: 24px;
}
.metrics span {
  display: block;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}
.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
}
.card h3 { margin: 0 0 12px; color: #fff; }
.card p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.55; }
.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}
.band {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: #fff;
}
.band h2 { color: #fff; }
.band .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.band .card h3 { color: #fff; }
.band .card p { color: rgba(255,255,255,.76); }
.band .card a { color: #fff; }
.pain-section .pain-card,
.centered-section .card,
.centered-section .metrics div {
  border-left: 5px solid var(--orange);
}
.cta {
  background: linear-gradient(135deg, #063544, var(--navy));
}
.final-cta {
  background: linear-gradient(135deg, var(--navy), #02141c);
  color: #fff;
}
.final-cta h2 { color: #fff; }
.final-cta .lead { color: rgba(255,255,255,.8); }
.final-cta .btn.alt {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.faq { background: linear-gradient(180deg, #052836, #031923); }
.faq details {
  max-width: 960px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 850;
  font-size: 20px;
}
.faq p {
  max-width: 820px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
blockquote { margin: 0; }
cite {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-style: normal;
  font-weight: 800;
}
.site-footer {
  background: #071e27;
  color: rgba(255,255,255,.75);
}
.footer-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 520px) auto;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brief h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
}
.footer-brief p {
  margin: 0;
  line-height: 1.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 46px clamp(20px, 5vw, 72px);
}
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}
.footer-grid a {
  display: block;
  margin: 10px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 850px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 12px 18px;
  }
  .brand img { width: 72px; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .site-header.is-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  .nav-toggle span { transition: transform .18s ease, opacity .18s ease; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    width: auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(2,30,41,.96);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(16px);
  }
  .site-header.is-menu-open .nav { display: flex; }
  .nav-group summary {
    padding: 12px 8px;
    font-size: 18px;
  }
  .nav > .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    font-size: 18px;
  }
  .nav-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin: 0 0 8px;
  }
  .hero { min-height: 100vh; }
  .hero-stage { grid-template-columns: 1fr; top: 138px; min-height: calc(100vh - 138px); }
  .site-header--overlay + main .hero-stage { top: 0; min-height: 100vh; }
  .hero-copy { min-height: 560px; }
  .hero-slot-wheel { top: 42%; min-height: 282px; }
  .hero-slot-word {
    width: fit-content;
    min-width: min(76vw, 340px);
    max-width: calc(100vw - 72px);
    min-height: 62px;
    padding: 14px 22px;
    border-radius: 14px;
  }
  .hero-slot-word--active { font-size: clamp(24px, 7.8vw, 44px); line-height: 1; }
  .hero-slot-word--active.is-long { font-size: clamp(16px, 5.2vw, 28px); }
  .hero-slot-word img { width: min(230px, 60vw); }
  .hero-slot-word--prev,
  .hero-slot-word--next { font-size: clamp(18px, 5.6vw, 30px); opacity: .3; filter: blur(5px); }
  .hero-slot-word--prev.is-long,
  .hero-slot-word--next.is-long { font-size: clamp(15px, 4.4vw, 24px); }
  .hero-slot-word--prev { transform: translateY(-112%) scale(.88); }
  .hero-slot-word--next { transform: translateY(112%) scale(.88); }
  .hero-slot-actions { flex-direction: column; bottom: 52px; }
  .hero-slot-actions .btn { width: 100%; }
  .hero-slot-dots { bottom: 22px; }
  .grid { grid-template-columns: 1fr; }
  .centered-section .grid,
  .centered-section .steps,
  .centered-section .metrics { grid-template-columns: 1fr; }
  .centered-section h2 { font-size: clamp(36px, 11vw, 54px); }
  .centered-section .card,
  .centered-section .steps article,
  .centered-section .metrics div { min-height: 0; }
  .roadmap-section { text-align: center; }
  .roadmap-section h2 { margin-bottom: 34px; }
  .roadmap-section .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
    padding-left: 78px;
  }
  .roadmap-section .steps::before {
    left: 32px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 3px;
    height: auto;
  }
  .roadmap-section .steps::after { display: none; }
  .roadmap-section .steps article,
  .roadmap-section .steps article:nth-child(2),
  .roadmap-section .steps article:nth-child(4) {
    min-height: 0;
    margin-top: 0;
    padding: 26px 24px;
  }
  .roadmap-section .steps h3 { min-height: 0; }
  .roadmap-section .steps article::before {
    left: -46px;
    top: 36px;
    width: 46px;
    height: 3px;
    transform: none;
  }
  .roadmap-section .steps article::after {
    left: -52px;
    top: 31px;
    transform: none;
  }
  .roadmap-section .steps span {
    left: -76px;
    top: 8px;
    width: 56px;
    height: 56px;
    font-size: 20px;
    transform: none;
  }
  .split { grid-template-columns: 1fr; }
  .steps,
  .metrics,
  .footer-brief,
  .footer-grid { grid-template-columns: 1fr; }
  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metrics div:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; }
}
