  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; }
  body {
    background: #f6f1e7;
    color: #1f1a14;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  img { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  a { color: inherit; }

  :root {
    --paper:    #f6f1e7;
    --paper-2:  #bcc6d1;
    --ink:      #1f1a14;
    --ink-soft: #5b5043;
    --rule:     rgba(31,26,20,0.14);
    --coral:    #3c669a;
    --moss:     #4a6b4a;
  }

  /* faint paper grain */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(rgba(31,26,20,0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.5;
    mix-blend-mode: multiply;
  }

  .display { font-family: 'Newsreader', Georgia, serif; }
  .label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .ital { font-style: italic; }

  main { position: relative; z-index: 2; }
  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

  /* ── Nav ── */
  #nav {
    position: sticky; top: 0; z-index: 200;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(246,241,231,0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  #nav-logo {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    text-decoration: none;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: inline-flex; align-items: baseline; gap: 4px;
  }
  #nav-logo .dot { color: var(--coral); font-style: normal; }
  #nav-links { display: flex; gap: 32px; align-items: center; }
  #nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px 6px;
    margin: -6px -4px;
    background: none;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
  }
  #nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  #nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  #nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink-soft);
    transition: color 0.18s;
  }
  .nav-link:hover { color: var(--ink); }
  #nav-cta {
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 6px;
    transition: background 0.18s;
  }
  #nav-cta:hover { background: var(--coral); }

  /* ── Hero ── */
  #hero {
    padding: 80px 40px 100px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
  }
  #hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(246,241,231,0.93) 0%,
      rgba(246,241,231,0.84) 55%,
      rgba(246,241,231,0.52) 100%
    );
    pointer-events: none;
    z-index: 0;
  }
  #hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 545px;
    position: relative;
    z-index: 1;
  }
  #hero-copy {
    max-width: calc(50% - 30px);
  }
  #hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  #hero-meta .pill {
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 4px;
  }
  #hero h1 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: clamp(48px, 6.2vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-wrap: pretty;
  }
  #hero h1 .ital { font-style: italic; }
  #hero h1 .underline {
    position: relative;
    display: inline-block;
  }
  #hero h1 .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.2em;
    background: var(--coral);
    opacity: 0.85;
    z-index: -1;
  }
  #hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 28px 0 36px;
    max-width: 480px;
  }
  #hero-ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 8px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.18s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--coral); transform: translateY(-1px); }
  .btn-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
  }

  /* hero phones */
  #hero-art {
    position: relative;
    height: 580px;
  }
  .phone {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1.5px solid #1a1a1a;
  }
  .phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
  .phone .notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    border-radius: 0 0 12px 12px;
  }
  #hero-phone-1 {
    top: 20px; right: 40px;
    width: 252px; height: 545px;
    transform: rotate(3deg);
    box-shadow: 0 30px 60px rgba(31,26,20,0.18), 0 6px 14px rgba(31,26,20,0.08);
    z-index: 2;
  }
  #hero-phone-1 .notch { width: 66px; height: 23px; }
  #hero-phone-2 {
    top: 180px; left: 0;
    width: 200px; height: 432px;
    transform: rotate(-5deg);
    box-shadow: 0 22px 48px rgba(31,26,20,0.14);
    z-index: 1;
  }
  #hero-phone-2 .notch { width: 53px; height: 19px; }

  /* ── Hero carousel (right column) ── */
  #hero-art {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Spans from the midpoint of #hero-inner (+ half-gap) to the viewport right edge.
       right: calc((100% - 100vw) / 2) places the right edge at the viewport edge,
       regardless of #hero-inner's max-width centering. */
    left: calc(50% + 30px);
    right: calc((100% - 100vw) / 2);
    height: 545px;
    overflow: hidden;
  }
  #carousel-mask {
    position: absolute;
    inset: 0;
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 200px), rgba(0,0,0,0.35) 100%);
    mask-image: linear-gradient(to right, black calc(100% - 200px), rgba(0,0,0,0.35) 100%);
  }
  #carousel-track {
    display: flex;
    gap: 32px;
    transform: translateX(0);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: flex-start;
  }
  .carousel-slide {
    flex-shrink: 0;
    width: 252px;
    height: 545px;
    border-radius: 30px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1.5px solid #1a1a1a;
    box-shadow: 0 24px 56px rgba(31,26,20,0.18), 0 6px 14px rgba(31,26,20,0.08);
    position: relative;
  }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .carousel-slide .notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    border-radius: 0 0 12px 12px;
    width: 66px;
    height: 23px;
    pointer-events: none;
  }
  #carousel-next {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    place-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(31,26,20,0.08), 0 0 20px rgba(31,26,20,0.22), 0 4px 12px rgba(31,26,20,0.14);
    transition: background 0.18s, box-shadow 0.18s;
    z-index: 10;
  }
  #carousel-next:hover {
    background: var(--paper-2);
    box-shadow: 0 0 0 1px rgba(31,26,20,0.1), 0 0 24px rgba(31,26,20,0.28), 0 6px 16px rgba(31,26,20,0.18);
  }
  #carousel-next:active {
    transform: translateY(-50%) scale(0.96);
  }

  /* hero annotation */
  .annotation {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    color: var(--moss);
    position: absolute;
    line-height: 1.3;
  }
  #ann-1 {
    top: 0; left: 200px;
    transform: rotate(-3deg);
  }
  #ann-1 svg {
    position: absolute;
    top: 100%; left: 30%;
    width: 50px; height: 40px;
  }
  #ann-2 {
    bottom: 30px; right: 0;
    transform: rotate(2deg);
    text-align: right;
  }
  #ann-2 svg {
    position: absolute;
    bottom: 100%; right: 20%;
    width: 40px; height: 36px;
  }

  /* ── Section base ── */
  section { position: relative; }
  .section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
  }
  .section-head .label { margin-bottom: 16px; display: inline-block; }
  .section-head h2 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-head h2 .ital { font-style: italic; }
  .section-head p {
    margin-top: 16px;
    font-size: 17px;
    color: var(--ink-soft);
  }

  /* ── Problem (comparison) ── */
  #problem { padding: 120px 40px; }
  #problem-compare {
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.3);
  }
  .compare-header {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
  }
  .compare-header .col {
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .compare-header .col-without { color: var(--ink-soft); }
  .compare-header .col-with { color: var(--coral); }
  .compare-header .col-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .compare-header .col-tagline {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--ink-soft);
  }
  .compare-header .col-with .col-tagline { color: var(--coral); }
  .compare-header .spacer { background: rgba(188,198,209,0.4); }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    border-bottom: 1px solid var(--rule);
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-cell {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    line-height: 1.5;
  }
  .compare-cell.without { color: var(--ink-soft); }
  .compare-cell.with { background: rgba(60,102,154,0.04); }
  .compare-cell .icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 15px;
    font-weight: 400;
  }
  .compare-cell.without .icon { background: rgba(200,60,60,0.1); color: #c0504a; }
  .compare-cell.with .icon { background: var(--coral); color: var(--paper); width: 44px; height: 44px; font-size: 22px; }
  .compare-cell.with strong { font-weight: 600; color: var(--ink); }
  .compare-spine {
    background: rgba(188,198,209,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
  }
  .compare-spine .mdi {
    font-size: 28px;
    color: var(--coral);
  }

  /* ── How it works ── */
  #how {
    padding: 120px 40px;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  #how-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
  }
  .step {
    padding: 32px 24px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .step:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,26,20,0.08); }
  .step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  .step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    font-weight: 700;
    font-size: 14px;
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .step:nth-child(1) .step-num { background: #c87a4a; }
  .step:nth-child(3) .step-num { background: #6b8a6b; }
  .step:nth-child(5) .step-num { background: #b8954a; }
  .step:nth-child(7) .step-num { background: #7a6b9a; }
  .step-step-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .step h3 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .step p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--coral);
  }
  .step-arrow svg { width: 28px; height: 16px; }

  /* ── Features ── */
  #features { padding: 120px 40px; }
  #features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }
  .f-card {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 36px 32px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 240px;
    transition: background 0.2s;
  }
  .f-card:hover { background: rgba(255,255,255,0.45); }
  .f-icon {
    color: var(--coral);
    flex-shrink: 0;
    font-size: 64px;
    line-height: 1;
  }
  .f-card h3 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 6px;
    line-height: 1.15;
  }
  .f-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

  /* ── Audience ── */
  #audience {
    padding: 120px 40px;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  #audience-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  #audience-text h2 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  #audience-text h2 .ital { font-style: italic; }
  #audience-list { display: flex; flex-direction: column; }
  .who-row {
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    align-items: center;
  }
  .who-row:last-child { border-bottom: 1px solid var(--rule); }
  .who-row .idx {
    font-size: 22px;
    color: var(--coral);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .who-row h4 { font-weight: 600; font-size: 16px; margin-bottom: 2px; }
  .who-row p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

  #audience-art {
    position: relative;
    height: 480px;
  }
  #aud-phone-1 {
    top: 0; left: 30px;
    width: 220px; height: 476px;
    transform: rotate(-4deg);
    box-shadow: 0 22px 48px rgba(31,26,20,0.16);
  }
  #aud-phone-1 .notch { width: 58px; height: 21px; }
  #aud-phone-2 {
    bottom: 0; right: 20px;
    width: 180px; height: 390px;
    transform: rotate(5deg);
    box-shadow: 0 18px 40px rgba(31,26,20,0.14);
  }
  #aud-phone-2 .notch { width: 48px; height: 17px; }

  /* ── CTA ── */
  #cta {
    padding: 140px 40px 120px;
    text-align: center;
  }
  #cta-inner { max-width: 760px; margin: 0 auto; }
  #cta h2 {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 1.0;
    letter-spacing: -0.025em;
  }
  #cta h2 .ital { font-style: italic; }
  #cta h2 .underline {
    position: relative;
    display: inline-block;
  }
  #cta h2 .underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.06em;
    height: 0.2em;
    background: var(--coral);
    opacity: 0.85;
    z-index: -1;
  }
  #cta-body {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 28px auto 36px;
    max-width: 520px;
  }
  #cta-btn { font-size: 16px; padding: 16px 28px; }
  #cta-note {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-soft);
    margin-top: 18px;
  }

  /* ── Footer ── */
  #footer {
    padding: 48px 40px;
    border-top: 1px solid var(--rule);
  }
  #footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  #footer-logo {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
  }
  #footer-logo .dot { color: var(--coral); font-style: normal; }
  #footer-by {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    color: var(--ink-soft);
    margin-left: 10px;
  }
  .footer-deko-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    transition: color 0.18s;
  }
  .footer-deko-link:hover { color: var(--ink); }
  .footer-deko-icon {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
  }
  #footer-copy { font-size: 13px; color: var(--ink-soft); }
  #footer-links { display: flex; gap: 24px; }
  .footer-link {
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
  }
  .footer-link:hover { color: var(--ink); }

  /* ── Pricing ── */
  #pricing { padding: 120px 40px; }
  #pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .price-card {
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 36px 32px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
  }
  .price-card:hover { border-color: rgba(31,26,20,0.28); }
  .price-card.featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .price-card .ribbon {
    position: absolute;
    top: -10px; right: 24px;
    background: var(--coral);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .price-card .plan-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .price-card.featured .plan-name { color: rgba(246,241,231,0.7); }
  .price-amount {
    font-family: 'Newsreader', serif;
    font-weight: 500;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .price-amount .ital { font-style: italic; }
  .price-amount .cadence {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .price-card.featured .price-amount .cadence { color: rgba(246,241,231,0.65); }
  .price-tagline {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ink-soft);
  }
  .price-card.featured .price-tagline { color: rgba(246,241,231,0.78); }
  .price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .price-list li {
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }
  .price-card.featured .price-list li { color: rgba(246,241,231,0.78); }
  .price-list li::before {
    content: '';
    width: 14px; height: 14px;
    flex-shrink: 0;
    margin-top: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%233c669a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7 L6 11 L12 3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .price-cta {
    margin-top: auto;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    transition: background 0.18s, color 0.18s;
  }
  .price-cta:hover { background: var(--ink); color: var(--paper); }
  .price-card.featured .price-cta {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--paper);
  }
  .price-card.featured .price-cta:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  #pricing-note {
    text-align: center;
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
    margin-top: 32px;
  }

  /* AOS */
  .aos { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .aos.aos-visible { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 960px) {
    #hero { padding: 60px 32px 80px; min-height: calc(100vh - 65px); background-position: left bottom; }
    #hero-inner { flex-direction: column; align-items: stretch; min-height: auto; gap: 48px; }
    #hero-copy { max-width: none; }
    #hero-art { position: relative; transform: none; left: auto; right: auto; width: auto; }
    #carousel-mask { -webkit-mask-image: none; mask-image: none; }
    #problem-grid { grid-template-columns: 1fr; gap: 24px; }
    .panel + .panel { padding-left: 0; border-left: none; border-top: 1px solid var(--rule); padding-top: 36px; }
    #problem-compare { display: flex; flex-direction: column; }
    .compare-header, .compare-row { display: contents; }
    .compare-header .spacer, .compare-spine { display: none; }
    .compare-header .col-without { order: 1; background: var(--paper-2); border-bottom: 1px solid var(--rule); }
    .compare-cell.without        { order: 2; border-bottom: 1px solid var(--rule); }
    .compare-header .col-with    { order: 3; background: var(--paper-2); border-top: 2px solid var(--rule); border-bottom: 1px solid var(--rule); }
    .compare-cell.with           { order: 4; border-bottom: 1px solid var(--rule); }
    #pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
    #how-steps { grid-template-columns: 1fr; gap: 12px; }
    .step-arrow { transform: rotate(90deg); padding: 0; }
    #features-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    #nav { padding: 14px 20px; }
    #nav-toggle { display: flex; }
    #nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(246,241,231,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--rule);
      padding: 8px 0 16px;
      z-index: 199;
    }
    #nav-links.open { display: flex; }
    .nav-link {
      display: block;
      padding: 12px 20px;
      font-size: 15px;
    }
    #hero { padding: 40px 20px 64px; min-height: calc(100vh - 57px); }
    #hero-inner { gap: 36px; }
    #hero h1 { font-size: clamp(40px, 11vw, 56px); }
    #hero-sub { font-size: 16px; margin: 20px 0 28px; }
    .btn-primary { width: 100%; justify-content: center; }
    #hero-art { height: 476px; }
    .carousel-slide { width: 220px; height: 476px; }
    .carousel-slide .notch { width: 58px; height: 21px; }
    #carousel-next { right: 20px; width: 48px; height: 48px; }
    #problem, #features, #audience, #pricing { padding: 80px 20px; }
    #pricing-grid { grid-template-columns: 1fr; }
    #how { padding: 80px 20px; }
    #how-steps { grid-template-columns: 1fr; }
    #features-grid { grid-template-columns: 1fr; }
    #cta { padding: 100px 20px 80px; }
    #footer-inner { justify-content: center; text-align: center; }
  }