@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --black:     #080808;
  --off-white: #F0ECE4;
  --red:       #CC0000;
  --red-dark:  #8B0000;
  --red-bright:#FF2222;
  --g1: #111111;
  --g2: #1A1A1A;
  --g3: #252525;
  --g4: #383838;
  --g5: #777777;
  --font-d: 'Bebas Neue', Impact, sans-serif;
  --font-b: 'Roboto Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-m: 'JetBrains Mono', 'Courier New', monospace;
  --nav-h: 68px;
  --max-w: 1320px;
  --pad: 120px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--g1); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── CURSOR ─────────────────────────────────── */
#cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}
#cursor::before, #cursor::after {
  content: '';
  position: absolute;
  background: var(--red);
}
#cursor::before { width: 1px; height: 100%; left: 50%; top: 0; }
#cursor::after  { width: 100%; height: 1px; top: 50%; left: 0; }

/* ── PROGRESS BAR ──────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  width: 0%;
  z-index: 10000;
  transition: width .4s ease;
}

/* ── CONTAINER ─────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g3);
  z-index: 900;
  display: flex;
  align-items: stretch;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 14px;
}
.nav__logo::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--red);
}
.nav__logo-main {
  font-family: var(--font-d);
  font-size: 26px;
  letter-spacing: .06em;
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--font-m);
  font-size: 8px;
  color: var(--red);
  letter-spacing: .25em;
  line-height: 1;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 100%;
}
.nav__link {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-family: var(--font-d);
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--g5);
  border-left: 1px solid var(--g3);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--off-white); background: var(--g1); }
.nav__link--dl {
  background: var(--red);
  color: var(--off-white) !important;
  border-left: none;
  padding: 0 30px;
  letter-spacing: .15em;
}
.nav__link--dl:hover { background: var(--red-dark) !important; }
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: var(--nav-h);
  border-left: 1px solid var(--g3);
  color: var(--off-white);
  font-size: 22px;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-d);
  font-size: 18px;
  letter-spacing: .12em;
  transition: all .2s;
  position: relative;
}
.btn--red { background: var(--red); color: var(--off-white); }
.btn--red::after { content: '→'; transition: transform .2s; }
.btn--red:hover { background: var(--red-dark); }
.btn--red:hover::after { transform: translateX(5px); }
.btn--ghost { border: 2px solid var(--g4); color: var(--g5); }
.btn--ghost:hover { border-color: var(--off-white); color: var(--off-white); }
.btn--white { background: var(--off-white); color: var(--red); }
.btn--white:hover { background: #fff; }

/* ── DIVIDER ───────────────────────────────── */
.divider {
  height: 1px;
  background: var(--g3);
  position: relative;
}
.divider::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 80px;
  background: var(--red);
}

/* ── SECTION LABELS ────────────────────────── */
.s-tag {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--red);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-tag::before { content: '//'; color: var(--g4); }

.s-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: .88;
  letter-spacing: .02em;
}
.s-title em { color: var(--red); font-style: normal; }

