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

    :root {
      --wine: #691D33;
      --wine-bright: #9A2D4D;
      --wine-glow: rgba(154, 45, 77, 0.8);
      --teal: #0E6E75;
      --teal-bright: #12919A;
      --teal-glow: rgba(18, 145, 154, 0.7);
      --gold: #C4975A;
      --gold-glow: rgba(196, 151, 90, 0.6);
      --black: #000000;
      --white: #ffffff;
      --white-90: rgba(255, 255, 255, 0.9);
      --white-70: rgba(255, 255, 255, 0.7);
      --white-50: rgba(255, 255, 255, 0.5);
      --white-30: rgba(255, 255, 255, 0.3);
      --white-15: rgba(255, 255, 255, 0.15);
      --white-10: rgba(255, 255, 255, 0.1);
      --white-05: rgba(255, 255, 255, 0.05);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
      background: var(--black);
      color: var(--white-90);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    #ribbon-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; }

    .grain {
      position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1;
      pointer-events: none; opacity: 0.04;
      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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    .app { position: relative; z-index: 2; }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1rem 2rem;
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      background: rgba(0, 0, 0, 0.6);
      border-bottom: 1px solid var(--white-05);
    }
    .nav-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; text-decoration: none; }
    .nav-logo img { height: 38px; width: auto; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-link {
      color: var(--white-70); font-size: 0.9rem; font-weight: 500;
      cursor: pointer; position: relative; transition: color 0.3s ease; text-decoration: none;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      transform: scaleX(0); transform-origin: left center; transition: transform 0.3s ease;
    }
    .nav-link:hover { color: var(--white); }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-link.active { color: var(--white); }
    .nav-cta {
      background: var(--white); color: var(--black);
      padding: 0.6rem 1.5rem; border-radius: 100px;
      font-weight: 600; font-size: 0.85rem; border: none;
      cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    }
    .nav-cta:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

    .page { display: none; min-height: 100vh; }
    .page.active { display: block; }

    .hero {
      min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      align-items: center; gap: clamp(3rem, 7vw, 7rem);
      padding: 8rem 4rem 4rem; position: relative;
      max-width: 1400px; margin: 0 auto;
    }
    .hero::before {
      content: ''; position: absolute; right: 8%; top: 18%;
      width: min(44vw, 580px); height: min(44vw, 580px);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 56%),
        conic-gradient(from 210deg, transparent, rgba(154,45,77,0.22), transparent, rgba(18,145,154,0.2), transparent);
      filter: blur(0.2px);
      animation: slowSpin 28s linear infinite;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 0.65rem;
      color: var(--teal-bright); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.35rem;
      opacity: 0; animation: fadeUp 1s ease-out 0.1s forwards;
    }
    .hero-kicker::before {
      content: ''; width: 32px; height: 1px;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      box-shadow: 0 0 18px var(--teal-glow);
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 600;
      line-height: 0.98; color: var(--white);
      margin-bottom: 1.5rem; letter-spacing: -0.02em;
      opacity: 0; animation: fadeUp 1s ease-out 0.2s forwards;
    }
    .hero-h1 span {
      display: block;
      color: var(--teal-bright);
      text-shadow: 0 0 50px rgba(18,145,154,0.28);
    }
    .hero-subhead {
      font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--white-70);
      margin-bottom: 1.5rem; line-height: 1.8;
      opacity: 0; animation: fadeUp 1s ease-out 0.4s forwards;
    }
    .hero-hook {
      font-family: 'Lora', serif; font-style: italic;
      font-size: 1.1rem; color: var(--gold);
      margin-bottom: 2.5rem; line-height: 1.7;
      padding-left: 1.5rem; border-left: 2px solid var(--gold-glow);
      opacity: 0; animation: fadeUp 1s ease-out 0.6s forwards;
    }
    .hero-ctas {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 1s ease-out 0.8s forwards;
    }
    .hero-proof {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem; margin-top: 2rem; max-width: 620px;
      opacity: 0; animation: fadeUp 1s ease-out 1s forwards;
    }
    .proof-chip {
      padding: 0.85rem 0.95rem; border: 1px solid var(--white-10);
      border-radius: 999px; background: rgba(255,255,255,0.04);
      color: var(--white-70); font-size: 0.82rem; white-space: nowrap;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    }
    .proof-chip strong { color: var(--white); font-weight: 700; }
    .cta-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--white); color: var(--black);
      padding: 1rem 2rem; border-radius: 100px;
      font-weight: 600; font-size: 0.95rem; border: none;
      cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none;
    }
    .cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2); }
    .cta-secondary {
      color: var(--white-70); padding: 1rem 1.5rem;
      font-weight: 500; font-size: 0.95rem; cursor: pointer;
      border: 1px solid var(--white-15); border-radius: 100px;
      background: transparent; transition: all 0.3s ease; text-decoration: none;
    }
    .cta-secondary:hover { color: var(--white); border-color: var(--white-30); background: var(--white-05); }

    .hero-visual {
      display: flex; align-items: center; justify-content: center;
      opacity: 0; animation: fadeUp 1.2s ease-out 0.4s forwards;
    }
    .glass-heart-wrap { position: relative; width: min(42vw, 500px); height: min(42vw, 500px); min-width: 340px; min-height: 340px; }
    .glass-heart {
      position: absolute; inset: 0; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 40%, rgba(14,110,117,0.1) 70%, rgba(105,29,51,0.12) 100%);
      backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
      border: 1px solid rgba(255,255,255,0.15);
      box-shadow: 0 0 100px var(--wine-glow), 0 0 150px var(--teal-glow), inset 0 0 80px rgba(255,255,255,0.08);
      animation: heartbeat 1.52s ease-in-out infinite;
    }
    .glass-heart::before { content: ''; position: absolute; top: 8%; left: 12%; width: 40%; height: 40%; background: radial-gradient(circle, rgba(255,255,255,0.4), transparent); border-radius: 50%; filter: blur(15px); }
    .glass-heart::after { content: ''; position: absolute; bottom: 12%; right: 8%; width: 50%; height: 50%; background: radial-gradient(circle, var(--teal-glow), transparent); border-radius: 50%; filter: blur(30px); }
    .heart-core {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 90%; height: 90%;
      display: flex; align-items: center; justify-content: center;
    }
    .heart-core img {
      width: 100%; height: 100%; object-fit: contain;
      filter: drop-shadow(0 0 50px var(--wine-glow));
      animation: corePulse 1.52s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(0.98); }
      9% { transform: scale(0.86); }
      17% { transform: scale(1.02); }
      26% { transform: scale(0.9); }
      43% { transform: scale(1.13); }
      62% { transform: scale(1.01); }
      82% { transform: scale(0.98); }
    }
    @keyframes corePulse { 0%, 100% { opacity: 0.92; transform: scale(0.94); } 43% { opacity: 1; transform: scale(1.06); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slowSpin { to { transform: rotate(360deg); } }

    section { padding: 8rem 2rem; position: relative; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em;
      text-transform: uppercase; font-weight: 700; margin-bottom: 1rem;
    }
    .section-divider {
      height: 90px; max-width: 1200px; margin: 0 auto; position: relative;
      background: none;
    }
    .section-divider::before {
      content: ''; position: absolute; inset: 50% 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--wine-glow), var(--teal-glow), transparent);
      box-shadow: 0 0 34px rgba(18,145,154,0.35);
    }
    .section-divider::after {
      content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
      width: 9px; height: 9px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 26px var(--gold-glow);
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
      line-height: 1.2; margin-bottom: 1.5rem; color: var(--white);
    }
    h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; color: var(--white-90); margin-bottom: 1rem; }
    p { color: var(--white-70); line-height: 1.8; }

    .gap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .gap-card {
      background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem;
      position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .gap-card:hover { transform: translateY(-6px); border-color: var(--white-15); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px var(--wine-glow); }
    .gap-card:hover::before { opacity: 1; }
    .gap-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--white); }
    .gap-card p { font-size: 0.95rem; }
    .diagnostic-layout {
      display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }
    .diagnostic-large {
      position: sticky; top: 7rem;
    }
    .diagnostic-large h2 { font-size: clamp(2.45rem, 5vw, 4.8rem); line-height: 0.98; }
    .diagnostic-large p { font-size: 1.08rem; max-width: 460px; }
    .diagnostic-list { display: grid; gap: 1rem; }
    .diagnostic-item {
      display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem;
      padding: 1.35rem; border: 1px solid var(--white-10); border-radius: 20px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(20px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .diagnostic-item:hover {
      transform: translateX(-8px); border-color: rgba(18,145,154,0.45);
      box-shadow: 0 22px 70px rgba(18,145,154,0.16);
    }
    .diagnostic-number {
      font-family: 'Playfair Display', serif; font-size: 2.4rem; line-height: 1;
      color: var(--wine-bright); text-shadow: 0 0 28px var(--wine-glow);
    }
    .diagnostic-item h3 { margin-bottom: 0.4rem; }

    .about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
    .about-image { position: relative; }
    .about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
    .about-image::after { content: ''; position: absolute; inset: -8px; border: 1px solid var(--white-10); border-radius: 20px; pointer-events: none; }
    .about-content p { font-size: 1.05rem; margin-bottom: 1.5rem; }
    .bio-panel { padding: 0; }

    .method-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 600;
      text-align: center;
      margin-bottom: 1rem;
      color: var(--white);
      text-shadow: 0 0 70px rgba(154,45,77,0.36), 0 0 42px rgba(18,145,154,0.28);
    }
    .method-subtitle {
      text-align: center; font-size: 1.2rem; color: var(--white-70);
      margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto;
    }
    .method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .method-stage {
      min-height: 680px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }
    .love-blueprint {
      position: relative; min-height: 560px; border-radius: 34px;
      border: 1px solid var(--white-10); overflow: hidden;
      background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(154,45,77,0.22), transparent 30%),
        radial-gradient(circle at 52% 54%, rgba(18,145,154,0.18), transparent 48%),
        rgba(255,255,255,0.035);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
      box-shadow: inset 0 0 90px rgba(255,255,255,0.035), 0 0 130px rgba(18,145,154,0.16);
      isolation: isolate;
    }
    .love-blueprint::before {
      content: ''; position: absolute; inset: 9%; border-radius: 50%;
      border: 1px dashed rgba(255,255,255,0.16);
      animation: slowSpin 26s linear infinite;
    }
    .love-blueprint::after {
      content: ''; position: absolute; inset: 24%; border-radius: 50%;
      border: 1px solid rgba(196,151,90,0.18);
      box-shadow: 0 0 44px rgba(196,151,90,0.12);
      animation: slowSpin 18s linear infinite reverse;
    }
    .blueprint-heart {
      position: absolute; left: 50%; top: 50%; width: 185px; height: 185px;
      transform: translate(-50%, -50%); z-index: 2;
      border-radius: 50%;
      background: rgba(255,255,255,0.075);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 0 80px var(--wine-glow), inset 0 0 54px rgba(255,255,255,0.07);
      display: grid; place-items: center;
      animation: heartbeat 1.7s ease-in-out infinite;
    }
    .blueprint-heart img { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 0 42px var(--wine-glow)); }
    .blueprint-line {
      position: absolute; left: 50%; top: 50%; width: 36%; height: 1px; z-index: 1;
      background: linear-gradient(90deg, rgba(255,255,255,0.72), rgba(18,145,154,0.2));
      transform-origin: left center;
      box-shadow: 0 0 24px rgba(18,145,154,0.35);
    }
    .blueprint-line:nth-of-type(1) { transform: rotate(-62deg); }
    .blueprint-line:nth-of-type(2) { transform: rotate(14deg); }
    .blueprint-line:nth-of-type(3) { transform: rotate(82deg); }
    .blueprint-line:nth-of-type(4) { transform: rotate(178deg); }
    .blueprint-node {
      position: absolute; z-index: 3; width: 94px; height: 94px; border-radius: 50%;
      display: grid; place-items: center;
      font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(0,0,0,0.38); backdrop-filter: blur(20px);
      box-shadow: 0 0 42px rgba(154,45,77,0.28);
    }
    .blueprint-node small {
      position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%);
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.12em;
      color: var(--white-50); text-transform: uppercase; white-space: nowrap;
    }
    .blueprint-node.learn { left: 28%; top: 10%; }
    .blueprint-node.overcome { right: 7%; top: 39%; }
    .blueprint-node.visualize { left: 49%; bottom: 8%; transform: translateX(-50%); }
    .blueprint-node.engage { left: 7%; top: 43%; }
    .method-copy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .method-card {
      background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem;
      position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .method-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .method-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 50px var(--teal-glow); }
    .method-card:hover::before { opacity: 1; }
    .stage-symbol {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      margin-bottom: 1.35rem;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.14);
      background:
        radial-gradient(circle at 34% 24%, rgba(255,255,255,0.18), transparent 34%),
        linear-gradient(135deg, rgba(154,45,77,0.18), rgba(18,145,154,0.16));
      box-shadow: inset 0 0 34px rgba(255,255,255,0.045), 0 0 34px rgba(18,145,154,0.12);
      color: var(--white);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
    }
    .stage-symbol svg {
      width: 42px;
      height: 42px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 16px rgba(255,255,255,0.22));
    }
    .method-card:hover .stage-symbol {
      transform: translateY(-6px) scale(1.06);
      box-shadow: inset 0 0 40px rgba(255,255,255,0.07), 0 0 44px var(--wine-glow);
    }
    .method-letter {
      font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 600;
      color: var(--wine-bright);
      text-shadow: 0 0 34px rgba(154,45,77,0.34);
      line-height: 1; margin-bottom: 0.65rem;
    }
    .method-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
    .method-desc { font-size: 0.9rem; color: var(--white-70); line-height: 1.7; }

    .lmiq-teaser {
      background: linear-gradient(135deg, rgba(105,29,51,0.15), rgba(14,110,117,0.1));
      border: 1px solid var(--white-10); border-radius: 24px;
      padding: 4rem; text-align: center; margin-top: 3rem;
      box-shadow: 0 0 80px var(--wine-glow);
    }
    .lmiq-teaser h2 { margin-bottom: 1rem; }
    .lmiq-teaser .subhead { font-size: 1.3rem; color: var(--teal-bright); margin-bottom: 2rem; }
    .lmiq-teaser p { max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; }
    .lmiq-price { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); margin-bottom: 0.5rem; }
    .lmiq-price span { font-size: 1.2rem; color: var(--white-50); }
    .lmiq-note { font-size: 0.9rem; color: var(--gold); margin-bottom: 2rem; }
    .dna-grid,
    .split-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
    }
    .split-visual {
      max-width: 1280px; margin: 0 auto;
      padding: clamp(1rem, 3vw, 2rem) 0;
    }
    .dna-card {
      border: 1px solid var(--white-10); border-radius: 28px;
      padding: clamp(2rem, 4vw, 3.25rem);
      background:
        radial-gradient(circle at 20% 10%, rgba(18,145,154,0.18), transparent 36%),
        rgba(255,255,255,0.055);
      backdrop-filter: blur(24px);
    }
    .dna-points { display: grid; gap: 0.9rem; margin: 2rem 0; }
    .dna-point {
      display: flex; gap: 0.85rem; align-items: flex-start;
      color: var(--white-70); font-size: 0.96rem;
    }
    .dna-point::before {
      content: ''; width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; margin-top: 0.55rem;
      background: var(--teal-bright); box-shadow: 0 0 18px var(--teal-glow);
    }
    .blueprint-visual {
      position: relative; min-height: 380px; border-radius: 28px; overflow: hidden;
      border: 1px solid var(--white-10); box-shadow: 0 30px 100px rgba(0,0,0,0.55);
    }
    .blueprint-visual img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; opacity: 0.72; filter: saturate(1.05) contrast(1.08); }
    .blueprint-visual::after {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)),
        radial-gradient(circle at 70% 35%, rgba(18,145,154,0.25), transparent 40%);
    }
    .product-strip {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem;
    }
    .product-strip .gap-card { display: flex; flex-direction: column; min-height: 100%; }
    .price-line { color: var(--gold); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; }
    .audience-band {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem;
    }
    .audience-panel {
      min-height: 420px; border-radius: 28px; overflow: hidden; position: relative;
      border: 1px solid var(--white-10); padding: 2rem; display: flex; align-items: stretch;
      background:
        radial-gradient(circle at 24% 20%, rgba(154,45,77,0.22), transparent 36%),
        radial-gradient(circle at 84% 78%, rgba(18,145,154,0.18), transparent 40%),
        rgba(255,255,255,0.04);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s, box-shadow 0.45s;
    }
    .audience-panel:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.2);
      box-shadow: 0 30px 90px rgba(0,0,0,0.45), 0 0 50px rgba(154,45,77,0.22);
    }
    .audience-panel::before {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.09) 43%, transparent 44% 100%),
        repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,0.035) 47px, transparent 48px);
      opacity: 0.45; pointer-events: none;
    }
    .audience-copy {
      position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end;
      min-height: 100%; max-width: 440px;
    }
    .audience-copy h3 { font-size: clamp(1.6rem, 3vw, 2.45rem); }
    .audience-visual {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.86;
    }
    .connection-orbit {
      position: absolute; width: 230px; height: 230px; right: 8%; top: 12%;
      border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
      box-shadow: inset 0 0 40px rgba(18,145,154,0.12), 0 0 60px rgba(154,45,77,0.18);
      animation: slowSpin 18s linear infinite;
    }
    .connection-orbit::before,
    .connection-orbit::after {
      content: ''; position: absolute; width: 46px; height: 46px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(196,151,90,0.42) 38%, rgba(154,45,77,0.08) 68%, transparent);
      box-shadow: 0 0 34px rgba(196,151,90,0.36);
    }
    .connection-orbit::before { left: 22px; top: 36px; }
    .connection-orbit::after { right: 28px; bottom: 34px; }
    .connection-line {
      position: absolute; left: 28%; right: 18%; top: 45%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--teal-bright), transparent);
      filter: drop-shadow(0 0 14px rgba(18,145,154,0.48));
      transform: rotate(-18deg);
      animation: signalFlow 3.8s ease-in-out infinite;
    }
    .pattern-path {
      position: absolute; width: 74%; height: 190px; right: -4%; top: 18%;
      border: 1px solid rgba(255,255,255,0.1); border-left: 0; border-bottom: 0;
      border-radius: 0 160px 0 0;
      box-shadow: 22px -18px 48px rgba(18,145,154,0.16);
    }
    .pattern-path::before {
      content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
      left: 10%; bottom: -8px; background: var(--wine-bright);
      box-shadow: 0 0 32px var(--wine-glow);
      animation: pathPulse 3.2s ease-in-out infinite;
    }
    .pattern-path::after {
      content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
      right: 10%; top: -9px; background: var(--teal-bright);
      box-shadow: 0 0 32px var(--teal-glow);
      animation: pathPulse 3.2s ease-in-out infinite 0.8s;
    }
    .pattern-marker {
      position: absolute; right: 23%; top: 34%; width: 92px; height: 92px; border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.055);
      box-shadow: inset 0 0 40px rgba(255,255,255,0.04), 0 0 48px rgba(154,45,77,0.16);
      transform: rotate(10deg);
    }
    .pattern-marker::before {
      content: ''; position: absolute; inset: 23px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(196,151,90,0.42), transparent 70%);
    }
    @keyframes slowSpin { to { transform: rotate(360deg); } }
    @keyframes signalFlow {
      0%, 100% { opacity: 0.35; transform: rotate(-18deg) scaleX(0.72); }
      50% { opacity: 1; transform: rotate(-18deg) scaleX(1); }
    }
    @keyframes pathPulse {
      0%, 100% { transform: scale(0.82); opacity: 0.58; }
      50% { transform: scale(1.18); opacity: 1; }
    }

    .resource-system {
      display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(2rem, 5vw, 4rem); align-items: start;
    }
    .resource-rail {
      position: sticky; top: 7rem;
      padding: 2rem; border: 1px solid var(--white-10); border-radius: 28px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(22px);
    }
    .resource-rail p { margin-bottom: 1.5rem; }
    .resource-flow { display: grid; gap: 1rem; counter-reset: resource; }
    .resource-step {
      counter-increment: resource;
      display: grid; grid-template-columns: 84px 1fr auto; gap: 1.25rem; align-items: center;
      padding: 1.4rem; border: 1px solid var(--white-10); border-radius: 22px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(18px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .resource-step:hover {
      transform: translateX(-8px); border-color: rgba(196,151,90,0.38);
      box-shadow: 0 24px 80px rgba(154,45,77,0.18);
    }
    .resource-step::before {
      content: '0' counter(resource);
      font-family: 'Playfair Display', serif; font-size: 2.25rem; color: var(--wine-bright);
      text-shadow: 0 0 28px var(--wine-glow);
    }
    .resource-price { color: var(--gold); font-weight: 800; white-space: nowrap; }
    .etsy-panel {
      margin-top: 1.25rem; padding: 2rem; border-radius: 28px; border: 1px solid rgba(196,151,90,0.22);
      background: radial-gradient(circle at 78% 18%, rgba(196,151,90,0.18), transparent 34%), rgba(255,255,255,0.04);
      display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
    }

    /* Resources Page Styles */
    .resources-hero { padding: 10rem 2rem 4rem; }

    .product-feature-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .product-feature-card.free-card {
      border-color: rgba(18, 145, 154, 0.3);
      background: radial-gradient(circle at 90% 10%, rgba(18,145,154,0.15), transparent 50%), rgba(255,255,255,0.04);
    }
    .product-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      padding: 0.4rem 1rem;
      background: var(--wine-bright);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .product-badge.free {
      background: var(--teal-bright);
    }
    .product-badge.bestseller {
      background: linear-gradient(135deg, var(--gold), #D4A84A);
      color: var(--black);
    }
    .product-feature-content {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .product-feature-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 0.5rem;
    }
    .product-tagline {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--teal-bright);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .product-includes {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }
    .product-includes li {
      padding: 0.6rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--white-70);
      border-bottom: 1px solid var(--white-05);
    }
    .product-includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
      font-weight: 600;
    }
    .product-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .product-feature-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-embed {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(0,0,0,0.4);
      border: 1px solid var(--white-10);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .video-embed:hover {
      border-color: var(--teal-bright);
      background: rgba(18,145,154,0.1);
    }
    .video-play-icon {
      width: 60px;
      height: 60px;
      background: var(--teal-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--white);
    }
    .video-embed span {
      color: var(--white-70);
      font-size: 0.9rem;
    }
    .video-embed-wrapper {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(0,0,0,0.6);
      border: 1px solid var(--white-15);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14,110,117,0.2);
    }
    .video-embed-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .product-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 2.5rem;
      position: relative;
      transition: all 0.4s ease;
    }
    .product-card:hover {
      transform: translateY(-8px);
      border-color: var(--white-15);
      box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }
    .product-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
      padding-right: 3rem;
    }
    .product-card-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--white);
    }
    .product-price {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 600;
    }
    .product-desc {
      color: var(--white-70);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .product-features-list {
      list-style: none;
      margin-bottom: 1.5rem;
    }
    .product-features-list li {
      padding: 0.5rem 0;
      padding-left: 1.25rem;
      position: relative;
      color: var(--white-70);
      font-size: 0.9rem;
    }
    .product-features-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
    }
    .product-value {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1.5rem;
      padding: 0.75rem;
      background: rgba(196,151,90,0.1);
      border-radius: 8px;
    }
    .product-value .was {
      color: var(--white-50);
      text-decoration: line-through;
      font-size: 0.9rem;
    }
    .product-value .save {
      color: var(--gold);
      font-weight: 600;
      font-size: 0.9rem;
    }
    .product-value .best-for {
      color: var(--white-70);
      font-size: 0.85rem;
      font-style: italic;
    }

    .etsy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .etsy-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: all 0.4s ease;
    }
    .etsy-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      box-shadow: 0 20px 50px rgba(196,151,90,0.15);
    }
    .etsy-card-badge {
      position: absolute;
      top: -0.75rem;
      left: 1.5rem;
      padding: 0.3rem 0.8rem;
      background: var(--wine-bright);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .etsy-card-badge.couples {
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
    }
    .etsy-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .etsy-card p {
      color: var(--white-70);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .etsy-includes {
      list-style: none;
      margin-bottom: 1rem;
    }
    .etsy-includes li {
      padding: 0.35rem 0;
      padding-left: 1rem;
      position: relative;
      color: var(--white-50);
      font-size: 0.85rem;
    }
    .etsy-includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
      font-size: 0.75rem;
    }
    .etsy-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .lmiq-teaser-card {
      background: linear-gradient(135deg, rgba(154,45,77,0.15), rgba(18,145,154,0.1));
      border: 1px solid var(--white-10);
      border-radius: 30px;
      padding: 4rem;
      text-align: center;
      box-shadow: 0 0 100px rgba(154,45,77,0.15);
    }
    .lmiq-tagline {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--teal-bright);
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }
    .lmiq-price-block {
      margin: 2rem 0;
    }
    .lmiq-price {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--white);
    }
    .lmiq-price span {
      font-size: 1.2rem;
      color: var(--white-50);
    }
    .lmiq-price-note {
      color: var(--gold);
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    .vip-section {
      padding: 6rem 2rem;
      background: radial-gradient(ellipse at center, rgba(196,151,90,0.08), transparent 60%);
    }

    @media (max-width: 1024px) {
      .product-feature-content { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .etsy-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .product-feature-card { padding: 2rem; }
      .lmiq-teaser-card { padding: 2.5rem 1.5rem; }
      .product-ctas { flex-direction: column; }
      .product-ctas .cta-primary, .product-ctas .cta-secondary { width: 100%; text-align: center; }
    }

    .copy-max { max-width: 760px; }
    .lead-copy { font-size: 1.12rem; color: var(--white-78, rgba(255,255,255,0.78)); line-height: 1.85; }
    .text-strong { color: var(--white); }

    .single-portrait {
      position: relative;
      min-height: 560px;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid var(--white-10);
      background: rgba(255,255,255,0.04);
      box-shadow: 0 30px 110px rgba(0,0,0,0.56), 0 0 70px rgba(18,145,154,0.08);
    }
    .single-portrait img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: 50% 18%;
      display: block;
      filter: saturate(1.03) contrast(1.03);
    }
    .single-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.62));
      pointer-events: none;
    }
    .image-safe img { object-fit: contain; background: rgba(0,0,0,0.22); }
    .image-top img { object-position: 50% 14%; }
    .image-center img { object-position: 50% 50%; }
    .image-left img { object-position: 35% 50%; }

    .stage-lab {
      max-width: 1180px;
    }
    .lmiq-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: end;
    }
    .lmiq-hero h2 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.02; }
    .price-card {
      border: 1px solid rgba(196,151,90,0.28);
      border-radius: 30px;
      padding: 2rem;
      background: radial-gradient(circle at 70% 10%, rgba(196,151,90,0.18), transparent 42%), rgba(255,255,255,0.055);
      box-shadow: 0 0 80px rgba(196,151,90,0.12);
    }
    .price-card .price { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--white); line-height: 1; }
    .price-card .price span { font-size: 1.05rem; color: var(--white-50); }
    .tick-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
    .tick-list div { color: var(--white-70); display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.94rem; }
    .tick-list div::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 18px var(--teal-glow); flex: 0 0 auto; margin-top: 0.52rem; }
    .wall-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; margin-top: 2rem; }
    .wall-pill { padding: 1rem; border-radius: 18px; border: 1px solid var(--white-10); background: rgba(255,255,255,0.045); color: var(--white-70); font-size: 0.92rem; }
    .lmiq-app-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .app-cluster {
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 1.5rem;
      background: rgba(255,255,255,0.045);
      backdrop-filter: blur(18px);
    }
    .app-cluster h3 { color: var(--white); }
    .app-cluster ul { margin-left: 1.1rem; color: var(--white-70); line-height: 1.75; }
    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .faq-item { padding: 1.4rem; border-radius: 20px; border: 1px solid var(--white-10); background: rgba(255,255,255,0.04); }
    .faq-item h3 { font-size: 1.05rem; color: var(--gold); }

    .resource-map {
      display: grid;
      grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }
    .resource-choice {
      display: grid;
      grid-template-columns: 90px 1fr minmax(90px, auto);
      gap: 1.25rem;
      align-items: start;
      padding: 1.5rem;
      border-radius: 26px;
      border: 1px solid var(--white-10);
      background: rgba(255,255,255,0.045);
      margin-bottom: 1rem;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .resource-choice:hover {
      transform: translateX(-8px);
      border-color: rgba(196,151,90,0.4);
      box-shadow: 0 24px 80px rgba(154,45,77,0.18);
    }
    .resource-choice .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; line-height: 1; color: var(--wine-bright); text-shadow: 0 0 28px var(--wine-glow); }
    .resource-choice .tag { color: var(--teal-bright); font-weight: 800; white-space: nowrap; }
    .resource-choice ul { margin: 0.85rem 0 0 1.1rem; color: var(--white-70); line-height: 1.7; font-size: 0.94rem; }

    /* Blog Page - 3-Column Pillar Grid */
    .blog-hero {
      padding: 10rem 2rem 4rem;
      text-align: left;
    }
    .blog-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 4.5rem);
      font-weight: 600;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .blog-hero p {
      font-size: 1.25rem;
      color: var(--white-70);
      max-width: 650px;
      line-height: 1.7;
    }
    .blog-hero-image-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 2rem 0;
    }
    .blog-hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--wine-glow);
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 4rem 0;
    }
    .pillar-card {
      position: relative;
      overflow: hidden;
      padding: 2rem;
      border: 1px solid var(--white-10);
      border-radius: 20px;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      min-height: 260px;
      display: flex;
      flex-direction: column;
    }
    .pillar-card .pillar-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 1.25rem;
    }
    .pillar-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-6px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }
    .pillar-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    .pillar-card:hover .pillar-badge {
      transform: scale(1.1);
    }
    .pillar-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.75rem;
      padding-right: 3rem;
      transition: color 0.3s ease;
    }
    .pillar-card:hover h3 {
      color: var(--teal-bright);
    }
    .pillar-card p {
      font-size: 0.9rem;
      color: var(--white-50);
      line-height: 1.65;
      flex-grow: 1;
      margin-bottom: 1.5rem;
    }
    .pillar-card .read-more {
      color: var(--teal-bright);
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    .pillar-card:hover .read-more {
      color: var(--wine-bright);
      transform: translateX(4px);
    }
    .pillar-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pillar-card:hover .pillar-progress {
      width: 100%;
    }
    .blog-cta-panel {
      padding: 4rem;
      border-radius: 24px;
      text-align: center;
      background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
      border: 1px solid var(--white-10);
      backdrop-filter: blur(16px);
      margin-top: 4rem;
    }
    .blog-cta-panel h2 {
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }
    .blog-cta-panel p {
      font-size: 1.1rem;
      color: var(--white-70);
      margin-bottom: 2rem;
    }

    /* Featured Blog Section */
    .featured-blog-section { padding: 6rem 2rem; }
    .featured-blog-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    .featured-blog-card {
      background: var(--white-05);
      border: 1px solid var(--white-10);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .featured-blog-card:hover {
      transform: translateY(-6px);
      border-color: var(--wine-bright);
      box-shadow: 0 25px 60px rgba(154, 45, 77, 0.2);
    }
    .featured-blog-image {
      position: relative;
      height: 280px;
      overflow: hidden;
    }
    .featured-blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .blog-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      color: var(--white);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .featured-blog-content {
      padding: 2rem;
    }
    .featured-blog-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .featured-blog-content p {
      font-size: 0.95rem;
      color: var(--white-70);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .read-more-link {
      color: var(--teal-bright);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .read-more-link:hover { color: var(--wine-bright); }
    .blog-previews {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .blog-preview-card {
      display: flex;
      align-items: stretch;
      gap: 1rem;
      padding: 0;
      background: var(--white-05);
      border: 1px solid var(--white-10);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .blog-preview-card:hover {
      background: var(--white-10);
      border-color: var(--teal-bright);
      transform: translateX(8px);
    }
    .preview-image {
      position: relative;
      width: 100px;
      min-width: 100px;
      overflow: hidden;
    }
    .preview-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .preview-number {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 28px;
      height: 28px;
      min-width: 28px;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .preview-content {
      padding: 1rem 1rem 1rem 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-preview-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .blog-preview-card p {
      font-size: 0.85rem;
      color: var(--white-50);
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .featured-blog-grid { grid-template-columns: 1fr; }
      .blog-previews { flex-direction: row; flex-wrap: wrap; }
      .blog-preview-card { flex: 1 1 calc(50% - 0.5rem); }
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-previews { flex-direction: column; }
      .blog-preview-card { flex: 1 1 100%; }
    }
    @media (max-width: 768px) {
      .pillars-grid { grid-template-columns: 1fr; }
      .blog-hero { padding: 8rem 1.5rem 2rem; text-align: center; }
      .blog-hero p { margin: 0 auto; }
      .blog-cta-panel { padding: 2.5rem 1.5rem; }
    }

    .footer-cta {
      text-align: center; padding: 8rem 2rem;
      background: linear-gradient(180deg, transparent, rgba(105,29,51,0.1));
    }
    .footer-cta h2 { margin-bottom: 1rem; }
    .footer-cta p { font-size: 1.2rem; color: var(--white-70); max-width: 600px; margin: 0 auto 2.5rem; }

    footer {
      padding: 4rem 2rem 2rem; border-top: 1px solid var(--white-05);
      background: rgba(0,0,0,0.5);
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
    .footer-brand img { height: 40px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.9rem; color: var(--white-50); max-width: 280px; line-height: 1.7; }
    .footer-col h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--white); margin-bottom: 1rem; font-size: 0.9rem; }
    .footer-col a { display: block; color: var(--white-50); text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0; transition: color 0.2s; }
    .footer-col a:hover { color: var(--teal-bright); }
    .footer-bottom { padding-top: 2rem; border-top: 1px solid var(--white-05); text-align: center; font-size: 0.85rem; color: var(--white-30); }

    .animate-in { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .animate-in.visible { opacity: 1; transform: translateY(0); }
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 2rem 4rem; }
      .hero-visual { order: -1; margin-bottom: 2rem; }
      .glass-heart-wrap { width: 280px; height: 280px; }
      .hero-hook { border-left: none; padding-left: 0; text-align: center; }
      .hero-ctas { justify-content: center; }
      .method-grid { grid-template-columns: repeat(2, 1fr); }
      .gap-grid { grid-template-columns: 1fr; }
      .diagnostic-layout,
      .method-stage,
      .stage-lab,
      .dna-grid,
      .split-visual,
      .lmiq-hero,
      .resource-map,
      .resource-system,
      .audience-band { grid-template-columns: 1fr; }
      .diagnostic-large { position: static; }
      .resource-rail { position: static; }
      .method-copy-grid,
      .lmiq-app-grid,
      .faq-grid,
      .product-strip { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; text-align: center; }
      .about-image { max-width: 300px; margin: 0 auto; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .hero { padding: 6rem 1.5rem 3rem; }
      h2 { font-size: 1.8rem; }
      .glass-heart-wrap { width: 220px; height: 220px; }
      .hero-proof { grid-template-columns: 1fr; }
      .proof-chip { white-space: normal; }
      .method-grid { grid-template-columns: 1fr; }
      .method-headline { font-size: 3rem; }
      .method-stage { min-height: auto; }
      .love-blueprint { min-height: 440px; }
      .stage-lab { min-height: auto; }
      .single-portrait,
      .single-portrait img { min-height: 430px; }
      .wall-list { grid-template-columns: 1fr; }
      .blueprint-heart { width: 135px; height: 135px; }
      .blueprint-node { width: 68px; height: 68px; font-size: 1.65rem; }
      .blueprint-node small { display: none; }
      .resource-step { grid-template-columns: 1fr; }
      .resource-choice { grid-template-columns: 1fr; }
      .resource-step::before { font-size: 1.7rem; }
      .etsy-panel { grid-template-columns: 1fr; }
      .lmiq-teaser { padding: 2.5rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

    /* LMIQ Waitlist Page Styles */
    :root {
      --pink-highlight: #C75B7A;
      --pink-glow: rgba(199, 91, 122, 0.5);
    }
    .highlight-pink { color: var(--pink-highlight); text-shadow: 0 0 20px var(--pink-glow); }
    .lmiq-kicker { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--teal-bright); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; }
    .lmiq-kicker::before { content: ''; width: 32px; height: 1px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); box-shadow: 0 0 18px var(--teal-glow); }
    .voc-list { text-align: left; max-width: 560px; margin: 0 auto 2rem; padding: 1.75rem 2rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 16px; backdrop-filter: blur(10px); }
    .voc-list p { font-family: 'Lora', serif; font-style: italic; font-size: 1.05rem; color: var(--white-70); margin-bottom: 0.6rem; padding-left: 1rem; border-left: 2px solid var(--wine-bright); }
    .voc-list p:last-child { margin-bottom: 0; }
    .voc-closing { font-family: 'Plus Jakarta Sans', sans-serif !important; font-style: normal !important; font-weight: 600; color: var(--gold) !important; border-left-color: var(--gold) !important; margin-top: 1rem !important; }
    .countdown { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
    .countdown-item { display: flex; flex-direction: column; align-items: center; }
    .countdown-num { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 600; color: var(--white); line-height: 1; min-width: 70px; padding: 0.75rem 1rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; backdrop-filter: blur(10px); text-align: center; }
    .countdown-label { font-size: 0.85rem; color: var(--white-50); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }
    .waitlist-panel { background: var(--white-05); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid var(--white-10); border-radius: 20px; padding: 2.5rem; max-width: 500px; margin: 0 auto; }
    .waitlist-panel h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
    .waitlist-panel > p { font-size: 1.05rem; color: var(--white-70); margin-bottom: 1.5rem; }
    .form-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
    .form-row input { flex: 1; padding: 1.1rem 1.25rem; background: var(--white-05); border: 1px solid var(--white-15); border-radius: 100px; color: var(--white); font-size: 1rem; font-family: inherit; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
    .form-row input::placeholder { color: var(--white-50); }
    .form-row input:focus { border-color: var(--teal-bright); box-shadow: 0 0 0 3px rgba(18,145,154,0.2); }
    .form-note { font-size: 0.9rem; color: var(--white-50); margin-top: 1rem; }
    .proof-band { display: flex; justify-content: center; gap: 2rem; padding: 2rem; margin-top: 3rem; }
    .proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: var(--white-70); }
    .proof-item .dot { width: 8px; height: 8px; background: var(--teal-bright); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .benefit-card { background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .benefit-card:hover { transform: translateY(-8px); border-color: var(--white-15); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px var(--wine-glow); }
    .benefit-card:hover::before { opacity: 1; }
    .benefit-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); border-radius: 12px; margin-bottom: 1.25rem; }
    .benefit-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .benefit-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
    .benefit-card p { font-size: 1.05rem; color: var(--white-70); line-height: 1.7; }
    .wall-section { background: linear-gradient(180deg, transparent, rgba(154,45,77,0.03)); }
    .wall-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
    .wall-card { padding: 1.75rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; backdrop-filter: blur(10px); }
    .wall-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: var(--pink-highlight); margin-bottom: 0.5rem; text-shadow: 0 0 15px var(--pink-glow); }
    .wall-card p { font-size: 1rem; color: var(--white-70); line-height: 1.7; }
    .apps-section { background: linear-gradient(180deg, transparent, rgba(196,151,90,0.05)); padding: 5rem 2rem; }
    .apps-header { text-align: center; margin-bottom: 3.5rem; }
    .apps-header .big-number { font-family: 'Playfair Display', serif; font-size: clamp(5rem, 12vw, 8rem); font-weight: 700; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; display: block; }
    .apps-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin: 0.5rem 0; }
    .apps-header .release-note { font-size: 1.1rem; color: var(--gold); font-weight: 500; }
    .apps-phase { margin-bottom: 3rem; }
    .phase-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
    .phase-badge { padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
    .phase-badge.learn { background: linear-gradient(135deg, var(--wine), var(--wine-bright)); color: var(--white); }
    .phase-badge.overcome { background: linear-gradient(135deg, var(--teal), var(--teal-bright)); color: var(--white); }
    .phase-badge.visualize { background: linear-gradient(135deg, var(--gold), #E8C078); color: var(--black); }
    .phase-badge.engage { background: #7B4B94; color: var(--white); }
    .phase-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white-70); }
    .apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .app-card { background: var(--white-05); border: 1px solid var(--white-10); border-radius: 16px; padding: 1.75rem; backdrop-filter: blur(10px); transition: all 0.3s ease; }
    .app-card:hover { transform: translateY(-5px); border-color: var(--white-15); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
    .app-card .app-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); border-radius: 10px; margin-bottom: 1rem; font-size: 1.25rem; }
    .app-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.5rem; }
    .app-card p { font-size: 0.95rem; color: var(--white-70); line-height: 1.6; }
    .coaches-section { background: linear-gradient(180deg, transparent, rgba(154,45,77,0.05)); padding: 5rem 2rem; }
    .coaches-content { max-width: 800px; margin: 0 auto; }
    .coaches-content .intro { font-size: 1.15rem; color: var(--white-70); text-align: center; margin-bottom: 2.5rem; line-height: 1.8; }
    .coach-feature { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; padding: 1.5rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; }
    .coach-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--wine), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
    .coach-feature h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
    .coach-feature p { font-size: 1rem; color: var(--white-70); line-height: 1.7; }
    .pricing-section { background: linear-gradient(180deg, transparent, rgba(196,151,90,0.08)); padding: 5rem 2rem; }
    .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
    .pricing-card { background: var(--white-05); backdrop-filter: blur(20px); border: 1px solid var(--white-10); border-radius: 20px; padding: 2.5rem; position: relative; }
    .pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 50px rgba(196,151,90,0.2); }
    .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--wine), var(--wine-bright)); color: var(--white); padding: 0.5rem 1.5rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
    .pricing-tier { font-size: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; text-align: center; }
    .pricing-price { text-align: center; margin-bottom: 1.5rem; }
    .pricing-price .amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--white); }
    .pricing-price .period { font-size: 1.1rem; color: var(--white-50); }
    .pricing-note { text-align: center; font-size: 0.95rem; color: var(--pink-highlight); margin-bottom: 1.5rem; }
    .pricing-features { list-style: none; margin-bottom: 2rem; }
    .pricing-features li { padding: 0.6rem 0; padding-left: 1.75rem; position: relative; font-size: 1rem; color: var(--white-70); }
    .pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-bright); font-weight: bold; }
    .pricing-bonus { margin-top: 1.5rem; padding: 1.25rem; background: linear-gradient(135deg, rgba(196,151,90,0.15), rgba(196,151,90,0.08)); border: 1px solid var(--gold); border-radius: 12px; }
    .pricing-bonus .bonus-title { font-weight: 700; color: var(--gold); font-size: 0.95rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .pricing-bonus .bonus-item { font-size: 0.95rem; color: var(--white-90); margin-bottom: 0.5rem; line-height: 1.6; }
    .pricing-excluded { margin-top: 1.5rem; padding: 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid var(--white-15); border-radius: 12px; }
    .pricing-excluded .excluded-title { font-weight: 600; color: var(--white-50); font-size: 0.9rem; margin-bottom: 0.75rem; }
    .pricing-excluded .excluded-item { font-size: 0.9rem; color: var(--white-50); margin-bottom: 0.4rem; padding-left: 1.5rem; position: relative; }
    .pricing-excluded .excluded-item::before { content: '✗'; position: absolute; left: 0; color: var(--white-30); }
    @media (max-width: 980px) { .benefits-grid, .apps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } .wall-grid { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; max-width: 450px; } .countdown { gap: 1rem; } .countdown-num { min-width: 55px; font-size: 2rem; padding: 0.6rem 0.8rem; } }
    @media (max-width: 720px) { .waitlist-panel { padding: 1.5rem; } .form-row { flex-direction: column; } .proof-band { flex-direction: column; align-items: center; gap: 1rem; } .phase-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; } .voc-list { padding: 1.25rem 1.5rem; } }

    :root {
      --wine: #691D33;
      --wine-bright: #9A2D4D;
      --wine-glow: rgba(154, 45, 77, 0.8);
      --teal: #0E6E75;
      --teal-bright: #12919A;
      --teal-glow: rgba(18, 145, 154, 0.7);
      --gold: #C4975A;
      --gold-glow: rgba(196, 151, 90, 0.6);
      --black: #000000;
      --white: #ffffff;
      --white-90: rgba(255, 255, 255, 0.9);
      --white-70: rgba(255, 255, 255, 0.7);
      --white-50: rgba(255, 255, 255, 0.5);
      --white-30: rgba(255, 255, 255, 0.3);
      --white-15: rgba(255, 255, 255, 0.15);
      --white-10: rgba(255, 255, 255, 0.1);
      --white-05: rgba(255, 255, 255, 0.05);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
      background: var(--black);
      color: var(--white-90);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    #ribbon-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; }

    .grain {
      position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1;
      pointer-events: none; opacity: 0.04;
      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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    .app { position: relative; z-index: 2; }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1rem 2rem;
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      background: rgba(0, 0, 0, 0.6);
      border-bottom: 1px solid var(--white-05);
    }
    .nav-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; text-decoration: none; }
    .nav-logo img { height: 38px; width: auto; }
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-link {
      color: var(--white-70); font-size: 0.9rem; font-weight: 500;
      cursor: pointer; position: relative; transition: color 0.3s ease; text-decoration: none;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      transform: scaleX(0); transform-origin: left center; transition: transform 0.3s ease;
    }
    .nav-link:hover { color: var(--white); }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-link.active { color: var(--white); }
    .nav-cta {
      background: var(--white); color: var(--black);
      padding: 0.6rem 1.5rem; border-radius: 100px;
      font-weight: 600; font-size: 0.85rem; border: none;
      cursor: pointer; transition: all 0.3s ease; text-decoration: none;
    }
    .nav-cta:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

    .page { display: none; min-height: 100vh; }
    .page.active { display: block; }

    .hero {
      min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      align-items: center; gap: clamp(3rem, 7vw, 7rem);
      padding: 8rem 4rem 4rem; position: relative;
      max-width: 1400px; margin: 0 auto;
    }
    .hero::before {
      content: ''; position: absolute; right: 8%; top: 18%;
      width: min(44vw, 580px); height: min(44vw, 580px);
      border: 1px solid rgba(255,255,255,0.08); border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 56%),
        conic-gradient(from 210deg, transparent, rgba(154,45,77,0.22), transparent, rgba(18,145,154,0.2), transparent);
      filter: blur(0.2px);
      animation: slowSpin 28s linear infinite;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 0.65rem;
      color: var(--teal-bright); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.35rem;
      opacity: 0; animation: fadeUp 1s ease-out 0.1s forwards;
    }
    .hero-kicker::before {
      content: ''; width: 32px; height: 1px;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      box-shadow: 0 0 18px var(--teal-glow);
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 600;
      line-height: 0.98; color: var(--white);
      margin-bottom: 1.5rem; letter-spacing: -0.02em;
      opacity: 0; animation: fadeUp 1s ease-out 0.2s forwards;
    }
    .hero-h1 span {
      display: block;
      color: var(--teal-bright);
      text-shadow: 0 0 50px rgba(18,145,154,0.28);
    }
    .hero-subhead {
      font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--white-70);
      margin-bottom: 1.5rem; line-height: 1.8;
      opacity: 0; animation: fadeUp 1s ease-out 0.4s forwards;
    }
    .hero-hook {
      font-family: 'Lora', serif; font-style: italic;
      font-size: 1.1rem; color: var(--gold);
      margin-bottom: 2.5rem; line-height: 1.7;
      padding-left: 1.5rem; border-left: 2px solid var(--gold-glow);
      opacity: 0; animation: fadeUp 1s ease-out 0.6s forwards;
    }
    .hero-ctas {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 1s ease-out 0.8s forwards;
    }
    .hero-proof {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem; margin-top: 2rem; max-width: 620px;
      opacity: 0; animation: fadeUp 1s ease-out 1s forwards;
    }
    .proof-chip {
      padding: 0.85rem 0.95rem; border: 1px solid var(--white-10);
      border-radius: 999px; background: rgba(255,255,255,0.04);
      color: var(--white-70); font-size: 0.82rem; white-space: nowrap;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    }
    .proof-chip strong { color: var(--white); font-weight: 700; }
    .cta-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--white); color: var(--black);
      padding: 1rem 2rem; border-radius: 100px;
      font-weight: 600; font-size: 0.95rem; border: none;
      cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none;
    }
    .cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2); }
    .cta-secondary {
      color: var(--white-70); padding: 1rem 1.5rem;
      font-weight: 500; font-size: 0.95rem; cursor: pointer;
      border: 1px solid var(--white-15); border-radius: 100px;
      background: transparent; transition: all 0.3s ease; text-decoration: none;
    }
    .cta-secondary:hover { color: var(--white); border-color: var(--white-30); background: var(--white-05); }

    .hero-visual {
      display: flex; align-items: center; justify-content: center;
      opacity: 0; animation: fadeUp 1.2s ease-out 0.4s forwards;
    }
    .glass-heart-wrap { position: relative; width: min(42vw, 500px); height: min(42vw, 500px); min-width: 340px; min-height: 340px; }
    .glass-heart {
      position: absolute; inset: 0; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 40%, rgba(14,110,117,0.1) 70%, rgba(105,29,51,0.12) 100%);
      backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
      border: 1px solid rgba(255,255,255,0.15);
      box-shadow: 0 0 100px var(--wine-glow), 0 0 150px var(--teal-glow), inset 0 0 80px rgba(255,255,255,0.08);
      animation: heartbeat 1.52s ease-in-out infinite;
    }
    .glass-heart::before { content: ''; position: absolute; top: 8%; left: 12%; width: 40%; height: 40%; background: radial-gradient(circle, rgba(255,255,255,0.4), transparent); border-radius: 50%; filter: blur(15px); }
    .glass-heart::after { content: ''; position: absolute; bottom: 12%; right: 8%; width: 50%; height: 50%; background: radial-gradient(circle, var(--teal-glow), transparent); border-radius: 50%; filter: blur(30px); }
    .heart-core {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 90%; height: 90%;
      display: flex; align-items: center; justify-content: center;
    }
    .heart-core img {
      width: 100%; height: 100%; object-fit: contain;
      filter: drop-shadow(0 0 50px var(--wine-glow));
      animation: corePulse 1.52s ease-in-out infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(0.98); }
      9% { transform: scale(0.86); }
      17% { transform: scale(1.02); }
      26% { transform: scale(0.9); }
      43% { transform: scale(1.13); }
      62% { transform: scale(1.01); }
      82% { transform: scale(0.98); }
    }
    @keyframes corePulse { 0%, 100% { opacity: 0.92; transform: scale(0.94); } 43% { opacity: 1; transform: scale(1.06); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slowSpin { to { transform: rotate(360deg); } }

    section { padding: 8rem 2rem; position: relative; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label {
      color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em;
      text-transform: uppercase; font-weight: 700; margin-bottom: 1rem;
    }
    .section-divider {
      height: 90px; max-width: 1200px; margin: 0 auto; position: relative;
      background: none;
    }
    .section-divider::before {
      content: ''; position: absolute; inset: 50% 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--wine-glow), var(--teal-glow), transparent);
      box-shadow: 0 0 34px rgba(18,145,154,0.35);
    }
    .section-divider::after {
      content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
      width: 9px; height: 9px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 26px var(--gold-glow);
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
      line-height: 1.2; margin-bottom: 1.5rem; color: var(--white);
    }
    h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; color: var(--white-90); margin-bottom: 1rem; }
    p { color: var(--white-70); line-height: 1.8; }

    .gap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .gap-card {
      background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem;
      position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .gap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .gap-card:hover { transform: translateY(-6px); border-color: var(--white-15); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px var(--wine-glow); }
    .gap-card:hover::before { opacity: 1; }
    .gap-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--white); }
    .gap-card p { font-size: 0.95rem; }
    .diagnostic-layout {
      display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }
    .diagnostic-large {
      position: sticky; top: 7rem;
    }
    .diagnostic-large h2 { font-size: clamp(2.45rem, 5vw, 4.8rem); line-height: 0.98; }
    .diagnostic-large p { font-size: 1.08rem; max-width: 460px; }
    .diagnostic-list { display: grid; gap: 1rem; }
    .diagnostic-item {
      display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem;
      padding: 1.35rem; border: 1px solid var(--white-10); border-radius: 20px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(20px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .diagnostic-item:hover {
      transform: translateX(-8px); border-color: rgba(18,145,154,0.45);
      box-shadow: 0 22px 70px rgba(18,145,154,0.16);
    }
    .diagnostic-number {
      font-family: 'Playfair Display', serif; font-size: 2.4rem; line-height: 1;
      color: var(--wine-bright); text-shadow: 0 0 28px var(--wine-glow);
    }
    .diagnostic-item h3 { margin-bottom: 0.4rem; }

    .about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
    .about-image { position: relative; }
    .about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
    .about-image::after { content: ''; position: absolute; inset: -8px; border: 1px solid var(--white-10); border-radius: 20px; pointer-events: none; }
    .about-content p { font-size: 1.05rem; margin-bottom: 1.5rem; }
    .bio-panel { padding: 0; }

    .method-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 600;
      text-align: center;
      margin-bottom: 1rem;
      color: var(--white);
      text-shadow: 0 0 70px rgba(154,45,77,0.36), 0 0 42px rgba(18,145,154,0.28);
    }
    .method-subtitle {
      text-align: center; font-size: 1.2rem; color: var(--white-70);
      margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto;
    }
    .method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .method-stage {
      min-height: 680px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }
    .love-blueprint {
      position: relative; min-height: 560px; border-radius: 34px;
      border: 1px solid var(--white-10); overflow: hidden;
      background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(154,45,77,0.22), transparent 30%),
        radial-gradient(circle at 52% 54%, rgba(18,145,154,0.18), transparent 48%),
        rgba(255,255,255,0.035);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
      box-shadow: inset 0 0 90px rgba(255,255,255,0.035), 0 0 130px rgba(18,145,154,0.16);
      isolation: isolate;
    }
    .love-blueprint::before {
      content: ''; position: absolute; inset: 9%; border-radius: 50%;
      border: 1px dashed rgba(255,255,255,0.16);
      animation: slowSpin 26s linear infinite;
    }
    .love-blueprint::after {
      content: ''; position: absolute; inset: 24%; border-radius: 50%;
      border: 1px solid rgba(196,151,90,0.18);
      box-shadow: 0 0 44px rgba(196,151,90,0.12);
      animation: slowSpin 18s linear infinite reverse;
    }
    .blueprint-heart {
      position: absolute; left: 50%; top: 50%; width: 185px; height: 185px;
      transform: translate(-50%, -50%); z-index: 2;
      border-radius: 50%;
      background: rgba(255,255,255,0.075);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 0 80px var(--wine-glow), inset 0 0 54px rgba(255,255,255,0.07);
      display: grid; place-items: center;
      animation: heartbeat 1.7s ease-in-out infinite;
    }
    .blueprint-heart img { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 0 42px var(--wine-glow)); }
    .blueprint-line {
      position: absolute; left: 50%; top: 50%; width: 36%; height: 1px; z-index: 1;
      background: linear-gradient(90deg, rgba(255,255,255,0.72), rgba(18,145,154,0.2));
      transform-origin: left center;
      box-shadow: 0 0 24px rgba(18,145,154,0.35);
    }
    .blueprint-line:nth-of-type(1) { transform: rotate(-62deg); }
    .blueprint-line:nth-of-type(2) { transform: rotate(14deg); }
    .blueprint-line:nth-of-type(3) { transform: rotate(82deg); }
    .blueprint-line:nth-of-type(4) { transform: rotate(178deg); }
    .blueprint-node {
      position: absolute; z-index: 3; width: 94px; height: 94px; border-radius: 50%;
      display: grid; place-items: center;
      font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--white);
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(0,0,0,0.38); backdrop-filter: blur(20px);
      box-shadow: 0 0 42px rgba(154,45,77,0.28);
    }
    .blueprint-node small {
      position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%);
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.12em;
      color: var(--white-50); text-transform: uppercase; white-space: nowrap;
    }
    .blueprint-node.learn { left: 28%; top: 10%; }
    .blueprint-node.overcome { right: 7%; top: 39%; }
    .blueprint-node.visualize { left: 49%; bottom: 8%; transform: translateX(-50%); }
    .blueprint-node.engage { left: 7%; top: 43%; }
    .method-copy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .method-card {
      background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem;
      position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .method-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .method-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 50px var(--teal-glow); }
    .method-card:hover::before { opacity: 1; }
    .stage-symbol {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      margin-bottom: 1.35rem;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.14);
      background:
        radial-gradient(circle at 34% 24%, rgba(255,255,255,0.18), transparent 34%),
        linear-gradient(135deg, rgba(154,45,77,0.18), rgba(18,145,154,0.16));
      box-shadow: inset 0 0 34px rgba(255,255,255,0.045), 0 0 34px rgba(18,145,154,0.12);
      color: var(--white);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
    }
    .stage-symbol svg {
      width: 42px;
      height: 42px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 16px rgba(255,255,255,0.22));
    }
    .method-card:hover .stage-symbol {
      transform: translateY(-6px) scale(1.06);
      box-shadow: inset 0 0 40px rgba(255,255,255,0.07), 0 0 44px var(--wine-glow);
    }
    .method-letter {
      font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 600;
      color: var(--wine-bright);
      text-shadow: 0 0 34px rgba(154,45,77,0.34);
      line-height: 1; margin-bottom: 0.65rem;
    }
    .method-title { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
    .method-desc { font-size: 0.9rem; color: var(--white-70); line-height: 1.7; }

    .lmiq-teaser {
      background: linear-gradient(135deg, rgba(105,29,51,0.15), rgba(14,110,117,0.1));
      border: 1px solid var(--white-10); border-radius: 24px;
      padding: 4rem; text-align: center; margin-top: 3rem;
      box-shadow: 0 0 80px var(--wine-glow);
    }
    .lmiq-teaser h2 { margin-bottom: 1rem; }
    .lmiq-teaser .subhead { font-size: 1.3rem; color: var(--teal-bright); margin-bottom: 2rem; }
    .lmiq-teaser p { max-width: 700px; margin: 0 auto 2rem; font-size: 1.1rem; }
    .lmiq-price { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); margin-bottom: 0.5rem; }
    .lmiq-price span { font-size: 1.2rem; color: var(--white-50); }
    .lmiq-note { font-size: 0.9rem; color: var(--gold); margin-bottom: 2rem; }
    .dna-grid,
    .split-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
    }
    .split-visual {
      max-width: 1280px; margin: 0 auto;
      padding: clamp(1rem, 3vw, 2rem) 0;
    }
    .dna-card {
      border: 1px solid var(--white-10); border-radius: 28px;
      padding: clamp(2rem, 4vw, 3.25rem);
      background:
        radial-gradient(circle at 20% 10%, rgba(18,145,154,0.18), transparent 36%),
        rgba(255,255,255,0.055);
      backdrop-filter: blur(24px);
    }
    .dna-points { display: grid; gap: 0.9rem; margin: 2rem 0; }
    .dna-point {
      display: flex; gap: 0.85rem; align-items: flex-start;
      color: var(--white-70); font-size: 0.96rem;
    }
    .dna-point::before {
      content: ''; width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; margin-top: 0.55rem;
      background: var(--teal-bright); box-shadow: 0 0 18px var(--teal-glow);
    }
    .blueprint-visual {
      position: relative; min-height: 380px; border-radius: 28px; overflow: hidden;
      border: 1px solid var(--white-10); box-shadow: 0 30px 100px rgba(0,0,0,0.55);
    }
    .blueprint-visual img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; opacity: 0.72; filter: saturate(1.05) contrast(1.08); }
    .blueprint-visual::after {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)),
        radial-gradient(circle at 70% 35%, rgba(18,145,154,0.25), transparent 40%);
    }
    .product-strip {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem;
    }
    .product-strip .gap-card { display: flex; flex-direction: column; min-height: 100%; }
    .price-line { color: var(--gold); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; }
    .audience-band {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem;
    }
    .audience-panel {
      min-height: 420px; border-radius: 28px; overflow: hidden; position: relative;
      border: 1px solid var(--white-10); padding: 2rem; display: flex; align-items: stretch;
      background:
        radial-gradient(circle at 24% 20%, rgba(154,45,77,0.22), transparent 36%),
        radial-gradient(circle at 84% 78%, rgba(18,145,154,0.18), transparent 40%),
        rgba(255,255,255,0.04);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s, box-shadow 0.45s;
    }
    .audience-panel:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.2);
      box-shadow: 0 30px 90px rgba(0,0,0,0.45), 0 0 50px rgba(154,45,77,0.22);
    }
    .audience-panel::before {
      content: ''; position: absolute; inset: 0;
      background:
        linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,0.09) 43%, transparent 44% 100%),
        repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,0.035) 47px, transparent 48px);
      opacity: 0.45; pointer-events: none;
    }
    .audience-copy {
      position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end;
      min-height: 100%; max-width: 440px;
    }
    .audience-copy h3 { font-size: clamp(1.6rem, 3vw, 2.45rem); }
    .audience-visual {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.86;
    }
    .connection-orbit {
      position: absolute; width: 230px; height: 230px; right: 8%; top: 12%;
      border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
      box-shadow: inset 0 0 40px rgba(18,145,154,0.12), 0 0 60px rgba(154,45,77,0.18);
      animation: slowSpin 18s linear infinite;
    }
    .connection-orbit::before,
    .connection-orbit::after {
      content: ''; position: absolute; width: 46px; height: 46px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(196,151,90,0.42) 38%, rgba(154,45,77,0.08) 68%, transparent);
      box-shadow: 0 0 34px rgba(196,151,90,0.36);
    }
    .connection-orbit::before { left: 22px; top: 36px; }
    .connection-orbit::after { right: 28px; bottom: 34px; }
    .connection-line {
      position: absolute; left: 28%; right: 18%; top: 45%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--teal-bright), transparent);
      filter: drop-shadow(0 0 14px rgba(18,145,154,0.48));
      transform: rotate(-18deg);
      animation: signalFlow 3.8s ease-in-out infinite;
    }
    .pattern-path {
      position: absolute; width: 74%; height: 190px; right: -4%; top: 18%;
      border: 1px solid rgba(255,255,255,0.1); border-left: 0; border-bottom: 0;
      border-radius: 0 160px 0 0;
      box-shadow: 22px -18px 48px rgba(18,145,154,0.16);
    }
    .pattern-path::before {
      content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
      left: 10%; bottom: -8px; background: var(--wine-bright);
      box-shadow: 0 0 32px var(--wine-glow);
      animation: pathPulse 3.2s ease-in-out infinite;
    }
    .pattern-path::after {
      content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
      right: 10%; top: -9px; background: var(--teal-bright);
      box-shadow: 0 0 32px var(--teal-glow);
      animation: pathPulse 3.2s ease-in-out infinite 0.8s;
    }
    .pattern-marker {
      position: absolute; right: 23%; top: 34%; width: 92px; height: 92px; border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.055);
      box-shadow: inset 0 0 40px rgba(255,255,255,0.04), 0 0 48px rgba(154,45,77,0.16);
      transform: rotate(10deg);
    }
    .pattern-marker::before {
      content: ''; position: absolute; inset: 23px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(196,151,90,0.42), transparent 70%);
    }
    @keyframes slowSpin { to { transform: rotate(360deg); } }
    @keyframes signalFlow {
      0%, 100% { opacity: 0.35; transform: rotate(-18deg) scaleX(0.72); }
      50% { opacity: 1; transform: rotate(-18deg) scaleX(1); }
    }
    @keyframes pathPulse {
      0%, 100% { transform: scale(0.82); opacity: 0.58; }
      50% { transform: scale(1.18); opacity: 1; }
    }

    .resource-system {
      display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(2rem, 5vw, 4rem); align-items: start;
    }
    .resource-rail {
      position: sticky; top: 7rem;
      padding: 2rem; border: 1px solid var(--white-10); border-radius: 28px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(22px);
    }
    .resource-rail p { margin-bottom: 1.5rem; }
    .resource-flow { display: grid; gap: 1rem; counter-reset: resource; }
    .resource-step {
      counter-increment: resource;
      display: grid; grid-template-columns: 84px 1fr auto; gap: 1.25rem; align-items: center;
      padding: 1.4rem; border: 1px solid var(--white-10); border-radius: 22px;
      background: rgba(255,255,255,0.045); backdrop-filter: blur(18px);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .resource-step:hover {
      transform: translateX(-8px); border-color: rgba(196,151,90,0.38);
      box-shadow: 0 24px 80px rgba(154,45,77,0.18);
    }
    .resource-step::before {
      content: '0' counter(resource);
      font-family: 'Playfair Display', serif; font-size: 2.25rem; color: var(--wine-bright);
      text-shadow: 0 0 28px var(--wine-glow);
    }
    .resource-price { color: var(--gold); font-weight: 800; white-space: nowrap; }
    .etsy-panel {
      margin-top: 1.25rem; padding: 2rem; border-radius: 28px; border: 1px solid rgba(196,151,90,0.22);
      background: radial-gradient(circle at 78% 18%, rgba(196,151,90,0.18), transparent 34%), rgba(255,255,255,0.04);
      display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
    }

    /* Resources Page Styles */
    .resources-hero { padding: 10rem 2rem 4rem; }

    .product-feature-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }
    .product-feature-card.free-card {
      border-color: rgba(18, 145, 154, 0.3);
      background: radial-gradient(circle at 90% 10%, rgba(18,145,154,0.15), transparent 50%), rgba(255,255,255,0.04);
    }
    .product-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      padding: 0.4rem 1rem;
      background: var(--wine-bright);
      color: var(--white);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .product-badge.free {
      background: var(--teal-bright);
    }
    .product-badge.bestseller {
      background: linear-gradient(135deg, var(--gold), #D4A84A);
      color: var(--black);
    }
    .product-feature-content {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .product-feature-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 0.5rem;
    }
    .product-tagline {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--teal-bright);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .product-includes {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }
    .product-includes li {
      padding: 0.6rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--white-70);
      border-bottom: 1px solid var(--white-05);
    }
    .product-includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
      font-weight: 600;
    }
    .product-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }
    .product-feature-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-embed {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(0,0,0,0.4);
      border: 1px solid var(--white-10);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .video-embed:hover {
      border-color: var(--teal-bright);
      background: rgba(18,145,154,0.1);
    }
    .video-play-icon {
      width: 60px;
      height: 60px;
      background: var(--teal-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--white);
    }
    .video-embed span {
      color: var(--white-70);
      font-size: 0.9rem;
    }
    .video-embed-wrapper {
      width: 100%;
      aspect-ratio: 16/9;
      background: rgba(0,0,0,0.6);
      border: 1px solid var(--white-15);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(14,110,117,0.2);
    }
    .video-embed-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .product-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 2.5rem;
      position: relative;
      transition: all 0.4s ease;
    }
    .product-card-image {
      width: 100%;
      height: 180px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      border: 1px solid var(--white-10);
    }
    .product-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-card-image img {
      transform: scale(1.05);
    }
    .product-card:hover {
      transform: translateY(-8px);
      border-color: var(--white-15);
      box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }
    .product-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
      padding-right: 3rem;
    }
    .product-card-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--white);
    }
    .product-price {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 600;
    }
    .product-desc {
      color: var(--white-70);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }
    .product-features-list {
      list-style: none;
      margin-bottom: 1.5rem;
    }
    .product-features-list li {
      padding: 0.5rem 0;
      padding-left: 1.25rem;
      position: relative;
      color: var(--white-70);
      font-size: 0.9rem;
    }
    .product-features-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
    }
    .product-value {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1.5rem;
      padding: 0.75rem;
      background: rgba(196,151,90,0.1);
      border-radius: 8px;
    }
    .product-value .was {
      color: var(--white-50);
      text-decoration: line-through;
      font-size: 0.9rem;
    }
    .product-value .save {
      color: var(--gold);
      font-weight: 600;
      font-size: 0.9rem;
    }
    .product-value .best-for {
      color: var(--white-70);
      font-size: 0.85rem;
      font-style: italic;
    }

    .etsy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .etsy-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: all 0.4s ease;
    }
    .etsy-card:hover {
      transform: translateY(-6px);
      border-color: var(--gold);
      box-shadow: 0 20px 50px rgba(196,151,90,0.15);
    }
    .etsy-card-badge {
      position: absolute;
      top: -0.75rem;
      left: 1.5rem;
      padding: 0.3rem 0.8rem;
      background: var(--wine-bright);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 100px;
    }
    .etsy-card-badge.couples {
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
    }
    .etsy-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .etsy-card p {
      color: var(--white-70);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .etsy-includes {
      list-style: none;
      margin-bottom: 1rem;
    }
    .etsy-includes li {
      padding: 0.35rem 0;
      padding-left: 1rem;
      position: relative;
      color: var(--white-50);
      font-size: 0.85rem;
    }
    .etsy-includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
      font-size: 0.75rem;
    }
    .etsy-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .lmiq-teaser-card {
      background: linear-gradient(135deg, rgba(154,45,77,0.15), rgba(18,145,154,0.1));
      border: 1px solid var(--white-10);
      border-radius: 30px;
      padding: 4rem;
      text-align: center;
      box-shadow: 0 0 100px rgba(154,45,77,0.15);
    }
    .lmiq-tagline {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--teal-bright);
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }
    .lmiq-price-block {
      margin: 2rem 0;
    }
    .lmiq-price {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--white);
    }
    .lmiq-price span {
      font-size: 1.2rem;
      color: var(--white-50);
    }
    .lmiq-price-note {
      color: var(--gold);
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    .vip-section {
      padding: 6rem 2rem;
      background: radial-gradient(ellipse at center, rgba(196,151,90,0.08), transparent 60%);
    }

    .bundles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin: 0 auto;
    }

    .bundle-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--white-10);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .bundle-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold);
      box-shadow: 0 25px 60px rgba(196,151,90,0.2);
    }

    .bundle-image {
      width: 100%;
      height: 280px;
      overflow: hidden;
      background: rgba(255,255,255,0.02);
      border-bottom: 1px solid var(--white-10);
    }

    .bundle-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .bundle-card:hover .bundle-image img {
      transform: scale(1.05);
    }

    .bundle-content {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .bundle-content .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-bright);
      font-weight: 700;
    }

    .bundle-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .bundle-tagline {
      font-family: 'Lora', serif;
      font-style: italic;
      color: var(--gold);
      font-size: 1rem;
      margin-bottom: 1rem !important;
    }

    .bundle-description {
      color: var(--white-70);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .bundle-includes {
      margin: 1.5rem 0;
      flex: 1;
    }

    .bundle-includes-label {
      color: var(--white-50);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }

    .bundle-includes ul {
      list-style: none;
    }

    .bundle-includes li {
      padding: 0.4rem 0;
      padding-left: 1.2rem;
      position: relative;
      color: var(--white-60);
      font-size: 0.9rem;
    }

    .bundle-includes li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--teal-bright);
      font-weight: 600;
    }

    .bundle-pricing {
      margin: 1.5rem 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--white-10);
    }

    .bundle-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 0.3rem;
      font-weight: 600;
    }

    .bundle-regular {
      color: var(--white-50);
      font-size: 0.85rem;
    }

    @media (max-width: 1024px) {
      .product-feature-content { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .etsy-grid { grid-template-columns: 1fr; }
      .bundles-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .product-feature-card { padding: 2rem; }
      .lmiq-teaser-card { padding: 2.5rem 1.5rem; }
      .product-ctas { flex-direction: column; }
      .product-ctas .cta-primary, .product-ctas .cta-secondary { width: 100%; text-align: center; }
    }

    .copy-max { max-width: 760px; }
    .lead-copy { font-size: 1.12rem; color: var(--white-78, rgba(255,255,255,0.78)); line-height: 1.85; }
    .text-strong { color: var(--white); }

    .single-portrait {
      position: relative;
      min-height: 560px;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid var(--white-10);
      background: rgba(255,255,255,0.04);
      box-shadow: 0 30px 110px rgba(0,0,0,0.56), 0 0 70px rgba(18,145,154,0.08);
    }
    .single-portrait img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: 50% 18%;
      display: block;
      filter: saturate(1.03) contrast(1.03);
    }
    .single-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.62));
      pointer-events: none;
    }
    .image-safe img { object-fit: contain; background: rgba(0,0,0,0.22); }
    .image-top img { object-position: 50% 14%; }
    .image-center img { object-position: 50% 50%; }
    .image-left img { object-position: 35% 50%; }

    .stage-lab {
      max-width: 1180px;
    }
    .lmiq-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: end;
    }
    .lmiq-hero h2 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.02; }
    .price-card {
      border: 1px solid rgba(196,151,90,0.28);
      border-radius: 30px;
      padding: 2rem;
      background: radial-gradient(circle at 70% 10%, rgba(196,151,90,0.18), transparent 42%), rgba(255,255,255,0.055);
      box-shadow: 0 0 80px rgba(196,151,90,0.12);
    }
    .price-card .price { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--white); line-height: 1; }
    .price-card .price span { font-size: 1.05rem; color: var(--white-50); }
    .tick-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
    .tick-list div { color: var(--white-70); display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.94rem; }
    .tick-list div::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-bright); box-shadow: 0 0 18px var(--teal-glow); flex: 0 0 auto; margin-top: 0.52rem; }
    .wall-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.8rem; margin-top: 2rem; }
    .wall-pill { padding: 1rem; border-radius: 18px; border: 1px solid var(--white-10); background: rgba(255,255,255,0.045); color: var(--white-70); font-size: 0.92rem; }
    .lmiq-app-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .app-cluster {
      border: 1px solid var(--white-10);
      border-radius: 24px;
      padding: 1.5rem;
      background: rgba(255,255,255,0.045);
      backdrop-filter: blur(18px);
    }
    .app-cluster h3 { color: var(--white); }
    .app-cluster ul { margin-left: 1.1rem; color: var(--white-70); line-height: 1.75; }
    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .faq-item { padding: 1.4rem; border-radius: 20px; border: 1px solid var(--white-10); background: rgba(255,255,255,0.04); }
    .faq-item h3 { font-size: 1.05rem; color: var(--gold); }

    .resource-map {
      display: grid;
      grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
      gap: clamp(2rem, 5vw, 4rem);
      align-items: start;
    }
    .resource-choice {
      display: grid;
      grid-template-columns: 90px 1fr minmax(90px, auto);
      gap: 1.25rem;
      align-items: start;
      padding: 1.5rem;
      border-radius: 26px;
      border: 1px solid var(--white-10);
      background: rgba(255,255,255,0.045);
      margin-bottom: 1rem;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    }
    .resource-choice:hover {
      transform: translateX(-8px);
      border-color: rgba(196,151,90,0.4);
      box-shadow: 0 24px 80px rgba(154,45,77,0.18);
    }
    .resource-choice .num { font-family: 'Playfair Display', serif; font-size: 2.4rem; line-height: 1; color: var(--wine-bright); text-shadow: 0 0 28px var(--wine-glow); }
    .resource-choice .tag { color: var(--teal-bright); font-weight: 800; white-space: nowrap; }
    .resource-choice ul { margin: 0.85rem 0 0 1.1rem; color: var(--white-70); line-height: 1.7; font-size: 0.94rem; }

    /* Blog Page - 3-Column Pillar Grid */
    .blog-hero {
      padding: 10rem 2rem 4rem;
      text-align: left;
    }
    .blog-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 4.5rem);
      font-weight: 600;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .blog-hero p {
      font-size: 1.25rem;
      color: var(--white-70);
      max-width: 650px;
      line-height: 1.7;
    }
    .blog-hero-image-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 2rem 0;
    }
    .blog-hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--wine-glow);
    }
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding: 4rem 0;
    }
    .pillar-card {
      position: relative;
      overflow: hidden;
      padding: 2rem;
      border: 1px solid var(--white-10);
      border-radius: 20px;
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(12px);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      min-height: 260px;
      display: flex;
      flex-direction: column;
    }
    .pillar-card .pillar-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 1.25rem;
    }
    .pillar-card:hover {
      background: rgba(255,255,255,0.08);
      transform: translateY(-6px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    }
    .pillar-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    .pillar-card:hover .pillar-badge {
      transform: scale(1.1);
    }
    .pillar-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.75rem;
      padding-right: 3rem;
      transition: color 0.3s ease;
    }
    .pillar-card:hover h3 {
      color: var(--teal-bright);
    }
    .pillar-card p {
      font-size: 0.9rem;
      color: var(--white-50);
      line-height: 1.65;
      flex-grow: 1;
      margin-bottom: 1.5rem;
    }
    .pillar-card .read-more {
      color: var(--teal-bright);
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }
    .pillar-card:hover .read-more {
      color: var(--wine-bright);
      transform: translateX(4px);
    }
    .pillar-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0;
      background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright));
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .pillar-card:hover .pillar-progress {
      width: 100%;
    }
    .blog-cta-panel {
      padding: 4rem;
      border-radius: 24px;
      text-align: center;
      background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
      border: 1px solid var(--white-10);
      backdrop-filter: blur(16px);
      margin-top: 4rem;
    }
    .blog-cta-panel h2 {
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }
    .blog-cta-panel p {
      font-size: 1.1rem;
      color: var(--white-70);
      margin-bottom: 2rem;
    }

    /* Featured Blog Section */
    .featured-blog-section { padding: 6rem 2rem; }
    .featured-blog-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 2rem;
      margin-top: 3rem;
    }
    .featured-blog-card {
      background: var(--white-05);
      border: 1px solid var(--white-10);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .featured-blog-card:hover {
      transform: translateY(-6px);
      border-color: var(--wine-bright);
      box-shadow: 0 25px 60px rgba(154, 45, 77, 0.2);
    }
    .featured-blog-image {
      position: relative;
      height: 280px;
      overflow: hidden;
    }
    .featured-blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .blog-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      color: var(--white);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .featured-blog-content {
      padding: 2rem;
    }
    .featured-blog-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .featured-blog-content p {
      font-size: 0.95rem;
      color: var(--white-70);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .read-more-link {
      color: var(--teal-bright);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .read-more-link:hover { color: var(--wine-bright); }
    .blog-previews {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .blog-preview-card {
      display: flex;
      align-items: stretch;
      gap: 1rem;
      padding: 0;
      background: var(--white-05);
      border: 1px solid var(--white-10);
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .blog-preview-card:hover {
      background: var(--white-10);
      border-color: var(--teal-bright);
      transform: translateX(8px);
    }
    .preview-image {
      position: relative;
      width: 100px;
      min-width: 100px;
      overflow: hidden;
    }
    .preview-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .preview-number {
      position: absolute;
      top: 8px;
      left: 8px;
      width: 28px;
      height: 28px;
      min-width: 28px;
      background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .preview-content {
      padding: 1rem 1rem 1rem 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-preview-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .blog-preview-card p {
      font-size: 0.85rem;
      color: var(--white-50);
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .featured-blog-grid { grid-template-columns: 1fr; }
      .blog-previews { flex-direction: row; flex-wrap: wrap; }
      .blog-preview-card { flex: 1 1 calc(50% - 0.5rem); }
      .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .blog-previews { flex-direction: column; }
      .blog-preview-card { flex: 1 1 100%; }
    }
    @media (max-width: 768px) {
      .pillars-grid { grid-template-columns: 1fr; }
      .blog-hero { padding: 8rem 1.5rem 2rem; text-align: center; }
      .blog-hero p { margin: 0 auto; }
      .blog-cta-panel { padding: 2.5rem 1.5rem; }
    }

    .footer-cta {
      text-align: center; padding: 8rem 2rem;
      background: linear-gradient(180deg, transparent, rgba(105,29,51,0.1));
    }
    .footer-cta h2 { margin-bottom: 1rem; }
    .footer-cta p { font-size: 1.2rem; color: var(--white-70); max-width: 600px; margin: 0 auto 2.5rem; }

    footer {
      padding: 4rem 2rem 2rem; border-top: 1px solid var(--white-05);
      background: rgba(0,0,0,0.5);
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
    .footer-brand img { height: 40px; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.9rem; color: var(--white-50); max-width: 280px; line-height: 1.7; }
    .footer-col h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: var(--white); margin-bottom: 1rem; font-size: 0.9rem; }
    .footer-col a { display: block; color: var(--white-50); text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0; transition: color 0.2s; }
    .footer-col a:hover { color: var(--teal-bright); }
    .footer-bottom { padding-top: 2rem; border-top: 1px solid var(--white-05); text-align: center; font-size: 0.85rem; color: var(--white-30); }

    .animate-in { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .animate-in.visible { opacity: 1; transform: translateY(0); }
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 2rem 4rem; }
      .hero-visual { order: -1; margin-bottom: 2rem; }
      .glass-heart-wrap { width: 280px; height: 280px; }
      .hero-hook { border-left: none; padding-left: 0; text-align: center; }
      .hero-ctas { justify-content: center; }
      .method-grid { grid-template-columns: repeat(2, 1fr); }
      .gap-grid { grid-template-columns: 1fr; }
      .diagnostic-layout,
      .method-stage,
      .stage-lab,
      .dna-grid,
      .split-visual,
      .lmiq-hero,
      .resource-map,
      .resource-system,
      .audience-band { grid-template-columns: 1fr; }
      .diagnostic-large { position: static; }
      .resource-rail { position: static; }
      .method-copy-grid,
      .lmiq-app-grid,
      .faq-grid,
      .product-strip { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; text-align: center; }
      .about-image { max-width: 300px; margin: 0 auto; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .hero { padding: 6rem 1.5rem 3rem; }
      h2 { font-size: 1.8rem; }
      .glass-heart-wrap { width: 220px; height: 220px; }
      .hero-proof { grid-template-columns: 1fr; }
      .proof-chip { white-space: normal; }
      .method-grid { grid-template-columns: 1fr; }
      .method-headline { font-size: 3rem; }
      .method-stage { min-height: auto; }
      .love-blueprint { min-height: 440px; }
      .stage-lab { min-height: auto; }
      .single-portrait,
      .single-portrait img { min-height: 430px; }
      .wall-list { grid-template-columns: 1fr; }
      .blueprint-heart { width: 135px; height: 135px; }
      .blueprint-node { width: 68px; height: 68px; font-size: 1.65rem; }
      .blueprint-node small { display: none; }
      .resource-step { grid-template-columns: 1fr; }
      .resource-choice { grid-template-columns: 1fr; }
      .resource-step::before { font-size: 1.7rem; }
      .etsy-panel { grid-template-columns: 1fr; }
      .lmiq-teaser { padding: 2.5rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

    /* LMIQ Waitlist Page Styles */
    :root {
      --pink-highlight: #C75B7A;
      --pink-glow: rgba(199, 91, 122, 0.5);
    }
    .highlight-pink { color: var(--pink-highlight); text-shadow: 0 0 20px var(--pink-glow); }
    .lmiq-kicker { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--teal-bright); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; }
    .lmiq-kicker::before { content: ''; width: 32px; height: 1px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); box-shadow: 0 0 18px var(--teal-glow); }
    .voc-list { text-align: left; max-width: 560px; margin: 0 auto 2rem; padding: 1.75rem 2rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 16px; backdrop-filter: blur(10px); }
    .voc-list p { font-family: 'Lora', serif; font-style: italic; font-size: 1.05rem; color: var(--white-70); margin-bottom: 0.6rem; padding-left: 1rem; border-left: 2px solid var(--wine-bright); }
    .voc-list p:last-child { margin-bottom: 0; }
    .voc-closing { font-family: 'Plus Jakarta Sans', sans-serif !important; font-style: normal !important; font-weight: 600; color: var(--gold) !important; border-left-color: var(--gold) !important; margin-top: 1rem !important; }
    .countdown { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2.5rem; }
    .countdown-item { display: flex; flex-direction: column; align-items: center; }
    .countdown-num { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 600; color: var(--white); line-height: 1; min-width: 70px; padding: 0.75rem 1rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; backdrop-filter: blur(10px); text-align: center; }
    .countdown-label { font-size: 0.85rem; color: var(--white-50); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }
    .waitlist-panel { background: var(--white-05); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid var(--white-10); border-radius: 20px; padding: 2.5rem; max-width: 500px; margin: 0 auto; }
    .waitlist-panel h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
    .waitlist-panel > p { font-size: 1.05rem; color: var(--white-70); margin-bottom: 1.5rem; }
    .form-row { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
    .form-row input { flex: 1; padding: 1.1rem 1.25rem; background: var(--white-05); border: 1px solid var(--white-15); border-radius: 100px; color: var(--white); font-size: 1rem; font-family: inherit; outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
    .form-row input::placeholder { color: var(--white-50); }
    .form-row input:focus { border-color: var(--teal-bright); box-shadow: 0 0 0 3px rgba(18,145,154,0.2); }
    .form-note { font-size: 0.9rem; color: var(--white-50); margin-top: 1rem; }
    .proof-band { display: flex; justify-content: center; gap: 2rem; padding: 2rem; margin-top: 3rem; }
    .proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: var(--white-70); }
    .proof-item .dot { width: 8px; height: 8px; background: var(--teal-bright); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .benefit-card { background: var(--white-05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--white-10); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wine-bright), var(--teal-bright)); opacity: 0; transition: opacity 0.4s ease; }
    .benefit-card:hover { transform: translateY(-8px); border-color: var(--white-15); box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px var(--wine-glow); }
    .benefit-card:hover::before { opacity: 1; }
    .benefit-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); border-radius: 12px; margin-bottom: 1.25rem; }
    .benefit-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .benefit-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
    .benefit-card p { font-size: 1.05rem; color: var(--white-70); line-height: 1.7; }
    .wall-section { background: linear-gradient(180deg, transparent, rgba(154,45,77,0.03)); }
    .wall-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
    .wall-card { padding: 1.75rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; backdrop-filter: blur(10px); }
    .wall-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: var(--pink-highlight); margin-bottom: 0.5rem; text-shadow: 0 0 15px var(--pink-glow); }
    .wall-card p { font-size: 1rem; color: var(--white-70); line-height: 1.7; }
    .apps-section { background: linear-gradient(180deg, transparent, rgba(196,151,90,0.05)); padding: 5rem 2rem; }
    .apps-header { text-align: center; margin-bottom: 3.5rem; }
    .apps-header .big-number { font-family: 'Playfair Display', serif; font-size: clamp(5rem, 12vw, 8rem); font-weight: 700; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; display: block; }
    .apps-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin: 0.5rem 0; }
    .apps-header .release-note { font-size: 1.1rem; color: var(--gold); font-weight: 500; }
    .apps-phase { margin-bottom: 3rem; }
    .phase-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
    .phase-badge { padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
    .phase-badge.learn { background: linear-gradient(135deg, var(--wine), var(--wine-bright)); color: var(--white); }
    .phase-badge.overcome { background: linear-gradient(135deg, var(--teal), var(--teal-bright)); color: var(--white); }
    .phase-badge.visualize { background: linear-gradient(135deg, var(--gold), #E8C078); color: var(--black); }
    .phase-badge.engage { background: #7B4B94; color: var(--white); }
    .phase-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white-70); }
    .apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .app-card { background: var(--white-05); border: 1px solid var(--white-10); border-radius: 16px; padding: 1.75rem; backdrop-filter: blur(10px); transition: all 0.3s ease; }
    .app-card:hover { transform: translateY(-5px); border-color: var(--white-15); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
    .app-card .app-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--wine-bright), var(--teal-bright)); border-radius: 10px; margin-bottom: 1rem; font-size: 1.25rem; }
    .app-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.5rem; }
    .app-card p { font-size: 0.95rem; color: var(--white-70); line-height: 1.6; }
    .coaches-section { background: linear-gradient(180deg, transparent, rgba(154,45,77,0.05)); padding: 5rem 2rem; }
    .coaches-content { max-width: 800px; margin: 0 auto; }
    .coaches-content .intro { font-size: 1.15rem; color: var(--white-70); text-align: center; margin-bottom: 2.5rem; line-height: 1.8; }
    .coach-feature { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; padding: 1.5rem; background: var(--white-05); border: 1px solid var(--white-10); border-radius: 12px; }
    .coach-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--wine), var(--teal)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
    .coach-feature h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
    .coach-feature p { font-size: 1rem; color: var(--white-70); line-height: 1.7; }
    .pricing-section { background: linear-gradient(180deg, transparent, rgba(196,151,90,0.08)); padding: 5rem 2rem; }
    .pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
    .pricing-card { background: var(--white-05); backdrop-filter: blur(20px); border: 1px solid var(--white-10); border-radius: 20px; padding: 2.5rem; position: relative; }
    .pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 50px rgba(196,151,90,0.2); }
    .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--wine), var(--wine-bright)); color: var(--white); padding: 0.5rem 1.5rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
    .pricing-tier { font-size: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; text-align: center; }
    .pricing-price { text-align: center; margin-bottom: 1.5rem; }
    .pricing-price .amount { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--white); }
    .pricing-price .period { font-size: 1.1rem; color: var(--white-50); }
    .pricing-note { text-align: center; font-size: 0.95rem; color: var(--pink-highlight); margin-bottom: 1.5rem; }
    .pricing-features { list-style: none; margin-bottom: 2rem; }
    .pricing-features li { padding: 0.6rem 0; padding-left: 1.75rem; position: relative; font-size: 1rem; color: var(--white-70); }
    .pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-bright); font-weight: bold; }
    .pricing-bonus { margin-top: 1.5rem; padding: 1.25rem; background: linear-gradient(135deg, rgba(196,151,90,0.15), rgba(196,151,90,0.08)); border: 1px solid var(--gold); border-radius: 12px; }
    .pricing-bonus .bonus-title { font-weight: 700; color: var(--gold); font-size: 0.95rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
    .pricing-bonus .bonus-item { font-size: 0.95rem; color: var(--white-90); margin-bottom: 0.5rem; line-height: 1.6; }
    .pricing-excluded { margin-top: 1.5rem; padding: 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid var(--white-15); border-radius: 12px; }
    .pricing-excluded .excluded-title { font-weight: 600; color: var(--white-50); font-size: 0.9rem; margin-bottom: 0.75rem; }
    .pricing-excluded .excluded-item { font-size: 0.9rem; color: var(--white-50); margin-bottom: 0.4rem; padding-left: 1.5rem; position: relative; }
    .pricing-excluded .excluded-item::before { content: '✗'; position: absolute; left: 0; color: var(--white-30); }
    @media (max-width: 980px) { .benefits-grid, .apps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } .wall-grid { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; max-width: 450px; } .countdown { gap: 1rem; } .countdown-num { min-width: 55px; font-size: 2rem; padding: 0.6rem 0.8rem; } }
    @media (max-width: 720px) { .waitlist-panel { padding: 1.5rem; } .form-row { flex-direction: column; } .proof-band { flex-direction: column; align-items: center; gap: 1rem; } .phase-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; } .voc-list { padding: 1.25rem 1.5rem; } }
