    :root {
      --bg: #F7F8FB;
      --ink: #17181C;
      --ink-soft: #4b4d57;
      --ink-mute: #7a7d89;
      --line: #e7e8ee;
      --card: #ffffff;
      --accent: #17181C;
      --accent-warm: #ffd4aa;
      --accent-cool: #a8d2e8;
      --accent-purple: #d2bee6;
      --green: #22a06b;
      --max: 1200px;
      --radius: 14px;
      --radius-lg: 22px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body {
      font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
      font-weight: 400;
      color: var(--ink);
      background: var(--bg);
      position: relative;
      overflow-x: hidden;
      line-height: 1.55;
      font-size: 17px;
    }
    html { overflow-x: hidden; }
    img, svg, video { max-width: 100%; height: auto; }

    /* Soft pastel gradient blobs */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(1100px 700px at 5% 0%,   rgba(168, 210, 232, 0.55) 0%, rgba(168, 210, 232, 0) 55%),
        radial-gradient(900px 600px  at 100% 5%, rgba(255, 212, 170, 0.55) 0%, rgba(255, 212, 170, 0) 55%),
        radial-gradient(900px 700px  at 95% 80%, rgba(210, 190, 230, 0.55) 0%, rgba(210, 190, 230, 0) 55%),
        radial-gradient(900px 700px  at 0% 90%,  rgba(196, 220, 230, 0.45) 0%, rgba(196, 220, 230, 0) 55%);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ---------- SCROLL REVEAL ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ---------- NAV ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: saturate(1.2) blur(14px);
      -webkit-backdrop-filter: saturate(1.2) blur(14px);
      background: rgba(247, 248, 251, 0.72);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .logo-mark {
      width: 34px;
      height: 34px;
      display: block;
      border-radius: 9px;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-tagline {
      font-size: 11px;
      font-weight: 400;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
    }
    .nav-links a {
      color: var(--ink-soft);
      font-size: 15px;
      font-weight: 400;
      transition: color .2s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: var(--ink);
      color: #fff !important;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(23, 24, 28, 0.18);
    }

    /* Mobile hamburger */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

    /* ---------- EARLY OFFER BANNER ---------- */
    .early-offer {
      background: linear-gradient(90deg, #1d1f26 0%, #2a2c35 100%);
      color: #fff;
      text-align: center;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.01em;
      position: relative;
      z-index: 5;
    }
    .early-offer .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-warm);
      margin-right: 8px;
      vertical-align: middle;
      box-shadow: 0 0 0 0 rgba(255, 212, 170, 0.7);
      animation: pulse-glow 2s infinite;
    }
    @keyframes pulse-glow {
      0% { box-shadow: 0 0 0 0 rgba(255, 212, 170, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(255, 212, 170, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 212, 170, 0); }
    }
    .early-offer a {
      color: var(--accent-warm);
      text-decoration: underline;
      margin-left: 6px;
      font-weight: 600;
    }
    .early-offer a:hover { color: #fff; }

    /* Pricing-specific early offer card */
    .pricing-offer {
      max-width: 720px;
      margin: 0 auto 36px;
      padding: 18px 24px;
      background: linear-gradient(135deg, rgba(255, 212, 170, 0.25) 0%, rgba(168, 210, 232, 0.25) 100%);
      border: 1px solid rgba(23, 24, 28, 0.08);
      border-radius: 14px;
      text-align: center;
      font-size: 15px;
      color: var(--ink);
      font-weight: 500;
    }
    .pricing-offer strong {
      color: var(--ink);
      font-weight: 700;
    }
    .pricing-offer .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d97706;
      margin-right: 8px;
      vertical-align: middle;
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
      animation: pulse-glow-warm 2s infinite;
    }
    @keyframes pulse-glow-warm {
      0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6); }
      70% { box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); }
      100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
    }

    /* ---------- HERO ---------- */
    .hero {
      padding: 80px 0 100px;
      text-align: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(23, 24, 28, 0.08);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-soft);
      letter-spacing: 0.02em;
      backdrop-filter: blur(8px);
      animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.18);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.18); }
      50% { box-shadow: 0 0 0 6px rgba(34, 160, 107, 0.08); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    h1 {
      font-family: "Outfit", sans-serif;
      font-weight: 500;
      font-size: clamp(44px, 7vw, 88px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      margin: 26px auto 22px;
      max-width: 960px;
      color: var(--ink);
      animation: fadeInUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    h1 .serif {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-style: italic;
      letter-spacing: -0.01em;
    }
    .hero-sub {
      font-size: clamp(17px, 1.4vw, 20px);
      color: var(--ink-soft);
      max-width: 680px;
      margin: 0 auto 44px;
      line-height: 1.55;
      animation: fadeInUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 15px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--ink);
      color: #fff;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(23, 24, 28, 0.22);
    }
    .btn-ghost {
      background: rgba(255,255,255,0.6);
      color: var(--ink);
      border: 1px solid rgba(23,24,28,0.12);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover {
      background: #fff;
      transform: translateY(-1px);
    }
    .btn .arrow { transition: transform .2s ease; }
    .btn:hover .arrow { transform: translateX(3px); }

    /* ---------- SOCIAL PROOF STRIP ---------- */
    .proof-strip {
      padding: 0 0 60px;
      text-align: center;
    }
    .proof-text {
      font-size: 14px;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
    }
    .proof-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--ink-mute);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .proof-icon {
      width: 20px;
      height: 20px;
      opacity: 0.5;
    }

    /* ---------- STATS BAND ---------- */
    .stats {
      padding: 0 0 100px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      background: rgba(255,255,255,0.55);
      border: 1px solid rgba(23, 24, 28, 0.06);
      border-radius: var(--radius-lg);
      padding: 44px 28px;
      backdrop-filter: blur(10px);
    }
    .stat {
      text-align: center;
      border-right: 1px solid rgba(23, 24, 28, 0.06);
      padding: 6px 12px;
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(44px, 5vw, 64px);
      font-weight: 400;
      line-height: 1;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .stat-label {
      margin-top: 10px;
      font-size: 14px;
      color: var(--ink-mute);
      font-weight: 400;
    }

    /* ---------- GENERIC SECTION ---------- */
    section { padding: 110px 0; }

    .kicker {
      display: block;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-mute);
      margin-bottom: 20px;
    }
    h2 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin: 0 0 24px;
      max-width: 860px;
      color: var(--ink);
    }
    .section-intro {
      font-size: 18px;
      color: var(--ink-soft);
      max-width: 640px;
      line-height: 1.55;
      margin: 0;
    }
    .section-head { margin-bottom: 64px; }

    /* ---------- HOW IT WORKS ---------- */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .step {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(23, 24, 28, 0.06);
      border-radius: var(--radius-lg);
      padding: 38px 32px;
      transition: transform .2s ease, box-shadow .3s ease;
      backdrop-filter: blur(10px);
    }
    .step:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(23, 24, 28, 0.08);
    }
    .step-num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 44px;
      color: var(--ink-mute);
      line-height: 1;
      font-weight: 400;
      margin-bottom: 18px;
    }
    .step h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: 26px;
      line-height: 1.15;
      letter-spacing: -0.005em;
      margin: 0 0 12px;
      color: var(--ink);
    }
    .step p {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }

    /* ---------- SEE IT RUN (video showcase) ---------- */
    .watch {
      padding: 110px 0;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(34,160,107,0.05), transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.4) 100%);
    }
    /* Featured master reel — wider, lead-positioned. Two-column on desktop:
       phone-shaped 9:16 video on the left, story copy on the right. */
    .video-featured {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 0;
      margin-bottom: 48px;
      transition: transform .2s ease, box-shadow .3s ease;
    }
    .video-featured:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(23, 24, 28, 0.10);
    }
    .video-featured .video-wrap {
      position: relative;
      aspect-ratio: 9 / 16;
      background: #000;
      overflow: hidden;
    }
    .video-featured video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #000;
    }
    .video-featured .video-meta {
      padding: 56px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }
    .video-featured .kicker {
      margin-bottom: 0;
    }
    .video-featured h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(32px, 3vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin: 0;
      color: var(--ink);
    }
    .video-featured p {
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.6;
      margin: 0;
      max-width: 560px;
    }
    .video-featured .video-stats {
      display: flex;
      gap: 28px;
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .video-featured .video-stats span {
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
    }
    .video-featured .video-stats strong {
      color: var(--green);
      margin-right: 6px;
      font-weight: 600;
    }
    /* Divider between the featured reel and the per-workflow grid */
    .video-or {
      text-align: center;
      margin: 8px 0 32px;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
      position: relative;
    }
    .video-or::before,
    .video-or::after {
      content: "";
      display: inline-block;
      width: 60px;
      height: 1px;
      background: var(--line);
      vertical-align: middle;
      margin: 0 16px;
    }
    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .video-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
    }
    .video-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(23, 24, 28, 0.08);
    }
    .video-card .video-wrap {
      position: relative;
      aspect-ratio: 9 / 16;
      background: #000;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-card video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #000;
    }
    .video-card .video-meta {
      padding: 24px 28px 28px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .video-card .video-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
    }
    .video-card .video-num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 28px;
      color: var(--ink-mute);
      line-height: 1;
    }
    .video-card .video-duration {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
    }
    .video-card h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: 26px;
      line-height: 1.15;
      letter-spacing: -0.005em;
      margin: 4px 0 0;
      color: var(--ink);
    }
    .video-card p {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.55;
      margin: 6px 0 0;
    }

    /* ---------- WHY US ---------- */
    .why {
      padding: 110px 0;
    }
    .why-head {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 56px;
    }
    .chips {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .chip {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(23, 24, 28, 0.06);
      border-radius: var(--radius);
      padding: 28px 24px;
      backdrop-filter: blur(10px);
      transition: transform .2s ease, box-shadow .3s ease;
      display: flex;
      flex-direction: column;
    }
    .chip:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(23, 24, 28, 0.06);
    }
    .chip-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 20px;
    }
    .chip-icon-ai { background: linear-gradient(135deg, rgba(210, 190, 230, 0.4), rgba(168, 210, 232, 0.4)); }
    .chip-icon-done { background: linear-gradient(135deg, rgba(255, 212, 170, 0.4), rgba(255, 180, 130, 0.3)); }
    .chip-icon-wa { background: linear-gradient(135deg, rgba(34, 160, 107, 0.15), rgba(34, 160, 107, 0.08)); }
    .chip-title {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 8px;
      color: var(--ink);
    }
    .chip-body {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.55;
      flex: 1;
    }

    /* ---------- WHAT YOU GET ---------- */
    .offer {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .offer-card {
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(23, 24, 28, 0.06);
      border-radius: var(--radius-lg);
      padding: 38px 34px;
      transition: transform .2s ease, box-shadow .3s ease;
      backdrop-filter: blur(10px);
    }
    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(23, 24, 28, 0.08);
    }
    .offer-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--ink-mute);
      margin-bottom: 14px;
    }
    .offer-card h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: -0.005em;
      margin: 0 0 14px;
      color: var(--ink);
    }
    .offer-card p {
      color: var(--ink-soft);
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }
    .offer-details {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(23, 24, 28, 0.06);
    }
    .offer-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.5;
      margin-bottom: 8px;
    }
    .offer-detail-item:last-child { margin-bottom: 0; }
    .offer-detail-bullet {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ink-mute);
      margin-top: 7px;
      flex: none;
    }

    /* ---------- DETAILED FEATURES ---------- */
    .features-detailed {
      padding: 110px 0;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .feature-item {
      background: rgba(255,255,255,0.6);
      border: 1px solid rgba(23, 24, 28, 0.05);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: transform .2s ease, box-shadow .3s ease;
      backdrop-filter: blur(10px);
    }
    .feature-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(23, 24, 28, 0.06);
    }
    .feature-icon {
      font-size: 24px;
      margin-bottom: 14px;
      display: block;
      line-height: 1;
    }
    .feature-item h4 {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 20px;
      font-weight: 400;
      margin: 0 0 8px;
      color: var(--ink);
    }
    .feature-item p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.55;
      margin: 0;
    }

    /* ---------- PRICING ---------- */
    .pricing {
      padding: 110px 0;
    }
    .price-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }
    .price-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(23, 24, 28, 0.08);
      border-radius: var(--radius-lg);
      padding: 44px 38px;
      backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .3s ease;
    }
    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(23, 24, 28, 0.08);
    }
    .price-card-featured {
      border: 2px solid var(--ink);
      position: relative;
    }
    .price-badge {
      position: absolute;
      top: -13px;
      left: 32px;
      background: var(--ink);
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 4px 14px;
      border-radius: 999px;
    }
    .price-header {
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(23,24,28,0.08);
    }
    .price-name {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 30px;
      font-weight: 400;
      line-height: 1;
      color: var(--ink);
    }
    .price-tagline {
      color: var(--ink-soft);
      font-size: 14px;
      margin-top: 8px;
      line-height: 1.5;
    }
    .price-amount-main {
      margin-top: 22px;
    }
    .price-amount-label {
      color: var(--ink-mute);
      font-size: 13px;
      margin-bottom: 4px;
    }
    .price-amount-value {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 48px;
      color: var(--ink);
      line-height: 1;
    }
    .price-amount-period {
      font-family: "Outfit", sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--ink-mute);
    }
    .price-amount-note {
      color: var(--ink-mute);
      font-size: 13px;
      margin-top: 8px;
    }

    .price-list {
      list-style: none;
      padding: 0;
      margin: 0 0 auto;
    }
    .price-list li {
      font-size: 14px;
      color: var(--ink-soft);
      display: flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.5;
      margin-bottom: 10px;
    }
    .price-list li:last-child { margin-bottom: 0; }
    .price-list li::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      margin-top: 8px;
      flex: none;
    }

    .price-cta-row {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(23,24,28,0.08);
    }
    .price-cta-row .btn {
      width: 100%;
      justify-content: center;
    }
    .price-foot {
      font-size: 13px;
      color: var(--ink-mute);
      text-align: center;
      margin-top: 28px;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.5;
    }

    /* ---------- CALCULATOR ---------- */
    .calc {
      padding: 40px 0 110px;
    }
    .calc-shell {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: 0 30px 80px -40px rgba(23, 24, 28, 0.18);
      overflow: hidden;
    }
    .calc-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 0;
    }
    .calc-inputs {
      padding: 44px 44px 36px;
      border-right: 1px solid var(--line);
    }
    .calc-summary {
      padding: 44px 44px 36px;
      background: linear-gradient(160deg, rgba(168, 210, 232, 0.18) 0%, rgba(210, 190, 230, 0.18) 60%, rgba(255, 212, 170, 0.18) 100%);
      display: flex;
      flex-direction: column;
    }
    .calc-eyebrow {
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 10px;
    }
    .calc-title {
      font-family: "Instrument Serif", serif;
      font-size: 28px;
      line-height: 1.15;
      margin: 0 0 28px;
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .calc-field {
      margin-bottom: 26px;
    }
    .calc-field:last-child { margin-bottom: 0; }
    .calc-field-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 10px;
    }
    .calc-label {
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
    }
    .calc-label-sub {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-mute);
      margin-top: 2px;
    }
    .calc-val {
      font-feature-settings: "tnum";
      font-variant-numeric: tabular-nums;
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--line);
      padding: 6px 12px;
      border-radius: 999px;
      min-width: 78px;
      text-align: center;
    }
    .calc-range {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      background: var(--line);
      border-radius: 999px;
      outline: none;
      margin: 8px 0 4px;
    }
    .calc-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--ink);
      cursor: pointer;
      border: 3px solid #fff;
      box-shadow: 0 4px 12px rgba(23, 24, 28, 0.22);
      transition: transform .15s ease;
    }
    .calc-range::-webkit-slider-thumb:hover { transform: scale(1.1); }
    .calc-range::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--ink);
      cursor: pointer;
      border: 3px solid #fff;
      box-shadow: 0 4px 12px rgba(23, 24, 28, 0.22);
    }
    .calc-range-foot {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: var(--ink-mute);
      margin-top: 6px;
    }
    .calc-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      cursor: pointer;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .calc-toggle:hover { border-color: rgba(23, 24, 28, 0.25); }
    .calc-toggle-text {
      font-size: 15px;
      font-weight: 500;
    }
    .calc-toggle-text small {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: var(--ink-mute);
      margin-top: 3px;
    }
    .calc-switch {
      position: relative;
      width: 46px;
      height: 26px;
      background: var(--line);
      border-radius: 999px;
      flex-shrink: 0;
      transition: background .2s ease;
    }
    .calc-switch::after {
      content: "";
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.18);
      transition: transform .2s ease;
    }
    .calc-toggle input,
    .calc-earlybird input { display: none; }
    .calc-toggle input:checked ~ .calc-switch { background: var(--ink); }
    .calc-toggle input:checked ~ .calc-switch::after { transform: translateX(20px); }

    /* Early-bird ribbon inside summary */
    .calc-earlybird {
      background: linear-gradient(135deg, #17181C 0%, #2a2c35 100%);
      color: #fff;
      border-radius: var(--radius);
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 22px;
      cursor: pointer;
    }
    .calc-earlybird-text {
      font-size: 13px;
      line-height: 1.4;
      color: rgba(255,255,255,0.8);
    }
    .calc-earlybird-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
      color: #fff;
    }
    .calc-earlybird-text strong .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-warm);
      margin-right: 8px;
      vertical-align: middle;
      box-shadow: 0 0 0 0 rgba(255, 212, 170, 0.7);
      animation: pulse-glow 2s infinite;
    }
    .calc-earlybird .calc-switch { background: rgba(255,255,255,0.18); }
    .calc-earlybird input:checked ~ .calc-switch { background: var(--accent-warm); }
    .calc-earlybird input:checked ~ .calc-switch::after { transform: translateX(20px); background: var(--ink); }

    .calc-breakdown {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 22px;
    }
    .calc-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      font-size: 14px;
      color: var(--ink-soft);
    }
    .calc-row .calc-row-amt {
      font-variant-numeric: tabular-nums;
      font-weight: 500;
      color: var(--ink);
    }
    .calc-row.calc-row-discount .calc-row-amt { color: #b45309; }
    .calc-divider {
      height: 1px;
      background: rgba(23, 24, 28, 0.1);
      margin: 4px 0;
    }
    .calc-total-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px 24px;
      margin-bottom: 18px;
    }
    .calc-total-label {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }
    .calc-total-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-top: 6px;
    }
    .calc-total-value {
      font-family: "Instrument Serif", serif;
      font-size: 44px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.02em;
      font-variant-numeric: tabular-nums;
    }
    .calc-total-period {
      font-size: 14px;
      color: var(--ink-mute);
    }
    .calc-total-strike {
      font-size: 14px;
      color: var(--ink-mute);
      text-decoration: line-through;
      margin-top: 6px;
      font-variant-numeric: tabular-nums;
      min-height: 18px;
    }
    .calc-onetime {
      font-size: 13px;
      color: var(--ink-soft);
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px dashed rgba(23, 24, 28, 0.12);
      display: flex;
      justify-content: space-between;
    }
    .calc-onetime.hidden { display: none; }
    .calc-onetime-amt {
      font-variant-numeric: tabular-nums;
      font-weight: 600;
      color: var(--ink);
    }
    .calc-cta {
      width: 100%;
      justify-content: center;
    }
    .calc-foot {
      font-size: 12px;
      color: var(--ink-mute);
      text-align: center;
      margin-top: 14px;
      line-height: 1.5;
    }

    /* ---------- FAQ ---------- */
    .faq {
      padding: 110px 0;
    }
    .faq-list {
      max-width: 780px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid rgba(23, 24, 28, 0.08);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 0;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: "Outfit", sans-serif;
      font-size: 17px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.4;
      transition: color 0.2s ease;
    }
    .faq-question:hover { color: var(--ink-soft); }
    .faq-icon {
      width: 24px;
      height: 24px;
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      font-size: 20px;
      color: var(--ink-mute);
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
      padding: 0 0 0;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 0 24px;
    }
    .faq-answer p {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin: 0;
      max-width: 640px;
    }

    /* ---------- CONTACT ---------- */
    .contact {
      padding: 120px 0;
      text-align: center;
    }
    .contact h2 {
      margin-left: auto;
      margin-right: auto;
    }
    .contact-sub {
      color: var(--ink-soft);
      font-size: 18px;
      max-width: 620px;
      margin: 0 auto 44px;
    }
    .contact-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* WhatsApp button accent */
    .btn-whatsapp {
      background: rgba(37, 211, 102, 0.08);
      color: #1a8c5e;
      border: 1px solid rgba(37, 211, 102, 0.2);
    }
    .btn-whatsapp:hover {
      background: rgba(37, 211, 102, 0.14);
      transform: translateY(-1px);
    }

    /* ---------- FOOTER ---------- */
    footer {
      padding: 60px 0 40px;
      border-top: 1px solid rgba(23, 24, 28, 0.07);
      margin-top: 40px;
    }
    .foot-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      color: var(--ink-mute);
      font-size: 13.5px;
    }
    .foot-inner a { color: var(--ink-soft); }
    .foot-inner a:hover { color: var(--ink); }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 960px) {
      .container { padding-left: 24px; padding-right: 24px; }
      .nav-links { gap: 24px; }
      .nav-links a.nav-link-text { display: none; }
      .nav-toggle { display: flex; }
      .hero { padding: 80px 0 60px; }
      section { padding: 80px 0; }
      .stats-grid { grid-template-columns: 1fr; padding: 28px; }
      .stat { border-right: none; border-bottom: 1px solid rgba(23,24,28,0.06); padding-bottom: 18px; }
      .stat:last-child { border-bottom: none; padding-bottom: 0; }
      .steps { grid-template-columns: 1fr; }
      .video-grid { grid-template-columns: 1fr; gap: 20px; }
      .video-card .video-wrap { max-height: none; }
      .video-featured { grid-template-columns: 1fr; }
      .video-featured .video-meta { padding: 32px 28px 36px; }
      .why-head { grid-template-columns: 1fr; gap: 28px; }
      .chips { grid-template-columns: 1fr !important; }
      .offer { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .price-card { padding: 36px 28px; }
      .price-amount-value { font-size: 38px; }
      .proof-logos { gap: 24px; }
      .features-detailed { padding: 80px 0; }
      .faq { padding: 80px 0; }
    }

    /* Mobile nav overlay */
    @media (max-width: 960px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 86vw);
        height: 100vh;
        background: rgba(247, 248, 251, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(23,24,28,0.06);
        z-index: 100;
      }
      .nav-links.open {
        transform: translateX(0);
      }
      .nav-links.open a.nav-link-text {
        display: block;
        font-size: 18px;
      }
      .nav-toggle {
        z-index: 200;
      }
    }

    /* Tablet refinements (640–960px) */
    @media (min-width: 641px) and (max-width: 960px) {
      .container { padding-left: 32px; padding-right: 32px; }
      .nav-inner { padding-top: 22px; padding-bottom: 22px; }
      .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
      .calc-grid { grid-template-columns: 1fr; }
      .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 32px 28px; }
      .calc-summary { padding: 36px 32px 32px; }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .stat { border-right: 1px solid rgba(23,24,28,0.06); border-bottom: none; padding-bottom: 0; }
      .stat:last-child { border-right: none; }
      .chips { grid-template-columns: repeat(2, 1fr) !important; }
    }

    /* Small mobile (≤640px) */
    @media (max-width: 640px) {
      .container { padding-left: 20px; padding-right: 20px; }
      .hero { padding: 64px 0 48px; }
      section { padding: 64px 0; }
      .features-detailed,
      .faq,
      .pricing { padding: 64px 0; }
      .section-head { margin-bottom: 40px; }
      h1 { font-size: clamp(34px, 9vw, 48px); line-height: 1.1; }
      h2 { font-size: clamp(28px, 7vw, 38px); line-height: 1.15; }
      .hero-sub { font-size: 16px; }
      .hero-ctas { flex-direction: column; gap: 12px; align-items: stretch; }
      .hero-ctas .btn { width: 100%; justify-content: center; }
      .price-card { padding: 28px 22px; }
      .price-amount-value { font-size: 32px; }
      .price-name { font-size: 20px; }
      .pricing-offer { padding: 16px 18px; font-size: 14px; margin-bottom: 28px; }
      .calc-grid { grid-template-columns: 1fr; }
      .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 22px 22px; }
      .calc-summary { padding: 28px 22px 26px; }
      .calc-title { font-size: 24px; }
      .calc-total-value { font-size: 38px; }
      .calc-earlybird { flex-wrap: wrap; }
      .calc { padding: 24px 0 64px; }
      .early-offer { font-size: 13px; padding: 10px 14px; line-height: 1.4; }
      .early-offer a { display: inline-block; margin-top: 2px; }
      .logo { font-size: 16px; gap: 10px; }
      .logo-mark { width: 30px; height: 30px; }
      .logo-tagline { font-size: 10px; }
      .nav-inner { padding-top: 14px; padding-bottom: 14px; }
      .stat-num { font-size: 36px; }
      .price-foot { font-size: 13px; padding: 0 8px; }
      .foot-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
      .price-list li { font-size: 14px; }
    }

    /* Extra-small (≤380px) — iPhone SE class */
    @media (max-width: 380px) {
      .container { padding-left: 16px; padding-right: 16px; }
      h1 { font-size: clamp(30px, 9vw, 38px); }
      .price-card { padding: 24px 18px; }
      .early-offer { font-size: 12px; }
      .logo span:first-child { font-size: 15px; }
    }

    /* Prevent iOS Safari bottom-bar zoom on form fields */
    input, textarea, select { font-size: 16px; }

    /* ============================================
       NAV DROPDOWNS — added for sub-page structure
       ============================================ */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > .nav-dropdown-trigger {
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      font: inherit;
      color: inherit;
      padding: 0;
    }
    .nav-dropdown-trigger .chev {
      font-size: 10px;
      opacity: 0.55;
      transform: translateY(1px);
      transition: transform .15s ease;
    }
    .nav-dropdown:hover .nav-dropdown-trigger .chev,
    .nav-dropdown.open .nav-dropdown-trigger .chev {
      transform: translateY(1px) rotate(180deg);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: 100%;                        /* sit flush against the trigger */
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 280px;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(23, 24, 28, 0.12);
      padding: 10px;
      margin-top: 14px;                 /* visual gap between trigger and menu */
      opacity: 0;
      pointer-events: none;
      transition: opacity .12s ease, transform .14s ease;
      z-index: 60;
    }
    /* Invisible bridge across the visual gap so the cursor never leaves
       the hover area while moving from the trigger down into the menu.
       Without this the gap acts as a "dead zone" that closes the menu. */
    .nav-dropdown-menu::before {
      content: "";
      position: absolute;
      top: -16px;
      left: -8px;
      right: -8px;
      height: 18px;
    }
    /* Belt-and-braces: also extend the trigger's own hover hit-area into
       the gap below it. The pseudo only becomes pointer-active while the
       dropdown is hovered/open so it doesn't steal clicks elsewhere. */
    .nav-dropdown::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      min-width: 280px;
      height: 24px;
      pointer-events: none;
    }
    .nav-dropdown:hover::after,
    .nav-dropdown.open::after {
      pointer-events: auto;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: block;
      padding: 12px 14px;
      border-radius: 10px;
      color: var(--ink);
      font-size: 15px;
      transition: background .15s ease;
    }
    .nav-dropdown-menu a:hover {
      background: rgba(34, 160, 107, 0.08);
    }
    .nav-dropdown-menu a strong {
      display: block;
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 2px;
    }
    .nav-dropdown-menu a span {
      display: block;
      font-size: 13px;
      color: var(--ink-mute);
      line-height: 1.35;
    }

    /* In the mobile drawer, expand dropdowns inline */
    @media (max-width: 960px) {
      .nav-dropdown { width: 100%; }
      .nav-dropdown-trigger { width: 100%; text-align: left; padding: 0 !important; font-size: 18px !important; }
      .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 8px 0 12px 16px;
        margin: 0;
        min-width: 0;
        display: none;
      }
      .nav-dropdown.open .nav-dropdown-menu { display: block; }
      .nav-dropdown-menu a { padding: 8px 0; font-size: 16px; }
      .nav-dropdown-menu a span { display: none; }
    }

    /* ============================================
       SUB-PAGE HERO — used by Features / Solutions / Watch
       ============================================ */
    .page-hero {
      padding: 100px 0 80px;
    }
    .page-hero .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(34,160,107,0.08);
      color: var(--green);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      margin-bottom: 24px;
    }
    .page-hero h1 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(44px, 6vw, 80px);
      line-height: 1.02;
      letter-spacing: -0.015em;
      margin: 0 0 24px;
      max-width: 920px;
      color: var(--ink);
    }
    .page-hero h1 .serif-italic {
      font-style: italic;
      color: var(--ink-soft);
    }
    .page-hero .lede {
      font-size: 21px;
      line-height: 1.5;
      color: var(--ink-soft);
      max-width: 720px;
      margin: 0 0 32px;
    }
    .page-hero .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-weight: 500;
      font-size: 15px;
      transition: transform .15s ease, box-shadow .25s ease;
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(23,24,28,0.18);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(0,0,0,0.08);
      color: var(--ink);
      font-weight: 500;
      font-size: 15px;
      transition: background .15s ease;
    }
    .btn-secondary:hover {
      background: #fff;
    }

    /* Generic content sections used on sub-pages */
    .feature-block {
      padding: 80px 0;
    }
    .feature-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .feature-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 800px) {
      .feature-grid-2,
      .feature-grid-3 { grid-template-columns: 1fr; gap: 20px; }
    }
    .info-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: transform .2s ease, box-shadow .3s ease;
    }
    .info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(23,24,28,0.06);
    }
    .info-card .glyph {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(34,160,107,0.10);
      font-size: 24px;
      margin-bottom: 18px;
    }
    .info-card h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: 24px;
      line-height: 1.2;
      margin: 0 0 10px;
      color: var(--ink);
    }
    .info-card p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--ink-soft);
      margin: 0;
    }
    .info-card ul {
      margin: 12px 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .info-card li {
      font-size: 14px;
      color: var(--ink-soft);
      padding-left: 20px;
      position: relative;
    }
    .info-card li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--green);
      font-weight: 600;
    }

    /* Coming-soon variant of the info card */
    .info-card.soon {
      background: rgba(255,255,255,0.5);
      border-style: dashed;
    }
    .info-card.soon .glyph {
      background: rgba(255, 165, 0, 0.10);
    }
    .info-card.soon::after {
      content: "COMING SOON";
      display: inline-block;
      margin-top: 14px;
      font-size: 11px;
      letter-spacing: 0.16em;
      color: #B5751E;
      font-weight: 600;
    }

    /* Logo strip — used on Tech page for integrations */
    .logo-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    @media (max-width: 800px) {
      .logo-strip { grid-template-columns: repeat(2, 1fr); }
    }
    .logo-chip {
      padding: 18px 16px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      text-align: center;
      font-size: 15px;
      font-weight: 500;
      color: var(--ink-soft);
    }

    /* Banner — small "watch the product" linker on home */
    .banner-watch {
      padding: 60px 0 30px;
    }
    .banner-watch-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      transition: transform .2s ease, box-shadow .3s ease;
    }
    .banner-watch-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(23,24,28,0.08);
    }
    .banner-watch-thumb {
      width: 90px;
      aspect-ratio: 9/16;
      border-radius: 12px;
      overflow: hidden;
      flex-shrink: 0;
      background: #000;
    }
    .banner-watch-thumb img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .banner-watch-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .banner-watch-text .kicker {
      margin: 0;
    }
    .banner-watch-text h3 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: 24px;
      margin: 0;
      color: var(--ink);
    }
    .banner-watch-arrow {
      font-size: 22px;
      color: var(--green);
      transition: transform .15s ease;
    }
    .banner-watch-card:hover .banner-watch-arrow {
      transform: translateX(4px);
    }
    @media (max-width: 600px) {
      .banner-watch-card { flex-direction: row; padding: 20px; gap: 16px; }
      .banner-watch-thumb { width: 60px; }
      .banner-watch-text h3 { font-size: 20px; }
    }

    /* ============================================
       FOOTER — added for multi-page nav
       ============================================ */
    .site-footer {
      padding: 80px 0 40px;
      border-top: 1px solid rgba(0,0,0,0.06);
      margin-top: 80px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    @media (max-width: 800px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
    .footer-brand .logo-text {
      flex-direction: row;
      align-items: baseline;
      gap: 6px;
      font-size: 18px;
    }
    .footer-brand .logo-tagline {
      font-size: 12px;
      color: var(--ink-mute);
    }
    .footer-brand p {
      margin: 16px 0 0;
      font-size: 14px;
      color: var(--ink-soft);
      max-width: 320px;
      line-height: 1.55;
    }
    .footer-col h5 {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin: 0 0 16px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col a {
      font-size: 14px;
      color: var(--ink-soft);
      transition: color .15s ease;
    }
    .footer-col a:hover { color: var(--ink); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid rgba(0,0,0,0.06);
      font-size: 13px;
      color: var(--ink-mute);
    }
    @media (max-width: 600px) {
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }

