@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

    :root {
      --bg: #0A2633;
      --bg-2: #0f3342;
      --bg-3: #123c4d;
      --card: rgba(255, 255, 255, 0.075);
      --card-strong: rgba(255, 255, 255, 0.12);
      --line: rgba(255, 255, 255, 0.14);
      --line-strong: rgba(255, 239, 64, 0.45);
      --text: #f5fbff;
      --muted: #b7ccd5;
      --muted-2: #85a7b5;
      --yellow: #FFEF40;
      --yellow-2: #fff57a;
      --yellow-dark: #c8b800;
      --cyan: #66d6ff;
      --green: #7df2bd;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 18% 0%, rgba(255, 239, 64, 0.16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(102, 214, 255, 0.11), transparent 34%),
        linear-gradient(180deg, #0A2633 0%, #071d27 52%, #081a23 100%);
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
    }

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

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

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(10, 38, 51, 0.78);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--yellow), #fff9a8);
      color: var(--bg);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(255, 239, 64, 0.22);
      flex: 0 0 auto;
    }

    .brand-mark svg,
    .brand-mark img {
      width: 38px;
      height: 38px;
      stroke-width: 2.7;
    }

    .brand-mark img {
      border-radius: 12px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .nav-links a:hover { color: var(--text); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 13px 20px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      cursor: pointer;
    }

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

    .btn-primary {
      background: var(--yellow);
      color: #071d27;
      box-shadow: 0 14px 34px rgba(255, 239, 64, 0.24);
    }

    .btn-primary:hover { background: var(--yellow-2); }

    .btn-secondary {
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
    }

    .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      border: 1px solid rgba(255, 239, 64, 0.32);
      color: var(--yellow-2);
      background: rgba(255, 239, 64, 0.08);
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 750;
      font-size: 0.86rem;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--yellow);
      box-shadow: 0 0 0 5px rgba(255, 239, 64, 0.12);
    }

    .hero {
      position: relative;
      padding: 86px 0 72px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 46px;
      align-items: center;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      margin-bottom: 22px;
      font-size: clamp(3rem, 7vw, 6.65rem);
      line-height: 0.9;
      letter-spacing: -0.055em;
      max-width: 790px;
    }

    .highlight { color: var(--yellow); }

    .hero-copy {
      color: var(--muted);
      font-size: clamp(1.08rem, 1.8vw, 1.28rem);
      max-width: 680px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 720px;
    }

    .proof {
      padding: 14px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .proof strong {
      display: block;
      color: var(--text);
      font-size: 1rem;
      margin-bottom: 3px;
    }

    .visual-card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 16px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .visual-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: radial-gradient(circle at 70% 0%, rgba(255, 239, 64, 0.18), transparent 42%);
      pointer-events: none;
    }

    .placeholder-img {
      width: 100%;
      aspect-ratio: 1.08 / 1;
      object-fit: cover;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: #123c4d;
      position: relative;
      z-index: 1;
    }

    .floating-panel {
      position: absolute;
      z-index: 2;
      left: 28px;
      bottom: 28px;
      width: min(340px, calc(100% - 56px));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      background: rgba(7, 29, 39, 0.27);
      backdrop-filter: blur(4px);
      padding: 16px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
    }

    .panel-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .status {
      color: #071d27;
      background: var(--yellow);
      border-radius: 999px;
      padding: 5px 9px;
      font-weight: 900;
    }

    .step {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--muted);
      font-size: 0.92rem;
    }

    .step b {
      color: var(--yellow);
      flex: 0 0 auto;
    }

    section { padding: 78px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: clamp(2.1rem, 4vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.045em;
      max-width: 760px;
      margin-bottom: 0;
    }

    .section-head p {
      color: var(--muted);
      max-width: 420px;
      margin-bottom: 0;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--card);
      padding: 24px;
      min-height: 100%;
      box-shadow: 0 14px 42px rgba(0, 0, 0, 0.12);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(255, 239, 64, 0.1);
      border: 1px solid rgba(255, 239, 64, 0.24);
      color: var(--yellow);
      font-weight: 900;
      margin-bottom: 18px;
      overflow: hidden;
    }

    .icon svg {
      width: 25px;
      height: 25px;
      stroke-width: 2.25;
    }

    .card h3 {
      font-size: 1.25rem;
      letter-spacing: -0.025em;
      margin-bottom: 10px;
    }

    .card p, .card li { color: var(--muted); }

    .card ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    .split {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .split .visual-card { min-height: 100%; }

    .feature-list {
      display: grid;
      gap: 14px;
    }

    .feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.055);
    }

    .feature-number {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--bg);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .feature h3 { margin-bottom: 5px; }
    .feature p { color: var(--muted); margin-bottom: 0; }

    .band {
      border-block: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(255, 239, 64, 0.1), transparent),
        rgba(255, 255, 255, 0.035);
      padding: 34px 0;
    }

    .band-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 18px;
      align-items: center;
    }

    .band h2 {
      font-size: clamp(1.7rem, 3vw, 3rem);
      letter-spacing: -0.05em;
      line-height: 1;
      margin-bottom: 8px;
    }

    .metric {
      border-left: 1px solid var(--line);
      padding-left: 20px;
    }

    .metric strong {
      display: block;
      color: var(--yellow);
      font-size: 2rem;
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .metric span { color: var(--muted); font-size: 0.92rem; }

    .audience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .audience {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .audience::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 239, 64, 0.09);
    }

    .tag {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--yellow);
      border: 1px solid rgba(255, 239, 64, 0.28);
      background: rgba(255, 239, 64, 0.07);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .audience h3 { font-size: 1.55rem; margin-bottom: 10px; }
    .audience p { color: var(--muted); margin-bottom: 18px; }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
    }

    .check-list li::before {
      content: "✓";
      color: var(--bg);
      background: var(--yellow);
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 0.78rem;
    }

    .workflow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .workflow-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .workflow-card img {
      width: 100%;
      aspect-ratio: 1.5 / 1;
      object-fit: cover;
      border-bottom: 1px solid var(--line);
      background: var(--bg-3);
    }

    .workflow-card div { padding: 22px; }
    .workflow-card h3 { margin-bottom: 8px; }
    .workflow-card p { color: var(--muted); margin-bottom: 0; }

    .integration-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 239, 64, 0.13), transparent 42%),
        rgba(255, 255, 255, 0.055);
      padding: 30px;
    }

    .integration-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .integration {
      min-height: 92px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(7, 29, 39, 0.56);
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--muted);
      font-weight: 760;
      padding: 12px;
    }

    .integration.core {
      grid-column: span 5;
      min-height: 118px;
      color: var(--bg);
      background: linear-gradient(135deg, var(--yellow), #fff7a1);
      border-color: rgba(255, 239, 64, 0.7);
      font-size: 1.28rem;
      box-shadow: 0 18px 46px rgba(255, 239, 64, 0.12);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

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

    .price-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.06);
      padding: 28px;
      position: relative;
    }

    .price-card.featured {
      border-color: var(--line-strong);
      background: linear-gradient(180deg, rgba(255, 239, 64, 0.11), rgba(255, 255, 255, 0.06));
      box-shadow: var(--shadow);
    }

    .badge {
      position: absolute;
      right: 22px;
      top: 22px;
      color: #071d27;
      background: var(--yellow);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 0.78rem;
      font-weight: 900;
    }

    .price {
      margin: 18px 0 6px;
      font-size: 2.55rem;
      line-height: 1;
      letter-spacing: -0.045em;
      font-weight: 900;
    }

    .price small {
      color: var(--muted);
      font-size: 0.95rem;
      letter-spacing: 0;
      font-weight: 650;
    }

    .price-note { color: var(--muted-2); font-size: 0.92rem; }

    .cta {
      padding: 92px 0;
    }

    .cta-box {
      border-radius: 34px;
      border: 1px solid rgba(255, 239, 64, 0.28);
      background:
        radial-gradient(circle at 10% 10%, rgba(255, 239, 64, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
      padding: clamp(34px, 6vw, 68px);
      text-align: center;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      font-size: clamp(2.3rem, 5vw, 5rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      margin-bottom: 18px;
    }

    .cta-box p {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto 28px;
      font-size: 1.12rem;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 30px 0;
      color: var(--muted-2);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

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

    .footer-links a:hover {
      color: var(--text);
    }

    .legal-page {
      min-height: calc(100vh - 137px);
    }

    .legal-page section {
      padding: 78px 0;
    }

    .legal-shell {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
      box-shadow: var(--shadow);
      padding: clamp(30px, 5vw, 64px);
    }

    .legal-shell h1 {
      max-width: 900px;
      margin: 18px 0 34px;
      font-size: clamp(3rem, 7vw, 5.8rem);
      line-height: 0.94;
      letter-spacing: -0.055em;
    }

    .legal-section {
      max-width: 850px;
      padding-top: 24px;
      margin-top: 24px;
      border-top: 1px solid var(--line);
    }

    .legal-section:first-of-type {
      margin-top: 0;
    }

    .legal-section h2 {
      margin-bottom: 12px;
      font-size: clamp(1.35rem, 2.4vw, 2rem);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

    .legal-section p,
    .legal-section li {
      color: var(--muted);
    }

    .legal-section p:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 980px) {
      .hero-grid, .split, .audience-grid { grid-template-columns: 1fr; }
      .grid-3, .workflow, .pricing-grid { grid-template-columns: 1fr; }
      .band-grid { grid-template-columns: 1fr 1fr; }
      .integration-grid { grid-template-columns: 1fr 1fr; }
      .integration.core { grid-column: span 2; }
      .section-head { align-items: start; flex-direction: column; }
      .nav-links { display: none; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, var(--max)); }
      .hero { padding-top: 56px; }
      .proof-row, .band-grid { grid-template-columns: 1fr; }
      .metric { border-left: 0; border-top: 1px solid var(--line); padding: 16px 0 0; }
      .integration-grid { grid-template-columns: 1fr; }
      .integration.core { grid-column: span 1; }
      .floating-panel { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 14px; }
      .visual-card { padding: 12px; }
    }

/* Pitch deck */
:root {
  --bg: #0A2633;
  --bg-2: #0f3342;
  --bg-3: #123c4d;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 239, 64, 0.45);
  --text: #f5fbff;
  --muted: #b7ccd5;
  --muted-2: #85a7b5;
  --yellow: #FFEF40;
  --yellow-2: #fff57a;
  --cyan: #66d6ff;
  --green: #7df2bd;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 239, 64, 0.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(102, 214, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #0A2633 0%, #071d27 52%, #081a23 100%);
  color: var(--text);
  line-height: 1.5;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 38, 51, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), #fff9a8);
  color: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(255, 239, 64, 0.22);
  flex: 0 0 auto;
}

.brand-mark svg,
.brand-mark img {
  width: 38px;
  height: 38px;
  stroke-width: 2.7;
}

.brand-mark img {
  border-radius: 12px;
}

.slide-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 116px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-button:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }

.nav-button.primary {
  color: #071d27;
  background: var(--yellow);
  border-color: transparent;
}

.nav-button.disabled {
  opacity: 0.38;
  pointer-events: none;
}

.slide {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 54px 0 62px;
}

.slide-shell {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 239, 64, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  min-height: min(720px, calc(100vh - 180px));
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1px solid rgba(255, 239, 64, 0.32);
  color: var(--yellow-2);
  background: rgba(255, 239, 64, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 22px;
}

.slide-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 239, 64, 0.12);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

h2 { font-size: clamp(2.8rem, 5.8vw, 5.4rem); }

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  margin-bottom: 34px;
}

