@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  /* Deep navy + jade palette */
  --midnight-1000: #0a1020;
  --midnight-900: #0f172a;
  --midnight-800: #16233b;
  --midnight-700: #1f2f48;
  --midnight-100: #e8edf5;
  --midnight-000: #ffffff;

  --accent-jade: #1f3d7a;
  --accent-jade-light: #2f6ccf;
  --accent-ice: #6ea7ff;
  --accent-amber: #f59e0b;

  --ink: #0b1423;
  --ink-muted: #304057;
  --ink-subtle: rgba(11, 20, 35, 0.7);

  --surface-body: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 60%, #e5e9f1 100%);
  --surface-card: rgba(255, 255, 255, 0.92);
  --surface-border: rgba(12, 27, 44, 0.08);

  --header-h: 72px;
  --max-width: 1180px;

  --shadow-strong: 0 26px 68px rgba(6, 14, 34, 0.35);
  --shadow-soft: 0 20px 46px rgba(12, 20, 35, 0.22);
  --shadow-card: 0 12px 26px rgba(15, 23, 42, 0.18);

  --blur-layer: blur(18px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface-body);
  min-height: 100vh;
  letter-spacing: 0.005em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
}

.page-body {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

  .skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
    background: var(--midnight-000);
    color: var(--midnight-900);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(12, 27, 44, 0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  color: var(--ink-muted);
}

.nav-links a {
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(31, 61, 122, 0.1);
  color: var(--midnight-900);
  transform: translateY(-1px) scale(1.01);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions .btn-link {
  color: #5f6a7a;
  font-weight: 600;
  opacity: 1;
}



.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(12, 27, 44, 0.1);
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 0 0 var(--ink), 0 -6px 0 0 var(--ink);
}

.hamburger:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-card);
}

.sheet {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 13, 0.75);
  backdrop-filter: blur(18px);
  color: #fff;
  transform: translateY(-10%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.5rem;
}

.sheet.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.sheet .brand-wordmark {
  color: rgba(255, 255, 255, 0.65);
}

.sheet .hamburger {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.sheet-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.25rem;
}

.sheet-body a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
}

.btn-cta {
  position: relative;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(150deg, #0f6cbd, #0f5ba9 45%, #0e4e8f);
  border: 1px solid #0e4775;
  box-shadow: 0 16px 34px rgba(15, 108, 189, 0.28), 0 10px 22px rgba(0, 0, 0, 0.08);
  text-transform: none;
  letter-spacing: 0.015em;
  isolation: isolate;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 18px 42px rgba(27, 93, 226, 0.38), 0 10px 26px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
  }
  45% {
    box-shadow: 0 22px 52px rgba(27, 93, 226, 0.48), 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    box-shadow: 0 18px 42px rgba(27, 93, 226, 0.38), 0 10px 26px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
  }
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  opacity: 0.9;
  pointer-events: none;
}

