:root {
      --ink:        #16243a;
      --ink-soft:   #43536d;
      --paper:      #f7f6f1;
      --card:       #ffffff;
      --stamp:      #cf3f33;
      --stamp-soft: rgba(207,63,51,0.08);
      --line:       rgba(22,36,58,0.12);
      --line-soft:  rgba(22,36,58,0.07);
      --radius:     14px;
      --disp: 'Bricolage Grotesque', 'Arial Black', sans-serif;
      --body: 'Figtree', system-ui, sans-serif;
      --mono: 'IBM Plex Mono', ui-monospace, monospace;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      font-size: 16.5px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img, svg { display: block; }
    a { color: inherit; }
    :focus-visible { outline: 3px solid var(--stamp); outline-offset: 3px; border-radius: 4px; }
    .wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
    .mono { font-family: var(--mono); }

    /* ── Nav ── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(247,246,241,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line-soft);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; max-width: 1140px; margin: 0 auto; }
    .logo { font-family: var(--disp); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; text-decoration: none; }
    .logo .dot { color: var(--stamp); }
    .nav-links { display: flex; align-items: center; gap: 34px; }
    .nav-links a:not(.btn) { font-size: 14.5px; font-weight: 500; text-decoration: none; color: var(--ink-soft); transition: color 150ms; }
    .nav-links a:not(.btn):hover { color: var(--ink); }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--body); font-weight: 600; font-size: 15px;
      text-decoration: none; border-radius: 999px; padding: 13px 26px;
      transition: transform 180ms cubic-bezier(.2,.9,.3,1.3), box-shadow 180ms ease, background 150ms ease;
      cursor: pointer; border: none;
    }
    .btn-ink { background: var(--ink); color: var(--paper); box-shadow: 0 2px 0 rgba(22,36,58,0.25); }
    .btn-ink:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,36,58,0.22); }
    .btn-ink:active { transform: translateY(0); }
    .btn-line { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
    .btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
    .btn svg { width: 15px; height: 15px; }
    .nav .btn { padding: 10px 20px; font-size: 14px; }

    /* ── Hero ── */
    .hero { padding: 84px 0 96px; overflow: hidden; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; max-width: 1140px; margin: 0 auto; padding: 0 28px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--stamp); margin-bottom: 26px;
    }
    .eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--stamp); }
    h1 {
      font-family: var(--disp); font-weight: 800;
      font-size: clamp(42px, 5.6vw, 68px);
      line-height: 1.02; letter-spacing: -0.03em;
      margin-bottom: 24px;
    }
    h1 .know { position: relative; white-space: nowrap; }
    h1 .know::after {
      content: ''; position: absolute; left: -2%; right: -2%; bottom: 6px; height: 0.32em;
      background: var(--stamp); opacity: 0.22; z-index: -1; border-radius: 3px;
      transform: scaleX(0); transform-origin: left;
      animation: underlineIn 600ms cubic-bezier(.2,.8,.2,1) 900ms forwards;
    }
    @keyframes underlineIn { to { transform: scaleX(1); } }
    .hero-sub { font-size: 18.5px; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 38px; }
    .hero-proof { display: flex; gap: 28px; flex-wrap: wrap; }
    .proof-item { font-size: 13.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
    .proof-item svg { width: 16px; height: 16px; color: var(--stamp); flex-shrink: 0; }

    /* ── Browser mock (signature) ── */
    .mock {
      background: var(--card); border: 1px solid var(--line);
      border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 24px 60px -18px rgba(22,36,58,0.28), 0 4px 14px rgba(22,36,58,0.06);
      transform: rotate(1deg);
    }
    .mock-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); background: #fbfaf7; }
    .mock-dots { display: flex; gap: 6px; }
    .mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
    .mock-url { flex: 1; font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); background: var(--paper); border-radius: 7px; padding: 6px 12px; border: 1px solid var(--line-soft); }
    .mock-url .typed::after { content: ''; display: inline-block; width: 7px; height: 12px; background: var(--stamp); vertical-align: -2px; margin-left: 1px; animation: blink 1s steps(1) infinite; }
    @keyframes blink { 50% { opacity: 0; } }
    .mock-body { padding: 26px 28px 30px; min-height: 330px; }
    .blk { border-radius: 8px; opacity: 0; transform: translateY(14px); }
    .mock.play .blk { animation: blkIn 520ms cubic-bezier(.2,.8,.2,1) forwards; }
    @keyframes blkIn { to { opacity: 1; transform: none; } }
    .blk-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
    .blk-logo { width: 86px; height: 14px; border-radius: 4px; background: var(--ink); }
    .blk-links { display: flex; gap: 10px; }
    .blk-links i { width: 36px; height: 8px; border-radius: 4px; background: var(--line); }
    .blk-h { width: 78%; height: 26px; background: var(--ink); margin-bottom: 12px; }
    .blk-h2 { width: 52%; height: 26px; background: var(--ink); margin-bottom: 20px; }
    .blk-p { width: 88%; height: 9px; background: var(--line); margin-bottom: 9px; }
    .blk-p2 { width: 64%; height: 9px; background: var(--line); margin-bottom: 24px; }
    .blk-cta { width: 132px; height: 36px; border-radius: 999px; background: var(--stamp); margin-bottom: 30px; }
    .blk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .blk-card { height: 84px; border: 1px solid var(--line-soft); background: #fbfaf7; border-radius: 10px; padding: 12px; }
    .blk-card i { display: block; border-radius: 4px; background: var(--line); }
    .blk-card i:first-child { width: 22px; height: 22px; border-radius: 6px; background: var(--stamp-soft); border: 1px solid rgba(207,63,51,0.25); margin-bottom: 10px; }
    .blk-card i:nth-child(2) { width: 70%; height: 8px; margin-bottom: 6px; }
    .blk-card i:nth-child(3) { width: 50%; height: 8px; }
    .mock-stamp {
      position: absolute; right: 26px; bottom: 22px;
      font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--stamp); border: 2px solid var(--stamp); border-radius: 8px; padding: 7px 13px;
      transform: rotate(-7deg) scale(1.6); opacity: 0;
      background: rgba(255,255,255,0.85);
    }
    .mock.play .mock-stamp { animation: stampIn 420ms cubic-bezier(.2,1.4,.4,1) 3.1s forwards; }
    @keyframes stampIn { to { opacity: 1; transform: rotate(-7deg) scale(1); } }
    .mock-wrap { position: relative; }
    .mock-caption { margin-top: 18px; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--ink-soft); }
    @media (prefers-reduced-motion: reduce) {
      .blk, .mock-stamp { opacity: 1 !important; transform: none !important; animation: none !important; }
      .mock-stamp { transform: rotate(-7deg) !important; }
      h1 .know::after { transform: scaleX(1); animation: none; }
      .mock-url .typed::after { animation: none; }
      html { scroll-behavior: auto; }
    }

    /* ── Sections ── */
    section { padding: 96px 0; }
    .sec-head { max-width: 620px; margin-bottom: 56px; }
    h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 16px; }
    .sec-sub { color: var(--ink-soft); font-size: 17px; }

    /* What you get */
    .get { background: var(--card); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
    .get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .get-card { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 26px; background: var(--paper); transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease, border-color 180ms; }
    .get-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px -12px rgba(22,36,58,0.18); border-color: var(--line); }
    .get-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--stamp-soft); border: 1px solid rgba(207,63,51,0.2); display: grid; place-items: center; margin-bottom: 18px; }
    .get-icon svg { width: 20px; height: 20px; color: var(--stamp); }
    .get-card h3 { font-family: var(--disp); font-weight: 700; font-size: 19px; margin-bottom: 8px; letter-spacing: -0.01em; }
    .get-card p { font-size: 14.5px; color: var(--ink-soft); }

    /* Process */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
    .step { padding: 32px 28px 36px; border-right: 1px solid var(--line-soft); }
    .step:last-child { border-right: none; }
    .step-num { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--stamp); letter-spacing: 0.08em; margin-bottom: 14px; }
    .step h3 { font-family: var(--disp); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--ink-soft); }
    .step-days { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line-soft); border-radius: 999px; padding: 4px 11px; }

    /* Pricing */
    .pricing { background: var(--ink); color: var(--paper); }
    .pricing h2, .pricing .sec-sub { color: var(--paper); }
    .pricing .sec-sub { opacity: 0.75; }
    .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
    .price-card { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; }
    .price-card.hot { background: var(--paper); color: var(--ink); border-color: var(--paper); position: relative; box-shadow: 0 22px 56px -16px rgba(0,0,0,0.5); }
    .hot-tag { position: absolute; top: -13px; left: 30px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--stamp); color: #fff; border-radius: 999px; padding: 5px 13px; }
    .price-name { font-family: var(--disp); font-weight: 700; font-size: 20px; margin-bottom: 6px; }
    .price-for { font-size: 13.5px; opacity: 0.7; margin-bottom: 22px; }
    .price-num { font-family: var(--mono); font-size: 38px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
    .price-num small { font-size: 14px; font-weight: 400; opacity: 0.65; }
    .price-once { font-size: 12.5px; opacity: 0.6; margin-bottom: 24px; }
    .price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; flex: 1; }
    .price-list li { font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; }
    .price-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--stamp); }
    .price-card:not(.hot) .price-list svg { color: #e8a59e; }
    .price-card .btn { justify-content: center; }
    .price-card:not(.hot) .btn { background: var(--paper); color: var(--ink); }
    .price-card.hot .btn { background: var(--ink); color: var(--paper); }
    .price-note { text-align: center; margin-top: 34px; font-size: 13.5px; opacity: 0.65; }

    /* Promise */
    .promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
    .promise h3 { font-family: var(--disp); font-weight: 700; font-size: 20px; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
    .promise h3 svg { width: 22px; height: 22px; color: var(--stamp); flex-shrink: 0; }
    .promise p { font-size: 15px; color: var(--ink-soft); }

    /* Testimonials */
    .quotes { background: var(--card); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
    .quote-solo { max-width: 820px; margin: 0 auto; text-align: center; }
    .quote-mark { font-family: var(--disp); font-size: 64px; line-height: 0.6; color: var(--stamp); opacity: 0.25; margin-bottom: 18px; }
    .quote-solo blockquote { font-family: var(--disp); font-weight: 400; font-size: clamp(22px, 2.6vw, 31px); line-height: 1.42; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 26px; }
    .quote-solo .quote-who { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; }
    .quote-solo .quote-who strong { font-family: var(--body); font-size: 15.5px; letter-spacing: 0; margin-bottom: 2px; }
    .quote-seelink { margin-top: 30px; text-align: center; font-size: 14.5px; font-weight: 600; }
    .quote-seelink a { color: var(--stamp); text-decoration: none; border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: border-color 0.2s; }
    .quote-seelink a:hover { border-bottom-color: var(--stamp); }
    .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .quote-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 26px; }
    .quote-stars { color: var(--stamp); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
    .quote-card blockquote { font-size: 15px; color: var(--ink); margin-bottom: 18px; }
    .quote-who { font-size: 13px; color: var(--ink-soft); }
    .quote-who strong { color: var(--ink); font-weight: 600; display: block; }

    /* FAQ */
    .faq-list { max-width: 760px; }
    details { border-bottom: 1px solid var(--line-soft); }
    summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--disp); font-weight: 600; font-size: 17.5px; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: '+'; font-family: var(--mono); font-size: 20px; color: var(--stamp); transition: transform 200ms; flex-shrink: 0; }
    details[open] summary::after { transform: rotate(45deg); }
    details p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 640px; }

    /* Final CTA */
    .final { text-align: center; padding: 110px 0 120px; }
    .final h2 { font-size: clamp(34px, 4.4vw, 56px); max-width: 720px; margin: 0 auto 18px; }
    .final p { color: var(--ink-soft); font-size: 17.5px; max-width: 480px; margin: 0 auto 38px; }
    .final-mail { margin-top: 22px; font-family: var(--mono); font-size: 14px; color: var(--ink-soft); }
    .final-mail a { color: var(--ink); font-weight: 500; }

    /* Footer */
    footer { border-top: 1px solid var(--line-soft); padding: 36px 0; }
    .foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
    .foot-copy { font-size: 13px; color: var(--ink-soft); }
    .foot-links { display: flex; gap: 24px; font-size: 13px; }
    .foot-links a { color: var(--ink-soft); text-decoration: none; }
    .foot-links a:hover { color: var(--ink); }

    /* Reveal on scroll */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1); }
      .reveal.in { opacity: 1; transform: none; }
    }

    /* ── Responsive ── */
    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-sub { max-width: 100%; }
      .get-grid, .quote-grid, .price-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2) { border-right: none; }
      .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
      .promise-grid { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 640px) {
      section { padding: 72px 0; }
      .hero { padding: 56px 0 72px; }
      .nav-links a:not(.btn) { display: none; }
      .get-grid, .quote-grid, .price-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--line-soft); }
      .step:last-child { border-bottom: none; }
      .blk-cards { grid-template-columns: 1fr 1fr; }
      .blk-card:last-child { display: none; }
    }

