/* GeoEcom "ჩეკი" (Receipt) system, v2.
   One typeface (FiraGO, OFL), ink on paper, and green only where money is paid or a thing is live. */
@font-face { font-family: "FiraGO"; src: url("assets/fonts/firago-Regular-sub.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "FiraGO"; src: url("assets/fonts/firago-Medium-sub.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "FiraGO"; src: url("assets/fonts/firago-SemiBold-sub.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "FiraGO"; src: url("assets/fonts/firago-Bold-sub.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --paper: #FAFAF7;       /* page */
  --thermal: #F4F3EE;     /* receipts */
  --counter: #EEEEE9;     /* alternate sections */
  --ink: #111412;         /* text, buttons, dark sections */
  --ink-2: #555B57;       /* secondary text */
  --ink-3: #8A908C;       /* tertiary, on dark */
  --rule: #DCDDD7;        /* hairlines */
  --paid: #0B7A4F;        /* paid / live only */
  --paid-on-dark: #3FCF8E;
  --sans: "FiraGO", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Fira Mono", "FiraGO", ui-monospace, Menlo, monospace;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1160px;
  color-scheme: light;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.6 var(--sans); font-feature-settings: "kern", "lnum"; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--paper); padding: 10px 14px; z-index: 50; }
.skip:focus { left: 8px; }

/* ---------- type ---------- */
h1, h2, h3 { margin: 0; text-wrap: balance; }
.display { font-size: clamp(42px, 6.2vw, 80px); line-height: 1.05; font-weight: 700; letter-spacing: -.028em; margin-bottom: 28px; }
h2 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; font-weight: 600; letter-spacing: -.022em; }
h3 { font-size: 19px; line-height: 1.35; font-weight: 600; letter-spacing: -.01em; }
.eyebrow { font-size: 14px; font-weight: 500; color: var(--ink-2); margin: 0 0 14px; }
.section-head { max-width: 700px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head > p:not(.eyebrow) { color: var(--ink-2); margin: 16px 0 0; font-size: 18px; max-width: 58ch; }
.section { padding-block: clamp(72px, 9vw, 128px); }

/* ---------- status line (replaces badges) ---------- */
.status { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 26px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--paid); box-shadow: 0 0 0 4px rgba(11, 122, 79, .14); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 10px; border: 1.5px solid var(--ink); background: var(--ink); color: var(--paper); font: 600 16px/1 var(--sans); text-decoration: none; cursor: pointer; transition: background .15s, color .15s; }
.btn:hover { background: #2A2F2C; border-color: #2A2F2C; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: transparent; border-color: var(--ink); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 14px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- header ---------- */
.site-header { border-bottom: 1px solid var(--rule); background: var(--paper); }
.bar { display: flex; align-items: center; gap: 28px; min-height: 68px; }
.logo { font: 700 21px/1 var(--sans); letter-spacing: -.03em; text-decoration: none; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 15px; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
@media (max-width: 820px) { .nav { display: none; } .bar .btn-small { margin-left: auto; } }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 104px) clamp(64px, 8vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.lead { font-size: clamp(18px, 1.5vw, 20px); line-height: 1.6; max-width: 32em; margin: 0 0 34px; color: var(--ink-2); }
.lead strong { color: var(--ink); font-weight: 600; }
.facts { list-style: none; padding: 22px 0 0; margin: 38px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0, max-content)); gap: 12px clamp(24px, 4vw, 48px); border-top: 1px solid var(--rule); font-size: 14px; line-height: 1.35; color: var(--ink-2); max-width: 520px; }
.facts b { display: block; color: var(--ink); font-weight: 600; font-size: 22px; letter-spacing: -.02em; margin-bottom: 4px; font-feature-settings: "tnum"; }
.facts-col { grid-template-columns: minmax(0, 1fr); border-top-color: #2A302C; }
.facts-col li { display: flex; align-items: baseline; gap: 10px; }
.facts-col b { display: inline; font-size: 17px; margin: 0; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 420px) { .facts { gap: 12px 18px; } .facts b { font-size: 19px; } }

/* DM chaos → paid receipt */
.hero-visual { position: relative; min-height: 470px; }
.dms { position: absolute; left: 0; top: 0; width: 62%; padding: 18px 18px 10px; background: #fff; border: 1px solid var(--rule); border-radius: 18px; box-shadow: 0 12px 30px -18px rgba(17, 20, 18, .25); }
.dms-head { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--ink-3); margin: 0 0 12px; }
.dms-head span { color: #B3261E; }
.bubble { width: fit-content; max-width: 88%; margin: 0 0 8px; padding: 8px 13px; background: #EFF0EC; border-radius: 16px 16px 16px 4px; font-size: 15px; color: var(--ink-2); }
.bubble:nth-child(odd) { margin-left: 8%; }
.receipt-hero { position: absolute; right: 0; bottom: 0; width: 60%; animation: print 1s cubic-bezier(.2, .8, .2, 1) .15s both; }
.receipt-hero .receipt { padding-bottom: 70px; }
@keyframes print { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 900px) { .hero-visual { min-height: 430px; max-width: 520px; } }
@media (max-width: 480px) { .hero-visual { min-height: 400px; } .dms { width: 80%; } .receipt-hero { width: 78%; } }

/* ---------- receipt (signature) ---------- */
.receipt-wrap { filter: drop-shadow(0 22px 28px rgba(17, 20, 18, .13)) drop-shadow(0 1px 2px rgba(17, 20, 18, .12)); }
.receipt { position: relative; background: var(--thermal); color: var(--ink); padding: 30px 26px 30px; font-family: var(--mono); font-feature-settings: "tnum";
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 40%);
  -webkit-mask: conic-gradient(from 135deg at top, #0000, #000 1deg 89deg, #0000 90deg) top / 12px 51% repeat-x, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 51% repeat-x;
          mask: conic-gradient(from 135deg at top, #0000, #000 1deg 89deg, #0000 90deg) top / 12px 51% repeat-x, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 12px 51% repeat-x; }
.r-brand { margin: 0; text-align: center; font: 700 17px/1 var(--sans); letter-spacing: .32em; }
.r-meta { margin: 8px 0 16px; text-align: center; font-size: 12px; color: var(--ink-2); padding-bottom: 14px; border-bottom: 1px dashed #B9BCB6; }
.r-line, .r-items li, .r-total { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.r-line { font-size: 13.5px; padding: 4px 0; }
.r-muted { color: var(--ink-2); }
.r-total { margin-top: 12px; padding-top: 12px; border-top: 1px dashed #B9BCB6; font-size: 15px; font-weight: 500; }
.stamp { position: absolute; left: 50%; bottom: 16px; margin: 0; padding: 6px 12px 5px; border: 2px solid var(--paid); color: var(--paid); font: 700 16px/1 var(--sans); letter-spacing: .06em; transform: translateX(-50%) rotate(-6deg); border-radius: 4px; opacity: .88; mix-blend-mode: multiply; }

/* ---------- demos ---------- */
.demos { background: var(--counter); }
.demo-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.demo-tabs button { display: grid; grid-template-columns: auto auto; gap: 1px 16px; align-items: center; text-align: left; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--rule); background: transparent; cursor: pointer; font: inherit; color: var(--ink-2); }
.demo-tabs button[aria-selected="true"] { background: var(--paper); border-color: var(--ink); color: var(--ink); }
.t-name { font-weight: 600; font-size: 16px; color: var(--ink); }
.t-niche { grid-column: 1; font-size: 13px; }
.t-state { grid-column: 2; grid-row: 1 / span 2; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; color: var(--ink-3); }
.t-state::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #C4C7C0; }
.t-state.is-live { color: var(--paid); }
.t-state.is-live::before { background: var(--paid); }
.demo-stage { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 28px 48px; align-items: end; }
.demo-media { position: relative; }
.browser { position: relative; border-radius: 12px; overflow: hidden; background: var(--paper); border: 1px solid #CFD1CA; box-shadow: 0 40px 70px -40px rgba(17, 20, 18, .45); }
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--rule); background: #F3F3EF; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #D6D8D2; }
.browser-bar span { margin: 0 auto; padding: 3px 14px; border-radius: 6px; background: var(--paper); font-size: 12px; color: var(--ink-2); }
.browser img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.frame-wrap { position: absolute; inset: 41px 0 0 0; background: var(--paper); }
.frame-wrap iframe { width: 100%; height: 100%; border: 0; }
.demo-stage.is-live .phone { visibility: hidden; }
.phone { position: absolute; right: -24px; bottom: -32px; width: 164px; border-radius: 24px; border: 5px solid var(--ink); overflow: hidden; background: var(--ink); box-shadow: 0 24px 40px -16px rgba(17, 20, 18, .45); }
.phone img { width: 100%; height: auto; aspect-ratio: 390 / 780; object-fit: cover; object-position: top; }
.demo-caption { display: flex; flex-direction: column; gap: 14px; }
.demo-caption > p { margin: 0; color: var(--ink-2); }
.demo-caption > .demo-title { color: var(--ink); font-size: 28px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.soon { margin: 0; font-size: 14px; color: var(--ink-3); }
@media (max-width: 900px) {
  .demo-stage { grid-template-columns: minmax(0, 1fr); }
  .demo-media { margin-bottom: 28px; }
  .phone { right: 8px; bottom: -24px; width: 104px; border-width: 4px; border-radius: 16px; }
  .demo-tabs { flex-wrap: nowrap; overflow-x: auto; }
  .demo-tabs button { flex: 0 0 auto; }
}

/* ---------- lists ---------- */
.checks, .crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checks li, .crosses li { position: relative; padding-left: 30px; }
.checks li::before { content: ""; position: absolute; left: 3px; top: .42em; width: 12px; height: 6px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }
.crosses li::before, .crosses li::after { content: ""; position: absolute; left: 3px; top: .72em; width: 13px; height: 1.5px; background: var(--ink-3); transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }

/* ---------- effort split ---------- */
.split-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 20px; }
.col { padding: clamp(26px, 3vw, 40px); border-radius: 16px; }
.col h3 { font-size: 22px; margin-bottom: 22px; }
.col-us { background: var(--ink); color: #E9EBE7; }
.col-us h3 { color: #fff; }
.col-us .checks li::before { color: var(--paid-on-dark); }
.col-you { border: 1px solid var(--rule); }
.steps-you { margin: 0; padding: 0; list-style: none; counter-reset: s; display: grid; gap: 18px; }
.steps-you li { counter-increment: s; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; font-size: 17px; }
.steps-you li::before { content: counter(s); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--ink); font: 600 14px/1 var(--sans); margin-top: 1px; }
@media (max-width: 820px) { .split-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- offer ---------- */
.offer { background: var(--counter); }
.offer-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.offer-copy > p { font-size: 18px; color: var(--ink-2); margin: 18px 0 30px; max-width: 32em; }
.why-five { border-top: 1px solid var(--rule); padding-top: 22px; margin-bottom: 30px; }
.why-five h3 { margin-bottom: 6px; }
.why-five p { margin: 0; color: var(--ink-2); }
.why-five strong { color: var(--ink); font-weight: 600; }
.receipt-offer { padding: 40px clamp(22px, 3vw, 40px) 44px; }
.r-items { list-style: none; counter-reset: i; margin: 0 0 8px; padding: 0; }
.r-items li { counter-increment: i; font-size: 14px; padding: 9px 0; border-bottom: 1px dotted #C4C7C0; }
.r-items li span:first-child::before { content: counter(i, decimal-leading-zero) "   "; color: var(--ink-3); white-space: pre; }
.r-items li span:last-child { white-space: nowrap; }
.r-total-big { font: 700 clamp(28px, 3.4vw, 40px)/1.1 var(--sans); letter-spacing: -.02em; border-top: 2px solid var(--ink); margin-top: 16px; padding-top: 16px; }
.r-total-big span:last-child { color: var(--paid); }
.r-after { margin: 16px 0 0; font: 400 15px/1.6 var(--sans); }
.r-after b { font-weight: 600; }
.r-foot { margin: 18px 0 0; font-size: 12px; color: var(--ink-2); text-align: center; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- guarantee ---------- */
.guarantee { background: var(--ink); color: #E9EBE7; }
.guarantee .eyebrow { color: var(--ink-3); }
.guarantee h2 { color: #fff; }
.seals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: #2A302C; border: 1px solid #2A302C; border-radius: 16px; overflow: hidden; }
.seal { padding: 34px 30px 36px; background: var(--ink); }
.seal .seal-mark { width: 92px; height: 92px; margin: 0 0 26px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1.5px solid var(--paid-on-dark); color: var(--paid-on-dark); font: 600 38px/1 var(--sans); letter-spacing: -.02em; }
.seal .seal-mark small { display: block; font: 500 12px/1.2 var(--sans); letter-spacing: 0; margin-top: 4px; }
.seal h3 { font-size: 20px; margin-bottom: 10px; color: #fff; }
.seal p { margin: 0; color: #A9B0AB; font-size: 15.5px; }
.fine { margin: 28px 0 0; color: var(--ink-3); font-size: 14px; max-width: 70ch; }
@media (max-width: 900px) { .seals { grid-template-columns: minmax(0, 1fr); } }

/* ---------- 7 days ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.timeline li { padding: 24px 22px 0 0; position: relative; }
.timeline li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.timeline .is-launch::before { background: var(--paid); box-shadow: 0 0 0 4px rgba(11, 122, 79, .16); }
.day { margin: 0 0 8px; font-size: 13px; color: var(--ink-3); }
.timeline h3 { margin-bottom: 6px; font-size: 17px; }
.timeline p:last-child { margin: 0; color: var(--ink-2); font-size: 15px; }
@media (max-width: 900px) { .timeline { grid-template-columns: minmax(0, 1fr); border-top: 0; border-left: 1px solid var(--ink); } .timeline li { padding: 0 0 28px 24px; } .timeline li::before { top: 6px; left: -5px; } }

/* ---------- fit ---------- */
.fit { background: var(--counter); }
.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.fit-col { padding: 30px; border-radius: 16px; background: var(--paper); border: 1px solid var(--rule); }
.fit-col h3 { margin-bottom: 20px; }
.fit-no { background: transparent; color: var(--ink-2); }
@media (max-width: 820px) { .fit-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- founder ---------- */
.founder-card { max-width: 720px; }
.founder-card > p { font-size: 19px; margin: 18px 0 22px; max-width: 38em; color: var(--ink-2); }
.phone-line { font-size: 20px; font-weight: 500; margin: 0; }
.phone-line a { text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }

/* ---------- apply ---------- */
.apply { background: var(--ink); color: #E9EBE7; }
.apply h2 { color: #fff; }
.apply .status { color: #A9B0AB; }
.apply .dot { background: var(--paid-on-dark); box-shadow: 0 0 0 4px rgba(63, 207, 142, .16); }
.apply-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.apply-copy > p:not(.status) { color: #A9B0AB; font-size: 18px; margin: 18px 0 0; max-width: 30em; }
.apply .facts { color: #A9B0AB; margin-top: 30px; }
.apply .facts b { color: #fff; }
.form-card { background: var(--paper); color: var(--ink); border-radius: 18px; padding: clamp(22px, 3vw, 36px); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: minmax(0, 1fr); gap: 0; } }
label { font-weight: 500; font-size: 15px; }
.optional { font-weight: 400; color: var(--ink-3); font-size: 13px; }
input, select { font: 400 16px/1.3 var(--sans); color: var(--ink); background: #fff; border: 1px solid #CDCFC8; border-radius: 10px; min-height: 50px; padding: 10px 14px; width: 100%; }
input:focus, select:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px rgba(17, 20, 18, .1); }
[aria-invalid="true"] { border-color: #B3261E; }
.error { margin: 0; color: #B3261E; font-size: 14px; }
.error:empty { display: none; }
.form-summary { margin: 0 0 12px; color: #B3261E; font-weight: 500; }
.form-summary:empty { display: none; }
.check { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.check input { width: 20px; height: 20px; min-height: 0; margin: 3px 0 0; accent-color: var(--ink); }
.check label { font-weight: 400; font-size: 15px; color: var(--ink-2); }
.check .error { grid-column: 2; }
.form-note { margin: 14px 0 0; font-size: 14px; color: var(--ink-2); }
#ready-title { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
#ready-title:focus { outline: none; }
#ready-state > p { color: var(--ink-2); }
.preview { white-space: pre-wrap; background: var(--thermal); border-radius: 10px; padding: 14px; font-size: 13px; line-height: 1.5; margin: 14px 0 16px; overflow-x: auto; }
#ready-state .btn + .btn { margin-top: 10px; }
@media (max-width: 900px) { .apply-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(24px, 6vw, 88px); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list details:first-child { border-top: 1px solid var(--rule); }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative; font-weight: 500; font-size: 17px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font: 300 24px/1 var(--sans); color: var(--ink-2); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0 0 22px; color: var(--ink-2); max-width: 62ch; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--rule); padding-block: 36px 48px; }
.foot { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; }
.foot p { margin: 0; font-size: 13px; color: var(--ink-2); }

/* ---------- privacy page ---------- */
.privacy { max-width: 720px; padding-block: clamp(40px, 6vw, 80px) clamp(64px, 8vw, 112px); }
.privacy h1 { font-size: clamp(34px, 4.5vw, 52px); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.privacy .updated { color: var(--ink-3); font-size: 14px; margin: 12px 0 36px; }
.privacy h2 { font-size: 21px; font-weight: 600; letter-spacing: -.01em; margin: 34px 0 10px; }
.privacy p { margin: 0 0 14px; color: var(--ink-2); }
.privacy p:last-child { margin-top: 32px; }