.btn-cta__icon {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.2s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: linear-gradient(150deg, #166fcd, #115ea3 45%, #0f4f8f);
  border-color: #0f4d87;
  box-shadow: 0 20px 44px rgba(15, 108, 189, 0.3), 0 12px 26px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover .btn-cta__icon,
.btn-cta:focus-visible .btn-cta__icon {
  transform: translateX(4px);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px) scale(1.005);
  outline: none;
}

.btn-primary {
  background: #146db3;
  color: #f8fbff;
  border: 1px solid #115a9c;
  box-shadow: 0 10px 22px rgba(20, 109, 179, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #156cb1;
  border-color: #0f5a99;
  box-shadow: 0 14px 30px rgba(21, 108, 177, 0.26);
}

.btn-ghost {
  background: linear-gradient(180deg, #ffffff, #f2f6ff);
  color: #0f6cbd;
  border-color: #c6dcf8;
  box-shadow: inset 0 0 0 1px #d9e7fb, 0 8px 18px rgba(12, 27, 44, 0.08);
  background: #115ea3;
  box-shadow: 0 16px 36px rgba(17, 94, 163, 0.28);
}

.btn-ghost {
  background: #f4f6fb;
  color: #0f6cbd;
  border-color: #c6dcf8;
  box-shadow: inset 0 0 0 1px #d9e7fb, 0 6px 14px rgba(12, 27, 44, 0.06);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: linear-gradient(180deg, #f8fbff, #e7f1ff);
  box-shadow: 0 14px 24px rgba(12, 20, 35, 0.12);
}

.btn-link {
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding-inline: 0.25rem;
  opacity: 0.78;
}

.btn-link:hover,
.btn-link:focus-visible {
  text-decoration: underline;
  opacity: 1;
}

.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(1.25rem, 2vw, 2.5rem)) 0 clamp(3.5rem, 3vw + 2.5rem, 6rem);
  overflow: hidden;
  background: linear-gradient(180deg, #121c35 0%, #162448 22%, #1c2f5a 42%, #f7f9fc 82%, #eef2f8 100%);
  color: var(--midnight-000);
}

.hero--stripes {
  isolation: isolate;
}

.hero__halo {
  position: absolute;
  inset: -10% 10% auto 10%;
  height: 62%;
  background: radial-gradient(60% 60% at 50% 45%, rgba(47, 108, 207, 0.32), transparent 70%),
    radial-gradient(50% 40% at 70% 10%, rgba(110, 167, 255, 0.26), transparent 60%),
    radial-gradient(40% 30% at 25% 20%, rgba(71, 132, 255, 0.18), transparent 65%);
  filter: blur(48px);
  opacity: 0.9;
  z-index: 0;
}

.hero__strips {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0.16;
}

.hero__strip {
  display: block;
  mix-blend-mode: screen;
  transform: skewX(-10deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.hero__strip--jade {
  background: linear-gradient(180deg, rgba(32, 179, 155, 0.35), transparent 90%);
}

.hero__strip--ice {
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.4), transparent 92%);
}

.hero__strip--amber {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.34), transparent 90%);
}

.hero__strip--pink {
  background: linear-gradient(180deg, rgba(244, 114, 182, 0.3), transparent 88%);
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 3vw + 1.75rem, 4rem);
  align-items: center;
}

.hero__copy {
  max-width: 640px;
  color: var(--midnight-000);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.hero__kicker {
  background: rgba(32, 179, 155, 0.16);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: #ffffff;
}

.hero-title {
  font-size: clamp(2.6rem, 3vw + 1.4rem, 3.8rem);
  line-height: 1.05;
  margin: 0.6rem 0 1rem;
  color: #f8fbff;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-actions .btn-cta {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn-cta {
    animation: none;
  }
}

/* Responsive hero layout */
@media (max-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h) + clamp(1rem, 3vw, 2rem));
  }

  .hero__shell {
    grid-template-columns: 1fr;
  }

  .hero__preview {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.btn-ghost--alt {
  color: #e2f4ff;
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost--alt:hover,
.btn-ghost--alt:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero__ladder {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 1.4rem;
}

.hero__ladder-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 27, 44, 0.08);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hero__ladder-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #0a1020;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero__ladder-index--green {
  background: linear-gradient(130deg, rgba(47, 108, 207, 0.42), rgba(47, 108, 207, 0.75));
}

.hero__ladder-index--blue {
  background: linear-gradient(130deg, rgba(110, 167, 255, 0.52), rgba(47, 108, 207, 0.6));
}

.hero__ladder-index--amber {
  background: linear-gradient(130deg, rgba(71, 132, 255, 0.52), rgba(47, 80, 147, 0.45));
}

.hero__ladder-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.hero__ladder-item p {
  margin: 0;
  color: var(--ink-muted);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero__meta--row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero__meta-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 14px 32px rgba(6, 14, 34, 0.28);
  color: #e2e8f0;
}

