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

    :root {
      --off-white:   #faf8f3;
      --warm-light:  #f1ece0;
      --green:       #48a247;
      --green-dark:  #3c8b3b;
      --ink:         #1f1d14;
      --ink-mid:     #4a4639;
      --ink-muted:   #756f5e;
      --ink-faint:   #9e9982;
      --dark-bg:     #1f1d14;
      --featured-bg: #f2f4e9;
      --border:      #d9d4c4;
      --radius-sm:   6px;
      --radius-md:   12px;
      --radius-lg:   20px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Albert Sans', system-ui, sans-serif;
      background: var(--off-white);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
    @media (max-width: 900px) { .wrap { padding: 0 24px; } }

    /* ──────────────────────────── NAV ──────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      /* needed so absolute dropdown is positioned relative to the nav bar */
      isolation: isolate;
      background: rgba(250,248,243,.86);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(158,153,130,.2);
    }
    .nav .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 2rem;
    }
    .nav__brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav__mark {
      width: 34px; height: 34px;
      border-radius: 8px;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .nav__mark img { width: 100%; height: 100%; object-fit: cover; }
    .nav__name {
      font-size: 18px;
      font-weight: 600;
      color: var(--ink);
    }
    .nav__links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }
    .nav__links a {
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-mid);
      transition: color .15s;
    }
    .nav__links a:hover { color: var(--ink); }
    .nav__cta {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #faf8f3;
      border: none;
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 13.5px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      transition: background .15s, transform .15s;
      flex-shrink: 0;
    }
    .nav__cta:hover { background: #3a9039; transform: translateY(-1px); }
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav__hamburger span {
      width: 22px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      display: block;
      transition: .2s;
    }
    @media (max-width: 860px) {
      .nav__links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,248,243,.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(158,153,130,.2);
        padding: 8px 0 16px;
        z-index: 199;
      }
      .nav__links li {
        border-bottom: 1px solid rgba(158,153,130,.12);
      }
      .nav__links li:last-child { border-bottom: none; }
      .nav__links a {
        display: block;
        padding: 13px 24px;
        font-size: 15px;
      }
      .nav--open .nav__links { display: flex; }
      .nav__hamburger { display: flex; }
      .nav__cta { padding: 9px 16px; }

      /* Animate hamburger to X when open */
      .nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
      .nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }

    /* ──────────────────────────── HERO ──────────────────────────── */
    .hero {
      padding: 96px 0 80px;
      overflow: hidden;
    }
    .hero .wrap {
      display: grid;
      grid-template-columns: 1fr 445px;
      gap: 4rem;
      align-items: center;
    }
    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .hero__dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
    }
    .hero__eyebrow-txt {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--ink);
    }
    .hero__title {
      font-size: 40px;
      font-weight: 600;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .hero__hook {
      font-family: 'Caveat', cursive;
      font-size: 52px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero__lede {
      font-size: 19px;
      color: var(--ink-mid);
      line-height: 1.65;
      max-width: 560px;
      margin-bottom: 32px;
    }
    .hero__cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #faf8f3;
      border: none;
      border-radius: 100px;
      padding: 14px 24px;
      font-size: 14.5px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      transition: background .15s, transform .15s, box-shadow .15s;
    }
    .btn-primary:hover {
      background: #3a9039;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(72,162,71,.3);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      padding: 4px 0;
      border-bottom: 1.5px solid var(--ink);
      transition: opacity .15s;
    }
    .btn-outline:hover { opacity: .6; }
    .hero__assure {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .hero__assure-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--ink-muted);
    }
    .hero__assure-item::before {
      content: '';
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--ink-faint);
      flex-shrink: 0;
    }
    .hero__bureau {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .hero__bureau-item dt {
      font-size: 10.5px;
      font-weight: 600;
      color: var(--ink-muted);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 2px;
    }
    .hero__bureau-item dd {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
    }

    /* Phone mockup pair */
    .hero__pair {
      position: relative;
      height: 520px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: -20px;
    }
    .phone {
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.15);
    }
    .phone--light { background: #3a3833; }
    .phone--dark  { background: #1a1d24; }
    .phone--sm { width: 178px; height: 360px; z-index: 1; margin-right: -20px; transform: rotate(-4deg) translateY(32px); }
    .phone--lg { width: 218px; height: 430px; z-index: 2; }
    .phone__screen {
      position: absolute;
      top: 12px; left: 8px; right: 8px; bottom: 10px;
      border-radius: 24px;
      overflow: hidden;
    }
    .phone--light .phone__screen { background: var(--off-white); }
    .phone--dark  .phone__screen { background: #0e1c0f; }
    .phone__notch {
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 80px; height: 22px;
      background: inherit;
      border-radius: 0 0 14px 14px;
      z-index: 10;
    }
    .phone__hole {
      position: absolute;
      top: 8px; left: 50%; transform: translateX(-50%);
      width: 11px; height: 11px;
      background: #0a0a0a;
      border-radius: 50%;
      z-index: 11;
    }
    /* call screen content */
    .call-screen {
      position: absolute;
      inset: 0;
      background: #0e1c0f;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 56px 16px 20px;
      gap: 8px;
    }
    .call-screen__line {
      font-size: 9px;
      font-weight: 600;
      color: rgba(255,255,255,.7);
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .call-screen__avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--green);
      margin: 12px auto 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; font-weight: 700; color: #fff;
    }
    .call-screen__name {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      text-align: center;
    }
    .call-screen__num {
      font-size: 11px;
      color: rgba(255,255,255,.6);
    }
    /* msg screen content */
    .msg-screen {
      position: absolute;
      inset: 0;
      background: var(--off-white);
      display: flex;
      flex-direction: column;
    }
    .msg-screen__header {
      background: var(--off-white);
      padding: 48px 12px 8px;
      border-bottom: 1px solid var(--border);
    }
    .msg-screen__header-title {
      font-size: 13px; font-weight: 600; color: var(--ink);
    }
    .msg-screen__list {
      flex: 1;
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .msg-bubble {
      height: 10px;
      border-radius: 8px;
      background: #e8e3d8;
    }
    .msg-bubble--sent {
      background: var(--green);
      align-self: flex-end;
      width: 65%;
    }
    .msg-bubble--recv { width: 75%; }

    @media (max-width: 900px) {
      .hero .wrap { grid-template-columns: 1fr; }
      .hero__pair { height: 320px; margin: 0 auto; }
      .phone--sm { width: 138px; height: 280px; }
      .phone--lg { width: 168px; height: 334px; }
    }
    @media (max-width: 600px) {
      .hero { padding: 56px 0 48px; }
      .hero__title { font-size: 30px; }
      .hero__hook { font-size: 38px; }
      .hero__lede { font-size: 16px; }
    }

    /* ──────────────────────────── USED FOR ──────────────────────────── */
    .usedfor {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
    }
    .usedfor .wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .usedfor__lede {
      font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
      font-size: 18px;
      color: var(--ink-mid);
      flex-shrink: 0;
    }
    .usedfor__list {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .usedfor__item {
      font-size: 15.5px;
      font-weight: 500;
      color: var(--ink);
      padding: 2px 12px;
    }
    .usedfor__sep {
      color: var(--ink-mid);
      font-weight: 500;
      font-size: 15.5px;
    }

    /* ──────────────────────────── HOW IT WORKS ──────────────────────────── */
    .how {
      background: var(--warm-light);
      padding: 96px 0;
    }
    .section-label {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--ink-muted);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-label--green { color: var(--green-dark); }
    .section-heading {
      font-family: 'Caveat', cursive;
      font-size: 44px;
      font-weight: 700;
      color: var(--green-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .features__heading {
      font-family: 'Albert Sans', sans-serif;
      color: var(--ink);
    }
    .section-lede {
      font-size: 19px;
      color: var(--ink-mid);
      line-height: 1.65;
      max-width: 540px;
    }
    .how__head {
      display: grid;
      grid-template-columns: 560px 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 64px;
    }
    .how__steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .how__cell {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .how__screenshot {
      width: 200px;
      height: 430px;
      object-fit: cover;
      object-position: top;
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
      margin: 0 auto;
      display: block;
    }
    @media (max-width: 900px) {
      .how__screenshot { width: 160px; height: 320px; }
    }
    .phone-sm {
      width: 200px;
      height: 430px;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
      margin: 0 auto;
    }
    .phone-sm--charcoal { background: #3a3833; }
    .phone-sm--slate    { background: #1a1d24; }
    .phone-sm__screen {
      position: absolute;
      top: 10px; left: 6px; right: 6px; bottom: 8px;
      border-radius: 22px;
      overflow: hidden;
    }
    .phone-sm--charcoal .phone-sm__screen { background: var(--off-white); }
    .phone-sm--slate    .phone-sm__screen { background: #0e1c0f; }
    .phone-sm__notch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 70px; height: 18px;
      background: inherit;
      border-radius: 0 0 12px 12px;
      z-index: 10;
    }
    .phone-sm__hole {
      position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
      width: 9px; height: 9px; background: #0a0a0a; border-radius: 50%; z-index: 11;
    }
    /* screen contents */
    .scr-pick {
      position: absolute;
      inset: 0;
      background: var(--off-white);
      padding: 40px 12px 12px;
    }
    .scr-pick__title { font-size: 11px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
    .scr-pick__field {
      background: var(--warm-light);
      border-radius: 8px;
      height: 30px;
      margin-bottom: 10px;
    }
    .scr-pick__row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
    }
    .scr-pick__num { font-size: 10px; font-weight: 600; color: var(--ink); }
    .scr-pick__area { font-size: 9px; color: var(--ink-muted); }
    .scr-pick__cta {
      position: absolute; bottom: 12px; left: 12px; right: 12px;
      background: var(--ink);
      border-radius: 8px; height: 32px;
      display: flex; align-items: center; justify-content: center;
    }
    .scr-pick__cta-txt { font-size: 10px; font-weight: 600; color: #fff; }
    .scr-call-sm {
      position: absolute;
      inset: 0;
      background: #0e1c0f;
      display: flex; flex-direction: column;
      align-items: center;
      padding: 40px 12px 16px;
    }
    .scr-call-sm__badge {
      font-size: 8px; font-weight: 600;
      color: rgba(255,255,255,.6);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .scr-call-sm__av {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--green);
      margin-bottom: 10px;
    }
    .scr-call-sm__name { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; text-align: center; }
    .scr-call-sm__num  { font-size: 10px; color: rgba(255,255,255,.5); }
    .scr-msg-sm {
      position: absolute;
      inset: 0;
      background: var(--off-white);
    }
    .scr-msg-sm__hd {
      height: 40px; border-bottom: 1px solid var(--border);
      display: flex; align-items: flex-end; padding: 0 10px 6px;
    }
    .scr-msg-sm__hd-title { font-size: 11px; font-weight: 600; color: var(--ink); }
    .scr-msg-sm__list { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
    .scr-msg-sm__bubble {
      height: 8px; border-radius: 6px; background: #e8e3d8;
    }
    .scr-msg-sm__bubble--out { background: var(--green); align-self: flex-end; width: 60%; }
    .scr-msg-sm__bubble--in  { width: 70%; }

    .how__caption { text-align: center; }
    .how__caption-label {
      font-size: 11.5px; font-weight: 600;
      color: var(--ink-muted);
      letter-spacing: .05em;
      margin-bottom: 6px;
    }
    .how__caption-title {
      font-size: 19px; font-weight: 600;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .how__caption-p {
      font-size: 14px;
      color: var(--ink-mid);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .how__head { grid-template-columns: 1fr; gap: 1rem; }
      .how__steps { grid-template-columns: 1fr; gap: 3rem; }
      .phone-sm { height: 320px; width: 160px; }
    }

    /* ──────────────────────────── STORIES ──────────────────────────── */
    .stories { padding: 96px 0; }
    .stories__head {
      display: grid;
      grid-template-columns: 600px 1fr;
      gap: 3rem;
      margin-bottom: 72px;
    }
    .stories__head .section-label { color: var(--green-dark); }
    .story {
      display: grid;
      grid-template-columns: 1fr 490px;
      gap: 3rem;
      align-items: center;
      padding: 56px 0;
      border-top: 1px solid var(--border);
    }
    .story:last-child { border-bottom: 1px solid var(--border); }
    .story--reverse { grid-template-columns: 490px 1fr; }
    .story--reverse .story__copy { order: 2; }
    .story--reverse .story__visual { order: 1; justify-content: flex-start; padding-left: 32px; padding-right: 0; }
    .story__kicker {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 16px;
    }
    .story__kicker-line {
      width: 24px; height: 1px; background: var(--ink-muted); flex-shrink: 0;
    }
    .story__kicker-txt {
      font-size: 11.5px; font-weight: 600;
      color: var(--ink-muted);
      letter-spacing: .05em;
    }
    .story__h2 {
      font-size: 48px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .story__accent {
      font-family: 'Caveat', cursive;
      font-style: italic;
      color: var(--green-dark);
      font-weight: 700;
    }
    .story__p {
      font-size: 19px;
      color: var(--ink-mid);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .story__visual {
      position: relative;
      height: 480px;
      display: flex; align-items: flex-end; justify-content: flex-end;
      padding-right: 32px;
    }
    .story__bg-blob {
      position: absolute;
      top: 20px; left: 20px; right: 20px;
      height: 360px;
      border-radius: var(--radius-lg);
      background-size: cover;
      background-position: center;
    }
    .story__phone {
      position: relative;
      z-index: 2;
      width: 175px; height: 375px;
      border-radius: 28px;
      background: #3a3833;
      box-shadow: 0 24px 64px rgba(0,0,0,.2), 0 6px 20px rgba(0,0,0,.1);
      overflow: hidden;
    }
    .story__phone--dark { background: #1a1d24; }
    .story__phone-screen {
      position: absolute;
      top: 8px; left: 5px; right: 5px; bottom: 7px;
      border-radius: 22px;
      overflow: hidden;
      background: var(--off-white);
    }
    .story__phone--dark .story__phone-screen { background: #0e1c0f; }
    .story__phone-notch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 68px; height: 16px;
      background: #3a3833;
      border-radius: 0 0 12px 12px;
      z-index: 10;
    }
    .story__phone--dark .story__phone-notch { background: #1a1d24; }
    .story__phone-hole {
      position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
      width: 9px; height: 9px; background: #0a0a0a; border-radius: 50%; z-index: 11;
    }

    @media (max-width: 1000px) {
      .stories__head { grid-template-columns: 1fr; gap: 1rem; }
      .story { grid-template-columns: 1fr; gap: 2rem; }
      .story--reverse { grid-template-columns: 1fr; }
      .story--reverse .story__copy { order: 1; }
      .story--reverse .story__visual { order: 2; }
      .story__h2 { font-size: 36px; }
      .story__visual { height: 320px; }
      .story__phone { width: 140px; height: 300px; }
    }

    /* ──────────────────────────── FEATURES ──────────────────────────── */
    .features {
      background: var(--warm-light);
      padding: 96px 0;
    }
    .features__head {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 3rem;
      align-items: start;
      margin-bottom: 64px;
    }
    .features__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
    }
    .feat {
      display: flex;
      gap: 20px;
      padding: 32px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background .15s;
    }
    .feat:hover { background: rgba(255,255,255,.6); }
    .feat__num {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-muted);
      flex-shrink: 0;
      width: 28px;
      padding-top: 2px;
    }
    .feat__title {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .feat__p {
      font-size: 14px;
      color: var(--ink-mid);
      line-height: 1.6;
    }
    .features__footer {
      margin-top: 48px;
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 14px 24px;
      font-size: 14.5px;
      font-weight: 600;
      font-family: inherit;
      color: var(--ink);
      cursor: pointer;
      text-decoration: none;
      transition: border-color .15s, background .15s;
    }
    .btn-ghost:hover { border-color: var(--ink); background: rgba(31,29,20,.04); }

    @media (max-width: 900px) {
      .features__head { grid-template-columns: 1fr; gap: 1rem; }
      .features__grid { grid-template-columns: 1fr; }
    }

    /* ──────────────────────────── USE CASES ──────────────────────────── */
    .usecases { padding: 96px 0; }
    .usecases__inner {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 56px;
      overflow: hidden;
    }
    .usecases__head {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 3rem;
      align-items: start;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }
    .dir-row {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      transition: background .1s;
      cursor: pointer;
    }
    .dir-row:first-child { border-top: 1px solid var(--border); }
    .dir-row:hover .dir-row__arr { color: var(--ink); transform: translateX(4px); }
    .dir-row__num {
      font-family: 'Roboto Mono', monospace;
      font-size: 12.5px;
      color: var(--ink-muted);
      width: 32px;
      flex-shrink: 0;
    }
    .dir-row__icon {
      width: 64px; height: 64px;
      border-radius: 14px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .dir-row__icon img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .dir-row__body { flex: 1; }
    .dir-row__title {
      font-size: 22px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .dir-row__p {
      font-size: 14.5px;
      color: var(--ink-mid);
      line-height: 1.55;
      max-width: 500px;
    }
    .dir-row__arr {
      font-size: 22px;
      color: var(--ink-muted);
      flex-shrink: 0;
      transition: color .15s, transform .15s;
    }

    @media (max-width: 900px) {
      .usecases__inner { padding: 32px 24px; }
      .usecases__head { grid-template-columns: 1fr; gap: 1rem; }
    }
    @media (max-width: 600px) {
      .dir-row { flex-wrap: wrap; }
      .dir-row__arr { display: none; }
    }

    /* ──────────────────────────── PRICING ──────────────────────────── */
    .pricing { padding: 96px 0; }
    .pricing__head {
      max-width: 640px;
      margin-bottom: 56px;
    }
    .pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      background: transparent;
      border: none;
      overflow: visible;
    }
    .plan {
      background: var(--off-white);
      padding: 36px 32px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-radius: var(--radius-lg);
      border: 1.5px solid var(--border);
    }
    .plan--featured {
      background: var(--featured-bg);
      border-color: var(--green);
      border-width: 2px;
    }
    .plan--pro {
      border-color: var(--ink);
      border-width: 2px;
    }
    .plan .btn-primary,
    .plan .btn-ghost {
      align-self: flex-start;
    }
    .plan__tag {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      position: absolute;
      top: -14px;
      left: 32px;
      white-space: nowrap;
      border-radius: 100px;
      font-size: 10.5px;
      font-weight: 600;
      width: fit-content;
    }
    .plan:has(.plan__tag) { padding-top: 48px; }
    .plan__tag--green { background: var(--green); color: #faf8f3; }
    .plan__tag--dark  { background: var(--ink);   color: #faf8f3; }
    .plan__name {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink-muted);
      margin-bottom: 12px;
    }
    .plan__price-row {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 4px;
    }
    .plan__currency {
      font-size: 28px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      padding-bottom: 10px;
    }
    .plan__amount {
      font-size: 64px;
      font-weight: 700;
      color: var(--ink);
      line-height: .95;
    }
    .plan__period {
      font-size: 15px;
      font-weight: 500;
      color: var(--ink-muted);
      padding-bottom: 8px;
    }
    .plan__weekly {
      font-size: 13px;
      color: var(--ink-muted);
      margin-bottom: 16px;
    }
    .plan__per-band {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(248,244,230,.9);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      margin-bottom: 8px;
    }
    .plan--featured .plan__per-band { background: rgba(235,241,226,.9); }
    .plan__per-amt {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
    }
    .plan__per-label {
      font-size: 11.5px;
      font-weight: 500;
      color: var(--ink-muted);
    }
    .plan__savings {
      background: var(--green);
      color: #faf8f3;
      font-size: 10.5px;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 4px;
      margin-left: auto;
    }
    .plan__hand {
      font-family: 'Caveat', cursive;
      font-size: 22px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 12px;
    }
    .plan__sub {
      font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
      font-size: 15px;
      color: var(--ink-mid);
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .plan__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
      flex: 1;
    }
    .plan__list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--ink-mid);
    }
    .plan__check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .plan__check::after {
      content: '';
      width: 8px; height: 5px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg) translate(1px, -1px);
    }
    .pricing__note {
      margin-top: 24px;
      font-size: 13px;
      color: var(--ink-muted);
      text-align: center;
    }

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

    /* ──────────────────────────── REVIEWS ──────────────────────────── */
    .reviews {
      background: var(--dark-bg);
      padding: 96px 0;
    }
    .reviews__head {
      margin-bottom: 56px;
    }
    .reviews__head .section-label { color: #faf8f3; opacity: .5; }
    .reviews__head .section-heading { color: #faf8f3; }
    .reviews__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .quote {
      background: var(--off-white);
      border-radius: var(--radius-md);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .quote__stars {
      display: flex;
      gap: 3px;
    }
    .quote__star {
      width: 14px; height: 14px;
      background: var(--ink);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }
    .quote__text {
      font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
      font-size: 17px;
      color: var(--ink);
      line-height: 1.65;
      flex: 1;
    }
    .quote__cite {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .quote__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--warm-light);
      flex-shrink: 0;
      overflow: hidden;
    }
    .quote__avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .quote__name {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }
    .quote__role {
      font-size: 12.5px;
      color: var(--ink-muted);
    }

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

    /* ──────────────────────────── TRUST ──────────────────────────── */
    .trust { padding: 96px 0; }
    .trust .wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .trust__visual {
      position: relative;
      height: 560px;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .trust__blob {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      background: var(--warm-light);
    }
    .trust__phone {
      position: relative; z-index: 2;
      width: 210px; height: 455px;
      border-radius: 34px;
      background: #1a1d24;
      box-shadow: 0 32px 80px rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.1);
      overflow: hidden;
    }
    .trust__phone-screen {
      position: absolute;
      top: 10px; left: 7px; right: 7px; bottom: 8px;
      border-radius: 26px;
      background: var(--off-white);
      overflow: hidden;
    }
    .trust__phone-hole {
      position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
      width: 11px; height: 11px; background: #0a0a0a; border-radius: 50%; z-index: 11;
    }
    .trust__copy .section-heading { font-size: 48px; }
    .trust__lede { font-size: 19px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 32px; }
    .trust__cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
    .trust__points { display: flex; flex-direction: column; gap: 20px; }
    .trust__pt { display: flex; gap: 14px; }
    .trust__ck {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--warm-light);
      border: 1.5px solid var(--border);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .trust__ck::after {
      content: '';
      width: 9px; height: 6px;
      border-left: 2px solid var(--green-dark);
      border-bottom: 2px solid var(--green-dark);
      transform: rotate(-45deg) translate(1px, -1px);
    }
    .trust__pt-title { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
    .trust__pt-p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.55; }

    @media (max-width: 900px) {
      .trust .wrap { grid-template-columns: 1fr; gap: 2rem; }
      .trust__visual { height: 320px; }
      .trust__phone { width: 160px; height: 346px; }
    }

    /* ──────────────────────────── FAQ ──────────────────────────── */
    .faq { padding: 96px 0; background: var(--off-white); }
    .faq .wrap {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 5rem;
      align-items: start;
    }
    .faq__head { position: sticky; top: 88px; }
    .faq__list { }
    .qa {
      border-bottom: 1px solid var(--border);
    }
    .qa__summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0;
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .qa__summary::-webkit-details-marker { display: none; }
    .qa__q {
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
    }
    .qa__ico {
      width: 24px; height: 24px;
      flex-shrink: 0;
      position: relative;
    }
    .qa__ico::before,
    .qa__ico::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      background: var(--ink-muted);
      border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }
    .qa__ico::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
    .qa__ico::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
    details[open] .qa__ico::after { opacity: 0; }
    .qa__a {
      padding-bottom: 20px;
      font-size: 15px;
      color: var(--ink-mid);
      line-height: 1.7;
      max-width: 560px;
    }

    @media (max-width: 860px) {
      .faq .wrap { grid-template-columns: 1fr; gap: 2rem; }
      .faq__head { position: static; }
    }

    /* ──────────────────────────── DOWNLOAD CTA ──────────────────────────── */
    .download { padding: 96px 0; }
    .download__inner {
      background: var(--dark-bg);
      border-radius: 24px;
      padding: 72px 64px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .download__label { color: rgba(91,181,90,1); margin-bottom: 12px; }
    .download__h2 {
      font-size: 44px;
      font-weight: 600;
      color: var(--off-white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .download__lede {
      font-size: 18px;
      color: rgba(250,248,243,.7);
      line-height: 1.65;
      margin-bottom: 32px;
    }
    .download__stores {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .store-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--off-white);
      border-radius: var(--radius-sm);
      padding: 12px 20px;
      text-decoration: none;
      transition: background .15s, transform .15s;
    }
    .store-btn:hover { background: #fff; transform: translateY(-2px); }
    .store-btn__icon {
      width: 24px; height: 24px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .store-btn__sub {
      font-size: 9.5px;
      color: var(--ink-muted);
      display: block;
      line-height: 1;
    }
    .store-btn__main {
      font-size: 15.5px;
      font-weight: 600;
      color: var(--ink);
      display: block;
      line-height: 1.3;
    }
    .download__note {
      margin-top: 20px;
      font-size: 12.5px;
      color: rgba(250,248,243,.4);
    }
    .download__visual {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      height: 380px;
      position: relative;
    }
    .dl-phone {
      width: 180px; height: 360px;
      border-radius: 28px;
      background: #3a3833;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 8px 20px rgba(0,0,0,.25);
    }
    .dl-phone__screen {
      position: absolute;
      top: 9px; left: 5px; right: 5px; bottom: 7px;
      border-radius: 22px;
      background: #0e1c0f;
      overflow: hidden;
      display: flex; flex-direction: column; align-items: center;
      padding: 32px 12px 12px;
    }
    .dl-phone__notch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 66px; height: 16px;
      background: #3a3833;
      border-radius: 0 0 10px 10px;
      z-index: 10;
    }
    .dl-phone__hole {
      position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
      width: 9px; height: 9px; background: #0a0a0a; border-radius: 50%; z-index: 11;
    }

    @media (max-width: 900px) {
      .download__inner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
      }
      .download__visual { display: none; }
      .download__h2 { font-size: 32px; }
    }

    /* ──────────────────────────── FOOTER ──────────────────────────── */
    .footer {
      border-top: 1px solid var(--border);
      padding: 56px 0 32px;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 320px repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 48px;
    }
    .footer__brand-name {
      display: flex; align-items: center; gap: 10px;
      font-size: 20px; font-weight: 600; color: var(--ink);
      margin-bottom: 12px;
    }
    .footer__brand-mark {
      width: 32px; height: 32px; border-radius: 8px; overflow: hidden;
    }
    .footer__brand-mark img { width: 100%; height: 100%; object-fit: cover; }
    .footer__brand-p {
      font-size: 14px;
      color: var(--ink-muted);
      line-height: 1.6;
      max-width: 300px;
    }
    .footer__col-title {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink-muted);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer__col a {
      font-size: 14px;
      color: var(--ink-mid);
      text-decoration: none;
      transition: color .15s;
    }
    .footer__col a:hover { color: var(--ink); }
    .footer__bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer__copy, .footer__tagline {
      font-size: 12.5px;
      color: var(--ink-muted);
    }

    @media (max-width: 900px) {
      .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer__top > :first-child { grid-column: 1/-1; }
    }
    @media (max-width: 560px) {
      .footer__top { grid-template-columns: 1fr; }
      .footer__top > :first-child { grid-column: auto; }
      .footer__bottom { flex-direction: column; text-align: center; }
    }