.highlight { color: var(--yellow); }

.slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 24px;
  min-height: 100%;
}

.card strong, .metric strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.card p, .card li { color: var(--muted); }

.card ul {
  padding-left: 18px;
  margin: 0;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.step-number {
  color: #071d27;
  background: var(--yellow);
  border-radius: 999px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 900;
  white-space: nowrap;
}

.footer-note {
  position: absolute;
  left: clamp(30px, 5vw, 64px);
  right: clamp(30px, 5vw, 64px);
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-2);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .slide-grid, .two-col { grid-template-columns: 1fr; }
  .slide-shell { min-height: auto; }
  .footer-note { position: static; margin-top: 34px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .slide-nav { gap: 8px; }
  .nav-button { min-width: auto; padding: 10px 12px; font-size: 0.9rem; }
  .brand span:last-child { display: none; }
  .step { grid-template-columns: 1fr; }
}


h1, h2 {
  font-family: "Space Grotesk", "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

/* Landing page safeguards while sharing this file with the business case slides */
main#top h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.65rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  max-width: 790px;
}

main#top .section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 760px;
  margin-bottom: 0;
}

main#top .band h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

main#top .cta-box h2 {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

main#top .card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.12);
}

main#top .floating-panel .step {
  display: flex;
  grid-template-columns: none;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
}