.hero__meta-label {
  display: block;
  color: rgba(226, 232, 240, 0.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.hero__meta-card strong {
  display: block;
  font-size: 1.6rem;
  color: #ffffff;
}

.hero__meta-card small {
  color: rgba(226, 232, 240, 0.8);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 1rem;
}

.hero__visual-card {
  width: min(480px, 100%);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 27, 44, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.hero__visual-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, rgba(31, 61, 122, 0.28), rgba(10, 16, 32, 0.72)),
    url('/img/placeholder-dashboard-dark.svg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  margin: 1rem 1rem 0.5rem;
  overflow: hidden;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.16));
  mix-blend-mode: screen;
}

.hero__visual-figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem 1.1rem;
}

.hero__visual-copy {
  margin: 0.15rem 0 0;
  color: var(--ink-muted);
}

.hero__visual-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(130deg, rgba(125, 211, 252, 0.42), rgba(32, 179, 155, 0.5));
  display: grid;
  place-items: center;
  color: var(--midnight-900);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero__floating {
  position: absolute;
  right: -4%;
  left: auto;
  min-width: 220px;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(12, 27, 44, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.18);
}

.hero__floating--primary {
  top: 16%;
}

.hero__floating--secondary {
  bottom: 8%;
}

.hero__floating strong {
  display: block;
  color: var(--midnight-900);
  margin: 0.15rem 0 0.25rem;
}

.hero__floating p {
  margin: 0;
  color: var(--ink-muted);
}

.hero__floating-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--accent-jade);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__bars {
  position: absolute;
  inset: 12% auto 12% -4%;
  display: grid;
  align-content: space-between;
  gap: 0.4rem;
}

.hero__bar {
  width: 10px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(12, 20, 35, 0.12);
}

.hero__bar--green {
  height: 140px;
  background: linear-gradient(180deg, rgba(47, 108, 207, 0.92), rgba(47, 108, 207, 0.65));
}

.hero__bar--blue {
  height: 110px;
  background: linear-gradient(180deg, rgba(110, 167, 255, 0.9), rgba(47, 108, 207, 0.72));
}

.hero__bar--amber {
  height: 120px;
  background: linear-gradient(180deg, rgba(71, 132, 255, 0.85), rgba(47, 108, 207, 0.68));
}

.hero__bar--pink {
  height: 90px;
  background: linear-gradient(180deg, rgba(47, 80, 147, 0.95), rgba(110, 167, 255, 0.55));
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.hero__preview {
  display: grid;
  gap: 1rem;
  color: var(--midnight-900);
  min-width: clamp(320px, 52vw, 520px);
}


.hero__video-wrapper {
    position: relative;
    overflow: hidden;
    width: min(100%, 560px);
    min-height: 360px;
    border-radius: 24px;
    background: #0a1228; /* only visible while video loads */
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 42px rgba(3, 13, 33, 0.35), 0 10px 26px rgba(0,0,0,0.14);
    isolation: isolate;
}

    .hero__video-wrapper::before {
        content: "";
        position: absolute;
        inset: -18% 4% 40% 6%;
        background: radial-gradient(65% 55% at 40% 45%, rgba(59, 198, 255, 0.4), transparent 70%),
          radial-gradient(50% 45% at 80% 20%, rgba(45, 212, 191, 0.3), transparent 75%);
        filter: blur(48px);
        opacity: 0.9;
        z-index: 0;
        transform: rotate(-2deg);
    }

    .hero__video-wrapper video {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    .hero__video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(180deg, rgba(14, 23, 45, 0.08) 0%, rgba(14, 23, 45, 0.38) 100%);
        pointer-events: none;
        mix-blend-mode: screen;
    }

    .hero-video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.video-placeholder__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-placeholder__list {
  display: grid;
  gap: 0.6rem;
}

.video-placeholder__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: #f3f7ff;
  font-weight: 700;
}

.video-placeholder__row span {
  color: #d7e4ff;
  font-weight: 600;
}

.video-placeholder__qa {
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-placeholder__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: rgba(5, 13, 24, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e4ff;
}

.play-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #0b1d33;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.play-pill::before {
  content: "▶";
  display: inline-block;
  font-size: 0.9rem;
  color: #0b1d33;
}