/* ── REVEAL ANIMATIONS ─────────────────────── */
.rv  { opacity:0; transform:translateY(32px);  transition:opacity .7s ease,transform .7s ease; }
.rv-l{ opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.rv-r{ opacity:0; transform:translateX(40px);  transition:opacity .7s ease,transform .7s ease; }
.rv.on,.rv-l.on,.rv-r.on { opacity:1; transform:none; }
.rv[data-delay="1"] { transition-delay:.1s; }
.rv[data-delay="2"] { transition-delay:.2s; }
.rv[data-delay="3"] { transition-delay:.3s; }
.rv[data-delay="4"] { transition-delay:.4s; }

/* ── PAGE HEADER ───────────────────────────── */
.ph {
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--g3);
}
.ph__stripe {
  position: absolute;
  width: 200%; left: -50%;
  height: 4px;
  background: var(--red);
  transform: rotate(-2.5deg);
  top: 55%;
  opacity: .35;
  pointer-events: none;
}
.ph__bg-num {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-d);
  font-size: min(280px, 25vw);
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.ph__title {
  font-family: var(--font-d);
  font-size: clamp(72px, 9vw, 150px);
  line-height: .82;
  letter-spacing: .02em;
}
.ph__title em { color: var(--red); font-style: normal; }

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--g1);
  border-top: 1px solid var(--g3);
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__logo {
  font-family: var(--font-d);
  font-size: 38px;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.footer__logo span { color: var(--red); }
.footer__tagline {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.8;
  max-width: 280px;
  font-weight: 300;
}
.footer__col-title {
  font-family: var(--font-d);
  font-size: 16px;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 14px;
  color: var(--g5);
  font-weight: 300;
  transition: color .2s;
}
.footer__link:hover { color: var(--off-white); }
.footer__bottom {
  border-top: 1px solid var(--g3);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g4);
  letter-spacing: .1em;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--g3);
  display: flex; align-items: center; justify-content: center;
  color: var(--g5);
  font-size: 13px;
  transition: all .2s;
}
.footer__social:hover { border-color: var(--red); color: var(--red); }

/* ═══════════════════════════════════════════
   INDEX PAGE
═══════════════════════════════════════════ */

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__stripe-1 {
  position: absolute;
  width: 150%; left: -25%; top: 38%;
  height: 5px; background: var(--red);
  transform: rotate(-6.5deg);
  pointer-events: none; z-index: 1;
}
.hero__stripe-2 {
  position: absolute;
  width: 150%; left: -25%; top: 40%;
  height: 2px; background: var(--red-dark);
  transform: rotate(-6.5deg);
  pointer-events: none; z-index: 1;
}
.hero__bg-word {
  position: absolute;
  font-family: var(--font-d);
  font-size: min(380px, 35vw);
  color: rgba(255,255,255,.018);
  right: -20px; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}
.hero__pre {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--red);
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero__pre::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero__title {
  font-family: var(--font-d);
  font-size: clamp(78px, 9vw, 130px);
  line-height: .86;
  letter-spacing: .02em;
  margin-bottom: 36px;
}
.hero__title .line-red   { color: var(--red); display: block; }
.hero__title .line-white { display: block; }
.hero__title .line-out   {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--off-white);
}
.hero__sub {
  font-size: 17px;
  color: var(--g5);
  max-width: 420px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__ver {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g4);
  letter-spacing: .12em;
  margin-top: 20px;
}

