/* ============================================================
   appsstore.ai — v2 marketing site
   "A real human, for anything you're building with AI."
   Design tokens + components
   ============================================================ */

:root {
  --bg: #f4f3ef;
  --bg-2: #efeee8;
  --ink: #111110;
  --ink-soft: #2a2a26;
  --lime: #c8ff00;
  --lime-ink: #0a0a0b;
  --lime-deep: #3f5e00;
  --muted: #57564e;
  --muted-2: #8a887e;
  --line: #e2e0d8;
  --line-2: #d6d4ca;
  --card-line: #e6e4db;
  --card-line-2: #eceae1;

  --panel: #181817;
  --panel-2: #212120;
  --panel-line: #2a2a27;
  --panel-deep: #0f0f0e;
  --panel-lime-line: #2f3a12;

  --violet: #7c85ff;
  --teal: #4ec7c0;

  --sans: 'Geist', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', var(--sans);
  --mono: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  --maxw: 1200px;
  --pad: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--lime); color: var(--ink); }

/* subtle film-grain layer on the whole page */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 2; }

/* ---- keyframes ---- */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---- shared ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: 104px; padding-bottom: 96px; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--muted-2); margin-bottom: 14px; text-transform: uppercase; }
.h2 { font-family: var(--display); font-weight: 600; font-size: 46px; line-height: 1.0; letter-spacing: -0.03em; }
.mark { background: var(--lime); padding: 0 8px; border-radius: 5px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.lede { font-size: 16px; color: var(--muted); line-height: 1.6; }

.btn-primary { background: var(--ink); color: var(--bg); font-weight: 600; font-size: 14px; padding: 11px 19px; border-radius: 11px; transition: transform .12s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-lime { background: var(--lime); color: var(--lime-ink); font-weight: 600; font-size: 14px; padding: 11px 19px; border-radius: 11px; transition: transform .12s; display: inline-block; border: none; cursor: pointer; }
.btn-lime:hover { transform: translateY(-1px); }

/* ============================================================ NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(244,243,239,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px var(--pad); gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__logo { width: 27px; height: 27px; border-radius: 8px; background: var(--ink); display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: 700; font-family: var(--display); font-size: 15px; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.brand__name .dim { color: var(--muted-2); }
.badge-beta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--lime-deep); background: var(--lime); padding: 3px 8px; border-radius: 20px; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); }
.nav__links a { transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__signin { font-size: 14px; color: var(--muted); }
.nav__signin:hover { color: var(--ink); }

/* ============================================================ HERO */
.hero { padding: 76px var(--pad) 36px; max-width: var(--maxw); margin: 0 auto; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted); border: 1px solid var(--line-2); padding: 7px 15px; border-radius: 30px; margin-bottom: 26px; }
.pill .ping { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(200,255,0,.6); animation: pulse 2s ease infinite; }
.hero__title { font-family: var(--display); font-weight: 600; font-size: 64px; line-height: 0.97; letter-spacing: -0.035em; margin-bottom: 22px; }
.hero__title .mark { padding: 0 10px; }
.hero__lede { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 480px; margin-bottom: 32px; }

/* install widget (reused terminal card) */
.install { max-width: 540px; }
.install__tabs { display: inline-flex; gap: 3px; padding: 3px; background: #e9e7dd; border-radius: 11px; margin-bottom: 12px; }
.install__tab { font-family: var(--mono); font-size: 12px; padding: 7px 15px; border-radius: 8px; cursor: pointer; border: none; font-weight: 500; background: transparent; color: var(--muted); transition: background .15s, color .15s; }
.install__tab[aria-selected="true"] { background: var(--ink); color: var(--bg); }
.install__card { background: var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 42px -18px rgba(0,0,0,0.45); }
.install__cardhead { display: flex; align-items: center; gap: 7px; padding: 11px 12px 11px 16px; border-bottom: 1px solid #262521; }
.install__dot { width: 11px; height: 11px; border-radius: 50%; background: #3a3a34; flex-shrink: 0; }
.install__cardlabel { margin-left: 6px; font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.02em; }
.install__copy { margin-left: auto; background: var(--lime); color: var(--lime-ink); border: none; padding: 6px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .15s; }
.install__copy.is-copied { background: rgba(200,255,0,0.14); color: var(--lime); }
.install__cardbody { display: flex; gap: 12px; align-items: flex-start; padding: 18px 20px; }
.install__prefix { color: var(--lime); font-family: var(--mono); font-size: 15px; line-height: 1.6; flex-shrink: 0; }
.install__code { flex: 1; font-family: var(--mono); font-size: 14px; color: var(--bg); line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
.install__hint { font-size: 13px; color: var(--muted-2); margin-top: 11px; line-height: 1.45; }
.install__assurances { display: flex; align-items: center; gap: 22px; margin-top: 22px; font-size: 13px; color: var(--muted-2); flex-wrap: wrap; }
.install__assurances span { display: flex; align-items: center; gap: 7px; }
.install__assurances .dot { color: var(--ink); }

/* hero chat card */
.chatcard { background: var(--ink); border-radius: 20px; padding: 20px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.45); position: relative; overflow: hidden; }
.chatcard__glow { position: absolute; inset: -40% -10% auto -10%; height: 220px; background: radial-gradient(60% 100% at 50% 0%, rgba(124,133,255,.20), transparent 70%); pointer-events: none; }
.chat { background: var(--panel); border: 1px solid var(--panel-line); border-radius: 15px; overflow: hidden; position: relative; }
.chat__head { display: flex; align-items: center; gap: 10px; padding: 14px 17px; border-bottom: 1px solid var(--panel-line); }
.chat__avatar { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; overflow: hidden; background: #2a2a27; }
.chat__avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3); }
.chat__who { flex: 1; min-width: 0; }
.chat__name { font-size: 13px; font-weight: 600; color: var(--bg); }
.chat__meta { font-size: 11px; color: var(--muted-2); }
.chat__live { font-size: 10.5px; font-family: var(--mono); color: var(--lime); display: flex; align-items: center; gap: 6px; }
.chat__live .led { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); animation: pulse 2s ease infinite; }
.chat__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 84%; padding: 11px 14px; font-size: 14px; line-height: 1.45; }
.bubble--me { align-self: flex-end; max-width: 80%; background: var(--violet); color: #fff; border-radius: 15px 15px 4px 15px; }
.bubble--them { align-self: flex-start; background: var(--panel-2); color: #e4e4e0; border-radius: 15px 15px 15px 4px; }
.approval { background: var(--panel-deep); border: 1px solid var(--panel-lime-line); border-radius: 13px; padding: 15px; }
.approval__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--lime); margin-bottom: 8px; }
.approval__title { font-size: 14px; color: var(--bg); margin-bottom: 3px; }
.approval__title code { font-family: var(--mono); color: var(--lime); }
.approval__est { font-size: 12.5px; color: var(--muted-2); margin-bottom: 13px; }
.approval__actions { display: flex; gap: 9px; }
.approval__yes { flex: 1; background: var(--lime); color: var(--lime-ink); border: none; padding: 10px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; }
.approval__no { background: transparent; color: var(--muted-2); border: 1px solid var(--panel-line); padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* ============================================================ TOOL MARQUEE */
.tools { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; position: relative; margin-top: 36px; }
.tools__lead { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted-2); margin-bottom: 16px; }
.tools__fade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, var(--bg), rgba(244,243,239,0) 10%, rgba(244,243,239,0) 90%, var(--bg)); pointer-events: none; }
.tools__track { display: flex; gap: 52px; width: max-content; animation: marq 34s linear infinite; font-family: var(--display); font-weight: 500; font-size: 18px; color: #c3c1b6; white-space: nowrap; }

/* ============================================================ SECTION HEADERS */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 42px; gap: 30px; flex-wrap: wrap; }
.sec-head__title { max-width: 620px; }
.sec-head__aside { font-size: 15px; color: var(--muted); max-width: 320px; line-height: 1.6; }