.subdued {
  color: #b7c9e7;
  margin: 0;
}

.preview-card {
  background: var(--surface-card);
  border: 1px solid rgba(12, 27, 44, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  backdrop-filter: blur(10px);
}

.preview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f3d7a, #2f6ccf);
  color: #f8fbff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.preview-card__body {
  display: grid;
  gap: 0.8rem;
}

.preview-card__rows {
  display: grid;
  gap: 0.65rem;
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  background: rgba(12, 27, 44, 0.04);
  border-radius: 12px;
  font-weight: 700;
  color: var(--midnight-800);
}

.preview-row span {
  color: var(--ink-muted);
  font-weight: 600;
}

.preview-stack {
  display: grid;
  gap: 0.75rem;
}

.stack-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 27, 44, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-card);
}

.stack-card--outline {
  background: transparent;
  color: var(--midnight-000);
  border-color: rgba(255, 255, 255, 0.4);
}

.stack-label {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--ink-muted);
}

.stack-copy {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill--alert {
  background: rgba(245, 158, 11, 0.14);
  color: #8b5e00;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.pill--glow {
  background: linear-gradient(135deg, rgba(32, 179, 155, 0.3), rgba(125, 211, 252, 0.35));
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.12), 0 12px 24px rgba(0, 0, 0, 0.18);
  color: #082f49;
}

.pill--muted {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(226, 232, 240, 0.8);
}

.placeholder {
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px dashed rgba(12, 27, 44, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(12, 27, 44, 0.04));
  color: var(--ink-muted);
  font-weight: 700;
  text-align: center;
}

.placeholder--wide {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.placeholder--app {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px dashed rgba(12, 27, 44, 0.24);
  background: linear-gradient(145deg, rgba(31, 61, 122, 0.06), rgba(110, 167, 255, 0.12));
  padding: 1rem;
}

.placeholder--panel {
  height: 140px;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.8s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(120%);
  }
}

.section--stripe {
  background: linear-gradient(120deg, rgba(32, 179, 155, 0.08), rgba(125, 211, 252, 0.08));
  border-block: 1px solid rgba(12, 27, 44, 0.05);
}


.benefits-layout {
  display: grid;
  gap: 1.5rem;
}

.benefits-layout--grid .benefits-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefits-list {
  display: grid;
  gap: 1.25rem;
}

.benefit {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.85));
  border: 1px solid rgba(12, 27, 44, 0.08);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.35rem;
  box-shadow: 0 18px 32px rgba(12, 27, 44, 0.08);
  display: grid;
  gap: 1rem;
}

.benefit__summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.benefit__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(31, 61, 122, 0.16), rgba(110, 167, 255, 0.22));
  color: var(--midnight-800);
  box-shadow: 0 12px 26px rgba(12, 27, 44, 0.16);
  font-size: 1.2rem;
}

.benefit__icon-graphic {
  width: 26px;
  height: 26px;
}

.benefit__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.benefit__title {
  margin: 0.2rem 0 0.15rem;
}

.benefit__body {
  margin: 0;
  color: var(--ink-muted);
}

.benefit__visual {
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--ink-subtle);
  padding: 1rem;
  background: linear-gradient(150deg, rgba(31, 61, 122, 0.06), rgba(125, 211, 252, 0.12));
  border-radius: 14px;
  border: 1px solid rgba(12, 27, 44, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 28px rgba(12, 27, 44, 0.12);
}

@media (min-width: 900px) {
  .benefits-layout {
    gap: 1.75rem;
  }

  .benefit__summary {
    gap: 1rem;
  }
}

.value-grid--strips {
  align-self: center;
}

.strip-rows {
  display: grid;
  gap: 1.25rem;
}

