    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0d0d0b;
      --bg2: #141412;
      --bg3: #1a1a17;
      --border: #2a2a27;
      --border2: #333330;
      --gold: #c9a84c;
      --gold-dim: rgba(201,168,76,0.1);
      --gold-glow: rgba(201,168,76,0.15);
      --white: #f0ede6;
      --muted: #7a7a72;
      --muted2: #4a4a44;
      --radius: 4px;
      --radius-lg: 8px;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'DM Mono', monospace;
      font-size: 14px;
      line-height: 1.6;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 18px 48px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    nav.scrolled {
      background: rgba(13,13,11,0.95);
      border-color: var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-left { display: flex; align-items: center; gap: 32px; }
    .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-crow { width: 26px; height: 26px; object-fit: contain; mix-blend-mode: screen; }
    .nav-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px; font-weight: 600;
      letter-spacing: 0.04em; color: var(--white);
    }
    .nav-brand-name span { color: var(--gold); }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a {
      font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-login {
      font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color 0.15s; padding: 8px 0;
    }
    .nav-login:hover { color: var(--white); }
    .nav-cta {
      font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
      background: var(--gold); color: #0d0d0b;
      border: none; cursor: pointer; font-family: 'DM Mono', monospace;
      padding: 8px 18px; border-radius: var(--radius);
      transition: opacity 0.15s; text-decoration: none;
    }
    .nav-cta:hover { opacity: 0.85; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      padding: 120px 72px 80px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 30%; left: 0;
      width: 500px; height: 500px;
      background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-left { position: relative; z-index: 1; }
    .hero-eyebrow {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px;
      opacity: 0; animation: rise 0.8s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-eyebrow::before {
      content: ''; width: 28px; height: 1px;
      background: var(--gold); opacity: 0.5;
    }
    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 5.5vw, 80px);
      font-weight: 400; line-height: 1.0;
      color: var(--white); margin-bottom: 24px;
      opacity: 0; animation: rise 0.8s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    h1 em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: 13px; line-height: 1.9;
      color: var(--muted); max-width: 440px;
      margin-bottom: 40px;
      opacity: 0; animation: rise 0.8s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero-form {
      opacity: 0; animation: rise 0.8s 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .form-row {
      display: flex; gap: 0;
      border: 1px solid var(--border2);
      border-radius: var(--radius);
      overflow: hidden; max-width: 420px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-row:focus-within {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px var(--gold-dim);
    }
    input[type="email"] {
      flex: 1; height: 48px;
      background: var(--bg2); border: none;
      color: var(--white); font-family: 'DM Mono', monospace;
      font-size: 13px; padding: 0 16px; outline: none;
    }
    input[type="email"]::placeholder { color: var(--muted2); }
    .form-btn {
      height: 48px; padding: 0 20px;
      background: var(--gold); color: #0d0d0b;
      font-family: 'DM Mono', monospace; font-size: 11px;
      font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      border: none; cursor: pointer; white-space: nowrap;
      transition: opacity 0.15s; flex-shrink: 0;
    }
    .form-btn:hover { opacity: 0.85; }
    .form-btn:disabled { opacity: 0.5; cursor: default; }
    .form-note { font-size: 11px; color: var(--muted2); margin-top: 10px; letter-spacing: 0.04em; }
    .form-checks { display: flex; gap: 20px; margin-top: 14px; }
    .form-check { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .form-check::before { content: '✓'; color: var(--gold); }
    .success-msg { display: none; font-size: 12px; color: var(--gold); margin-top: 10px; letter-spacing: 0.06em; }

    /* HERO RIGHT — screenshot */
    .hero-right {
      position: relative;
      opacity: 0; animation: rise 1s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .screenshot-wrap {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
    }
    .screenshot-wrap img {
      width: 100%; display: block;
      border-radius: 10px;
    }
    .screenshot-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
      pointer-events: none;
    }
    .screenshot-glow {
      position: absolute;
      top: -20px; left: 50%; transform: translateX(-50%);
      width: 80%; height: 40px;
      background: rgba(201,168,76,0.12);
      filter: blur(20px);
      pointer-events: none;
    }

    /* COMMUNITIES */
    .communities {
      padding: 48px 72px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg2);
    }
    .communities-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; gap: 48px;
    }
    .communities-label {
      font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--muted2); white-space: nowrap; flex-shrink: 0;
    }
    .communities-divider {
      width: 1px; height: 32px; background: var(--border); flex-shrink: 0;
    }
    .communities-list {
      display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
    }
    .community-tag {
      font-size: 12px; color: var(--muted);
      letter-spacing: 0.06em;
      transition: color 0.2s;
      display: flex; align-items: center; gap: 6px;
    }
    .community-tag:hover { color: var(--white); }
    .community-tag::before {
      content: 'r/';
      color: var(--gold); opacity: 0.7; font-size: 10px;
    }

    /* STATS */
    .stats-section {
      padding: 80px 72px;
      max-width: 1100px; margin: 0 auto;
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
    }
    .stat {
      padding: 36px 28px;
      border-right: 1px solid var(--border);
      background: var(--bg2); position: relative;
      transition: background 0.2s;
    }
    .stat:last-child { border-right: none; }
    .stat::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .stat:hover::before { opacity: 1; }
    .stat:hover { background: var(--bg3); }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px; font-weight: 600;
      color: var(--gold); line-height: 1; margin-bottom: 8px;
    }
    .stat-label {
      font-size: 11px; color: var(--muted);
      letter-spacing: 0.06em; line-height: 1.6; text-transform: uppercase;
    }

    /* SECTION DIVIDER */
    .section-divider {
      max-width: 1100px; margin: 0 auto;
      padding: 0 72px;
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 72px;
    }
    .section-divider::before, .section-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
    .section-divider span {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--muted2); white-space: nowrap;
    }

    /* FEATURES */
    .features-section {
      max-width: 1100px; margin: 0 auto; padding: 0 72px 80px;
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg); overflow: hidden;
    }
    .feature {
      background: var(--bg2); padding: 36px 32px;
      transition: background 0.2s; position: relative;
    }
    .feature:hover { background: var(--bg3); }
    .feature-num {
      font-size: 10px; letter-spacing: 0.15em;
      color: var(--gold); opacity: 0.6; margin-bottom: 16px; font-weight: 500;
    }
    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px; font-weight: 600;
      color: var(--white); margin-bottom: 10px; line-height: 1.2;
    }
    .feature-desc { font-size: 12px; color: var(--muted); line-height: 1.9; }

    /* PRODUCT SHOT */
    .product-section {
      max-width: 1100px; margin: 0 auto; padding: 0 72px 80px;
    }
    .product-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .product-screenshot {
      border-radius: 10px; overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    }
    .product-screenshot img { width: 100%; display: block; }
    .product-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px; font-weight: 400;
      color: var(--white); margin-bottom: 16px; line-height: 1.1;
    }
    .product-text h2 em { font-style: italic; color: var(--gold); }
    .product-eyebrow {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .product-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); opacity: 0.5; }
    .product-desc { font-size: 12px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
    .product-checks { display: flex; flex-direction: column; gap: 10px; }
    .product-check {
      font-size: 12px; color: var(--muted);
      display: flex; align-items: center; gap: 10px;
    }
    .product-check::before {
      content: '✓'; color: var(--gold);
      font-size: 11px; flex-shrink: 0;
    }

    /* HOW IT WORKS */
    .how-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 72px;
    }
    .how-inner { max-width: 1100px; margin: 0 auto; }
    .how-header { text-align: center; margin-bottom: 64px; }
    .how-eyebrow {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .how-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px; font-weight: 400; color: var(--white);
    }
    .how-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; background: var(--border);
      border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
    }
    .how-step {
      background: var(--bg2); padding: 40px 32px;
      position: relative; transition: background 0.2s;
    }
    .how-step:hover { background: var(--bg3); }
    .how-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px; font-weight: 600;
      color: var(--gold); opacity: 0.15;
      line-height: 1; margin-bottom: 20px;
    }
    .how-step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px; font-weight: 600;
      color: var(--white); margin-bottom: 10px;
    }
    .how-step-desc { font-size: 12px; color: var(--muted); line-height: 1.9; }

    /* PRICING */
    .pricing-section {
      max-width: 1100px; margin: 0 auto; padding: 80px 72px;
    }
    .pricing-header { text-align: center; margin-bottom: 56px; }
    .pricing-eyebrow {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .pricing-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px; font-weight: 400; color: var(--white);
      margin-bottom: 10px;
    }
    .pricing-sub { font-size: 12px; color: var(--muted); }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .pricing-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 36px 28px;
      position: relative; transition: border-color 0.2s;
    }
    .pricing-card:hover { border-color: var(--border2); }
    .pricing-card.featured {
      border-color: rgba(201,168,76,0.4);
      background: var(--bg3);
    }
    .pricing-card.featured::before {
      content: ''; position: absolute;
      top: -1px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .pricing-badge {
      display: inline-block;
      font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
      padding: 3px 8px; border-radius: 2px; margin-bottom: 20px;
    }
    .pricing-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 6px;
    }
    .pricing-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px; font-weight: 400; color: var(--gold);
      line-height: 1; margin-bottom: 4px;
    }
    .pricing-price span { font-size: 18px; color: var(--muted); vertical-align: super; }
    .pricing-period { font-size: 11px; color: var(--muted); margin-bottom: 28px; }
    .pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
    .pricing-features li {
      font-size: 12px; color: var(--muted);
      display: flex; align-items: center; gap: 10px;
    }
    .pricing-features li::before { content: '✓'; color: var(--gold); font-size: 11px; flex-shrink: 0; }
    .pricing-btn {
      width: 100%; padding: 12px;
      font-family: 'DM Mono', monospace; font-size: 11px;
      letter-spacing: 0.08em; text-transform: uppercase;
      border-radius: var(--radius); cursor: pointer;
      transition: opacity 0.15s; border: none;
    }
    .pricing-btn.outline {
      background: transparent; color: var(--muted);
      border: 1px solid var(--border);
    }
    .pricing-btn.outline:hover { border-color: var(--gold); color: var(--gold); }
    .pricing-btn.primary { background: var(--gold); color: #0d0d0b; }
    .pricing-btn.primary:hover { opacity: 0.85; }

    /* QUOTE */
    .quote-section {
      max-width: 1100px; margin: 0 auto; padding: 0 72px 80px;
    }
    .quote-block {
      border-left: 2px solid var(--gold); padding: 28px 36px;
      background: var(--bg2); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px; font-style: italic;
      color: var(--white); line-height: 1.5; margin-bottom: 14px;
    }
    .quote-attr {
      font-size: 11px; color: var(--muted);
      letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* CTA */
    .cta-section {
      max-width: 1100px; margin: 0 auto; padding: 0 72px 100px;
      text-align: center;
    }
    .cta-inner {
      border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 72px 48px; background: var(--bg2); position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: ''; position: absolute;
      top: -1px; left: 10%; right: 10%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .cta-crow {
      width: 60px; height: 60px; object-fit: contain;
      mix-blend-mode: screen; margin-bottom: 24px; opacity: 0.8;
    }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px; font-weight: 400; margin-bottom: 14px; color: var(--white);
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-sub { font-size: 12px; color: var(--muted); margin-bottom: 36px; line-height: 1.9; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-form { max-width: 420px; margin: 0 auto; }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 72px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px; color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }
    .footer-brand img { width: 20px; height: 20px; mix-blend-mode: screen; object-fit: contain; }
    .footer-brand span { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--muted2); letter-spacing: 0.04em; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 11px; color: var(--muted2); text-decoration: none;
      letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* MODAL */
    .modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.85); z-index: 200;
      align-items: center; justify-content: center; padding: 24px;
    }
    .modal-box {
      background: var(--bg2); border: 1px solid var(--border2);
      border-radius: var(--radius-lg); max-width: 480px;
      width: 100%; padding: 36px; position: relative;
    }
    .modal-close {
      position: absolute; top: 16px; right: 16px;
      background: none; border: none; color: var(--muted);
      font-size: 16px; cursor: pointer; padding: 4px 8px;
      transition: color 0.15s;
    }
    .modal-close:hover { color: var(--white); }

    @keyframes rise {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
      .hero-right { display: none; }
      .communities { padding: 40px 24px; }
      .communities-inner { flex-wrap: wrap; gap: 24px; }
      .stats-section, .features-section, .product-section, .pricing-section, .quote-section, .cta-section { padding-left: 24px; padding-right: 24px; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid var(--border); }
      .stat:last-child { border-bottom: none; }
      .features-grid, .how-grid, .pricing-grid { grid-template-columns: 1fr; }
      .product-inner { grid-template-columns: 1fr; }
      .how-section { padding: 60px 24px; }
      footer { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
      .section-divider { padding: 0 24px; }
    }