/* ============================================================ EXPERTISE / EXPERTS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--panel-line); border-radius: 18px; overflow: hidden; margin-bottom: 40px; }
.stat { background: var(--ink); padding: 28px 26px; }
.stat__n { font-family: var(--display); font-weight: 600; font-size: 40px; letter-spacing: -0.02em; color: var(--lime); line-height: 1; }
.stat__label { font-size: 13.5px; color: #a8a79e; margin-top: 8px; }

/* expert wall — scrolling portraits */
.wall { display: flex; flex-direction: column; gap: 14px; overflow: hidden; position: relative; padding: 4px 0; margin-bottom: 8px; }
.wall__fade { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(90deg, var(--bg), rgba(244,243,239,0) 8%, rgba(244,243,239,0) 92%, var(--bg)); }
.wall__row { display: flex; gap: 14px; width: max-content; }
.wall__row--a { animation: marq 60s linear infinite; }
.wall__row--b { animation: marqR 72s linear infinite; }
.wall:hover .wall__row { animation-play-state: paused; }
.facetile { width: 208px; flex-shrink: 0; background: #fff; border: 1px solid var(--card-line); border-radius: 14px; padding: 10px; display: flex; align-items: center; gap: 12px; }
.facetile__img { width: 52px; height: 52px; border-radius: 11px; object-fit: cover; filter: grayscale(1) contrast(1.03); flex-shrink: 0; background: #e8e6dd; }
.facetile__name { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.facetile__disc { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--muted-2); margin-top: 3px; text-transform: uppercase; }

/* discipline filter */
.filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 40px 0 26px; }
.chip { font-size: 13px; font-weight: 500; color: var(--muted); background: #fff; border: 1px solid var(--card-line); border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 8px; }
.chip:hover { border-color: var(--line-2); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip__count { font-family: var(--mono); font-size: 11px; opacity: .6; }

/* expert grid */
.experts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expert { background: #fff; border: 1px solid var(--card-line); border-radius: 18px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.expert:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -22px rgba(0,0,0,0.2); }
.expert.hide { display: none; }
.expert__photo { position: relative; height: 180px; background: #e8e6dd; }
.expert__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); }
.expert__disc { position: absolute; bottom: 10px; left: 10px; font-family: var(--mono); font-size: 10.5px; color: var(--lime-ink); background: var(--lime); padding: 3px 9px; border-radius: 20px; font-weight: 500; }
.expert__vet { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: rgba(17,17,16,.7); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 12px; backdrop-filter: blur(4px); }
.expert__pad { padding: 16px 16px 18px; }
.expert__name { font-family: var(--display); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.expert__role { font-size: 12.5px; color: var(--muted-2); margin-bottom: 10px; }
.expert__cred { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; min-height: 38px; }
.expert__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.expert__tag { font-family: var(--mono); font-size: 10.5px; color: var(--muted); border: 1px solid var(--line); padding: 3px 8px; border-radius: 6px; }
.experts__more { text-align: center; margin-top: 26px; font-size: 14px; color: var(--muted-2); }
.experts__more a { color: var(--ink); border-bottom: 1px solid #cfcdc3; padding-bottom: 1px; }

/* ============================================================ TEAM MATCHER */
.matcher { background: var(--ink); color: var(--bg); border-radius: 26px; padding: 56px 48px; position: relative; overflow: hidden; }
.matcher__glow { position: absolute; inset: 0; background: radial-gradient(70% 90% at 15% 0%, rgba(124,133,255,.16), transparent 55%), radial-gradient(60% 90% at 100% 100%, rgba(200,255,0,.10), transparent 55%); pointer-events: none; }
.matcher__inner { position: relative; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
.matcher__eyebrow { color: var(--lime); }
.matcher__title { font-family: var(--display); font-weight: 600; font-size: 38px; line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 16px; }
.matcher__sub { font-size: 15.5px; color: #a8a79e; line-height: 1.6; margin-bottom: 26px; }
.matcher__needs { display: flex; flex-wrap: wrap; gap: 9px; }
.need { font-size: 13.5px; font-weight: 500; color: #d8d7d0; background: #1e1e1c; border: 1px solid var(--panel-line); border-radius: 999px; padding: 9px 16px; cursor: pointer; transition: all .15s; }
.need:hover { border-color: #45443d; }
.need[aria-pressed="true"] { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.matcher__panel { background: #141413; border: 1px solid var(--panel-line); border-radius: 18px; padding: 22px; min-height: 300px; }
.matcher__panelhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.matcher__status { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: .03em; display: flex; align-items: center; gap: 8px; }
.matcher__status .led { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: pulse 1.4s ease infinite; }
.matcher__spinner { width: 15px; height: 15px; border: 2px solid var(--panel-line); border-top-color: var(--lime); border-radius: 50%; animation: spinSlow .8s linear infinite; }
.matcher__eta { font-family: var(--mono); font-size: 11px; color: var(--lime); }
.team { display: flex; flex-direction: column; gap: 11px; }
.member { display: flex; align-items: center; gap: 13px; background: #1b1b19; border: 1px solid var(--panel-line); border-radius: 13px; padding: 11px 13px; opacity: 0; transform: translateY(10px); }
.member.in { opacity: 1; transform: none; transition: opacity .45s, transform .45s; }
.member__img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; filter: grayscale(1) contrast(1.03); flex-shrink: 0; background: #2a2a27; }
.member__name { font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--bg); }
.member__role { font-size: 12px; color: var(--muted-2); }
.member__badge { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--lime-ink); background: var(--lime); padding: 3px 9px; border-radius: 20px; }
.matcher__empty { color: var(--muted-2); font-size: 14px; line-height: 1.6; padding: 30px 6px; text-align: center; }

/* ============================================================ USE CASES */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case { background: #fff; border: 1px solid var(--card-line); border-radius: 18px; padding: 26px; transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; }
.case:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -22px rgba(0,0,0,0.2); }
.case__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.case__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.case__from { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.case__who { font-family: var(--mono); font-size: 11px; letter-spacing: .05em; color: var(--lime-deep); text-transform: uppercase; margin-bottom: 8px; }
.case__title { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
.case__body { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.case__quote { font-family: var(--mono); font-size: 12px; color: var(--muted); border-top: 1px solid var(--card-line-2); padding-top: 13px; margin-top: auto; }

/* ============================================================ HOW */
.how { background: var(--ink); color: var(--bg); border-radius: 24px; padding: 62px 54px; position: relative; overflow: hidden; }
.how__glow { position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% -10%, rgba(200,255,0,.10), transparent 60%); pointer-events: none; }
.how__head { text-align: center; margin-bottom: 50px; position: relative; }
.how__title { font-family: var(--display); font-weight: 600; font-size: 42px; letter-spacing: -0.03em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
.step { border-top: 2px solid var(--lime); padding-top: 22px; }
.step__n { font-family: var(--mono); font-size: 13px; color: var(--muted-2); margin-bottom: 14px; }
.step__title { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.step__body { font-size: 14.5px; color: #a8a79e; line-height: 1.6; }

/* ============================================================ PRODUCT PREVIEW */
.preview { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.preview__title { font-family: var(--display); font-weight: 600; font-size: 42px; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 18px; }
.preview__lede { font-size: 16px; color: var(--muted); line-height: 1.6; margin-bottom: 26px; }
.preview__points { display: flex; flex-direction: column; gap: 13px; }
.preview__point { display: flex; gap: 12px; align-items: flex-start; }
.preview__point .arrow { color: var(--ink); font-size: 15px; margin-top: 1px; }
.preview__point span.txt { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================ TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: #fff; border: 1px solid var(--card-line); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.quote__stars { color: var(--lime-deep); letter-spacing: 2px; font-size: 13px; margin-bottom: 14px; }
.quote__text { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 20px; }
.quote__who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.quote__img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; filter: grayscale(1); background: #e8e6dd; }
.quote__name { font-weight: 600; font-size: 13.5px; }
.quote__role { font-size: 12px; color: var(--muted-2); }

/* ============================================================ SECURITY */
.security { border-top: 1px solid var(--line); padding-top: 78px; }
.security__head { text-align: center; margin-bottom: 48px; }
.security__title { font-family: var(--display); font-weight: 600; font-size: 46px; letter-spacing: -0.03em; max-width: 640px; margin: 0 auto 16px; line-height: 1.0; }
.security__lede { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.6; }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sec-card { background: #fff; border: 1px solid var(--card-line); border-radius: 16px; padding: 26px 24px; }
.sec-card__icon { width: 42px; height: 42px; border-radius: 11px; background: var(--ink); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 16px; }
.sec-card__title { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 8px; }
.sec-card__body { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================ PRICING */
.pricing__head { text-align: center; margin-bottom: 48px; }
.pricing__title { font-family: var(--display); font-weight: 600; font-size: 46px; letter-spacing: -0.03em; margin-bottom: 16px; }
.pricing__lede { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { border-radius: 20px; padding: 34px 30px; display: flex; flex-direction: column; }
.plan--light { background: #fff; border: 1px solid var(--card-line); }
.plan--dark { background: var(--ink); border: 1px solid var(--ink); box-shadow: 0 34px 80px -30px rgba(0,0,0,0.4); }
.plan__pop { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--lime-ink); background: var(--lime); display: inline-block; padding: 3px 10px; border-radius: 20px; margin-bottom: 18px; font-weight: 600; align-self: flex-start; }
.plan__name { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 6px; }
.plan__sub { font-size: 14px; margin-bottom: 24px; }
.plan__priceRow { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.plan__price { font-family: var(--display); font-weight: 600; font-size: 44px; letter-spacing: -0.03em; }
.plan__unit { font-size: 14px; }
.plan__credits { font-family: var(--mono); font-size: 13px; margin-bottom: 26px; }
.plan__feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.plan__feat { display: flex; gap: 10px; font-size: 14px; }
.plan__btn { margin-top: auto; text-align: center; padding: 12px; border-radius: 11px; font-size: 14px; font-weight: 600; display: block; }
.plan__btn--ghost-light { border: 1px solid #cfcdc3; color: var(--ink); }
.plan__btn--lime { background: var(--lime); color: var(--lime-ink); }
.plan--dark .plan__name, .plan--dark .plan__price { color: var(--bg); }
.plan--dark .plan__sub, .plan--dark .plan__unit { color: var(--muted-2); }
.plan--dark .plan__credits, .plan--dark .plan__feat .check { color: var(--lime); }
.plan--dark .plan__feat { color: var(--bg); }
.plan--light .plan__name, .plan--light .plan__price, .plan--light .plan__feat { color: var(--ink); }
.plan--light .plan__sub, .plan--light .plan__unit { color: var(--muted); }
.plan--light .plan__credits, .plan--light .plan__feat .check { color: var(--lime-deep); }

/* ============================================================ FINAL CTA */
.cta { background: var(--ink); border-radius: 26px; padding: 74px 54px; text-align: center; position: relative; overflow: hidden; }
.cta__glow { position: absolute; inset: 0; background: radial-gradient(90% 120% at 50% 120%, rgba(200,255,0,0.13), rgba(17,17,16,0) 60%); pointer-events: none; }
.cta__inner { position: relative; }
.cta__title { font-family: var(--display); font-weight: 700; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; color: var(--bg); margin-bottom: 18px; }
.cta__lede { font-size: 18px; color: #a8a79e; max-width: 500px; margin: 0 auto 32px; line-height: 1.5; }
.cta__bar { display: inline-flex; align-items: center; gap: 12px; background: var(--lime-ink); border: 1px solid var(--panel-line); border-radius: 14px; padding: 8px 8px 8px 18px; max-width: 100%; flex-wrap: wrap; justify-content: center; }
.cta__bar .install__prefix { font-size: 15px; }
.cta__bar code { font-family: var(--mono); font-size: 14.5px; color: var(--bg); }
.cta__copy { background: var(--lime); color: var(--lime-ink); border: none; padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; }

/* ============================================================ FOOTER */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 52px var(--pad) 60px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer__brand { max-width: 280px; }
.footer__row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo { width: 24px; height: 24px; border-radius: 7px; background: var(--ink); display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: 700; font-family: var(--display); font-size: 14px; }
.footer__name { font-family: var(--display); font-weight: 600; font-size: 16px; }
.footer__name .dim { color: var(--muted-2); }
.footer__tag { font-size: 13px; color: var(--muted-2); line-height: 1.6; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer__links a:hover { color: var(--ink); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: 52px; }
  .matcher__inner { grid-template-columns: 1fr; gap: 32px; }
  .preview { grid-template-columns: 1fr; gap: 36px; }
  .experts { grid-template-columns: repeat(3, 1fr); }
  .cases { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .nav__links { display: none; }
}
@media (max-width: 760px) {
  :root { --pad: 20px; }
  .section { padding-top: 72px; padding-bottom: 60px; }
  .hero { padding: 44px var(--pad) 24px; }
  .hero__title { font-size: 40px; }
  .h2, .security__title, .pricing__title, .how__title, .preview__title, .matcher__title { font-size: 32px; }
  .cta__title { font-size: 38px; }
  .cta, .how, .matcher { padding-left: 26px; padding-right: 26px; }
  .experts { grid-template-columns: repeat(2, 1fr); }
  .cases { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .nav__signin { display: none; }
  .matcher { padding-top: 40px; padding-bottom: 40px; }
  .how { padding-top: 44px; padding-bottom: 44px; }
}
@media (max-width: 460px) {
  .hero__title { font-size: 34px; }
  .cta__title { font-size: 30px; }
  .experts { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}