.strip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(12, 27, 44, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.strip-row--muted {
  background: linear-gradient(90deg, rgba(31, 61, 122, 0.08), rgba(255, 255, 255, 0.95));
}

.strip-row__text {
  display: grid;
  gap: 0.35rem;
}

.strip-row__text h3 {
  margin: 0;
}

.strip-row__visual {
  min-height: 140px;
  border-radius: 12px;
  border: 1px dashed rgba(12, 27, 44, 0.16);
  background: linear-gradient(135deg, rgba(110, 167, 255, 0.18), rgba(47, 108, 207, 0.12));
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  font-weight: 700;
}

.visuals__grid--wide {
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
}

.frame__body--gradient {
  background: linear-gradient(140deg, rgba(31, 61, 122, 0.26), rgba(110, 167, 255, 0.22));
  color: #0a1020;
  display: grid;
  place-items: center;
}

.frame__body--glass {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(12, 27, 44, 0.2);
}

.section {
  padding: 3.5rem 0;
  color: var(--ink);
}

.section--light {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.section--banded {
  background: linear-gradient(120deg, rgba(46, 164, 231, 0.08), rgba(255, 255, 255, 0.92));
}



.trust-premium {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background: radial-gradient(120% 120% at 15% 20%, rgba(99, 179, 255, 0.28), transparent 46%),
    radial-gradient(110% 110% at 82% 10%, rgba(34, 211, 238, 0.2), transparent 52%),
    linear-gradient(165deg, #071226 0%, #0b1832 38%, #0a1124 100%);
  color: #eaf2ff;
  isolation: isolate;
}

.trust-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.trust-premium__bg--primary {
  background: radial-gradient(60% 60% at 22% 32%, rgba(124, 185, 255, 0.32), transparent 60%),
    radial-gradient(80% 80% at 78% 58%, rgba(61, 131, 246, 0.25), transparent 68%);
  filter: blur(28px);
}

.trust-premium__bg--accent {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
}

.trust-premium__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.trust-premium__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.trust-premium__column {
  display: grid;
  gap: 1.25rem;
}

.trust-premium__eyebrow {
  letter-spacing: 0.08em;
  font-weight: 700;
}

.kicker--frost {
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-premium__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: #f8fbff;
}

.trust-premium__lead {
  margin: 0;
  color: rgba(235, 245, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 680px;
}

.trust-premium__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-premium__stat-card,
.trust-premium__card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(168, 203, 255, 0.35);
  border-radius: 22px;
  padding: 1.35rem 1.4rem;
  color: #eaf2ff;
  box-shadow: 0 22px 55px rgba(8, 12, 30, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-premium__card--hero {
  padding: 1.6rem 1.7rem;
}

.trust-premium__stat-card:hover,
.trust-premium__stat-card:focus-within,
.trust-premium__card:hover,
.trust-premium__card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(197, 222, 255, 0.7);
  box-shadow: 0 30px 64px rgba(5, 10, 26, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.trust-premium__stat-title {
  margin: 0;
  font-weight: 800;
  color: #f8fbff;
  font-size: 1.1rem;
}

.trust-premium__stat-text {
  margin: 0.35rem 0 0;
  color: rgba(225, 238, 255, 0.82);
  line-height: 1.5;
}

.trust-premium__card--testimonial {
  display: grid;
  gap: 0.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.trust-premium__quote-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(147, 197, 253, 0.9), rgba(37, 99, 235, 0.65));
  color: #0b1423;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 12px 28px rgba(5, 10, 25, 0.35);
}

.trust-premium__quote-heading {
  margin: 0;
  font-size: 1.2rem;
  color: #f8fbff;
  line-height: 1.5;
}

.trust-premium__quote-body {
  margin: 0;
  color: rgba(225, 238, 255, 0.85);
  line-height: 1.6;
}

.trust-premium__quote-name {
  margin: 0;
  color: rgba(182, 215, 255, 0.9);
  font-weight: 700;
}

.trust-premium__card--reassurance {
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.05));
}

.trust-premium__micro-title {
  margin: 0;
  font-weight: 800;
  color: #f8fbff;
}

.trust-premium__micro-text {
  margin: 0.35rem 0 0;
  color: rgba(225, 238, 255, 0.82);
  line-height: 1.6;
}

.trust-premium__footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: var(--delay, 0.08s);
}

@media (max-width: 960px) {
  .trust-premium {
    padding: 4.2rem 0 4rem;
  }

  .trust-premium__card,
  .trust-premium__stat-card {
    backdrop-filter: none;
  }
}

@media (max-width: 768px) {
  .trust-premium__grid {
    gap: 1.5rem;
  }

  .trust-premium__lead {
    font-size: 1.02rem;
  }
}

.section__inner {
  display: grid;
  gap: 2rem;
}

.how-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.how-premium__bg {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 120%;
  background: radial-gradient(40% 40% at 20% 20%, rgba(94, 140, 255, 0.2), transparent 60%),
    radial-gradient(36% 36% at 70% 10%, rgba(34, 211, 238, 0.18), transparent 65%),
    radial-gradient(50% 50% at 60% 70%, rgba(15, 23, 42, 0.2), transparent 70%);
  filter: blur(48px);
  opacity: 0.9;
  transform-origin: 50% 50%;
  animation: drift 22s ease-in-out infinite alternate;
  z-index: 0;
}

.walkthrough-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.walkthrough-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.92));
  border: 1px solid rgba(12, 27, 44, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 180ms ease;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(28px);
  animation-delay: var(--delay, 0s);
}