/* screenshot mockup */
.smock {
  position: relative;
  border: 1px solid var(--g4);
  border-radius: 6px;
  background: var(--g1);
  box-shadow: 0 50px 120px rgba(0,0,0,.9), 0 0 0 1px var(--g3);
  overflow: hidden;
}
.smock__bar {
  height: 32px;
  background: var(--g2);
  border-bottom: 1px solid var(--g3);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.smock__dot { width: 11px; height: 11px; border-radius: 50%; }
.smock__dot--r { background: #FF5F57; }
.smock__dot--y { background: #FFBD2E; }
.smock__dot--g { background: #28CA41; }
.smock__wintitle {
  font-family: var(--font-m);
  font-size: 9px;
  color: var(--g5);
  margin: 0 auto;
}
.smock__body {
  padding: 18px;
  position: relative;
  min-height: 280px;
}
.smock__toolbar {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38px;
  background: var(--g2);
  border-left: 1px solid var(--g3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 7px;
}
.smock__tool {
  width: 24px; height: 24px;
  border: 1px solid var(--g4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--g5);
}
.smock__tool--on { border-color: var(--red); color: var(--red); }

/* fake content */
.smock__fc { padding-right: 40px; }
.fc-hdr { height: 12px; border-radius: 2px; background: var(--g3); margin-bottom: 14px; width: 55%; }
.fc-row {
  height: 7px; border-radius: 2px;
  background: var(--g2);
  margin-bottom: 8px;
}
.fc-row:nth-child(2){width:96%;}
.fc-row:nth-child(3){width:80%;}
.fc-row:nth-child(4){width:88%;}
.fc-row:nth-child(5){width:65%;}
.fc-img {
  height: 100px;
  background: var(--g2);
  border-radius: 2px;
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center;
}
.fc-img-inner { width: 40%; height: 60%; background: var(--g3); border-radius: 2px; }

/* selection overlay */
.smock__sel {
  position: absolute;
  border: 2px dashed var(--red);
  background: rgba(204,0,0,.06);
  top: 40px; left: 22px;
  width: 180px; height: 110px;
  animation: selPulse 2s ease-in-out infinite;
}
@keyframes selPulse {
  0%,100%{ border-color:var(--red); }
  50%{ border-color:var(--red-bright); box-shadow:0 0 16px rgba(204,0,0,.3); }
}
.smock__sel-corner {
  position: absolute; width: 8px; height: 8px; background: var(--red);
}
.smock__sel-corner--tl { top:-2px; left:-2px; }
.smock__sel-corner--tr { top:-2px; right:-2px; }
.smock__sel-corner--bl { bottom:-2px; left:-2px; }
.smock__sel-corner--br { bottom:-2px; right:-2px; }

/* arrow annotation */
.smock__arrow {
  position: absolute;
  right: 58px; top: 55px;
  width: 70px; height: 3px;
  background: var(--red);
  transform: rotate(-28deg);
  transform-origin: right center;
}
.smock__arrow::after {
  content: '';
  position: absolute;
  right: -2px; top: -5px;
  width: 0; height: 0;
  border-left: 12px solid var(--red);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* text annotation */
.smock__label {
  position: absolute;
  bottom: 28px; left: 22px;
  background: var(--red);
  color: var(--off-white);
  font-family: var(--font-m);
  font-size: 9px;
  padding: 4px 10px;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* floating badge outside mock */
.smock__badge {
  position: absolute;
  left: -24px; bottom: 32px;
  background: var(--g3);
  border: 1px solid var(--g4);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.smock__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28CA41;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.smock__badge-text {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--g5);
}
.smock__badge-val {
  font-family: var(--font-d);
  font-size: 18px;
  color: var(--off-white);
  line-height: 1;
}

/* vertical label */
.hero__side-label {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--font-d);
  font-size: 10px;
  letter-spacing: .5em;
  color: var(--g4);
  white-space: nowrap;
}

/* FEATURE TEASERS */
.teasers {
  padding: var(--pad) 0;
  position: relative;
}
.teasers::before {
  content: '01';
  position: absolute;
  font-family: var(--font-d);
  font-size: min(220px, 18vw);
  color: rgba(255,255,255,.018);
  left: -10px; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.teasers__header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
.teasers__sub {
  font-size: 15px; color: var(--g5);
  max-width: 280px; font-weight:300;
}
.teasers__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--g3);
}
.teaser-card {
  padding: 44px;
  border-right: 1px solid var(--g3);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.teaser-card:last-child { border-right: none; }
.teaser-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.teaser-card:hover::after { transform: scaleX(1); }
.teaser-card:hover { background: var(--g1); }
.teaser-card__num {
  font-family: var(--font-d);
  font-size: 80px;
  color: rgba(255,255,255,.04);
  line-height: 1;
  margin-bottom: 18px;
}
.teaser-card__icon {
  width: 46px; height: 46px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 20px;
}
.teaser-card__title {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.teaser-card__text { font-size: 14px; color: var(--g5); line-height: 1.75; font-weight:300; }

/* WHY SECTION */
.why {
  background: var(--g1);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.why__diagonal-top, .why__diagonal-bot {
  position: absolute;
  width: 200%; left: -50%;
  height: 4px; background: var(--red);
  opacity: .5;
}
.why__diagonal-top { top: 0; transform: rotate(-1.8deg); }
.why__diagonal-bot { bottom: 0; transform: rotate(-1.8deg); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.why__stat {
  font-family: var(--font-d);
  font-size: min(150px, 14vw);
  line-height: .85;
  letter-spacing: .01em;
}
.why__stat em { color: var(--red); font-style:normal; }
.why__stat-label {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--g5);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 18px;
}
.why__list { list-style: none; }
.why__item {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--g3);
}
.why__item:last-child { border-bottom: none; }
.why__item-num {
  font-family: var(--font-d);
  font-size: 42px;
  color: var(--red);
  line-height: 1;
  min-width: 52px;
}
.why__item h3 {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.why__item p { font-size: 14px; color: var(--g5); font-weight:300; }

/* CTA BANNER */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__ghost {
  position: absolute;
  font-family: var(--font-d);
  font-size: min(200px,20vw);
  color: rgba(0,0,0,.12);
  right: 0; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__title {
  font-family: var(--font-d);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: .88;
}
.cta-banner__sub {
  font-family: var(--font-m);
  font-size: 11px;
  color: rgba(240,236,228,.65);
  letter-spacing: .15em;
  margin-top: 14px;
}

/* ═══════════════════════════════════════════
   FEATURES PAGE
═══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--g3);
  margin: var(--pad) 0;
}
.feat-card {
  padding: 60px;
  border-bottom: 1px solid var(--g3);
  border-right: 1px solid var(--g3);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.feat-card:nth-child(even) { border-right: none; }
.feat-card:nth-last-child(-n+2) { border-bottom: none; }
.feat-card:hover { background: rgba(255,255,255,.015); }
.feat-card__bgnum {
  position: absolute;
  right: 10px; bottom: -30px;
  font-family: var(--font-d);
  font-size: 160px;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
}
.feat-card__icon {
  width: 54px; height: 54px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  position: relative;
}
.feat-card__icon::after {
  content: '';
  position: absolute;
  bottom: -6px; right: -6px;
  width: 100%; height: 100%;
  border: 2px solid var(--g3);
}
.feat-card__title {
  font-family: var(--font-d);
  font-size: 38px;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.feat-card__text {
  font-size: 15px; color: var(--g5);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 24px;
}
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.feat-tag {
  padding: 4px 12px;
  border: 1px solid var(--g3);
  font-family: var(--font-m);
  font-size: 9px; color: var(--g5);
  letter-spacing: .1em;
}

/* mini mockup inside feat card */
.feat-mini {
  border: 1px solid var(--g3);
  background: var(--g1);
  padding: 16px 16px 16px 16px;
  position: relative;
  overflow: hidden;
}
.fm-bar {
  height: 7px; border-radius:1px;
  background: var(--g3); margin-bottom: 7px;
}
.fm-bar:nth-child(1){width:100%;}
.fm-bar:nth-child(2){width:72%;}
.fm-bar:nth-child(3){width:88%;}
.fm-bar:nth-child(4){width:55%;}
/* arrow inside mini mock */
.fm-arrow {
  position: absolute;
  right: 24px; top: 12px;
  width: 50px; height: 2px;
  background: var(--red);
  transform: rotate(38deg);
}
.fm-arrow::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 0; height: 0;
  border-left: 10px solid var(--red);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* blur strip inside mini mock */
.fm-blur {
  position: absolute;
  left: 16px; bottom: 12px;
  width: 90px; height: 14px;
  background: repeating-linear-gradient(
    90deg, var(--g3) 0,var(--g3) 4px, var(--g2) 4px, var(--g2) 8px
  );
}
/* selection in mini mock */
.fm-sel {
  position: absolute;
  border: 1px dashed var(--red);
  background: rgba(204,0,0,.05);
  top: 14px; left: 16px;
  width: 70%; height: 40%;
}
/* text label */
.fm-txt-lbl {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--red);
  font-family: var(--font-m);
  font-size: 8px; padding: 3px 7px;
  color: var(--off-white);
}
/* crop handles */
.fm-crop {
  position: absolute;
  border: 2px solid var(--red);
  top: 8px; left: 8px; right: 8px; bottom: 8px;
}
.fm-crop::before,.fm-crop::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.fm-crop::before { width: 14px; height: 14px; top:-2px; left:-2px; }
.fm-crop::after  { width: 14px; height: 14px; bottom:-2px; right:-2px; }
/* scroll indicator */
.fm-scroll {
  position: absolute;
  right: 8px; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--g3);
}
.fm-scroll-thumb {
  width: 100%; height: 30%;
  background: var(--red);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS PAGE
═══════════════════════════════════════════ */
.steps-section {
  padding: var(--pad) 0;
}
.steps-track {
  position: relative;
  padding-left: 90px;
  padding-bottom: 40px;
}
.steps-track::before {
  content: '';
  position: absolute;
  left: 34px; top: 22px; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--red) 0%, var(--g3) 100%);
}
.step {
  position: relative;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.step:last-child { margin-bottom: 0; }
.step__node {
  position: absolute;
  left: -79px; top: 0;
  width: 46px; height: 46px;
  border: 3px solid var(--red);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--red);
}
.step__ghost-num {
  position: absolute;
  left: -60px; top: -30px;
  font-family: var(--font-d);
  font-size: min(130px, 12vw);
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
}
.step__tag { font-family:var(--font-m); font-size:10px; color:var(--red); letter-spacing:.3em; margin-bottom:16px; }
.step__title { font-family:var(--font-d); font-size:clamp(44px,5vw,68px); line-height:.88; letter-spacing:.02em; margin-bottom:20px; }
.step__text { font-size:15px; color:var(--g5); line-height:1.8; font-weight:300; margin-bottom:28px; }
.key-combo { display:inline-flex; align-items:center; gap:6px; }
.key {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 12px;
  background: var(--g2);
  border: 1px solid var(--g4);
  border-bottom: 3px solid var(--g4);
  font-family: var(--font-m);
  font-size: 13px;
  color: var(--off-white);
  border-radius: 3px;
}
.key-plus { font-family: var(--font-m); font-size: 12px; color: var(--g5); }
.step__tips { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step__tip {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--g5); font-weight: 300;
}
.step__tip::before {
  content: '';
  display: block; width: 6px; height: 6px;
  border: 1px solid var(--red);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   EXAMPLES PAGE
═══════════════════════════════════════════ */
.examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--g3);
  margin: var(--pad) 0;
}
.ex-card {
  background: var(--black);
  padding: 54px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.ex-card:hover { background: var(--g1); }
.ex-card__cat {
  font-family: var(--font-m);
  font-size: 10px; color: var(--red);
  letter-spacing: .3em;
  margin-bottom: 20px;
}
.ex-card__title {
  font-family: var(--font-d);
  font-size: 44px;
  letter-spacing: .03em;
  margin-bottom: 16px;
}
.ex-card__text {
  font-size: 14px; color: var(--g5);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 30px;
  max-width: 370px;
}
.ex-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ex-tag {
  padding: 4px 12px;
  border: 1px solid var(--g3);
  font-family: var(--font-m);
  font-size: 9px; color: var(--g5);
  letter-spacing: .1em;
}
.ex-card__num {
  position: absolute;
  right: 30px; bottom: -20px;
  font-family: var(--font-d);
  font-size: 140px;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.ex-mock {
  margin-top: 32px;
  border: 1px solid var(--g3);
  background: var(--g1);
  position: relative;
  height: 120px;
  overflow: hidden;
}
.ex-mock__bar {
  height: 22px;
  background: var(--g2);
  border-bottom: 1px solid var(--g3);
  display: flex; align-items: center; padding: 0 10px; gap: 5px;
}
.ex-mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.ex-mock-dot--r{background:#FF5F57;} .ex-mock-dot--y{background:#FFBD2E;} .ex-mock-dot--g{background:#28CA41;}
.ex-mock__content { padding: 10px; }
.ex-fc-row { height: 6px; background: var(--g2); border-radius: 1px; margin-bottom: 6px; }
.ex-fc-row:nth-child(1){width:90%;}
.ex-fc-row:nth-child(2){width:70%;}
.ex-fc-row:nth-child(3){width:82%;}

/* ═══════════════════════════════════════════
   CONTACTS PAGE
═══════════════════════════════════════════ */
.contacts-wrap {
  padding: var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--g3);
  margin-bottom: var(--pad);
}
.contacts-info {
  padding: 80px;
  background: var(--g1);
  border-right: 1px solid var(--g3);
  position: relative;
  overflow: hidden;
}
.contacts-info__stripe {
  position: absolute;
  width: 200%; left: -50%;
  height: 3px; background: var(--red);
  top: 35%; transform: rotate(-5deg);
  opacity: .2;
}
.contact-item { margin-bottom: 52px; padding-left: 20px; border-left: 3px solid var(--red); }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__lbl {
  font-family: var(--font-m);
  font-size: 9px; color: var(--g5);
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-item__val {
  font-family: var(--font-d);
  font-size: 30px; letter-spacing: .03em;
  transition: color .2s;
}
.contact-item__val:hover { color: var(--red); }
.contacts-form { padding: 80px; }
.form-group { margin-bottom: 30px; }
.form-lbl {
  display: block;
  font-family: var(--font-m);
  font-size: 9px; color: var(--g5);
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--g1);
  border: 1px solid var(--g3);
  border-bottom: 2px solid var(--g3);
  color: var(--off-white);
  font-family: var(--font-b);
  font-size: 16px;
  padding: 16px 20px;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--red); border-bottom-color: var(--red); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--g4); }
.form-submit-row { display: flex; align-items: center; gap: 24px; margin-top: 8px; }
.form-privacy {
  font-family: var(--font-m);
  font-size: 9px; color: var(--g5);
  letter-spacing: .1em; line-height: 1.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad: 80px; }
  .wrap { padding: 0 28px; }
  .nav__inner { padding: 0 28px; }
  .hero__inner { grid-template-columns: 1fr; padding: 70px 28px; }
  .hero__right { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card:nth-child(even) { border-right: none; }
  .feat-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--g3); }
  .feat-card:last-child { border-bottom: none; }
  .step { grid-template-columns: 1fr; gap: 40px; }
  .contacts-wrap { grid-template-columns: 1fr; }
  .contacts-info { border-right: none; border-bottom: 1px solid var(--g3); padding: 48px 36px; }
  .contacts-form { padding: 48px 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --pad: 60px; }
  .teasers__grid { grid-template-columns: 1fr; }
  .teaser-card { border-right: none; border-bottom: 1px solid var(--g3); }
  .teaser-card:last-child { border-bottom: none; }
  .examples-grid { grid-template-columns: 1fr; }
  .steps-track { padding-left: 50px; }
  .step__node { left: -42px; }
  .steps-track::before { left: 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .teasers__header { flex-direction: column; align-items: flex-start; }
  .ph__title { font-size: clamp(52px, 10vw, 80px); }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    border-bottom: 2px solid var(--g3);
    z-index: 800;
  }
  .nav__links.open { display: flex; }
  .nav__link {
    height: auto; padding: 18px 28px;
    border-left: none;
    border-bottom: 1px solid var(--g3);
    width: 100%;
  }
  .nav__burger { display: flex; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .contacts-info { padding: 36px 24px; }
  .contacts-form { padding: 36px 24px; }
}
