    /* ======================================
     DESIGN TOKENS
     ====================================== */
    :root {
      --bg-deep: #1C1917;
      --bg-base: #292524;
      --bg-surface: #44403C;
      --bg-hover: #57534E;
      --accent: #E07A5F;
      --accent-muted: #C96B52;
      --accent-soft: rgba(224, 122, 95, 0.12);
      --accent-glow: rgba(224, 122, 95, 0.06);
      --secondary: #81B29A;
      --secondary-soft: rgba(129, 178, 154, 0.12);
      --tertiary: #F2CC8F;
      --tertiary-soft: rgba(242, 204, 143, 0.1);
      --text-primary: #FAFAF9;
      --text-secondary: #D6D3D1;
      --text-muted: #A8A29E;
      --text-faint: #78716C;
      --border: #44403C;
      --border-subtle: #3D3835;
      --font-display: "Fraunces", Georgia, serif;
      --font-body: "DM Sans", system-ui, sans-serif;
      --font-mono: "JetBrains Mono", monospace;
    }

    /* ======================================
     RESET & BASE
     ====================================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg-deep);
      color: var(--text-primary);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ======================================
     GRAIN OVERLAY
     ====================================== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.22;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px 128px;
    }

    /* ======================================
     SCROLLBAR
     ====================================== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--bg-hover);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--text-faint);
    }

    /* ======================================
     ANIMATIONS
     ====================================== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(32px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes pulseGlow {

      0%,
      100% {
        box-shadow: 0 0 40px rgba(224, 122, 95, 0.15);
      }

      50% {
        box-shadow: 0 0 80px rgba(224, 122, 95, 0.3);
      }
    }

    @keyframes drawLine {
      from {
        stroke-dashoffset: 1000;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 {
      transition-delay: 0.08s;
    }

    .reveal-d2 {
      transition-delay: 0.16s;
    }

    .reveal-d3 {
      transition-delay: 0.24s;
    }

    .reveal-d4 {
      transition-delay: 0.32s;
    }

    .reveal-d5 {
      transition-delay: 0.4s;
    }

    .reveal-d6 {
      transition-delay: 0.48s;
    }

    .reveal-d7 {
      transition-delay: 0.56s;
    }

    /* ======================================
     NAV
     ====================================== */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 48px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(28, 25, 23, 0.8);
      backdrop-filter: blur(20px) saturate(1.4);
      -webkit-backdrop-filter: blur(20px) saturate(1.4);
      border-bottom: 1px solid var(--border-subtle);
      transition: background 0.3s;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      flex-shrink: 0;
      animation: pulseGlow 4s ease infinite;
    }

    .nav-wordmark {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: -0.01em;
    }

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

    .nav-cta {
      padding: 8px 20px;
      background: var(--accent);
      color: #fff !important;
      border-radius: 8px;
      font-weight: 500 !important;
      transition: background 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
      background: var(--accent-muted) !important;
      transform: translateY(-1px);
    }

    /* ======================================
     HERO
     ====================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }

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

    .hero-bg-gradient {
      position: absolute;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.4;
    }

    .hero-bg-gradient.g1 {
      top: -200px;
      left: 50%;
      transform: translateX(-60%);
      background: radial-gradient(circle, rgba(224, 122, 95, 0.25) 0%, transparent 70%);
      animation: float 8s ease-in-out infinite;
    }

    .hero-bg-gradient.g2 {
      bottom: -200px;
      right: -100px;
      background: radial-gradient(circle, rgba(129, 178, 154, 0.15) 0%, transparent 70%);
      animation: float 10s ease-in-out infinite 2s;
    }

    .hero-bg-gradient.g3 {
      top: 50%;
      left: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(242, 204, 143, 0.08) 0%, transparent 70%);
      animation: float 12s ease-in-out infinite 4s;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease both;
    }

    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulseGlow 2s ease infinite;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 7vw, 80px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--text-primary);
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease 0.1s both;
    }

    .hero-title em {
      font-style: italic;
      color: var(--accent);
      font-weight: 400;
    }

    .hero-title .line-break {
      display: block;
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto 40px;
      font-weight: 300;
      animation: fadeUp 0.8s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.8s ease 0.3s both;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(224, 122, 95, 0.3);
    }

    .btn-hero-primary:hover {
      background: var(--accent-muted);
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(224, 122, 95, 0.4);
    }

    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: transparent;
      color: var(--text-secondary);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }

    .btn-hero-ghost:hover {
      background: var(--bg-surface);
      border-color: var(--bg-hover);
      transform: translateY(-2px);
    }

    .hero-platforms {
      margin-top: 24px;
      font-size: 13px;
      color: var(--text-faint);
      display: flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
      animation: fadeUp 0.8s ease 0.4s both;
    }

    .hero-platforms svg {
      width: 14px;
      height: 14px;
      stroke: var(--text-faint);
      fill: none;
      stroke-width: 1.5;
    }

    /* App preview */
    .hero-preview {
      position: relative;
      z-index: 1;
      margin-top: 72px;
      width: 100%;
      max-width: 1000px;
      animation: fadeUp 1s ease 0.5s both;
    }

    .preview-window {
      background: var(--bg-base);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 40px 120px rgba(0, 0, 0, 0.3);
    }

    .preview-titlebar {
      height: 40px;
      background: var(--bg-base);
      border-bottom: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
    }

    .preview-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--bg-surface);
    }

    .preview-dot.red {
      background: #EC6A5E;
    }

    .preview-dot.yellow {
      background: #F4BF4F;
    }

    .preview-dot.green {
      background: #61C554;
    }

    .preview-body {
      display: flex;
      height: 480px;
    }

    /* Sidebar mock */
    .preview-sidebar {
      width: 200px;
      flex-shrink: 0;
      background: var(--bg-base);
      border-right: 1px solid var(--border-subtle);
      padding: 14px 0;
      display: flex;
      flex-direction: column;
    }

    .ps-header {
      padding: 0 14px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border-subtle);
      margin-bottom: 8px;
    }

    .ps-logo {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--accent), var(--secondary));
    }

    .ps-vault-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-primary);
    }

    .ps-item {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px;
      font-size: 12px;
      color: var(--text-secondary);
      cursor: default;
    }

    .ps-item.active {
      background: var(--accent-soft);
      color: var(--accent);
    }

    .ps-item svg {
      width: 13px;
      height: 13px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }

    .ps-section {
      font-size: 8px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-faint);
      padding: 10px 14px 3px;
    }

    .ps-sep {
      height: 1px;
      background: var(--border-subtle);
      margin: 4px 12px;
    }

    .ps-file {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 3px 14px 3px 28px;
      font-size: 11px;
      color: var(--text-muted);
      cursor: default;
    }

    .ps-file.active {
      background: var(--accent-soft);
      color: var(--accent);
    }

    .ps-file svg {
      width: 11px;
      height: 11px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
    }

    .ps-badge {
      margin-left: auto;
      background: var(--accent);
      color: #fff;
      font-size: 9px;
      font-weight: 600;
      padding: 1px 5px;
      border-radius: 8px;
    }

    /* Editor mock */
    .preview-editor {
      flex: 1;
      padding: 32px 40px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .pe-breadcrumb {
      font-size: 11px;
      color: var(--text-faint);
      margin-bottom: 24px;
    }

    .pe-breadcrumb .sep {
      opacity: 0.5;
      margin: 0 4px;
    }

    .pe-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .pe-tags {
      display: flex;
      gap: 5px;
      margin-bottom: 20px;
    }

    .pe-tag {
      font-size: 10px;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 3px;
    }

    .pe-tag.accent {
      background: var(--accent-soft);
      color: var(--accent);
    }

    .pe-tag.neutral {
      background: var(--bg-surface);
      color: var(--text-muted);
    }

    .pe-body p {
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .pe-h2 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 400;
      color: var(--text-primary);
      margin: 20px 0 8px;
    }

    .pe-math {
      font-family: var(--font-mono);
      font-size: 11px;
      background: var(--bg-surface);
      color: var(--tertiary);
      padding: 1px 6px;
      border-radius: 3px;
    }

    .pe-wikilink {
      color: var(--accent);
      text-decoration: underline;
      text-decoration-color: rgba(224, 122, 95, 0.3);
      text-underline-offset: 2px;
    }

    /* Right panel mock */
    .preview-right {
      width: 170px;
      flex-shrink: 0;
      border-left: 1px solid var(--border-subtle);
      background: var(--bg-base);
      padding: 14px 10px;
    }

    .pr-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 6px;
    }

    .pr-heading {
      font-size: 11px;
      color: var(--text-muted);
      padding: 3px 6px;
      border-radius: 3px;
    }

    .pr-heading.active {
      color: var(--accent);
    }

    .pr-sep {
      height: 1px;
      background: var(--border-subtle);
      margin: 10px 0;
    }

    .pr-backlink {
      background: var(--bg-surface);
      border-radius: 5px;
      padding: 6px 8px;
      margin-bottom: 5px;
    }

    .pr-backlink-title {
      font-size: 10px;
      color: var(--secondary);
      font-weight: 500;
      margin-bottom: 2px;
    }

    .pr-backlink-snippet {
      font-size: 9px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ======================================
     SECTION: FEATURES OVERVIEW
     ====================================== */
    .section {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--text-primary);
      margin-bottom: 20px;
      max-width: 640px;
    }

    .section-sub {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 520px;
      font-weight: 300;
      margin-bottom: 64px;
    }

    /* Divider line */
    .divider {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .divider-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    /* ======================================
     FEATURE CARDS
     ====================================== */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .feature-card {
      background: var(--bg-base);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 40px;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .feature-card:hover {
      border-color: var(--border);
      transform: translateY(-4px);
    }

    .feature-card.wide {
      grid-column: 1 / -1;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon.accent {
      background: var(--accent-soft);
    }

    .feature-icon.secondary {
      background: var(--secondary-soft);
    }

    .feature-icon.tertiary {
      background: var(--tertiary-soft);
    }

    .feature-icon svg {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .feature-icon.accent svg {
      stroke: var(--accent);
    }

    .feature-icon.secondary svg {
      stroke: var(--secondary);
    }

    .feature-icon.tertiary svg {
      stroke: var(--tertiary);
    }

    .feature-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .feature-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
      font-weight: 300;
      max-width: 400px;
    }

    .feature-visual {
      position: absolute;
      right: 40px;
      bottom: 0;
      opacity: 0.06;
      pointer-events: none;
    }

    .review-flip {
      position: relative;
      margin-top: 20px;
      aspect-ratio: 16 / 10;
      perspective: 1200px;
    }

    .review-flip-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.9s cubic-bezier(0.6, 0.05, 0.2, 1);
    }

    .feature-card:hover .review-flip-inner {
      transform: rotateY(180deg);
    }

    .review-flip-face {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
    }

    .review-flip-face img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .review-flip-face.back {
      transform: rotateY(180deg);
    }

    .review-flip-hint {
      position: absolute;
      top: 10px;
      right: 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-faint);
      background: rgba(28, 25, 23, 0.7);
      padding: 4px 8px;
      border-radius: 4px;
      pointer-events: none;
      backdrop-filter: blur(4px);
    }

    /* ======================================
     SECTION: HOW IT WORKS (WORKFLOW)
     ====================================== */
    .workflow {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      margin-top: 64px;
    }

    .workflow-step {
      position: relative;
    }

    .workflow-number {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 200;
      color: var(--border);
      line-height: 1;
      margin-bottom: 16px;
    }

    .workflow-step-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--text-primary);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .workflow-step-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-muted);
      font-weight: 300;
    }

    .workflow-shot {
      display: block;
      width: 100%;
      height: auto;
      margin-top: 20px;
      border-radius: 10px;
      border: 1px solid var(--border-subtle);
      box-shadow:
        0 20px 50px -20px rgba(0, 0, 0, 0.6),
        0 30px 80px -30px rgba(224, 122, 95, 0.18);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .workflow-step:hover .workflow-shot {
      transform: translateY(-4px);
    }

    .workflow-connector {
      position: absolute;
      top: 36px;
      right: -24px;
      width: 48px;
      height: 2px;
    }

    .workflow-connector line {
      stroke: var(--border);
      stroke-width: 1;
      stroke-dasharray: 4, 4;
    }

    /* ======================================
     SECTION: TESTIMONIAL / SOCIAL PROOF
     ====================================== */
    .proof {
      padding: 120px 48px;
      text-align: center;
      position: relative;
    }

    .proof-inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .proof-quote {
      font-family: var(--font-display);
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 300;
      font-style: italic;
      line-height: 1.4;
      color: var(--text-secondary);
      margin-bottom: 32px;
      letter-spacing: -0.01em;
    }

    .proof-quote em {
      color: var(--accent);
      font-style: italic;
    }

    .proof-attribution {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }

    .proof-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
    }

    .proof-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }

    .proof-role {
      font-size: 13px;
      color: var(--text-faint);
    }

    /* Stats row */
    .stats-row {
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-top: 80px;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 300;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .stat-number .accent {
      color: var(--accent);
    }

    .stat-number .secondary {
      color: var(--secondary);
    }

    .stat-label {
      font-size: 13px;
      color: var(--text-faint);
      margin-top: 4px;
    }

    /* ======================================
     SECTION: CTA
     ====================================== */
    .cta-section {
      padding: 120px 48px 160px;
      text-align: center;
      position: relative;
    }

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

    .cta-bg-gradient {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      bottom: -200px;
      left: 50%;
      transform: translateX(-50%);
      background: radial-gradient(circle, rgba(224, 122, 95, 0.12) 0%, transparent 70%);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text-primary);
      margin-bottom: 20px;
    }

    .cta-sub {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 40px;
      line-height: 1.6;
      font-weight: 300;
    }

    /* Waitlist form */
    .waitlist-form {
      display: flex;
      gap: 10px;
      max-width: 440px;
      margin: 0 auto;
    }

    .waitlist-input {
      flex: 1;
      padding: 14px 18px;
      background: var(--bg-base);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
    }

    .waitlist-input::placeholder {
      color: var(--text-faint);
    }

    .waitlist-input:focus {
      border-color: var(--accent);
    }

    .waitlist-btn {
      padding: 14px 28px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .waitlist-btn:hover {
      background: var(--accent-muted);
      transform: translateY(-1px);
    }

    .waitlist-note {
      font-size: 12px;
      color: var(--text-faint);
      margin-top: 14px;
    }

    /* ======================================
     FOOTER
     ====================================== */
    footer {
      border-top: 1px solid var(--border-subtle);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-logo {
      width: 24px;
      height: 24px;
      border-radius: 6px;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--text-faint);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      list-style: none;
      justify-content: flex-end;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-faint);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    /* ======================================
     COMPARISON TABLE
     ====================================== */
    .comparison {
      padding: 120px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .comp-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin-top: 48px;
    }

    .comp-table th,
    .comp-table td {
      padding: 14px 20px;
      text-align: left;
      border-bottom: 1px solid var(--border-subtle);
      font-size: 14px;
    }

    .comp-table th {
      font-weight: 500;
      color: var(--text-muted);
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .comp-table th.opal-col {
      color: var(--accent);
    }

    .comp-table td:first-child {
      font-weight: 400;
      color: var(--text-secondary);
    }

    .comp-table td {
      color: var(--text-faint);
    }

    .comp-table td.opal-col {
      color: var(--accent);
      font-weight: 500;
    }

    .comp-table .check {
      display: inline-block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      text-align: center;
      line-height: 18px;
      font-size: 11px;
    }

    .check.yes {
      background: var(--accent-soft);
      color: var(--accent);
    }

    .check.no {
      background: var(--bg-surface);
      color: var(--text-faint);
    }

    .check.partial {
      background: var(--tertiary-soft);
      color: var(--tertiary);
    }

    /* ======================================
     PRO FEATURE CARDS
     ====================================== */
    .pro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .pro-card {
      background: var(--bg-base);
      border: 1px solid rgba(242, 204, 143, 0.15);
      border-radius: 16px;
      padding: 40px;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .pro-card:hover {
      border-color: rgba(242, 204, 143, 0.3);
      transform: translateY(-4px);
    }

    .pro-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: radial-gradient(ellipse at top left, rgba(242, 204, 143, 0.04), transparent 60%);
      pointer-events: none;
    }

    .pro-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 40px;
      font-size: 14px;
      font-weight: 500;
      color: var(--tertiary);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .pro-link:hover {
      gap: 10px;
    }

    /* ======================================
     RESPONSIVE
     ====================================== */
    @media (max-width: 900px) {
      nav {
        padding: 0 24px;
      }

      .hero {
        padding: 100px 24px 60px;
      }

      .section,
      .workflow,
      .comparison {
        padding: 80px 24px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .pro-grid {
        grid-template-columns: 1fr;
      }

      .workflow-steps {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .workflow-connector {
        display: none;
      }

      .stats-row {
        gap: 40px;
        flex-wrap: wrap;
      }

      .hero-preview {
        margin-top: 48px;
      }

      .preview-window {
        border-radius: 10px;
      }

      footer {
        flex-direction: column;
        gap: 20px;
      }

      .waitlist-form {
        flex-direction: column;
      }

      .nav-links {
        gap: 20px;
      }
    }

    @media (max-width: 640px) {
      .nav-links .hide-mobile {
        display: none;
      }

      .hero {
        padding: 90px 20px 48px;
      }

      .hero-title {
        font-size: 32px;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
      }

      .hero-sub {
        font-size: 16px;
        margin-bottom: 32px;
      }

      .hero-preview {
        margin-top: 40px;
      }

      .section-title {
        font-size: 32px;
      }

      .stats-row {
        gap: 24px;
      }
    }