.walkthrough-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(94, 140, 255, 0.06), rgba(34, 211, 238, 0.08));
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 0;
}

.walkthrough-card:hover,
.walkthrough-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 38px rgba(12, 27, 44, 0.14);
  border-color: rgba(94, 140, 255, 0.25);
}

.walkthrough-card:hover::before,
.walkthrough-card:focus-within::before {
  opacity: 1;
}

.walkthrough-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(95, 140, 255, 0.8), rgba(34, 211, 238, 0.9));
  color: #0a1020;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 26px rgba(12, 27, 44, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.walkthrough-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(94, 140, 255, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.walkthrough-icon svg {
  width: 34px;
  height: 34px;
}

.walkthrough-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
}

.walkthrough-card__body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.walkthrough-card__body p {
  margin: 0;
  color: var(--ink-subtle);
  line-height: 1.6;
}

.walkthrough-card__visual {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.walkthrough-card__visual-inner {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 27, 44, 0.06);
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 12px 28px rgba(12, 27, 44, 0.08);
}

.placeholder-pill {
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(94, 140, 255, 0.12), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(12, 27, 44, 0.06);
}

.placeholder-pill--wide {
  height: 46px;
}

.stacked-rows {
  display: grid;
  gap: 0.35rem;
}

.stacked-row {
  height: 16px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(94, 140, 255, 0.12), rgba(34, 211, 238, 0.14));
  border: 1px solid rgba(12, 27, 44, 0.05);
}

.stacked-row--short {
  width: 65%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(94, 140, 255, 0.16);
  color: #0b1423;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(94, 140, 255, 0.35);
}

.chip--soft {
  background: rgba(34, 211, 238, 0.14);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.chartish {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(94, 140, 255, 0.08), rgba(34, 211, 238, 0.14));
}

.trend-line {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(94, 140, 255, 0.85), rgba(34, 211, 238, 0.85));
}

.trend-line--two {
  width: 70%;
  justify-self: end;
  opacity: 0.8;
}

.dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(150deg, #6ea7ff, #22d1ee);
  box-shadow: 0 0 0 6px rgba(110, 167, 255, 0.12);
}

.prompt {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(237, 245, 255, 0.9));
}

.prompt-line {
  height: 14px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(94, 140, 255, 0.14), rgba(34, 211, 238, 0.18));
  border: 1px solid rgba(12, 27, 44, 0.05);
}

.prompt-line--wide {
  width: 80%;
}

