    :root{
      /* Palette (matched to your app screenshots) */
      --bg: #F7F3EE;
      --surface: #FFFFFF;
      --ink: #1A1A1A;
      --muted: #6B6258;
      --line: #E8E1D9;

      --primary: #A35A1F;    /* burnt sienna */
      --primary-2: #D8B892;  /* warm sand */

      --shadow: 0 20px 60px rgba(0,0,0,.08);
      --shadow2: 0 10px 30px rgba(0,0,0,.06);

      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;

      --max: 1120px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color: var(--ink);
      background:
        radial-gradient(1200px 600px at 20% 0%, #ffffff 0%, rgba(255,255,255,0) 60%),
        radial-gradient(900px 450px at 90% 15%, rgba(216,184,146,.35) 0%, rgba(216,184,146,0) 60%),
        linear-gradient(#FBF8F4 0%, var(--bg) 55%, #F3ECE4 100%);
    }

    a{ color:inherit; text-decoration:none; }
    .container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

    /* ---------- Nav ---------- */
    .nav-wrap{
      position:sticky; top:0; z-index:20;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(247,243,238,.72);
      border-bottom: 1px solid rgba(232,225,217,.8);
    }
    nav{
      display:flex; align-items:center; justify-content:space-between;
      height: 72px;
      gap: 18px;
    }
    .brand{
      display:flex; align-items:baseline; gap:.2rem;
      font-weight: 700;
      letter-spacing: -.02em;
      font-size: 22px;
      line-height: 1;
      user-select:none;
    }
    .brand .tab{ color:#2E6BB5; }     /* optional, tweak */
    .brand .draft{ color:var(--primary); }

    .nav-links{
      display:flex; align-items:center; gap: 18px;
      color: var(--muted);
      font-weight: 500;
      font-size: 14px;
    }
    .nav-links a{
      padding: 10px 10px;
      border-radius: 10px;
    }
    .nav-links a:hover{ background: rgba(255,255,255,.6); color: var(--ink); }

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

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:.6rem;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid transparent;
      font-weight: 600;
      font-size: 14px;
      line-height: 1;
      cursor: pointer;
      transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
    .btn:active{ transform: translateY(0); box-shadow:none; }

    .btn-primary{
      background: var(--primary);
      color: #fff;
    }
    .btn-primary:hover{ background: #8F4D1B; }

    .btn-ghost{
      background: rgba(255,255,255,.7);
      border-color: rgba(232,225,217,.9);
      color: var(--ink);
    }
    .btn-ghost:hover{ background:#fff; border-color: rgba(232,225,217,1); }

    .hamburger{
      display:none;
      width: 44px; height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(232,225,217,.9);
      background: rgba(255,255,255,.75);
      align-items:center; justify-content:center;
    }
    .hamburger span{
      width: 18px; height: 2px; background: var(--muted);
      position:relative; display:block;
    }
    .hamburger span::before,.hamburger span::after{
      content:""; position:absolute; left:0;
      width:18px; height:2px; background: var(--muted);
    }
    .hamburger span::before{ top:-6px; }
    .hamburger span::after{ top:6px; }

    /* ---------- Hero ---------- */
    .hero{
      padding: 54px 0 28px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr 1.35fr;
      gap: 40px;
      align-items:center;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding: 8px 12px;
      border: 1px solid rgba(232,225,217,.9);
      background: rgba(255,255,255,.6);
      border-radius: 999px;
      color: var(--muted);
      font-weight: 600;
      font-size: 12px;
    }
    h1{
      margin: 16px 0 12px;
      font-size: clamp(36px, 4.6vw, 56px);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }
    .lead{
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
      max-width: 44ch;
    }
    .hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

    .shot-card{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 14px;
      position: relative;
      overflow:hidden;
    }
    .shot-card::before{
      content:"";
      position:absolute; inset:-40px;
      background:
        radial-gradient(600px 260px at 30% 10%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 60%),
        radial-gradient(520px 260px at 80% 30%, rgba(216,184,146,.30) 0%, rgba(216,184,146,0) 60%);
      pointer-events:none;
      transform: rotate(-2deg);
    }
    .shot{
      position:relative;
      border-radius: 14px;
      width:100%;
      height:auto;
      display:block;
      background:#fff;
    }
    .shot-note{
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
    }

    /* ---------- Feature strip ---------- */
    .features-strip{
      padding: 26px 0 14px;
    }
    .strip{
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: var(--radius-lg);
      overflow:hidden;
    }
    .strip-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .feat{
      padding: 22px 20px;
      display:flex; gap: 14px; align-items:flex-start;
    }
    .feat + .feat{ border-left: 1px solid rgba(232,225,217,.9); }
    .icon{
      width: 42px; height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(232,225,217,.9);
      background: rgba(255,255,255,.8);
      display:flex; align-items:center; justify-content:center;
      color: var(--primary);
      flex: 0 0 auto;
    }
    .feat h3{
      margin: 0 0 6px;
      font-size: 16px;
      letter-spacing: -0.01em;
    }
    .feat p{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    /* ---------- Showcase ---------- */
    section{
      padding: 72px 0;
    }
    .section-title{
      text-align:center;
      margin:0 0 10px;
      font-size: clamp(26px, 3vw, 40px);
      letter-spacing: -0.025em;
      line-height: 1.1;
    }
    .section-sub{
      text-align:center;
      margin:0 auto 28px;
      color: var(--muted);
      max-width: 60ch;
      font-size: 16px;
      line-height: 1.6;
    }
    .showcase-card{
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 16px;
      overflow:hidden;
    }

    /* ---------- Philosophy ---------- */
    .philo{
      padding-top: 40px;
    }
    .philo-inner{
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: var(--radius-lg);
      padding: 34px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .philo-inner::after{
      content:"";
      position:absolute; inset:-60px -120px -80px 40%;
      background:
        radial-gradient(520px 320px at 30% 30%, rgba(216,184,146,.34) 0%, rgba(216,184,146,0) 60%),
        radial-gradient(520px 320px at 65% 60%, rgba(163,90,31,.18) 0%, rgba(163,90,31,0) 60%);
      pointer-events:none;
      transform: rotate(10deg);
    }
    .philo-text{ position:relative; }
    .philo h2{
      margin:0 0 10px;
      font-size: 28px;
      letter-spacing: -0.02em;
    }
    .philo p{
      margin:0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
      max-width: 60ch;
    }
    .philo-bullets{
      position:relative;
      display:grid;
      gap: 10px;
    }
    .pill{
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: 999px;
      padding: 10px 12px;
      font-size: 13px;
      color: var(--ink);
      display:flex; align-items:center; gap: 10px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(163,90,31,.14);
      flex:0 0 auto;
    }

    /* ---------- User types ---------- */
    .user-types{
      padding-top: 38px;
      padding-bottom: 64px;
    }
    .plans-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }
    .plan-card{
      position:relative;
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(232,225,217,.95);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow2);
      padding: 22px;
      display:grid;
      gap: 12px;
    }
    .plan-card h3{
      margin: 0;
      font-size: 24px;
      letter-spacing: -0.02em;
    }
    .plan-copy{
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
    }
    .plan-price{
      display:grid;
      gap: 4px;
      margin: -2px 0 2px;
      color: var(--ink);
      font-size: 14px;
      line-height: 1.35;
    }
    .plan-price strong{
      color: var(--primary);
      font-size: 18px;
      letter-spacing: -0.01em;
    }
    .plan-list{
      margin: 0;
      padding-left: 18px;
      display:grid;
      gap: 8px;
      color: var(--ink);
      font-size: 14px;
      line-height: 1.45;
    }
    .plan-card .btn{
      justify-self: start;
      margin-top: 2px;
    }
    .plan-pro{
      border-color: rgba(163,90,31,.35);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(252,246,238,.9) 100%);
    }
    .plan-badge{
      position:absolute;
      top: 12px;
      right: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(163,90,31,.12);
      border: 1px solid rgba(163,90,31,.25);
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    /* ---------- CTA band ---------- */
    .cta-band{
      padding: 0;
      margin-top: 10px;
    }
    .cta{
      background: linear-gradient(180deg, #B16525 0%, var(--primary) 100%);
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.06);
      color:#fff;
      padding: 54px 0;
      text-align:center;
    }
    .cta h2{
      margin:0 0 10px;
      font-size: clamp(26px, 3.2vw, 36px);
      letter-spacing: -0.02em;
    }
    .cta p{
      margin:0 auto 18px;
      max-width: 60ch;
      opacity: .9;
      line-height:1.6;
    }
    .btn-light{
      background:#fff;
      color: var(--ink);
      border: 1px solid rgba(255,255,255,.9);
    }
    .btn-light:hover{ background: #fff; }

    /* ---------- Contact ---------- */
    .contact-section{
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .contact-card{
      max-width: 760px;
      margin: 0 auto;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(232,225,217,.9);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 22px;
    }
    .contact-form{
      display:grid;
      gap: 14px;
    }
    .contact-form label{
      display:grid;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
    }
    .contact-form input,
    .contact-form textarea{
      width: 100%;
      border: 1px solid rgba(232,225,217,.95);
      border-radius: 12px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-size: 14px;
      line-height: 1.4;
      padding: 12px 13px;
      outline: none;
    }
    .contact-form textarea{
      resize: vertical;
      min-height: 140px;
    }
    .contact-form input:focus,
    .contact-form textarea:focus{
      border-color: rgba(163,90,31,.55);
      box-shadow: 0 0 0 3px rgba(163,90,31,.10);
    }
    .contact-form .btn{
      justify-self: start;
    }
    .contact-status{
      margin: 2px 0 0;
      min-height: 1.2em;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }
    .contact-status.success{
      color: #2e7a2e;
    }
    .contact-status.error{
      color: #a22727;
    }

    /* ---------- Footer ---------- */
    footer{
      padding: 36px 0 50px;
      color: var(--muted);
    }
    .foot{
      display:flex;
      gap: 18px;
      align-items:flex-start;
      justify-content:space-between;
      border-top: 1px solid rgba(232,225,217,.9);
      padding-top: 18px;
      flex-wrap:wrap;
    }
    .foot small{ display:block; margin-top: 8px; }
    .foot-links{
      display:flex; gap: 14px; flex-wrap:wrap;
    }
    .foot-links a{
      padding: 8px 10px;
      border-radius: 10px;
    }
    .foot-links a:hover{ background: rgba(255,255,255,.6); color: var(--ink); }

    .cookie-banner{
      position: fixed;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      width: min(760px, calc(100vw - 16px));
      background: rgba(250,244,235,.98);
      border: 1px solid rgba(232,225,217,.95);
      box-shadow: var(--shadow);
      border-radius: 14px;
      z-index: 4000;
      padding: 12px 14px;
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .cookie-banner[hidden]{
      display: none !important;
    }
    .cookie-banner-copy{
      flex: 1;
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }
    .cookie-banner-btn{
      flex-shrink: 0;
      min-width: 96px;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 960px){
      .hero-grid{ grid-template-columns: 1fr; gap: 26px; }
      .lead{ max-width: unset; }
      .strip-grid{ grid-template-columns: 1fr; }
      .feat + .feat{ border-left: 0; border-top: 1px solid rgba(232,225,217,.9); }
      .philo-inner{ grid-template-columns: 1fr; padding: 26px; }
      .plans-grid{ grid-template-columns: 1fr; }
      .nav-links{ display:none; }
      .hamburger{ display:flex; }
    }
    @media (max-width: 520px){
      .container{ width: calc(100% - 28px); }
      nav{ height: 66px; }
      .btn{ padding: 12px 14px; }
      section{ padding: 58px 0; }
      .philo-inner{ padding: 22px; }
      .contact-card{ padding: 16px; }
      .cookie-banner{
        flex-direction: column;
        align-items: stretch;
      }
      .cookie-banner-btn{
        width: 100%;
      }
    }

    /* ---------- Reduced motion ---------- */
    @media (prefers-reduced-motion: reduce){
      .btn{ transition:none; }
      .btn:hover{ transform:none; }
    }