/* ── Sub-pages (work / about / legal) ── */
.page-hero { padding: 76px 0 56px; }
.page-hero h1 { font-size: clamp(38px, 4.8vw, 58px); margin-bottom: 18px; }
.page-hero .sec-sub { max-width: 560px; }
.crumb { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-bottom: 22px; }
.crumb a { color: inherit; text-decoration: none; }
.crumb a:hover { color: var(--ink); }

/* Work / portfolio */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms ease; display: block; }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px -14px rgba(22,36,58,0.22); }
.work-thumb { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.work-thumb .wt-title { font-family: var(--disp); font-weight: 800; letter-spacing: -0.02em; font-size: clamp(26px, 3.2vw, 40px); }
.work-body { padding: 24px 26px 28px; }
.work-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.work-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line-soft); border-radius: 999px; padding: 4px 11px; background: var(--paper); }
.work-body h2 { font-size: 22px; margin-bottom: 8px; }
.work-body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.work-result { display: block; font-family: var(--mono); font-size: 12.5px; color: var(--stamp); font-weight: 600; }
.work-visit { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--line); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s; }
.work-visit svg { width: 13px; height: 13px; }
.work-card:hover .work-visit { color: var(--stamp); border-bottom-color: var(--stamp); }

/* About */
.about-cols { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.about-cols h2 { font-size: 26px; margin: 36px 0 12px; }
.about-cols h2:first-child { margin-top: 0; }
.about-cols p { color: var(--ink-soft); margin-bottom: 16px; }
.fact-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; position: sticky; top: 96px; }
.fact-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.fact-row:last-child { border-bottom: none; }
.fact-row dt { color: var(--ink-soft); }
.fact-row dd { font-weight: 600; text-align: right; }

/* Legal */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 24px; margin: 44px 0 14px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; }
.legal-updated { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); margin-bottom: 36px; }
.placeholder-note { background: var(--stamp-soft); border: 1px solid rgba(207,63,51,0.25); border-radius: 10px; padding: 14px 18px; font-size: 13.5px; color: var(--ink); margin-bottom: 36px; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; gap: 44px; }
  .fact-card { position: static; }
}