.prompt-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: rgba(12, 27, 44, 0.82);
  color: #e5edff;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  50% {
    transform: rotate(6deg) scale(1.05) translateY(-4%);
  }
  100% {
    transform: rotate(-4deg) scale(1.03) translateY(3%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .walkthrough-card {
    animation: none;
    transform: none;
  }

  .how-premium__bg {
    animation: none;
  }

  .trust-premium__card,
  .trust-premium__micro,
  .floater {
    animation: none;
    transform: none;
  }
}

.section__inner--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.visuals {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.visuals__grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 320px;
  gap: 1.25rem;
  justify-content: center;
}

.frame {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(231, 241, 251, 0.95));
  border: 1px solid rgba(12, 27, 44, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.frame--desktop {
  min-height: 320px;
}

.frame--mobile {
  width: 320px;
  margin-inline: auto;
  min-height: 360px;
  background: linear-gradient(180deg, rgba(6, 33, 59, 0.9), rgba(17, 22, 27, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.frame__header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.frame__header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.frame__header strong {
  margin-left: auto;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.frame__body {
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.frame__chart {
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(26, 162, 216, 0.3), rgba(20, 226, 184, 0.28));
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.frame__rows {
  display: grid;
  gap: 0.6rem;
}

.frame__row {
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: rgba(12, 27, 44, 0.03);
  border: 1px solid rgba(12, 27, 44, 0.08);
  color: var(--ink);
}

.kicker {
  color: var(--accent-jade);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.section__title {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section__lead {
  color: var(--ink-subtle);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.list-ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--ink);
}

.list-ticks li {
  position: relative;
  padding-left: 1.5rem;
}

.list-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: linear-gradient(130deg, var(--accent-jade), var(--accent-jade-light));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 108, 207, 0.18);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid rgba(12, 27, 44, 0.08);
  box-shadow: 0 16px 38px rgba(12, 27, 44, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(12, 27, 44, 0.12);
  border-color: rgba(12, 27, 44, 0.12);
}

.value-card h3,
.value-card h2 {
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.value-card p,
.value-card li {
  margin: 0;
  color: var(--ink-subtle);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.step {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(12, 27, 44, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.step:hover,
.step:focus-within {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-soft);
}

.step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(140deg, #5f8cff, #5af0d7);
  color: #0b1024;
  font-weight: 700;
  margin-bottom: 0.35rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.step__image-placeholder {
  background: linear-gradient(140deg, rgba(46, 164, 231, 0.15), rgba(12, 207, 156, 0.12));
  border-radius: 12px;
  padding: 1rem;
  color: var(--ink-muted);
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(12, 27, 44, 0.08);
  margin-top: 0.75rem;
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 44, 0.12);
  color: var(--ink-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(12, 27, 44, 0.04);
}

.badge-outline span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-jade);
}

.quote-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(12, 27, 44, 0.08);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-size: 1.05rem;
  line-height: 1.6;
}

.quote-meta {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.plans .plan-card {
  position: relative;
}

.plan-price {
  font-size: 1.35rem;
  margin: 0.3rem 0 0.75rem;
  color: #c7ffee;
}

.plan-card--accent {
  border-color: rgba(95, 140, 255, 0.4);
  box-shadow: var(--shadow-soft);
}

.contact {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(12, 27, 44, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 1rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(46, 164, 231, 0.6);
  box-shadow: 0 0 0 3px rgba(46, 164, 231, 0.18);
}

.validation {
  color: #ffb4b4;
  font-size: 0.9rem;
}

.success-banner {
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

footer {
  padding: 2.5rem 0 3.5rem;
  background: rgba(4, 6, 13, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.foot-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid rgba(95, 140, 255, 0.8);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .walkthrough-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-links,
  .btn-link {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero--ai .hero-shell {
    padding: 1.5rem;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero__floating {
    position: relative;
    right: 0;
    left: 0;
    margin: 0.75rem 0 0;
  }

  .hero__bars {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .hero-card-main,
  .hero-float-rail,
  .value-card,
  .step,
  .quote-block {
    box-shadow: var(--shadow-soft);
  }

  .walkthrough-grid {
    grid-template-columns: 1fr;
  }

  .walkthrough-card {
    padding: 1.05rem 1rem 1.2rem;
  }

  .walkthrough-card__header {
    justify-content: flex-start;
  }
}
