    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #f5f0e8;
      --bone: #ede8de;
      --charcoal: #1a1916;
      --warm-dark: #2c2a26;
      --gold: #b8975a;
      --gold-light: #d4b07a;
      --muted: #7a7670;
      --text: #3a3834;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      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.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 24px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(245, 240, 232, 0.96);
      transition: background 0.4s ease, padding 0.4s ease;
    }
    nav.scrolled {
      background: rgba(245, 240, 232, 0.96);
      backdrop-filter: blur(12px);
      padding: 16px 48px;
      box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--charcoal);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--warm-dark);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-buy {
      background: var(--charcoal);
      color: var(--cream) !important;
      padding: 10px 22px;
      border-radius: 2px;
      transition: background 0.2s !important;
    }
    .nav-buy:hover { background: var(--gold) !important; color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,151,90,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 20% 80%, rgba(184,151,90,0.06) 0%, transparent 50%);
    }

    /* Decorative lines */
    .hero-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero-lines::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(184,151,90,0.2), transparent);
    }
    .hero-lines::after {
      content: '';
      position: absolute;
      top: 50%; left: 0;
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, rgba(184,151,90,0.15), transparent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 40px; height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }
    .preview-img{width: 100% !important;}
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 300;
      line-height: 0.9;
      color: var(--cream);
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-subtitle {
      font-size: 0.85rem;
      font-weight: 300;
      letter-spacing: 0.08em;
      color: rgba(245,240,232,0.5);
      margin-bottom: 52px;
      margin-top: 20px;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary-gold {
      background: var(--gold);
      color: var(--charcoal);
      padding: 14px 36px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.25s;
      display: inline-block;
    }
    .btn-primary-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }
    .btn-outline-cream {
      border: 1px solid rgba(245,240,232,0.3);
      color: var(--cream);
      padding: 14px 36px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: border-color 0.25s, color 0.25s, transform 0.25s;
      display: inline-block;
    }
    .btn-outline-cream:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(245,240,232,0.35);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(184,151,90,0.5), transparent);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ── INTRO STRIP ── */
    .intro-strip {
      background: var(--bone);
      padding: 60px 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .stat-item {
      text-align: center;
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }
    .stat-divider {
      width: 1px;
      height: 50px;
      background: rgba(0,0,0,0.12);
    }

    /* ── SECTION HEADERS ── */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.1;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-line {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin: 20px auto 0;
      opacity: 0.6;
    }

    /* ── DEMOS SECTION ── */
    .demos {
      padding: 120px 48px;
      max-width: 1400px;
      margin: 0 auto;
    }

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

    .demo-card {
      position: relative;
      group: true;
      text-decoration: none;
      display: block;
      border-radius: 4px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
      animation: cardFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
    }
    .demo-card:nth-child(1) { animation-delay: 0.1s; }
    .demo-card:nth-child(2) { animation-delay: 0.2s; }
    .demo-card:nth-child(3) { animation-delay: 0.3s; }

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

    .demo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    }

    .demo-card-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: var(--bone);
    }

    /* Simulated page screenshots using CSS */
    .demo-card-image .mock-page {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    /* HOME V1 — Dark Luxury */
    .mock-v1 { background: #1a1916; }
    .mock-v1 .mock-nav {
      height: 44px;
      background: rgba(255,255,255,0.04);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
    }
    .mock-v1 .mock-nav-dot { width: 28px; height: 4px; background: var(--gold); border-radius: 2px; }
    .mock-v1 .mock-nav-links { display: flex; gap: 6px; margin-left: auto; }
    .mock-v1 .mock-nav-links span { width: 20px; height: 2px; background: rgba(255,255,255,0.25); border-radius: 1px; }
    .mock-v1 .mock-hero {
      padding: 28px 16px 16px;
    }
    .mock-v1 .mock-hero-label {
      width: 60px; height: 3px;
      background: var(--gold); opacity: 0.6;
      margin-bottom: 10px; border-radius: 1px;
    }
    .mock-v1 .mock-hero-h1 { width: 75%; height: 18px; background: rgba(255,255,255,0.85); border-radius: 2px; margin-bottom: 6px; }
    .mock-v1 .mock-hero-h2 { width: 55%; height: 18px; background: rgba(184,151,90,0.7); border-radius: 2px; margin-bottom: 14px; }
    .mock-v1 .mock-hero-body { width: 80%; height: 6px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-bottom: 4px; }
    .mock-v1 .mock-hero-body2 { width: 65%; height: 6px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 18px; }
    .mock-v1 .mock-btn { display: inline-block; padding: 6px 16px; background: var(--gold); border-radius: 2px; width: 72px; height: 22px; }
    .mock-v1 .mock-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      padding: 12px 16px;
    }
    .mock-v1 .mock-card-item {
      background: rgba(255,255,255,0.06);
      border-radius: 3px;
      aspect-ratio: 2/3;
    }
    .mock-v1 .mock-card-item:nth-child(2) { background: rgba(184,151,90,0.15); }

    /* HOME V2 — Light Editorial */
    .mock-v2 { background: #f5f0e8; }
    .mock-v2 .mock-nav {
      height: 44px;
      background: #fff;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .mock-v2 .mock-nav-dot { width: 28px; height: 5px; background: var(--charcoal); border-radius: 2px; }
    .mock-v2 .mock-nav-links { display: flex; gap: 6px; margin-left: auto; }
    .mock-v2 .mock-nav-links span { width: 20px; height: 2px; background: rgba(0,0,0,0.2); border-radius: 1px; }
    .mock-v2 .mock-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      height: 220px;
      margin: 12px 16px;
      border-radius: 3px;
      overflow: hidden;
    }
    .mock-v2 .mock-split-left {
      background: var(--charcoal);
      padding: 14px;
    }
    .mock-v2 .mock-split-right {
      background: #d4c8b0;
    }
    .mock-v2 .mock-split-h { width: 70%; height: 10px; background: rgba(255,255,255,0.8); border-radius: 2px; margin-bottom: 5px; }
    .mock-v2 .mock-split-h2 { width: 90%; height: 10px; background: var(--gold); opacity: 0.7; border-radius: 2px; margin-bottom: 10px; }
    .mock-v2 .mock-split-body { width: 85%; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 3px; }
    .mock-v2 .mock-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 8px 16px;
    }
    .mock-v2 .mock-row-item {
      background: rgba(0,0,0,0.08);
      border-radius: 2px;
      aspect-ratio: 1/1.4;
    }
    .mock-v2 .mock-row-item:nth-child(3) { background: var(--gold); opacity: 0.3; }

    /* HOME V3 — Minimal White */
    .mock-v3 { background: #fff; }
    .mock-v3 .mock-nav {
      height: 44px;
      background: transparent;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 8px;
    }
    .mock-v3 .mock-nav-dot { width: 28px; height: 4px; background: var(--charcoal); border-radius: 1px; }
    .mock-v3 .mock-nav-links { display: flex; gap: 6px; margin-left: auto; }
    .mock-v3 .mock-nav-links span { width: 16px; height: 2px; background: rgba(0,0,0,0.15); border-radius: 1px; }
    .mock-v3 .mock-hero-big {
      padding: 16px 16px 10px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .mock-v3 .mock-label { width: 50px; height: 2px; background: var(--gold); margin-bottom: 8px; border-radius: 1px; }
    .mock-v3 .mock-h-huge { width: 90%; height: 30px; background: var(--charcoal); border-radius: 2px; margin-bottom: 4px; opacity: 0.85; }
    .mock-v3 .mock-h-huge2 { width: 60%; height: 30px; background: var(--charcoal); border-radius: 2px; margin-bottom: 12px; opacity: 0.4; }
    .mock-v3 .mock-grid-3 {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 6px;
      padding: 10px 16px;
      height: 180px;
    }
    .mock-v3 .mock-main-img { background: var(--bone); border-radius: 2px; }
    .mock-v3 .mock-side { display: flex; flex-direction: column; gap: 6px; }
    .mock-v3 .mock-side-item { background: var(--bone); border-radius: 2px; flex: 1; }
    .mock-v3 .mock-side-item:first-child { background: var(--charcoal); opacity: 0.8; }
    .mock-v3 .mock-text-row {
      padding: 6px 16px;
      display: flex;
      gap: 8px;
    }
    .mock-v3 .mock-text-line { flex: 1; height: 3px; background: rgba(0,0,0,0.08); border-radius: 1px; }

    /* Hover overlay */
    .demo-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,25,22,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(2px);
    }
    .demo-card:hover .demo-card-overlay { opacity: 1; }
    .overlay-btn {
      background: var(--gold);
      color: var(--charcoal);
      padding: 12px 28px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 2px;
      text-decoration: none;
      transform: translateY(10px);
      transition: transform 0.3s ease;
    }
    .demo-card:hover .overlay-btn { transform: translateY(0); }

    /* Badge */
    .demo-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 2;
    }

    .demo-card-info {
      padding: 20px 22px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(0,0,0,0.05);
    }
    .demo-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--charcoal);
    }
    .demo-card-num {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--muted);
    }
    .demo-arrow {
      width: 28px; height: 28px;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .demo-card:hover .demo-arrow {
      background: var(--gold);
      border-color: var(--gold);
    }
    .demo-arrow svg { transition: stroke 0.2s; }
    .demo-card:hover .demo-arrow svg { stroke: var(--white); }

    /* ── FEATURES SECTION ── */
    .features {
      background: var(--charcoal);
      padding: 120px 48px;
    }
    .features-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .features .section-title { color: var(--cream); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 4px;
      overflow: hidden;
      margin-top: 64px;
    }
    .feature-item {
      padding: 40px 32px;
      background: var(--charcoal);
      transition: background 0.3s;
    }
    .feature-item:hover { background: var(--warm-dark); }
    .feature-icon {
      width: 36px; height: 36px;
      margin-bottom: 20px;
      color: var(--gold);
    }
    .feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 10px;
    }
    .feature-desc {
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(245,240,232,0.45);
    }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: 120px 48px;
      text-align: center;
      background: var(--bone);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: 'FORMA';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 18vw;
      font-weight: 300;
      color: rgba(0,0,0,0.04);
      pointer-events: none;
      letter-spacing: 0.1em;
      white-space: nowrap;
    }
    .cta-section .section-title {
      position: relative;
      margin-bottom: 20px;
    }
    .cta-section p {
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
      position: relative;
    }
    .cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .btn-dark {
      background: var(--charcoal);
      color: var(--cream);
      padding: 15px 40px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, transform 0.25s;
      display: inline-block;
    }
    .btn-dark:hover { background: var(--gold); transform: translateY(-2px); }
    .btn-outline-dark {
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
      padding: 15px 40px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.25s, color 0.25s, transform 0.25s;
      display: inline-block;
    }
    .btn-outline-dark:hover {
      background: var(--charcoal);
      color: var(--cream);
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--cream);
    }
    .footer-copy {
      font-size: 0.72rem;
      font-weight: 300;
      color: rgba(245,240,232,0.35);
      letter-spacing: 0.05em;
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .demos-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      nav { padding: 20px 24px; }
    }
    @media (max-width: 768px) {
      .demos-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .demos { padding: 80px 24px; }
      .features { padding: 80px 24px; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .cta-section { padding: 80px 24px; }
      .intro-strip { gap: 32px; padding: 40px 24px; }
      .stat-divider { display: none; }
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
    }
    @media (max-width: 480px) {
      .features-grid { grid-template-columns: 1fr; }
    }