/* Главная / · лендинг МойКонтракт. Кабинет и логин этот файл не трогает. */

:root {
  --bg: #080b0f;
  --bg-2: #0d1218;
  --ink: #eef3f7;
  --muted: #8b98a8;
  --line: rgba(238, 243, 247, 0.14);
  --line-strong: rgba(238, 243, 247, 0.28);
  --accent: #7dffc3;
  --accent-dim: rgba(125, 255, 195, 0.14);
  --accent-2: #9ecbff;
  --warn: #ff7a62;
  --ok: #7dffc3;
  --glass: rgba(8, 11, 15, 0.55);
  --font: "Inter", system-ui, sans-serif;
  --font-serif: "Literata", "Iowan Old Style", "Palatino Linotype", serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1180px;
  --sy: 0;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
code {
  font-family: var(--font-mono);
  font-size: 0.82em;
  border: 1px solid var(--line);
  padding: 0.05em 0.35em;
  color: var(--accent);
  background: var(--accent-dim);
}
strong { font-weight: 600; }

/* Grain + thermal glow — CSS only, no images */
.grain,
.thermal {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
}
.grain {
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.thermal {
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at calc(70% + var(--sy) * 8%) -10%, rgba(125, 255, 195, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(158, 203, 255, 0.1), transparent 50%);
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Blueprint graph paper */
.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 10%, transparent 75%);
  opacity: 0.35;
}

.draft-bar {
  position: relative;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--muted);
}
.draft-bar a { color: var(--accent); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  height: 52px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.logo:hover { text-decoration: none; color: var(--ink); }
.logo-mark {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.22rem 0.4rem;
}

.nav-desk {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}
.nav-desk a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.nav-desk a:hover { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.45rem; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none !important;
  background: transparent;
  color: var(--ink) !important;
  transition: transform 0.12s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.btn:hover { border-color: var(--accent); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #06110c !important;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #9bffd2;
}
.btn-ghost { color: var(--ink) !important; }
.btn-ghost-ink { background: var(--bg-2); }
.btn-pine { background: var(--accent); color: #06110c !important; border-color: var(--accent); }
.btn-sm { min-height: 36px; padding: 0.35rem 0.75rem; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0.25rem 0 1rem;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
body.nav-open .mobile-nav { display: block; }
.nav-cta-mobile { display: none; }

/* ——— Hero: type as the visual ——— */
.hero {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.hero-meta .chip { border-color: rgba(255,255,255,0.12); }

.hero h1 {
  font-family: var(--font);
  font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.hero h1 .kinetic {
  display: inline;
  font-family: var(--font);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  background: none;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.hero-lead strong { color: var(--ink); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Ledger instead of fake Mac window */
.hero-ledger {
  margin-top: 2.25rem;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--bg-2) 82%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
}
.hero-ledger:hover {
  border-color: var(--accent);
}
.ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ledger-body { display: grid; grid-template-columns: 1fr 1fr; }
.ledger-cell {
  padding: 1rem 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ledger-cell:nth-child(2n) { border-right: 0; }
.ledger-cell.wide { grid-column: 1 / -1; border-right: 0; }
.ledger-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.ledger-value {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-mono);
}
.ledger-row:last-child { border-bottom: 0; }
.ledger-row b { color: var(--ink); font-weight: 500; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.trust span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--line);
}
.trust span:last-child { border-right: 0; }

.section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: transparent; }
.section-dark { background: transparent; color: var(--ink); }
.section-dark .muted,
.section-dark .section-desc { color: var(--muted); }
.section .wrap { transform: none; }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section-dark .kicker { color: var(--accent); }

.section-title {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin-bottom: 0.85rem;
  max-width: 24ch;
  text-wrap: balance;
}
.section-desc {
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.02rem;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
.center { text-align: left; }
.center .section-desc { margin-left: 0; }

.split-2, .split-3, .split-4 {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
}
.split-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split-2 > *,
.split-3 > *,
.split-4 > * {
  border: 0;
  margin: 0;
  min-width: 0;
  height: 100%;
  border-radius: 0;
}

.card {
  background: color-mix(in srgb, var(--bg-2) 78%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.25rem 1.3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card h3 {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.card p, .card li { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.card ul { list-style: none; }
.card li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}
.card li:last-child { border-bottom: 0; }
.card li strong { color: var(--ink); }
.card:hover {
  border-color: rgba(125, 255, 195, 0.38);
  box-shadow: 0 0 36px rgba(125, 255, 195, 0.12);
}

.ico {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.card-rose {
  background: transparent;
  border-color: color-mix(in srgb, var(--warn) 45%, var(--line));
}
.card-rose h3 { color: var(--warn); }
.card-pine {
  background: var(--accent-dim);
  border-color: color-mix(in srgb, var(--ok) 50%, var(--line));
}
.card-pine h3 { color: var(--ok); }
.card-pine li, .card-pine p { color: #cfe7db; }

.solution {
  margin-top: 1px;
  padding: 1.6rem 1.5rem;
  position: relative;
}
.solution ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.solution li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.solution .bi { color: var(--ok); margin-top: 0.15rem; flex-shrink: 0; }
.service-director-grid {
  margin-top: 0.75rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
  grid-auto-flow: dense;
}
.tile, .tile-3, .tile-4, .tile-6 {
  border: 0;
  margin: 0;
  border-radius: 0;
  min-width: 0;
  height: 100%;
}
.bento .card { border: 0; border-radius: 0; }
.tile { grid-column: span 2; }
.tile-3 { grid-column: span 3; }
.tile-4 { grid-column: span 4; }
.tile-6 { grid-column: span 6; }

.guide {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
}
.guide .card { margin: 0; border: 0; border-radius: 0; height: 100%; }
.guide ol {
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.guide li { margin: 0.4rem 0; }
.guide li strong { color: var(--ink); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: st;
}
.step {
  border: 0;
  margin: 0;
  padding: 1.25rem;
  background: var(--bg-2);
}
.step::before {
  counter-increment: st;
  content: "0" counter(st);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; font-family: var(--font-serif); font-weight: 400; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

.phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
}
.phones .card { margin: 0; border: 0; border-radius: 0; height: 100%; }
.section-dark .card {
  background: color-mix(in srgb, var(--bg-2) 70%, transparent);
  border-color: var(--line);
  color: var(--ink);
}
.section-dark .card h3 { color: var(--ink); }
.section-dark .card p,
.section-dark .card li { color: var(--muted); }
.section-dark .card li strong { color: var(--ink); }
.section-dark .card a { color: var(--accent); }
.section-dark .ico { border-color: var(--line); }

.details {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  padding: 0.85rem 1.1rem;
  background: transparent;
}
.details summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
}
.details summary::-webkit-details-marker { display: none; }
.details-body { margin-top: 0.9rem; color: var(--muted); font-size: 0.95rem; }
.details-body p { margin-bottom: 0.75rem; }
.details-body ul { padding-left: 1.1rem; margin-bottom: 0.75rem; }

.warn {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--warn);
  color: var(--ink);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-2);
  border: 0;
  margin: 0;
  padding: 1.4rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0;
  min-width: 0;
}
.pricing-card.popular {
  z-index: 2;
  background: var(--accent-dim);
  box-shadow: inset 0 0 0 1px var(--accent), 0 0 40px rgba(125, 255, 195, 0.12);
}
.popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.15rem 0.4rem;
}
.pricing-card h4 {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  min-height: 2.4rem;
}
.pricing-card.popular h4 { padding-right: 7.5rem; min-height: 0; }
.price {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 0.4rem 0 0.35rem;
}
.price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-price-note,
.pricing-product-desc,
.pricing-what-included {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.pricing-what-included {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}
.pricing-features { list-style: none; flex: 1; margin-bottom: 1rem; }
.pricing-features li {
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}
.btn-pricing { display: block; text-align: center; margin-top: auto; text-decoration: none !important; }
.btn-outline-primary {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quote {
  border: 0;
  margin: 0;
  padding: 1.25rem;
  background: var(--bg-2);
  min-width: 0;
}
.quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1rem;
}
.quote small { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }

.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 0 0 1.5rem;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
}
.footer-cta-band { border-bottom: 1px solid var(--line); padding: 2.5rem 0; }
.footer-cta-band .split-2 {
  background: transparent;
  border: 0;
  gap: 1.5rem;
}
.footer-cta-title {
  font-family: var(--font);
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.018em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr;
  gap: 2rem;
  padding: 2.5rem 0;
}
.footer-brand {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  display: block;
  text-decoration: none;
}
.footer-brand:hover { color: var(--ink); }
.footer-heading {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-socials { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  text-decoration: none !important;
}

.landing-anchor { scroll-margin-top: 72px; }
.text-success { color: var(--ok) !important; }
.trigger-soon {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.08rem 0.35rem;
  margin-left: 0.25rem;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy { min-width: 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}
.chip-ok { color: var(--accent); border-color: rgba(125, 255, 195, 0.35); }
a.chip { color: inherit; text-decoration: none; }
a.chip:hover { color: var(--accent); border-color: rgba(125, 255, 195, 0.55); text-decoration: none; }

.device {
  width: 300px;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background: #0a0d12;
  padding: 10px 10px 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(125,255,195,0.08);
}
.device-notch {
  width: 92px;
  height: 8px;
  border-radius: 99px;
  background: #1a222c;
  margin: 4px auto 8px;
}
.tg-app {
  border-radius: 18px;
  overflow: hidden;
  background: #0e1621;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-flip { min-height: 420px; }
.hero-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #0e1621;
}
.hero-scene-worker {
  z-index: 2;
  animation: sceneWorker 14s linear infinite;
}
.hero-scene-director {
  z-index: 1;
  opacity: 0;
  animation: sceneDirector 14s linear infinite;
}
@keyframes sceneWorker {
  0%, 53.9% { opacity: 1; visibility: visible; }
  54%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes sceneDirector {
  0%, 53.9% { opacity: 0; visibility: hidden; }
  54%, 100% { opacity: 1; visibility: visible; }
}
.crypto-banner {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid rgba(125, 255, 195, 0.22);
  background: rgba(125, 255, 195, 0.06);
}
.dir-notice {
  text-align: center;
  border: 1px solid rgba(125,255,195,0.28);
  background: rgba(125,255,195,0.08);
  border-radius: 14px;
  padding: 1rem 0.9rem 1.05rem;
  animation: dirIn 14s linear infinite;
}
.dir-notice b {
  display: block;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  margin: 0.15rem 0 0.1rem;
}
.dir-notice p {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}
.dir-notice .sum {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.dir-notice .mono {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.dir-notice .check-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.35rem;
}
@keyframes dirIn {
  0%, 54% { opacity: 0; transform: translateY(10px); }
  58%, 96% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}
.tg-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.75rem 1rem 0.65rem;
  background: #17212b;
}
.tg-bar strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tg-bar small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ab2f2;
  font-weight: 500;
}
.tg-thread {
  flex: 1;
  padding: 1rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.bubble {
  max-width: 82%;
  border-radius: 16px;
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  line-height: 1.4;
}
.bubble-in {
  align-self: flex-end;
  background: #2b5278;
  color: #fff;
}
.bubble-out {
  align-self: flex-start;
  background: #182533;
  border: 1px solid rgba(255,255,255,0.08);
}
.voice-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.voice-cap {
  display: block;
  margin-top: 0.4rem;
}
.voice-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}
.voice-bars i {
  display: block;
  width: 3px;
  background: #9ecbff;
  border-radius: 2px;
  animation: voice 1.1s ease-in-out infinite;
}
.voice-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.voice-bars i:nth-child(2) { height: 90%; animation-delay: .1s; }
.voice-bars i:nth-child(3) { height: 55%; animation-delay: .2s; }
.voice-bars i:nth-child(4) { height: 75%; animation-delay: .15s; }
.voice-bars i:nth-child(5) { height: 35%; animation-delay: .25s; }
@keyframes voice {
  50% { transform: scaleY(0.45); }
}
.tg-check {
  align-self: stretch;
  max-width: none;
  text-align: center;
  border: 1px solid rgba(125,255,195,0.28);
  background: rgba(125,255,195,0.08);
  border-radius: 14px;
  padding: 0.85rem 0.9rem 0.95rem;
}
.tg-check .mono {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.tg-check .sum {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.tg-check .check-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.35rem;
}
.play .a1, .play .a2, .play .a3 { opacity: 0; animation: popHold 14s linear infinite; }
.play .a1 { animation-delay: 0.15s; }
.play .a2 { animation-delay: 1.55s; }
.play .a3 { animation-delay: 3s; }
@keyframes popHold {
  0% { opacity: 0; transform: translateY(8px); }
  6%, 50% { opacity: 1; transform: none; }
  52%, 100% { opacity: 0; }
}

.cab-app { background: #10151c; min-height: 0; }
.tg-app.cab-app { min-height: 0; }
.cab-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.65rem;
}
.cab-table th, .cab-table td {
  text-align: left;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.cab-table th { color: var(--muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cab-table td.num { color: var(--accent); }


.bento-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.sbp-viz {
  border: 1px solid rgba(125,255,195,0.25);
  border-radius: 10px;
  padding: 0.85rem;
  background: rgba(125,255,195,0.06);
}
.sbp-viz .sum {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.cta-row { margin-top: 1.35rem; }
.json-viz {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  padding: 0.7rem;
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre;
}
.json-viz b { color: var(--accent-2); font-weight: 500; }

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.start-step {
  background: var(--bg-2);
  padding: 1.15rem;
  min-width: 0;
}
.start-step .n {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
}
.start-step h3 { font-size: 1rem; margin-bottom: 0.35rem; letter-spacing: -0.015em; }

.start-grid + .guide {
  border-top: 0;
}
.start-grid:has(+ .guide) {
  border-bottom: 0;
}
.guide p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.45rem 0;
}
.guide p strong { color: var(--ink); }

.pain-list { list-style: none; }
.pain-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 0.92rem;
}
.pain-list i { color: var(--warn); margin-top: 0.15rem; }

.calc {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  background: color-mix(in srgb, var(--bg-2) 80%, transparent);
  backdrop-filter: blur(12px);
}
.calc-row { margin-bottom: 1rem; }
.calc-row label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.calc-row input[type="range"] { width: 100%; accent-color: var(--accent); }
.calc-out {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.calc-out b {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 500;
}

.show-stage {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.show-copy {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  min-width: 0;
}
.show-copy .card { margin: 0; border: 0; border-radius: 0; }
.device-sm { width: 260px; }
.device-sm .tg-app { min-height: 360px; }
.device-sm .tg-app.cab-app { min-height: 0; }
.cab-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.75rem 1rem 0.65rem;
  background: #151c24;
  border-bottom: 1px solid var(--line);
}
.cab-bar strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cab-bar small {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.cab-pad { padding: 0.85rem 0.8rem 1rem; }
.task-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.85rem 0.7rem;
  margin-bottom: 0.6rem;
  background: #151c24;
  text-align: center;
}
.task-card b {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.task-card span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.cab-total {
  text-align: center;
  padding: 0.75rem 0.5rem 0.2rem;
}
.cab-total span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.cab-total b {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent);
}
.pay-mock {
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  background: var(--accent);
  color: #06110c;
  border-radius: 8px;
}
.crypto-points { margin-top: 1.25rem; }
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  margin-right: 0.35rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}
.quote small {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote small strong { color: var(--ink); font-weight: 500; text-transform: none; letter-spacing: 0; font-family: var(--font); font-size: 0.88rem; }

.bill-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.bill-toggle button {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.bill-toggle button.is-on {
  background: var(--accent);
  color: #06110c;
}
.price-year { display: none; }
body[data-billing="year"] .price-month { display: none; }
body[data-billing="year"] .price-year { display: block; }

.sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .trust, .split-2, .split-3, .split-4, .steps, .phones, .quotes, .footer-grid, .solution ul, .guide, .ledger-body, .hero-stage, .start-grid, .bento-hero, .show-stage, .calc-grid {
    grid-template-columns: 1fr;
  }
  .trust { display: block; }
  .trust span { display: block; border-right: 0; border-bottom: 1px solid var(--line); }
  .nav-desk { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .tile, .tile-3, .tile-4, .tile-6 { grid-column: span 6; }
  .hero h1 { max-width: none; font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .device { margin: 0 auto; }
  .device-sm { width: min(300px, 100%); }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(8, 11, 15, 0.88);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .sticky-cta .btn { width: 100%; }
  body { padding-bottom: 76px; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 1.25rem); }
  .hero { padding: 2.5rem 0 1.5rem; }
  .section { padding: 2.75rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .nav-cta .btn { width: 100%; }
  .nav-cta { display: none; }
  body.nav-open .nav-cta-mobile { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1 .kinetic { animation: none; }
  .card:hover, .btn-primary:hover, .hero-ledger:hover { transform: none; box-shadow: none; }
  .play .a1, .play .a2, .play .a3 { opacity: 1; animation: none; }
  .voice-bars i { animation: none; }
  .hero-scene-worker, .hero-scene-director, .dir-notice { animation: none; }
  .hero-scene-worker { opacity: 0; visibility: hidden; }
  .hero-scene-director { opacity: 1; visibility: visible; }
  .dir-notice { opacity: 1; transform: none; }
}
