:root {
  --bg: #030508;
  --bg-surface: #0b1118;
  --ink: #ffffff;
  --ink-muted: #5b6d82;
  --accent: #0066ff;
  --accent-soft: #00e5ff;
  --line: rgba(0, 102, 255, 0.3);
  --font-display: "Rajdhani", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Noto Sans SC", system-ui, sans-serif;
  --section-pad: 120px;
  --radius: 14px;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(90deg, #030508 0%, #08101c 50%, #030508 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 229, 255, 0.015) 3px
  );
  mix-blend-mode: screen;
}

.grid-floor {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 70%);
  opacity: 0.45;
}

.clip-diagonal-br {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: calc(var(--section-pad) + 8vw);
}

.clip-diagonal-bl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
  padding-bottom: calc(var(--section-pad) + 8vw);
}

.clip-parallelogram {
  clip-path: polygon(0 6vw, 100% 0, 100% calc(100% - 6vw), 0 100%);
  padding: calc(var(--section-pad) + 6vw) 0;
  margin-top: -6vw;
}

.clip-arc-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  padding-bottom: calc(var(--section-pad) + 10vw);
}

.section-dissolve {
  position: relative;
  margin-top: -8vw;
  padding-top: calc(var(--section-pad) + 8vw);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 12%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0, black 12%, black 100%);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4vw;
  background: linear-gradient(to bottom, rgba(3, 5, 8, 0.92), transparent);
  backdrop-filter: blur(8px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.logo-mark {
  color: var(--accent-soft);
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.45));
}

.header-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.header-links a:hover {
  color: var(--accent-soft);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.8);
  display: grid;
  place-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.35), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.18), transparent 35%),
    #030508;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vh, 1.75rem);
  text-align: center;
}

.nav-item {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-item:hover {
  color: var(--accent-soft);
}

.nav-item-cta {
  color: var(--accent);
}

.nav-close {
  position: absolute;
  top: 1.1rem;
  right: 4vw;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 7rem 4vw 5rem;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.15) contrast(1.1);
}

.hero-media-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.35) 0%, rgba(3, 5, 8, 0.88) 70%, #030508 100%),
    radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.25), transparent 45%);
}

.hero-glow {
  position: absolute;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, transparent 62%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.hero-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.hero-explosion {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}

.e-layer {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 14vw, 8.5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.e-layer-3 {
  transform: scale(1.14) translateY(-5%);
  color: var(--accent);
  opacity: 0.08;
  filter: blur(10px);
}

.e-layer-2 {
  transform: scale(1.08) translateY(-2.5%);
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  opacity: 0.22;
  filter: blur(3px);
}

.e-layer-1 {
  transform: scale(1.03);
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-muted);
  opacity: 0.4;
}

.e-layer-main {
  color: var(--ink);
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.35);
}

.hero-tagline {
  max-width: 34rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  border-top: 1px solid rgba(91, 109, 130, 0.45);
  padding-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.55rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

.btn-primary {
  background: var(--accent);
  color: #f5f8ff;
  box-shadow: 0 0 28px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: #031018;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(11, 17, 24, 0.7);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 640px);
  margin-top: 0.75rem;
}

.hero-meta div {
  border: 1px solid rgba(0, 102, 255, 0.22);
  background: rgba(11, 17, 24, 0.72);
  border-radius: 12px;
  padding: 0.8rem 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.hero-meta span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.hero-float-card {
  position: absolute;
  right: 5vw;
  bottom: 10vh;
  width: min(28vw, 280px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 102, 255, 0.2);
  z-index: 3;
  display: none;
}

.hero-float-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-float-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: rgba(3, 5, 8, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.section-inner {
  width: min(100% - 8vw, var(--max));
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 48rem;
}

.section-head.center,
.eyebrow.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.85rem;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.lede {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 36rem;
}

.metrics {
  background: linear-gradient(180deg, rgba(11, 17, 24, 0.55), rgba(3, 5, 8, 0.2));
}

.metric-rows {
  display: grid;
  gap: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.35);
}

.metric-num span {
  font-size: 0.4em;
  color: var(--accent-soft);
  margin-left: 0.1em;
}

.metric-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 0.7rem;
}

.metric-copy p {
  color: var(--ink-muted);
  max-width: 34rem;
}

.metric-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.05);
}

.metric-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.bento {
  background: #050a12;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 16px;
  padding: clamp(1.3rem, 3vw, 2rem);
  min-height: 180px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.45);
}

.bento-card .icon {
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 0.55rem;
}

.bento-card p {
  color: var(--ink-muted);
  font-size: 0.96rem;
}

