﻿:root {
      --ink: #1A1714;
      --paper: #F4F1EC;
      --paper2: #EDE9E2;
      --border: #D8D2C6;
      --rust: #C4450A;
      --rust-d: #A33808;
      --rust-l: #F5E8E2;
      --green: #2A6B3C;
      --green-l: #E3F0E7;
      --surf: #FDFBF8;
      --muted: #7A746A;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* â”€â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    nav.top-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 40px;
      height: 60px;
      background: rgba(26, 23, 20, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 3px;
      text-decoration: none;
      color: white;
    }

    .nav-logo-mark {
      width: 30px;
      height: 30px;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav-logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .nav-logo-text em {
      color: var(--rust);
      font-style: italic;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      margin-left: 20px;
    }

    .nav-links a {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.15s;
    }

    .nav-links a:hover {
      color: white;
    }

    .nav-cta {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-left: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 20px;
      border-radius: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.83rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s;
      border: none;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-ghost-white {
      background: transparent;
      color: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.08);
      color: white;
    }

    .btn-rust {
      background: var(--rust);
      color: white;
    }

    .btn-rust:hover {
      background: var(--rust-d);
    }

    .btn-rust-outline {
      background: transparent;
      color: var(--rust);
      border: 1.5px solid var(--rust);
    }

    .btn-rust-outline:hover {
      background: var(--rust-l);
    }

    .btn-ink {
      background: var(--ink);
      color: white;
    }

    .btn-ink:hover {
      background: #2E2A27;
    }

    .btn-lg {
      padding: 13px 28px;
      font-size: 0.9rem;
      border-radius: 8px;
    }

    .btn-xl {
      padding: 15px 36px;
      font-size: 1rem;
      border-radius: 9px;
    }

    /* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

    /* grain overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.6;
      pointer-events: none;
    }

    /* glow blobs */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(80px);
    }

    .blob-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(196, 69, 10, 0.18) 0%, transparent 70%);
      top: -150px;
      right: -150px;
    }

    .blob-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(196, 69, 10, 0.1) 0%, transparent 70%);
      bottom: -80px;
      left: -80px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 780px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(196, 69, 10, 0.15);
      border: 1px solid rgba(196, 69, 10, 0.3);
      padding: 5px 14px;
      border-radius: 30px;
      margin-bottom: 28px;
    }

    .hero-eyebrow span {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #E8906A;
    }

    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      background: var(--rust);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8);
      }
    }

    .hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: white;
      margin-bottom: 20px;
    }

    .hero h1 em {
      color: var(--rust);
      font-style: italic;
      font-weight: 600;
    }

    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(255, 255, 255, 0.55);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 56px;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: rgba(255, 255, 255, 0.4);
    }

    .proof-item strong {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      line-height: 1;
      margin-bottom: 2px;
    }

    .proof-item span {
      font-size: 0.7rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .proof-sep {
      width: 1px;
      height: 32px;
      background: rgba(255, 255, 255, 0.12);
    }

    /* â”€â”€â”€ MOCKUP STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .mockup-strip {
      background: var(--paper2);
      padding: 64px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .mockup-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .mockup-label {
      text-align: center;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 26px;
    }

    .mockup-shell {
      position: relative;
    }

    .mockup-window {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
      overflow: hidden;
    }

    .mockup-titlebar {
      background: var(--ink);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .titlebar-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mockup-scenes {
      position: relative;
      background: linear-gradient(180deg, #f5f0ec 0%, #f3eeea 100%);
      min-height: 430px;
      overflow: hidden;
    }

    .mockup-scene {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(28px) scale(0.985);
      pointer-events: none;
      transition: opacity 0.34s ease, transform 0.34s ease;
    }

    .mockup-scene.is-active {
      opacity: 1;
      transform: translateX(0) scale(1);
      pointer-events: auto;
    }

    .mockup-scene-wrap {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .mockup-app-top {
      height: 48px;
      border-bottom: 1px solid #ddd4ca;
      background: var(--surf);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px;
    }

    .mockup-app-mark {
      font-family: 'Fraunces', serif;
      font-size: 0.96rem;
      font-weight: 600;
      color: var(--ink);
      white-space: nowrap;
    }

    .mockup-app-stat {
      font-size: 0.66rem;
      color: var(--muted);
      margin-right: auto;
      white-space: nowrap;
    }

    .mockup-top-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      border: 1px solid #d7cec4;
      background: #f9f5f1;
      color: #6f6459;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 4px 8px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .mockup-top-btn.primary {
      border-color: rgba(196, 69, 10, 0.42);
      background: rgba(196, 69, 10, 0.12);
      color: var(--rust);
    }

    .mockup-app-body {
      flex: 1;
      min-height: 0;
      display: grid;
      grid-template-columns: 250px 1fr;
    }

    .mockup-left {
      background: var(--surf);
      border-right: 1px solid #ddd4ca;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .mockup-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid #e2dad1;
    }

    .mockup-tab {
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #97897c;
      text-align: center;
      padding: 9px 5px;
      border-bottom: 2px solid transparent;
      background: #fcfaf8;
    }

    .mockup-tab.active {
      color: var(--rust);
      border-bottom-color: var(--rust);
      background: #fff;
    }

    .mockup-left-content {
      padding: 11px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 0;
      flex: 1;
    }

    .mockup-upload {
      border: 1px dashed #ccbfb3;
      border-radius: 8px;
      background: #faf7f4;
      padding: 11px 8px;
      text-align: center;
      color: #8d7f73;
      font-size: 0.6rem;
      line-height: 1.45;
    }

    .mockup-upload.focus {
      border-color: var(--rust);
      background: #fff4ed;
      box-shadow: inset 0 0 0 1px rgba(196, 69, 10, 0.2);
    }

    .mockup-file-pill {
      border: 1px solid #d9cec2;
      border-radius: 6px;
      background: #f6f1ec;
      padding: 6px 7px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
      font-size: 0.56rem;
      color: #7f7266;
    }

    .mockup-file-pill strong {
      color: var(--green);
      font-size: 0.55rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .mockup-plist {
      border: 1px solid #e1d8cf;
      border-radius: 8px;
      background: #fff;
      min-height: 0;
      flex: 1;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .mockup-plist-hd {
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #9a8a7d;
      border-bottom: 1px solid #f0e9e2;
      padding: 7px 8px;
      background: #fbf8f5;
    }

    .mockup-pitem {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.58rem;
      color: #7f7266;
      padding: 6px 8px;
      border-bottom: 1px solid #f4efea;
    }

    .mockup-pitem:last-child {
      border-bottom: 0;
    }

    .mockup-pdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #cec3b8;
      flex-shrink: 0;
    }

    .mockup-pitem.sel {
      background: #fff4ed;
      color: #4f4339;
      font-weight: 600;
    }

    .mockup-pitem.sel .mockup-pdot {
      background: var(--rust);
    }

    .mockup-create-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mockup-create-btn {
      flex: 1;
      border-radius: 6px;
      border: 1px solid transparent;
      background: #ece5de;
      color: #918373;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-align: center;
      padding: 6px 0;
    }

    .mockup-create-btn.ready {
      background: var(--rust);
      color: white;
      border-color: var(--rust);
    }

    .mockup-right {
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .mockup-right-head {
      height: 44px;
      border-bottom: 1px solid #ddd4ca;
      padding: 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: #fcfaf8;
    }

    .mockup-right-head h4 {
      font-family: 'Fraunces', serif;
      font-size: 0.95rem;
      color: var(--ink);
      font-weight: 600;
    }

    .mockup-count {
      margin-left: 2px;
      padding: 2px 8px;
      border-radius: 999px;
      background: #1a1714;
      color: #fff;
      font-size: 0.56rem;
      font-weight: 700;
    }

    .mockup-head-tip {
      margin-left: auto;
      font-size: 0.6rem;
      color: #8d7f73;
    }

    .mockup-right-scroll {
      min-height: 0;
      flex: 1;
      padding: 12px;
      overflow: hidden;
      background: #f7f2ee;
    }

    .mockup-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .mockup-gcard {
      background: #fdfbf8;
      border: 1px solid #d8d2c6;
      border-radius: 9px;
      overflow: hidden;
      box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
      position: relative;
    }

    .mockup-gdrag {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 16px;
      color: #c7b9aa;
    }

    .mockup-gimage {
      height: 76px;
      border-top: 1px solid #eee7df;
      border-bottom: 1px solid #eee7df;
      background: #ede9e2;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b8ab9f;
      font-size: 0.56rem;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .mockup-gbody {
      padding: 8px 9px;
    }

    .mockup-gtitle {
      background: #ede9e2;
      border-radius: 4px;
      padding: 4px 6px;
      margin-bottom: 6px;
      font-family: 'Fraunces', serif;
      font-size: 0.7rem;
      font-weight: 600;
      color: #1a1714;
    }

    .mockup-gtable {
      width: 100%;
      border-collapse: collapse;
    }

    .mockup-gtable th {
      font-size: 0.5rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #c4450a;
      padding: 2px 2px;
      text-align: left;
      border-bottom: 1px solid #ede9e2;
      background: #f7e8df;
    }

    .mockup-gtable th.pr {
      text-align: right;
    }

    .mockup-gtable td {
      font-size: 0.56rem;
      color: #3f342b;
      padding: 3px 2px;
      border-bottom: 1px solid #eee7df;
      vertical-align: middle;
      white-space: nowrap;
    }

    .mockup-gtable tr:last-child td {
      border-bottom: 0;
    }

    .mockup-gtable td.pr {
      text-align: right;
      font-weight: 700;
      color: #1a1714;
    }

    .mockup-row-tools {
      width: 16px;
      text-align: center;
      color: #c4b6a7;
      position: relative;
    }

    .mockup-row-pop {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-30%);
      background: #fff;
      border: 1px solid #d8d2c6;
      border-radius: 6px;
      min-width: 108px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      padding: 4px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      z-index: 4;
    }

    .mockup-row-pop span {
      font-size: 0.56rem;
      color: #6d6155;
      border-radius: 4px;
      padding: 4px 5px;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .mockup-row-pop span.on {
      border-color: #efc3ad;
      color: #c4450a;
      background: #fff4ed;
    }

    .mockup-gfooter {
      margin-top: 6px;
      padding-top: 6px;
      border-top: 1px solid #eee7df;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .mockup-gfooter em {
      font-style: normal;
      font-size: 0.56rem;
      color: #8d7f73;
    }

    .mockup-gadd {
      font-size: 0.58rem;
      color: #6d6155;
      font-weight: 700;
    }

    .mockup-empty {
      height: 100%;
      border: 1px dashed #d7ccbf;
      border-radius: 10px;
      background: #fdfaf7;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #918373;
      font-size: 0.76rem;
      line-height: 1.55;
      padding: 20px;
    }

    .mockup-export {
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 240px;
      gap: 12px;
    }

    .mockup-sheet {
      border: 1px solid #d8d2c6;
      border-radius: 10px;
      background: #fff;
      padding: 10px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      align-content: start;
    }

    .mockup-sheet-mini {
      border: 1px solid #e4dad0;
      border-radius: 7px;
      height: 84px;
      background: linear-gradient(180deg, #ffffff 0%, #f8f3ee 100%);
      position: relative;
      overflow: hidden;
    }

    .mockup-sheet-mini::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 9px;
      background: var(--rust);
      opacity: 0.9;
    }

    .mockup-sheet-mini::after {
      content: '';
      position: absolute;
      left: 8px;
      right: 8px;
      top: 16px;
      bottom: 9px;
      background: repeating-linear-gradient(to bottom, #efe8e1, #efe8e1 4px, transparent 4px, transparent 9px);
    }

    .mockup-print-panel {
      border: 1px solid #d8d2c6;
      border-radius: 10px;
      background: #fdfaf7;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mockup-print-title {
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #6f6459;
    }

    .mockup-print-row {
      border: 1px solid #e4d9cd;
      border-radius: 6px;
      background: #fff;
      padding: 7px;
      font-size: 0.6rem;
      color: #6f6459;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mockup-print-go {
      margin-top: auto;
      border-radius: 999px;
      padding: 7px 9px;
      text-align: center;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #fff;
      background: var(--rust);
    }

    .mockup-scene-note {
      position: absolute;
      left: 14px;
      top: 12px;
      z-index: 5;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #e3d7cc;
      padding: 5px 10px;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #7e7165;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .mockup-controls {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .mockup-step {
      border: 1px solid #d7ccbf;
      border-radius: 999px;
      padding: 8px 12px;
      background: rgba(255, 255, 255, 0.75);
      color: #7a6e62;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

    .mockup-step:hover {
      border-color: #c9bdae;
      color: #5c5147;
    }

    .mockup-step.is-active {
      background: var(--rust);
      border-color: var(--rust);
      color: #fff;
      box-shadow: 0 10px 24px rgba(196, 69, 10, 0.28);
    }

    .mockup-progress {
      margin-top: 10px;
      height: 4px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(26, 23, 20, 0.09);
    }

    .mockup-progress-fill {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--rust), #ef8f66);
      transform-origin: left center;
      transform: scaleX(0.3334);
      transition: transform 0.32s ease;
    }

    @media(max-width:980px) {
      .mockup-inner {
        padding: 0 16px;
      }

      .mockup-app-body {
        grid-template-columns: 1fr;
      }

      .mockup-left {
        border-right: 0;
        border-bottom: 1px solid #ddd4ca;
      }

      .mockup-scenes {
        min-height: 690px;
      }

      .mockup-right-scroll {
        padding: 10px;
      }
    }

    @media(max-width:740px) {
      .mockup-scenes {
        min-height: 760px;
      }

      .mockup-grid {
        grid-template-columns: 1fr;
      }

      .mockup-export {
        grid-template-columns: 1fr;
      }

      .mockup-sheet {
        grid-template-columns: 1fr 1fr;
      }

      .mockup-step {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
      }
    }

    @media(max-width:460px) {
      .mockup-scenes {
        min-height: 820px;
      }

      .mockup-sheet {
        grid-template-columns: 1fr;
      }

      .mockup-step {
        flex-basis: 100%;
      }
    }

    /* â”€â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .how {
      padding: 96px 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rust);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 500px;
      line-height: 1.7;
      margin-bottom: 56px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media(max-width:680px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    .step {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .step:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .step::after {
      content: attr(data-n);
      position: absolute;
      right: 16px;
      top: 12px;
      font-family: 'Fraunces', serif;
      font-size: 4rem;
      font-weight: 800;
      color: rgba(26, 23, 20, 0.04);
      line-height: 1;
    }

    .step-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--rust-l);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* â”€â”€â”€ FEATURES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .features {
      background: var(--ink);
      color: white;
      padding: 96px 24px;
    }

    .features-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .features-inner .section-eyebrow {
      color: #E8906A;
    }

    .features-inner .section-title {
      color: white;
    }

    .features-inner .section-sub {
      color: rgba(255, 255, 255, 0.5);
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media(max-width:700px) {
      .feat-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .feat-grid {
        grid-template-columns: 1fr;
      }
    }

    .feat {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 22px 20px;
      transition: background 0.2s, border-color 0.2s;
    }

    .feat:hover {
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(196, 69, 10, 0.4);
    }

    .feat-icon {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .feat h4 {
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: white;
    }

    .feat p {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.48);
      line-height: 1.6;
    }

    /* â”€â”€â”€ PRICING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .pricing {
      padding: 96px 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: start;
    }

    .plans--two {
      grid-template-columns: repeat(2, 1fr);
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
      align-items: stretch;
    }

    @media(max-width:680px) {
      .plans {
        grid-template-columns: 1fr;
      }
    }

    .plan {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .plan:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
      transform: translateY(-2px);
    }

    .plan.popular {
      background: var(--ink);
      border-color: var(--ink);
      color: white;
      transform: scale(1.03);
    }

    .plan.popular:hover {
      transform: scale(1.03) translateY(-2px);
    }

    .plan-badge-pop {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--rust);
      color: white;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .plan-tier {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .plan.popular .plan-tier {
      color: rgba(255, 255, 255, 0.45);
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .plan-price strong {
      font-family: 'Fraunces', serif;
      font-size: 2.2rem;
      font-weight: 700;
    }

    .plan-price span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .plan.popular .plan-price span {
      color: rgba(255, 255, 255, 0.45);
    }

    .plan-tagline {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .plan.popular .plan-tagline {
      color: rgba(255, 255, 255, 0.55);
    }

    .plan-divider {
      height: 1px;
      background: var(--border);
    }

    .plan.popular .plan-divider {
      background: rgba(255, 255, 255, 0.1);
    }

    .plan-feats {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .plan-feat {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.8rem;
    }

    .plan-feat-check {
      flex-shrink: 0;
      margin-top: 1px;
    }

    .plan-feat-x {
      color: var(--border);
    }

    .plan-feat-text-off {
      color: var(--border);
    }

    /* AD BADGE */
    .ad-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 20px;
      background: #FFF3E0;
      color: #C45A00;
      border: 1px solid #FFD0A0;
      letter-spacing: 0.04em;
    }

    /* BILLING TOGGLE */
    .billing-toggle {
      display: flex;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      align-items: center;
      gap: 6px;
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 4px;
      margin-bottom: 36px;
    }

    .billing-opt {
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--muted);
      padding: 6px 16px;
      border-radius: 20px;
      transition: background 0.15s, color 0.15s;
    }

    .billing-opt.active {
      background: var(--ink);
      color: #fff;
    }

    .billing-save-pill {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: #E8F5EE;
      color: var(--green);
      border: 1px solid #B8E0C8;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
      margin-left: 2px;
    }

    /* FOUNDER BADGE */
    .plan-badge-founder {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #C49A2A;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .plan-price-wrap {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .plan-price-original {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      line-height: 1;
    }

    .plan-annual-note {
      font-size: 0.74rem;
      color: rgba(255,255,255,0.55);
      margin-top: -8px;
    }

    /* ENTERPRISE CONTACT NOTE */
    .plans-enterprise-note {
      text-align: center;
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 24px;
    }

    .plans-enterprise-note a {
      color: var(--ink);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .plan-cta {
      margin-top: 4px;
    }

    .plan-cta .btn {
      width: 100%;
      justify-content: center;
    }

    /* â”€â”€â”€ AD EXPLANATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .ad-explain {
      max-width: 900px;
      margin: 0 auto 80px;
      padding: 0 24px;
    }

    .ad-box {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .ad-box-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ad-box-text h4 {
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .ad-box-text p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* â”€â”€â”€ TESTIMONIALS / TRUST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .trust {
      background: var(--paper2);
      padding: 80px 24px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .trust-title {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 40px;
      letter-spacing: -0.02em;
    }

    .trust-logos {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .trust-logo {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 24px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      white-space: nowrap;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    @media(max-width:680px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    .testi {
      background: var(--surf);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px 22px;
      text-align: left;
    }

    .testi-stars {
      color: #C49A2A;
      font-size: 0.85rem;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }

    .testi-text {
      font-size: 0.82rem;
      color: var(--ink);
      line-height: 1.6;
      margin-bottom: 14px;
      font-style: italic;
    }

    .testi-author {
      font-size: 0.74rem;
      font-weight: 600;
      color: var(--muted);
    }

    /* â”€â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .faq {
      padding: 96px 24px;
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
      cursor: pointer;
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.88rem;
      font-weight: 600;
      gap: 16px;
      user-select: none;
    }

    .faq-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--paper2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
      color: var(--muted);
      transition: transform 0.2s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-a {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, margin-top 0.3s;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      margin-top: 12px;
    }

    /* â”€â”€â”€ CTA FINAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .cta-final {
      background: var(--rust);
      color: white;
      padding: 96px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.5;
      pointer-events: none;
    }

    .cta-final-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-final h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      line-height: 1.15;
    }

    .cta-final p {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .cta-final-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--rust);
    }

    .btn-white:hover {
      background: rgba(255, 255, 255, 0.92);
    }

    .btn-white-outline {
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255, 255, 255, 0.5);
    }

    .btn-white-outline:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.4);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    footer .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      font-weight: 600;
      color: white;
    }

    footer .footer-logo em {
      color: var(--rust);
      font-style: italic;
    }

    footer nav a {
      font-size: 0.76rem;
      color: rgba(255, 255, 255, 0.35);
      text-decoration: none;
      margin-left: 20px;
      transition: color 0.15s;
    }

    footer nav a:hover {
      color: white;
    }

    /* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content>* {
      animation: fadeUp 0.6s ease both;
    }

    .hero-eyebrow {
      animation-delay: 0.1s;
    }

    .hero h1 {
      animation-delay: 0.2s;
    }

    .hero-sub {
      animation-delay: 0.3s;
    }

    .hero-actions {
      animation-delay: 0.4s;
    }

    .hero-proof {
      animation-delay: 0.5s;
    }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media(max-width:768px) {
      nav.top-nav {
        padding: 0 20px;
        height: auto;
        min-height: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        width: 100%;
        margin-left: 0;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .nav-cta .btn {
        padding: 7px 14px;
        font-size: 0.78rem;
      }

      .hero {
        padding: 100px 20px 60px;
      }

      .how,
      .pricing,
      .faq {
        padding: 64px 20px;
      }

      .features {
        padding: 64px 20px;
      }

      .cta-final {
        padding: 64px 20px;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
      }

      footer nav {
        margin-top: 4px;
      }

      footer nav a:first-child {
        margin-left: 0;
      }

      .plans {
        grid-template-columns: 1fr;
      }

      .plan.popular {
        transform: none;
      }

      .plan.popular:hover {
        transform: translateY(-2px);
      }
    }
