
  /* ===== LIGHT MODE (default) ===== */
  :root,
  [data-theme="light"] {
    --accent: #CE035F;
    --accent-light: #F5E6ED;
    --accent-dark: #A8024C;
    --bg: #F2F2F7;
    --card: #FFFFFF;
    --card-secondary: #F7F7F9;
    --text: #1A1A2E;
    --text-secondary: #8A8A9A;
    --text-disabled: #BBBBCC;
    --border: #E5E5EA;
    --dark: #1A1A2E;
    --dark-card: #252538;
    --success: #34C759;

    /* toggle button */
    --toggle-bg: rgba(255,255,255,0.72);
    --toggle-bg-hover: rgba(255,255,255,0.95);
    --toggle-border: rgba(26,26,46,0.10);
    --toggle-color: #1A1A2E;
    --toggle-shadow: 0 4px 20px -4px rgba(26,26,46,0.14), 0 0 0 1px rgba(26,26,46,0.06);

    --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
    --sans: "Geist", "Sohne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Geist Mono", ui-monospace, SFMono-Regular, monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
  }

  /* ===== DARK MODE ===== */
  [data-theme="dark"] {
    /* Backgrounds */
    --bg: #0f0f17;
    --card: #17171f;
    --card-secondary: #1c1c26;

    /* Text */
    --text: #eeeef5;
    --text-secondary: #7a7a8e;
    --text-disabled: #3a3a50;

    /* Borders */
    --border: #26263a;

    /* Accents — keep pink vibrant but slightly softer */
    --accent: #e8146e;
    --accent-light: rgba(232,20,110,0.12);
    --accent-dark: #b80e58;

    /* Dark section colors get richer in dark mode */
    --dark: #09090e;
    --dark-card: #131320;

    --success: #30d158;

    /* toggle button */
    --toggle-bg: rgba(23,23,31,0.80);
    --toggle-bg-hover: rgba(30,30,42,0.96);
    --toggle-border: rgba(255,255,255,0.10);
    --toggle-color: #eeeef5;
    --toggle-shadow: 0 4px 20px -4px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  }

  *,*::before,*::after{ box-sizing: border-box; }
  html,body{ margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  body{
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    /* Smooth global theme transition */
    transition:
      background-color 0.4s cubic-bezier(0.4,0,0.2,1),
      color 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  /* Smooth transitions on key elements */
  :root *, [data-theme="dark"] * {
    transition-property: background-color, border-color, color, box-shadow, opacity;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
  }
  /* But DON'T transition things that should be instant or have their own animations */
  .glyph, .glyph *, .marquee-track, .pill-btn, .pill-btn *,
  .toggle .slider, svg *, .faq-a, .step-panel {
    transition: none !important;
  }
  /* Restore pill-btn specific transitions */
  .pill-btn { transition: background-position 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important; }
  .pill-btn .arrow { transition: transform 0.25s !important; }
  .toggle .slider { transition: transform 0.35s cubic-bezier(.4,.2,.2,1), width 0.35s cubic-bezier(.4,.2,.2,1) !important; }
  .faq-a { transition: grid-template-rows 0.35s cubic-bezier(.4,.2,.2,1) !important; }
  img{ max-width:100%; display:block; }
  button{ font-family: inherit; cursor: pointer; border: none; }

  /* ---------- SHARED ---------- */
  .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section{ padding: 120px 0; position: relative; }
  @media (max-width: 760px){ .section{ padding: 80px 0; } .container{ padding: 0 20px; } }

  .eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }
  .display{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(44px, 6.2vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
    text-wrap: balance;
  }
  .display em{
    font-style: italic;
    color: var(--accent);
  }
  .section-title{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 16px;
    text-wrap: balance;
  }
  .section-title em{ font-style: italic; color: var(--accent); }
  .lede{
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    text-wrap: pretty;
  }

  .pill-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    background: linear-gradient(to right, #CE035F 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right center;
    border: 2px solid #CE035F;
    color: #CE035F;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .pill-btn:hover{ background-position: left center; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(206,3,95,0.25); }
  .pill-btn .arrow{ transition: transform .25s; }
  .pill-btn:hover .arrow{ transform: translateX(4px); }

  /* Logo (used in footer) */
  .nav-logo-link{ display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
  .nav-logo{ height: 38px; width: auto; display: block; }
  .footer-logo .nav-logo{ filter: brightness(0) invert(1); height: 55px; }

  /* ---------- HERO ---------- */
  .hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px 120px;
    position: relative;
    overflow: hidden;
  }
  .hero-inner{ position: relative; z-index: 2; max-width: 920px; }
  .hero-meta{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px 8px 10px;
    background: var(--card);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: 0 2px 8px -2px rgba(26,26,46,.06);
    margin-bottom: 36px;
  }
  .hero-meta .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(52,199,89,.18); }
  .hero h1{ margin-bottom: 28px; }
  .hero p.sub{
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.5;
    text-wrap: pretty;
  }
  .hero-cta-row{ display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
  .free-tag{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-secondary);
  }

  /* Floating line-art glyphs */
  .glyphs{ position: absolute; inset: 0; pointer-events: none; z-index: 1; }
  .glyph{
    position: absolute;
    color: var(--accent);
    opacity: .22;
    animation: float 14s ease-in-out infinite;
  }
  .glyph.accent{ opacity: .32; }
  .glyph svg{ width: 100%; height: 100%; }
  @keyframes float{
    0%,100%{ transform: translateY(0) rotate(var(--r, 0deg)); }
    50%{ transform: translateY(-28px) rotate(calc(var(--r, 0deg) + 4deg)); }
  }
  @keyframes float2{
    0%,100%{ transform: translateY(0) rotate(var(--r, 0deg)); }
    35%{ transform: translateY(-32px) rotate(calc(var(--r, 0deg) + 6deg)); }
    65%{ transform: translateY(-14px) rotate(calc(var(--r, 0deg) - 3deg)); }
  }
  @keyframes float3{
    0%,100%{ transform: translateY(0) translateX(0) rotate(var(--r, 0deg)); }
    50%{ transform: translateY(-22px) translateX(14px) rotate(calc(var(--r, 0deg) + 5deg)); }
  }
  .g1{ top: 12%; left: 8%; width: 62px; height: 62px; --r: -10deg; animation-duration: 5s; animation-delay: 0s; }
  .g2{ top: 22%; right: 10%; width: 54px; height: 54px; --r: 12deg; animation-duration: 4s; animation-delay: 1.2s; animation-name: float2; }
  .g3{ top: 64%; left: 12%; width: 70px; height: 70px; --r: 6deg; animation-duration: 6s; animation-delay: 2.4s; }
  .g4{ top: 70%; right: 14%; width: 58px; height: 58px; --r: -18deg; animation-duration: 3.5s; animation-delay: 1.8s; animation-name: float3; }
  .g5{ top: 8%; right: 28%; width: 40px; height: 40px; --r: 22deg; animation-duration: 7s; animation-delay: 3s; }
  .g6{ top: 80%; left: 32%; width: 44px; height: 44px; --r: -6deg; animation-duration: 5s; animation-delay: 4.2s; animation-name: float2; }
  .g7{ top: 40%; left: 3%; width: 48px; height: 48px; --r: 16deg; animation-duration: 6s; animation-delay: 2s; }
  .g8{ top: 50%; right: 4%; width: 46px; height: 46px; --r: -12deg; animation-duration: 3s; animation-delay: 3.6s; animation-name: float3; }
  .g9{ top: 30%; right: 18%; width: 52px; height: 52px; --r: -8deg; animation-duration: 5s; animation-delay: 0.5s; animation-name: float2; }
  .g10{ top: 18%; left: 55%; width: 46px; height: 46px; --r: 14deg; animation-duration: 4s; animation-delay: 1.5s; }
  .g11{ top: 58%; left: 22%; width: 42px; height: 42px; --r: -4deg; animation-duration: 6s; animation-delay: 3.5s; animation-name: float3; }
  .g12{ top: 45%; right: 22%; width: 56px; height: 56px; --r: 10deg; animation-duration: 4.5s; animation-delay: 2.5s; }
  .g13{ top: 82%; right: 8%; width: 50px; height: 50px; --r: -14deg; animation-duration: 3.5s; animation-delay: 4.5s; animation-name: float2; }
  .g14{ top: 28%; left: 28%; width: 40px; height: 40px; --r: 18deg; animation-duration: 5.5s; animation-delay: 1s; }
  .g15{ top: 72%; left: 58%; width: 48px; height: 48px; --r: -20deg; animation-duration: 3s; animation-delay: 5s; animation-name: float3; }
  .g16{ top: 5%; left: 20%; width: 36px; height: 36px; --r: 8deg; animation-duration: 6.5s; animation-delay: 2.8s; }
  .no-glyphs .glyph{ display: none; }
  @media (max-width: 768px){
    .g5, .g6, .g7, .g8, .g9, .g10, .g11, .g12, .g13, .g14, .g15, .g16{ display: none; }
  }

  /* Marquee ticker of cities below hero */
  .cities{
    position: absolute;
    bottom: 24px;
    left: 0; right: 0;
    display: flex; gap: 40px;
    justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: .65;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .cities span{ position: relative; }
  .cities span + span::before{ content: "·"; position: absolute; left: -22px; color: var(--accent); }

  /* ---------- HOW IT WORKS ---------- */
  .how{ background: var(--card); }
  .how-head{ text-align: center; margin-bottom: 64px; }
  .how-head .section-title{ margin-top: 12px; }

  .toggle{
    display: inline-flex;
    padding: 6px;
    background: var(--card-secondary);
    border-radius: var(--radius-full);
    margin-top: 32px;
    position: relative;
    border: 1px solid var(--border);
  }
  .toggle button{
    position: relative;
    z-index: 2;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color .3s;
  }
  .toggle button.active{ color: #fff; }
  .toggle .slider{
    position: absolute;
    top: 6px; left: 6px;
    height: calc(100% - 12px);
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: transform .35s cubic-bezier(.4,.2,.2,1), width .35s cubic-bezier(.4,.2,.2,1);
    z-index: 1;
  }

  .steps{ margin-top: 80px; display: grid; gap: 96px; }
  .step{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .step:nth-child(even){ direction: rtl; }
  .step:nth-child(even) > *{ direction: ltr; }
  .step-text{ max-width: 440px; }
  .step-label{
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .step-title{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(34px, 3.5vw, 48px);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 0 18px;
  }
  .step-body{
    font-size: 19px;
    line-height: 1.58;
    color: var(--text-secondary);
    text-wrap: pretty;
  }
  @media (max-width: 860px){
    .step, .step:nth-child(even){
      grid-template-columns: 1fr;
      gap: 32px;
      direction: ltr;
    }
    .phone-wrap{ padding: 20px 0; }
  }
  @media (max-width: 640px){
    .nav-logo{ height: 32px; }
    .hero{ padding: 60px 20px 80px; }
    .cta-block{ padding: 48px 24px; }
    .faq-q{ font-size: 18px; padding: 18px 4px; }
    .faq-a > div > p{ padding-right: 0; }
    .step-body{ font-size: 16px; }
  }
  @media (max-width: 480px){
    .toggle button{ padding: 10px 16px; font-size: 13px; }
    .lede{ font-size: 16px; }
  }

  /* ---- Phone mockup (abstract, original) ---- */
  .phone-wrap{
    display: flex;
    justify-content: center;
    padding: 40px;
    position: relative;
  }
  .phone{
    width: 280px;
    aspect-ratio: 9 / 18.5;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 14px;
    box-shadow:
      0 40px 60px -30px rgba(26,26,46,.18),
      0 0 0 1px rgba(26,26,46,.03);
    position: relative;
  }
  .phone::before{
    content: "";
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 6px;
    background: var(--text);
    border-radius: 99px;
    opacity: .08;
  }
  .screen{
    background: var(--bg);
    width: 100%; height: 100%;
    border-radius: 28px;
    padding: 32px 14px 14px;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    position: relative;
  }
  .screen .topbar{
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 4px;
  }
  .screen .topbar .title{ font-weight: 600; color: var(--text); font-size: 13px; }
  .screen .topbar .menu{ width: 18px; height: 18px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); }

  /* Mockup variant: CATEGORIES */
  .mock-cats .search{
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 10px 12px;
    color: var(--text-secondary); font-size: 11px;
    display: flex; align-items: center; gap: 8px;
  }
  .mock-cats .search::before{ content: ""; width: 10px; height: 10px; border: 1.5px solid var(--text-secondary); border-radius: 50%; }
  .mock-cats .row-cat{
    background: var(--card); border-radius: 12px;
    padding: 12px; display: flex; align-items: center; gap: 10px;
    border: 1px solid var(--border);
  }
  .mock-cats .row-cat .swatch{ width: 28px; height: 28px; border-radius: 8px; background: var(--accent-light); }
  .mock-cats .row-cat .lines{ flex: 1; display: flex; flex-direction: column; gap: 5px; }
  .mock-cats .row-cat .lines span{ height: 7px; background: var(--border); border-radius: 4px; display: block; }
  .mock-cats .row-cat .lines span:first-child{ width: 60%; background: var(--text); opacity: .8; height: 8px; }
  .mock-cats .row-cat .lines span:last-child{ width: 35%; }
  .mock-cats .row-cat .chev{ width: 6px; height: 6px; border-right: 1.5px solid var(--text-secondary); border-top: 1.5px solid var(--text-secondary); transform: rotate(45deg); }
  .mock-cats .row-cat.hi .swatch{ background: var(--accent); }

  /* Mockup variant: LISTING */
  .mock-listing .cover{
    background: linear-gradient(135deg, var(--accent-light), #fce1ed);
    height: 110px; border-radius: 12px;
    position: relative;
  }
  .mock-listing .cover::after{
    content: ""; position: absolute; top: 10px; right: 10px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--card);
  }
  .mock-listing .price-row{ display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; }
  .mock-listing .price{ font-weight: 600; color: var(--accent); font-size: 14px; }
  .mock-listing .stars{ color: var(--accent); font-size: 10px; letter-spacing: 1px; }
  .mock-listing .head-ln{ height: 9px; background: var(--text); opacity: .82; border-radius: 4px; width: 75%; margin: 0 4px; }
  .mock-listing .body-ln{ height: 6px; background: var(--border); border-radius: 3px; margin: 0 4px; }
  .mock-listing .body-ln.w1{ width: 92%; }
  .mock-listing .body-ln.w2{ width: 78%; }
  .mock-listing .tags{ display: flex; gap: 6px; padding: 0 4px; margin-top: 4px; }
  .mock-listing .tag{ padding: 4px 9px; border-radius: 99px; background: var(--accent-light); color: var(--accent); font-size: 10px; font-weight: 500; }
  .mock-listing .cta-ghost{ margin: auto 4px 4px; background: var(--text); color: #fff; text-align: center; padding: 10px; border-radius: 12px; font-weight: 600; font-size: 11px; }

  /* Mockup variant: CONTACT BOTTOM SHEET */
  .mock-contact{ justify-content: flex-end; position: relative; }
  .mock-contact .dim{ position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 40%, rgba(26,26,46,.25)); border-radius: 28px; }
  .mock-contact .sheet{
    background: var(--card);
    border-radius: 20px 20px 12px 12px;
    padding: 16px 12px;
    display: flex; flex-direction: column; gap: 10px;
    position: relative;
    box-shadow: 0 -16px 40px -20px rgba(26,26,46,.25);
  }
  .mock-contact .handle{ width: 36px; height: 4px; background: var(--border); border-radius: 99px; margin: 0 auto 6px; }
  .mock-contact .sheet-title{ font-weight: 600; font-size: 13px; color: var(--text); text-align: center; }
  .mock-contact .opt{
    display: flex; align-items: center; gap: 10px;
    padding: 11px 12px; border-radius: 12px; border: 1px solid var(--border);
    background: var(--card);
  }
  .mock-contact .opt .ico{ width: 24px; height: 24px; border-radius: 8px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 12px; font-weight: 700; }
  .mock-contact .opt .lbl{ font-size: 11px; color: var(--text); font-weight: 500; }
  .mock-contact .opt .val{ font-size: 10px; color: var(--text-secondary); margin-top: 2px; }
  .mock-contact .opt.primary{ background: var(--accent); border-color: var(--accent); }
  .mock-contact .opt.primary .ico{ background: rgba(255,255,255,.2); color: #fff; }
  .mock-contact .opt.primary .lbl, .mock-contact .opt.primary .val{ color: #fff; }
  .mock-contact .opt.primary .val{ opacity: .8; }

  /* Mockup variant: REVIEW */
  .mock-review .big-star{ font-size: 44px; color: var(--accent); text-align: center; letter-spacing: 6px; margin-top: 8px; }
  .mock-review .caption{ text-align: center; font-size: 11px; color: var(--text-secondary); margin-top: -6px; }
  .mock-review .text-field{
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 12px;
    min-height: 70px;
    font-size: 10px; color: var(--text-secondary);
    line-height: 1.6;
  }
  .mock-review .chips{ display: flex; flex-wrap: wrap; gap: 5px; }
  .mock-review .chips span{ font-size: 10px; padding: 5px 9px; border: 1px solid var(--border); border-radius: 99px; color: var(--text-secondary); background: var(--card); }
  .mock-review .chips span.on{ background: var(--accent); color: #fff; border-color: var(--accent); }
  .mock-review .submit{ background: var(--accent); color: #fff; text-align: center; padding: 10px; border-radius: 12px; font-weight: 600; font-size: 11px; margin-top: auto; }

  /* Mockup variant: REGISTER */
  .mock-register .avatar{
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--accent-light);
    border: 1.5px dashed var(--accent);
    margin: 4px auto 0;
    position: relative;
  }
  .mock-register .avatar::after{ content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 16px; font-weight: 500; }
  .mock-register .input{
    background: transparent; border: none; border-bottom: 1px solid var(--border);
    padding: 10px 4px 6px; font-size: 11px; color: var(--text);
    display: flex; flex-direction: column; gap: 3px;
  }
  .mock-register .input .lbl-sm{ font-size: 9px; color: var(--text-secondary); letter-spacing: .08em; text-transform: uppercase; }
  .mock-register .input .val-lg{ height: 10px; background: var(--border); border-radius: 3px; width: 70%; }
  .mock-register .input.focus{ border-bottom-color: var(--accent); }
  .mock-register .input.focus .val-lg{ background: var(--text); opacity: .7; }
  .mock-register .submit{ background: var(--accent); color: #fff; text-align: center; padding: 11px; border-radius: 20px; font-weight: 600; font-size: 12px; margin-top: auto; }

  /* Mockup variant: CREATE LISTING */
  .mock-create .photo-row{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .mock-create .photo{ aspect-ratio: 1; border-radius: 10px; background: linear-gradient(135deg, var(--accent-light), #fce1ed); }
  .mock-create .photo.plus{ background: var(--card); border: 1.5px dashed var(--accent); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; font-weight: 400; }
  .mock-create .field{
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 9px 10px;
    font-size: 10px; color: var(--text-secondary);
    display: flex; justify-content: space-between; align-items: center;
  }
  .mock-create .field.on{ border-color: var(--accent); color: var(--text); }
  .mock-create .field .v{ color: var(--text); font-weight: 500; }
  .mock-create .price-field{
    background: var(--accent-light); color: var(--accent); font-weight: 600; font-size: 13px;
    border-radius: 10px; padding: 10px 12px;
    border: 1px solid var(--accent);
  }
  .mock-create .submit{ background: var(--accent); color: #fff; text-align: center; padding: 11px; border-radius: 20px; font-weight: 600; font-size: 12px; margin-top: auto; }

  /* Mockup variant: INBOUND (your listing with contact) */
  .mock-inbound .bell{
    position: absolute; top: 40px; right: 24px;
    width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px;
    box-shadow: 0 4px 12px -4px rgba(206,3,95,.5);
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.08); } }
  .mock-inbound .stat-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 6px 4px 4px; }
  .mock-inbound .stat{ background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 9px; text-align: center; }
  .mock-inbound .stat .n{ font-family: var(--serif); font-size: 22px; color: var(--text); line-height: 1; }
  .mock-inbound .stat .l{ font-size: 9px; color: var(--text-secondary); margin-top: 3px; letter-spacing: .06em; text-transform: uppercase; }
  .mock-inbound .msg-card{
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 10px; margin: 0 4px;
    display: flex; gap: 8px; align-items: center;
  }
  .mock-inbound .msg-card .av{ width: 30px; height: 30px; border-radius: 50%; background: var(--accent-light); flex-shrink: 0; }
  .mock-inbound .msg-card .msg-txt{ flex:1; display: flex; flex-direction: column; gap: 4px; }
  .mock-inbound .msg-card .msg-txt .n{ font-size: 11px; font-weight: 600; color: var(--text); }
  .mock-inbound .msg-card .msg-txt .p{ height: 5px; background: var(--border); border-radius: 3px; width: 75%; }
  .mock-inbound .msg-card .dot{ width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

  /* Mockup variant: PROFILE WITH REVIEWS */
  .mock-profile .avatar-big{
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, #ffb8d4, var(--accent));
    margin: 4px auto 0;
    position: relative;
  }
  .mock-profile .avatar-big::after{
    content: ""; position: absolute; bottom: -2px; right: -2px;
    width: 20px; height: 20px; border-radius: 50%; background: var(--success);
    border: 3px solid var(--bg);
  }
  .mock-profile .name{ text-align: center; font-weight: 600; font-size: 12px; color: var(--text); }
  .mock-profile .meta{ text-align: center; font-size: 10px; color: var(--text-secondary); }
  .mock-profile .score-row{
    background: var(--accent-light); border-radius: 12px;
    padding: 10px; text-align: center;
    margin: 0 4px;
  }
  .mock-profile .score{ font-family: var(--serif); font-size: 28px; color: var(--accent); line-height: 1; }
  .mock-profile .score small{ font-size: 14px; color: var(--accent); opacity: .6; }
  .mock-profile .score-lbl{ font-size: 10px; color: var(--accent); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
  .mock-profile .review-mini{
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 9px; margin: 0 4px;
  }
  .mock-profile .review-mini .s{ color: var(--accent); font-size: 9px; letter-spacing: 1px; }
  .mock-profile .review-mini .t{ height: 5px; background: var(--border); border-radius: 3px; margin-top: 6px; }
  .mock-profile .review-mini .t.s2{ width: 70%; margin-top: 4px; }

  /* ---- Step illustrations ---- */
  .illus-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }
  .step-illus{
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
  }
  .seller-k3{ max-width: 250px; }
  .seller-k1{ max-width: 350px; }

  /* Step panel switch animation */
  .step-panel{ display: none; animation: fadeUp .5s cubic-bezier(.2,.9,.3,1); }
  .step-panel.active{ display: grid; gap: 96px; }
  @keyframes fadeUp{ from{ opacity: 0; transform: translateY(12px); } to{ opacity: 1; transform: translateY(0); } }

  /* ---------- REVIEWS ---------- */
  .reviews{
    background: linear-gradient(180deg, #eef0fa 0%, #f4e9f0 100%);
    position: relative;
  }
  .reviews.bg-mint{ background: linear-gradient(180deg, #ecf5f0 0%, #f5e9e0 100%); }
  .reviews.bg-sand{ background: linear-gradient(180deg, #f4efe6 0%, #f7e9ee 100%); }
  .reviews-head{ text-align: center; margin-bottom: 72px; padding: 0 32px; }

  /* ---- Marquee ---- */
  .marquee-wrap{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    overflow: hidden;
    --mq-mask: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: var(--mq-mask);
    -webkit-mask-image: var(--mq-mask);
  }
  .marquee{
    width: 100%;
    overflow: hidden;
  }
  .marquee.row2{ margin-left: 40px; }
  .marquee-track{
    display: flex;
    gap: 24px;
    width: max-content;
    animation: mq-left 48s linear infinite;
    align-items: center;
  }
  .marquee-track.dir-right{ animation: mq-right 56s linear infinite; }
  .marquee:hover .marquee-track{ animation-play-state: paused; }
  @keyframes mq-left{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  @keyframes mq-right{
    from{ transform: translateX(-50%); }
    to{ transform: translateX(0); }
  }
  .m-card{
    width: 260px;
    height: 210px;
    border-radius: 16px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }
  .m-photo{
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px -10px rgba(26,26,46,.18);
  }
  .m-photo::after{
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 16px);
    mix-blend-mode: overlay;
  }
  /* Warm service-evoking gradient placeholders */
  .m1{ background: linear-gradient(135deg, #f4d1c2 0%, #d89684 60%, #b87258 100%); }
  .m2{ background: linear-gradient(140deg, #e8c9b0 0%, #c99877 55%, #8e5a3f 100%); }
  .m3{ background: linear-gradient(135deg, #f5e0cc 0%, #e0a683 50%, #a96b48 100%); }
  .m4{ background: linear-gradient(135deg, #d9cfbf 0%, #a8967a 100%); }
  .m5{ background: linear-gradient(135deg, #f3d7c0 0%, #d89c7c 60%, #8a5038 100%); }
  .m6{ background: linear-gradient(140deg, #e8d4c0 0%, #c08a66 100%); }
  .m7{ background: linear-gradient(135deg, #f0c9b0 0%, #b87252 100%); }
  .m8{ background: linear-gradient(135deg, #e5d5c2 0%, #a68570 100%); }

  .m-review{
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px -10px rgba(26,26,46,.14);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .m-head{ display: flex; align-items: center; gap: 10px; }
  .m-av{
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
    flex-shrink: 0;
  }
  .m-av.a1{ background: linear-gradient(135deg, #CE035F, #8e0240); }
  .m-av.a2{ background: linear-gradient(135deg, #7a5cb8, #4b3a8a); }
  .m-av.a3{ background: linear-gradient(135deg, #d08a52, #8a5a2e); }
  .m-av.a4{ background: linear-gradient(135deg, #3a8a6a, #1f5a42); }
  .m-av.a5{ background: linear-gradient(135deg, #3a6a9a, #1f3f6a); }
  .m-av.a6{ background: linear-gradient(135deg, #c85a7a, #8a2e4a); }
  .m-handle{ font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text); }
  .m-text{
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
    text-wrap: pretty;
    flex: 1;
  }
  .m-stars{ display: none; }

  @media (prefers-reduced-motion: reduce){
    .marquee-track{ animation: none !important; }
  }
  .reviews-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 960px){ .reviews-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px){ .reviews-grid{ grid-template-columns: 1fr; } }
  .review-card{
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 16px -8px rgba(26,26,46,.08);
    transform: rotate(var(--tilt, 0deg));
    transition: transform .3s;
  }
  .review-card:hover{ transform: rotate(0) translateY(-4px); }
  .review-card .stars{ color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
  .review-card .handle{ font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 8px; font-family: var(--mono); }
  .review-card .text{ font-size: 15px; line-height: 1.5; color: var(--text); text-wrap: pretty; }

  .photo-card{
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    transform: rotate(var(--tilt, 0deg));
    transition: transform .3s;
  }
  .photo-card:hover{ transform: rotate(0) translateY(-4px); }
  .photo-card .label{
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,.92);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
  }
  .photo-card.p1{ background: linear-gradient(135deg, #f4d1c2, #e8a89a); }
  .photo-card.p2{ background: linear-gradient(135deg, #d4c3ee, #b09adf); }
  .photo-card.p3{ background: linear-gradient(135deg, #f5d0b8, #e5a584); }
  .photo-card.p4{ background: linear-gradient(135deg, #c2d4e8, #9ab5d0); }

  /* Placeholder texture overlay on photo cards */
  .photo-card::before{
    content: "";
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 14px);
    mix-blend-mode: overlay;
  }
  .photo-card .icon{
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
  }

  /* ---------- CATEGORIES ---------- */
  .cats{ background: var(--card); }
  .cats-head{ text-align: center; margin-bottom: 64px; }
  .cats-head .section-title{ font-size: clamp(44px, 5.5vw, 70px); }
  .cats-head .lede{ font-size: 20px; }
  .cats-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cat-pill{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 26px 15px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    /* Precision transition: soft ease for border, natural spring for lift */
    transition:
      border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      transform   0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
      box-shadow  0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
  }
  .cat-pill:hover{ border-color: var(--accent); transform: translateY(-2px); }
  /* Auto-highlight class — mirrors hover state, applied by JS */
  .cat-pill--active{ border-color: var(--accent); transform: translateY(-2px); }
  .cat-pill .dot{
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
  }

  @media (max-width: 768px){
    .cats-pills{
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .cat-pill{
      width: 80%;
      justify-content: center;
    }
    .faq-columns{ display: block; grid-template-columns: 1fr !important;}
    .faq-illus-col{ display: none !important; }
    .cta-section{ padding-bottom: 0; }
    .cta-section .container{ padding: 0; }
    .cta-block{
      width: 100%;
      margin: 0;
      border-radius: 0;
      position: relative;
      left: 0;
      right: 0;
    }
    .cta-corner-icon{ display: none; }
    .footer-inner{
      flex-direction: column;
      align-items: center;
      gap: 16px;
      text-align: center;
    }
    .footer-right{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .footer-right span{ display: none; }
  }

  /* ---------- USE CASES (DARK) ---------- */
  .cases{ background: var(--dark); color: #fff; }
  .cases-head{ text-align: center; margin-bottom: 72px; }
  .cases-head .section-title{ color: #fff; font-size: clamp(44px, 5.5vw, 70px); }
  .cases-head .section-title em{ color: var(--accent); font-style: italic; }
  .cases-head .lede{ color: rgba(255,255,255,.55); font-size: 20px; }
  .cases-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 900px){ .cases-grid{ grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 600px){ .cases-grid{ grid-template-columns: 1fr; } }
  .case{
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px 140px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, background .3s;
    min-height: 280px;
  }
  .case:hover{ transform: translateY(-4px); background: #2d2d44; }
  .case .case-eyebrow{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
  }
  .case h3{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    color: #fff;
  }
  .case p{
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.55;
    margin: 0;
    text-wrap: pretty;
  }
  .case .deco{
    position: absolute;
    bottom: -20px; right: -10px;
    width: 130px; height: 130px;
    color: var(--accent);
    opacity: .22;
  }
  .case:hover .deco{ opacity: .5; }
  .case .deco svg{ width: 100%; height: 100%; }

  /* Mobile & tablet: apply desktop hover state as permanent default */
  @media (max-width: 1024px) {
    .case {
      transform: translateY(-4px);
      background: #2d2d44;
    }
    .case .deco { opacity: .5; }
    /* Re-enable dark mode overrides on mobile too */
    [data-theme="dark"] .case {
      background: #16162a;
    }
  }

  /* ---------- FAQ + CTA ---------- */
  .faq{ background: var(--bg); padding-bottom: 0; margin-bottom: 100px; }
  .cta-section{ background: var(--bg); padding-bottom: 100px; }
  .faq-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .faq-accordion-col{
    min-width: 0;
  }
  .faq-illus-col{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq-illus{
    width: 100%;
    height: auto;
    display: block;
  }
  .faq-head{ text-align: center; margin-bottom: 56px; }
  .faq-list{ max-width: 720px; margin: 0 auto; }
  .faq-item{
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
  }
  .faq-item:first-child{ border-top: 1px solid var(--border); }
  .faq-q{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 4px;
    background: transparent;
    text-align: left;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text);
    gap: 20px;
  }
  .faq-q .plus{
    position: relative;
    width: 20px; height: 20px; flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,.2,.2,1);
  }
  .faq-q .plus::before, .faq-q .plus::after{
    content: ""; position: absolute;
    background: var(--text);
    border-radius: 2px;
  }
  .faq-q .plus::before{ left: 0; right: 0; top: 9px; height: 2px; }
  .faq-q .plus::after{ top: 0; bottom: 0; left: 9px; width: 2px; transition: transform .3s; }
  .faq-item.open .faq-q .plus::after{ transform: rotate(90deg); }
  .faq-item.open .faq-q .plus{ color: var(--accent); }
  .faq-item.open .faq-q .plus::before,
  .faq-item.open .faq-q .plus::after{ background: var(--accent); }
  .faq-a{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.4,.2,.2,1);
  }
  .faq-item.open .faq-a{ grid-template-rows: 1fr; }
  .faq-a > div{
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
  }
  .faq-a > div > p{ margin: 0 0 24px; padding-right: 40px; }

  .cta-wrap{ position: relative; }

  .cta-block{
    max-width: 100%;
    margin: 0 auto;
    background: var(--accent);
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-corner-icon{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: auto;
    z-index: 3;
    pointer-events: none;
  }
  .cta-block::before{
    content: ""; position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
  }
  .cta-block::after{
    content: ""; position: absolute;
    bottom: -120px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
  }
  .cta-block h2{
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 52px);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: #fff;
    position: relative;
  }
  .cta-block p{
    margin: 0 0 32px;
    color: rgba(255,255,255,.85);
    font-size: 17px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .cta-block .pill-btn{
    position: relative;
    background: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right center;
    border-color: rgba(255,255,255,0.8);
    color: #fff;
  }
  .cta-block .pill-btn:hover{
    background-position: left center;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  /* ---------- FOOTER ---------- */
  .footer{
    background: var(--dark);
    color: rgba(255,255,255,.6);
    padding: 60px 0 64px;
  }
  .footer-inner{
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
  }
  .footer .nav-logo-link{ color: #fff; }
  .footer-right{ font-family: var(--sans); font-size: 14px; color: rgba(255,255,255); }
  .footer-right a{ color: #fff; text-decoration: none; }
  .footer-right a:hover{ color: var(--accent); }

  /* ---------- TWEAKS PANEL ---------- */
  .tweaks-panel{
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 20px 40px -12px rgba(26,26,46,.25);
    width: 280px;
    display: none;
    font-size: 13px;
  }
  .tweaks-panel.open{ display: block; }
  .tweaks-panel h4{
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 4px;
  }
  .tweaks-panel .sub{ color: var(--text-secondary); font-size: 12px; margin-bottom: 16px; }
  .tweak-row{ margin-bottom: 14px; }
  .tweak-row label{
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
  }
  .tweak-row input[type="color"]{
    width: 100%; height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }
  .tweak-row select{
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 13px;
    background: var(--card);
    color: var(--text);
  }
  .tweak-row .toggle-row{ display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text); }
  .tweak-row input[type="checkbox"]{ accent-color: var(--accent); }

  /* ---------- DARK MODE TOGGLE BUTTON ---------- */
  #theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--toggle-border);
    background: var(--toggle-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--toggle-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--toggle-shadow);
    padding: 0;
    /* Own transition — separate from global */
    transition:
      background 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
      border-color 0.3s ease !important;
  }
  #theme-toggle:hover {
    background: var(--toggle-bg-hover);
    transform: scale(1.10);
    box-shadow: var(--toggle-shadow), 0 0 0 4px color-mix(in oklab, var(--accent) 15%, transparent);
  }
  #theme-toggle:active {
    transform: scale(0.94);
  }

  #theme-toggle svg {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
  }

  /* Light mode: show moon, hide sun */
  [data-theme="light"] #theme-toggle .icon-sun  { opacity: 0; transform: rotate(90deg) scale(0.7); }
  [data-theme="light"] #theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

  /* Dark mode: show sun, hide moon */
  [data-theme="dark"]  #theme-toggle .icon-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
  [data-theme="dark"]  #theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.7); }

  /* Footer logo: in light mode it's inverted to white, in dark mode remove filter */
  [data-theme="dark"] .footer-logo .nav-logo {
    filter: none;
    opacity: 0.9;
  }

  /* How section (white bg in light) */
  [data-theme="dark"] .how { background: var(--card); }

  /* Cats section (white bg in light) */
  [data-theme="dark"] .cats { background: var(--card); }

  /* Reviews section gradient — darker palette */
  [data-theme="dark"] .reviews {
    background: linear-gradient(180deg, #141420 0%, #1a121c 100%);
  }
  [data-theme="dark"] .reviews.bg-mint {
    background: linear-gradient(180deg, #0f1a14 0%, #1a1510 100%);
  }
  [data-theme="dark"] .reviews.bg-sand {
    background: linear-gradient(180deg, #1a1610 0%, #1a1015 100%);
  }

  /* FAQ & CTA bg */
  [data-theme="dark"] .faq   { background: var(--bg); }
  [data-theme="dark"] .cta-section { background: var(--bg); }

  /* Phone mockup screen */
  [data-theme="dark"] .phone {
    border-color: var(--border);
    box-shadow: 0 40px 60px -30px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  }

  /* mock contact dim overlay */
  [data-theme="dark"] .mock-contact .dim {
    background: linear-gradient(180deg, var(--bg) 40%, rgba(0,0,0,0.4));
  }

  /* Cases section — already very dark, just tweak for dark mode */
  [data-theme="dark"] .cases { background: #050508; }
  [data-theme="dark"] .case  { background: #0f0f1a; }
  [data-theme="dark"] .case:hover { background: #16162a; }
  [data-theme="dark"] .cases-head .section-title { color: #eeeef5; }
  [data-theme="dark"] .cases-head .lede { color: rgba(238,238,245,0.45); }

  /* Step label pill */
  [data-theme="dark"] .step-label {
    background: var(--accent-light);
    color: var(--accent);
  }

  /* Phone mockup inner screen */
  [data-theme="dark"] .screen { background: var(--bg); }

  /* Tweaks panel */
  [data-theme="dark"] .tweaks-panel {
    background: var(--card);
    border-color: var(--border);
  }
  [data-theme="dark"] .tweak-row select {
    background: var(--card-secondary);
    border-color: var(--border);
    color: var(--text);
  }