.card-kicker {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: rgba(3, 5, 8, 0.75);
  margin-bottom: 0.6rem;
}

.span-2x2 {
  background:
    linear-gradient(145deg, rgba(0, 102, 255, 0.95), rgba(0, 229, 255, 0.75));
  border-color: transparent;
  color: #031018;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.span-2x2 h3,
.span-2x2 p {
  color: #031018;
  position: relative;
  z-index: 1;
}

.span-2x2 p {
  opacity: 0.85;
}

.bento-photo {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 70%;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.showcase {
  background: #07101a;
}

.showcase-grid {
  display: grid;
  gap: 2.5rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-muted);
}

.feature-list svg {
  color: var(--accent-soft);
  flex-shrink: 0;
}

.showcase-stack {
  display: grid;
  gap: 1rem;
}

.shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.22);
  background: var(--bg-surface);
}

.shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.shot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.flow {
  background:
    linear-gradient(180deg, #0a1420 0%, #050a12 100%);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.timeline-line,
.timeline-progress {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
}

.timeline-line {
  background: rgba(0, 102, 255, 0.2);
}

.timeline-progress {
  background: linear-gradient(to bottom, var(--accent), var(--accent-soft));
  transform-origin: top;
  transform: scaleY(0);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
}

.node {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #050a12;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-soft);
  box-shadow: 0 0 0 6px rgba(3, 5, 8, 0.9);
  z-index: 1;
}

.timeline-item .content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 0.45rem;
}

.timeline-item .content p {
  color: var(--ink-muted);
}

.brands {
  padding: 4rem 0;
  background: #04080f;
}

.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brand-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.18em;
  color: rgba(91, 109, 130, 0.85);
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.voices {
  background: #08111b;
}

.voice-grid {
  display: grid;
  gap: 1rem;
}

.voice-card {
  background: var(--bg-surface);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 240px;
}

.voice-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.voice-meta img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0, 229, 255, 0.35);
}

.voice-meta strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.voice-meta span {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.faq {
  background: #050a12;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 14px;
  background: rgba(11, 17, 24, 0.8);
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--ink-muted);
  padding: 0 0 1.1rem;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 8rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: hue-rotate(160deg) saturate(1.2);
}

.cta-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 8vw, 760px);
  text-align: center;
  background: rgba(3, 5, 8, 0.78);
  border: 1px solid rgba(0, 102, 255, 0.28);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 102, 255, 0.12);
}

.cta-panel .lede {
  margin: 1rem auto 1.75rem;
}

.cta-form {
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.cta-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.cta-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 102, 255, 0.28);
  background: #0b1118;
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
}

.cta-form input:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}

.cta-form .btn {
  width: 100%;
  margin-top: 0.3rem;
}

.form-note {
  display: none;
  text-align: center;
  color: var(--accent-soft);
  font-size: 0.9rem;
}

.cta-form.sent .sent-msg {
  display: block;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 7rem;
  border-top: 1px solid rgba(0, 102, 255, 0.18);
  background: #020407;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 0.6rem;
}

.site-footer p,
.footer-links a {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover,
.footer-credit a:hover {
  color: var(--accent-soft);
}

.footer-credit {
  display: grid;
  gap: 0.25rem;
}

.pill-nav {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(0, 102, 255, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pill-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pill-nav a:hover {
  color: var(--ink);
}

.pill-cta {
  color: #031018 !important;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.js-reveal,
.js-timeline-item {
  opacity: 0;
  transform: translateY(28px);
}

@media (min-width: 760px) {
  .header-links {
    display: flex;
  }

  .hero-float-card {
    display: block;
  }

  .metric-row {
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    align-items: center;
  }

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

  .span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .span-1x2 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .span-2x1 {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .span-2x1 .icon {
    margin-bottom: 0;
  }

  .showcase-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .showcase-stack {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
  }

  .shot-main {
    grid-row: span 2;
  }

  .shot-main img {
    height: 100%;
    min-height: 420px;
  }

  .shot-side img {
    height: 190px;
  }

  .timeline-line,
  .timeline-progress {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-progress {
    transform: translateX(-50%) scaleY(0);
  }

  .timeline-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .timeline-item .content {
    max-width: 320px;
  }

  .timeline-item:nth-child(odd) {
    justify-items: end;
    text-align: right;
    padding-right: calc(50% + 40px);
  }

  .timeline-item:nth-child(even) {
    justify-items: start;
    text-align: left;
    padding-left: calc(50% + 40px);
  }

  .timeline-item:nth-child(odd) .node,
  .timeline-item:nth-child(even) .node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }

  .faq-sticky {
    position: sticky;
    top: 7rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 759px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .pill-nav {
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
  }
}
