/* =====================================================
   Launchmate — main styles
   Base: 1440px design → 1rem = 16px. Sizes scale with viewport.
   ===================================================== */
:root {
  --bg: #050a12;
  --bg-2: #080e18;
  --card: #101924;
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.11);
  --text: #f3f5fa;
  --text-2: #c7cfdc;
  --muted: #98a3b6;
  --eyebrow: #6f7d90;
  --accent: #8b7cff;
  --grad: linear-gradient(90deg, #3642fd 0%, #5a4cfb 55%, #7c5cf7 100%);
  --light: #fafbfe;
  --light-card: #ffffff;
  --light-border: #e6e9f1;
  --light-text: #0b1020;
  --light-muted: #525c70;
  --radius: 1.125rem;
  --radius-lg: 1.375rem;
  --gap: 1rem;
  --pad-x: 1.75rem;
  --container: 1680px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: clamp(12.5px, 1.1111vw, 17px); scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 0.9375rem;             /* 15px */
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding-top: 2.25rem; }
.grid { display: grid; gap: var(--gap); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 0.75rem;               /* 12px */
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 1rem;
}
.eyebrow--center { text-align: center; }
.h2 {
  font-size: 2.3rem;                /* 37px */
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}
.h2--center { text-align: center; }
.accent { color: var(--accent); }
.arrow { display: inline-block; margin-left: 0.3em; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  padding-bottom: 0.6rem;
}
.link:hover { color: #a99dff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;                   /* 56px */
  padding: 0 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 0.6rem 1.5rem -0.6rem rgba(90, 76, 251, 0.75), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { box-shadow: 0 0.8rem 1.9rem -0.6rem rgba(90, 76, 251, 0.95), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--ghost {
  color: var(--text);
  background: rgba(10, 14, 26, 0.35);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn--dark { color: #fff; background: #0f1422; border-color: #0f1422; }
.btn--dark:hover { background: #1a2033; }
.btn--sm { height: 2.95rem; padding: 0 1.5rem; }

/* ---------- cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* =====================================================
   HERO
   ===================================================== */
.hero { padding: 0; }
.hero__inner {
  position: relative;
  width: 100%;
  min-height: clamp(34rem, 46vw, 46rem);
  border-radius: 0;
  overflow: hidden;
  background: #060b16 url('../assets/img/hero-bg.webp') 100% 50% / cover no-repeat;
  isolation: isolate;
}
.hero__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,9,18,.82) 0%, rgba(5,9,18,.55) 34%, rgba(5,9,18,0) 60%),
    linear-gradient(180deg, rgba(5,9,18,.5) 0%, rgba(5,9,18,0) 28%, rgba(5,9,18,0) 78%, rgba(5,9,18,.55) 100%);
}

/* nav */
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem 0;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 3rem; width: auto; display: block; }
.footer .logo img { height: 2.75rem; }
.nav__links { display: flex; gap: 3rem; }
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color .15s;
}
.nav__links a:hover { color: #fff; }
.burger {
  display: none;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0.7rem;
  background: rgba(10,14,26,.5);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

/* content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  padding: 4.2rem 3rem 2.2rem;
}
.hero__title {
  font-size: 4.75rem;               /* 76px */
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 1.5rem;
  white-space: nowrap;
}
.hero__text {
  font-size: 1.0625rem;             /* 17px */
  line-height: 1.5;
  color: rgba(238, 242, 250, .92);
  margin-bottom: 1.9rem;
  max-width: 31rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }

.social-proof { display: flex; align-items: center; gap: 0.9rem; }
.social-proof p { font-size: 0.875rem; line-height: 1.45; color: rgba(238,242,250,.85); }
.avatars { display: flex; }
.avatars img, .avatars__more {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 2.5px solid #0b1120;
  margin-left: -0.7rem;
  background: #1a2233;
}
.avatars img:first-child { margin-left: 0; }
.avatars__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1c2a1f;
  color: #7fd39a;
  font-size: 0.75rem;
  font-weight: 600;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.section--how { padding-top: 1rem; }
.card--how {
  padding: 1.5rem 3rem 1.7rem;
  background: rgba(8, 14, 24, .92);
  border-color: var(--border-2);
  box-shadow: 0 2rem 5rem -2.5rem rgba(0,0,0,.8);
}
.card--how .h2 { font-size: 1.9rem; margin-bottom: 1.3rem; }
.card--how .eyebrow { margin-bottom: 0.6rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
}
.step { position: relative; }
.step__icon {
  position: relative;
  z-index: 1;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: #192337;
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  box-shadow: 0 0.6rem 1.5rem -0.75rem rgba(0,0,0,.9);
}
.step__icon svg {
  width: 46%; height: 46%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step__icon--fill {
  background: linear-gradient(135deg, #7d67ff, #4a3fe8);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 0.6rem 1.75rem -0.5rem rgba(110, 90, 255, .8);
}
.step__icon--fill svg { stroke: #fff; }
/* connector between steps */
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 1.375rem;
  left: 3.75rem;
  right: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,124,255,.12), rgba(139,124,255,.65));
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(1.375rem - 4px);
  right: 1.35rem;
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.15rem; color: #fff; letter-spacing: -0.01em; }
.step p { font-size: 0.9375rem; color: var(--muted); }
.step__arrow { display: none; }

/* =====================================================
   WHY US
   ===================================================== */
#why .h2 { margin-bottom: 1.75rem; }
.feature { padding: 1.7rem 1.75rem 1.8rem; }
.feature__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.feature__icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 0.75rem;
  display: grid; place-items: center;
  background: radial-gradient(circle, rgba(140,120,255,.22) 0%, rgba(140,120,255,0) 70%);
  color: #9d8dff;
  filter: drop-shadow(0 0 10px rgba(140,120,255,.55));
}
.feature__icon svg { width: 2.2rem; height: 2.2rem; fill: currentColor; stroke: none; }
.feature h3 { font-size: 1.1875rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; }
.feature p { font-size: 1rem; line-height: 1.6; color: var(--muted); }

/* =====================================================
   COMPARE
   ===================================================== */
.section--compare {
  position: relative;
  margin-top: 2.25rem;
  padding: 3.5rem 0 4rem;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}
.section--compare::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  aspect-ratio: 1755 / 896;
  max-height: 100%;
  background: url('../assets/img/compare-bg.webp') center bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 82%, transparent 100%);
}
.section--compare .container { position: relative; z-index: 1; }
.section--compare + .section { padding-top: 2.5rem; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; gap: 0.9rem; margin-bottom: 2rem; }
.section__lead { max-width: 34rem; font-size: 1.0625rem; line-height: 1.55; color: var(--text-2); }
.section--compare .compare {
  max-width: 62rem;
  margin: 0 auto;
  background: rgba(7, 12, 22, .78);
  border-color: rgba(140, 160, 255, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2.5rem 5rem -2rem rgba(0, 20, 80, .7);
}
.compare { overflow: hidden; }
.compare__head, .compare__row {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 1.3fr;
}
.compare__row { border-top: 1px solid rgba(255,255,255,.07); }
.compare__cell { padding: 1.25rem 1.75rem; display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; }
.compare__cell--label {
  flex-direction: row; align-items: center; gap: 0.7rem;
  font-size: 1rem; font-weight: 600; color: var(--text-2);
}
.compare__cell--label svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: #8b7cff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.compare__cell strong { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.compare__cell span { font-size: 0.9rem; line-height: 1.45; color: var(--muted); }
.compare__cell--old strong { color: #aeb6c6; }
.compare__cell--new { background: rgba(70, 90, 255, 0.10); border-left: 1px solid rgba(139,124,255,.2); }
.compare__cell--new strong { color: #fff; }
.compare__cell--new span { color: #b9bfd3; }
.compare__row .compare__cell--new strong::before {
  content: ''; display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--grad); margin-right: 0.6rem; vertical-align: middle; box-shadow: 0 0 10px rgba(124,92,247,.8);
}
.compare__head { background: rgba(255,255,255,0.02); }
.compare__head .compare__cell { padding-top: 1.5rem; padding-bottom: 1.25rem; }
.compare__head .compare__cell--new { background: linear-gradient(180deg, rgba(120,100,255,.16), rgba(120,100,255,.07)); }
.compare__title { font-size: 1.05rem; font-weight: 600; color: #fff; display: flex; align-items: center; min-height: 1.75rem; }
.compare__title img { height: 2.25rem; width: auto; }
.compare__sub { font-size: 0.85rem; color: var(--muted); }
.compare__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; flex-wrap: wrap;
  padding: 1.1rem 1.75rem;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.compare__stats { display: flex; align-items: center; gap: 0; flex: 1 1 auto; }
.compare__stat { display: flex; align-items: baseline; gap: 0.45rem; white-space: nowrap; padding: 0 1.25rem 0 0; margin-right: 1.25rem; border-right: 1px solid var(--border); }
.compare__stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.compare__stat b { font-size: 1.65rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(90deg, #a99dff, #6c5cf5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.compare__stat span { font-size: 0.9rem; color: var(--text-2); }
.compare__foot .btn { flex: 0 0 auto; margin-left: auto; }

/* =====================================================
   PORTFOLIO
   ===================================================== */
.project { padding: 1.25rem 1.4rem 1.4rem; overflow: hidden; container-type: inline-size; }
.project h3 { font-size: 1.1875rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.tags span {
  font-size: 0.78rem;
  line-height: 1.65rem;
  color: var(--text-2);
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #212a39;
}
.project__shot {
  position: relative;
  aspect-ratio: 1.19;
  border-radius: 0.6rem;
  overflow: hidden;
  transition: transform .3s ease;
}
.project:hover .project__shot { transform: translateY(-3px); }

/* generic shot pieces — sizes in em, 1em = 1/19 of the shot width */
.shot { background: #0b1222; font-size: calc((100cqw - 2.8rem) / 19); }
.shot__nav { position: absolute; top: 1em; left: 1em; right: 1em; display: flex; align-items: center; gap: .8em; }
.shot__nav i { height: .3em; width: 1.4em; border-radius: .2em; background: rgba(255,255,255,.25); }
.shot__nav .shot__logo { width: 2.4em; height: .8em; background: #7c6cf5; opacity: .9; }
.shot__nav .shot__btn { margin-left: auto; width: 2.4em; height: .9em; border-radius: .3em; background: #6c5cf5; }
.shot__hero { position: absolute; left: 1.2em; top: 3.8em; right: 40%; }
.shot__label { display: block; width: 3.6em; height: .3em; border-radius: .2em; background: #8b7cff; margin-bottom: .8em; }
.shot__hero strong { display: block; font-size: 1.5em; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.shot__line { display: block; width: 70%; height: .3em; border-radius: .2em; background: rgba(255,255,255,.25); margin-top: .8em; }
.shot__line.short { width: 45%; margin-top: .5em; }
.shot__btns { display: flex; gap: .5em; margin-top: 1.2em; }
.shot__btns i { width: 3.4em; height: 1em; border-radius: .3em; border: 1px solid rgba(255,255,255,.3); }
.shot__btns i.fill { background: #6c5cf5; border-color: #6c5cf5; }

/* sport */
.shot--sport .shot__hero { right: 34%; }
.shot--sport { background: radial-gradient(120% 80% at 80% 20%, #1c2a52 0%, #0b1222 55%, #070c18 100%); }
.shot__player {
  position: absolute; right: .8em; top: 3em; width: 5.8em; height: 10em;
  background: radial-gradient(circle at 50% 14%, #e0b9a0 0 .9em, transparent 1em),
              linear-gradient(180deg, transparent 2.4em, #232a3b 2.4em, #1a2030 100%);
  border-radius: 2em 2em .6em .6em;
  filter: drop-shadow(0 1.2em 1.4em rgba(0,0,0,.7));
}
.shot__cards { position: absolute; left: 1em; right: 1em; bottom: 1em; display: flex; gap: .5em; }
.shot__cards i { flex: 1; height: 2.2em; border-radius: .4em; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.06); }

/* coin */
.shot--coin { background: radial-gradient(90% 70% at 30% 20%, #1e2a55 0%, #0b1330 50%, #070b1c 100%); }
.shot__coin-text { position: absolute; left: 1.2em; top: 4em; width: 50%; }
.shot__coin-text strong { display: block; font-size: 1.5em; line-height: 1.1; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.shot__phone {
  position: absolute; right: .8em; top: 2em; bottom: -2em; width: 54%;
  background: #0f1530;
  border: .3em solid #2a3150;
  border-radius: 1.6em;
  transform: rotate(8deg);
  transform-origin: bottom center;
  overflow: hidden;
  box-shadow: 0 2em 4em -1em rgba(0,0,0,.9);
}
.shot__phone-screen { position: absolute; inset: 0; padding: 2.2em 1em 1em; display: flex; flex-direction: column; align-items: center; background: linear-gradient(180deg, #121a3d, #0a1028); }
.coin {
  width: 4.2em; height: 4.2em; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe08a, #e0a12b 55%, #9a6410);
  display: grid; place-items: center; color: #7a4d05; font-weight: 800;
  box-shadow: 0 .6em 1.4em rgba(255,190,60,.35), inset 0 -.3em .6em rgba(0,0,0,.3);
}
.coin span { font-size: 2em; }
.shot__phone-screen em { font-style: normal; font-weight: 700; font-size: 1.2em; color: #fff; text-align: center; line-height: 1.1; margin-top: .8em; }
.shot__phone-screen em small { color: #9d8dff; font-weight: 500; font-size: .85em; }
.shot__btn-wide { margin-top: auto; width: 80%; height: 1em; border-radius: .4em; background: #5b4cf5; }

/* finance */
.shot--finance { background: #f4f6fb; }
.shot__phone--light {
  left: .8em; right: auto; top: 1.4em; bottom: -1.4em; width: 46%;
  background: #fff; border-color: #14171f; transform: rotate(-4deg);
}
.shot__phone--light .shot__phone-screen { background: #fff; align-items: flex-start; padding: 1.6em .8em .8em; }
.shot__phone--light .tiny { font-size: .6em; color: #8a92a6; }
.shot__phone--light strong { font-size: 1.3em; color: #0b1020; font-weight: 700; margin-bottom: .3em; }
.shot__phone--light .chart { width: 100%; height: 3.6em; }
.shot__stats { width: 100%; display: flex; gap: .3em; margin-top: .6em; }
.shot__stats i { flex: 1; height: 1.4em; border-radius: .3em; background: #eef0f7; }
.shot__list { position: absolute; right: .8em; top: 1.6em; width: 44%; display: flex; flex-direction: column; gap: .5em; }
.shot__list i { height: 1.5em; border-radius: .4em; background: #fff; border: 1px solid #e3e6ef; position: relative; }
.shot__list i::before { content: ''; position: absolute; left: .3em; top: .3em; width: .9em; height: .9em; border-radius: 50%; background: #f39b3b; }
.shot__list i.b::before { background: #4a56f5; }
.shot__list i.g::before { background: #3ab07a; }
.shot__list i::after { content: ''; position: absolute; left: 1.6em; top: .5em; width: 40%; height: .4em; border-radius: .2em; background: #dfe3ee; }

/* viking */
.shot--viking { background: radial-gradient(80% 60% at 80% 40%, #2a2f3d 0%, #10131c 55%, #080a10 100%); }
.shot--viking .shot__hero { right: 45%; top: 4em; }
.shot--viking .shot__hero strong { font-size: 1.4em; letter-spacing: .02em; }
.shot__viking {
  position: absolute; right: .6em; top: 1.4em; width: 6.6em; height: 11em;
  background: radial-gradient(circle at 50% 12%, #d9b59b 0 1em, transparent 1.1em),
              linear-gradient(180deg, transparent 2.6em, #3b3f4d 2.6em, #1c1f28 100%);
  border-radius: 2.4em 2.4em .8em .8em;
  filter: drop-shadow(0 1.2em 1.4em rgba(0,0,0,.8));
}
.shot__thumbs { position: absolute; left: 1em; right: 1em; bottom: 1em; display: flex; gap: .5em; }
.shot__thumbs i { flex: 1; height: 2.6em; border-radius: .4em; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.shot__thumbs i:nth-child(3) { background: rgba(140,120,255,.35); }

/* =====================================================
   ANY IDEA
   ===================================================== */
.section--ideas { padding-top: 1rem; }
.ideas { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--gap); }
.ideas__main { padding: 1.75rem 2rem 1.75rem; display: flex; flex-direction: column; }
.ideas__main .h2 { font-size: 2rem; margin-bottom: 0.9rem; }
.ideas__main > p { font-size: 1.0625rem; line-height: 1.5; color: var(--text-2); margin-bottom: 1.4rem; max-width: 27rem; }
.ideas__main .btn { align-self: flex-start; margin-bottom: 1.4rem; }
.ideas__main .social-proof { margin-top: auto; }
.ideas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.idea { padding: 1.2rem 1.3rem 1.2rem; }
.idea__icon { width: 2.4rem; height: 2.4rem; margin-bottom: 1.1rem; display: flex; align-items: center; }
.idea__icon svg { width: 2.3rem; height: 2.3rem; fill: none; stroke: #8b7cff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.idea__icon--dots { gap: 5px; }
.idea__icon--dots i { width: 6px; height: 6px; border-radius: 50%; background: #8b7cff; }
.idea h3 { font-size: 1.0625rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.idea p { font-size: 0.9375rem; color: var(--muted); line-height: 1.5; }

/* =====================================================
   LIGHT SECTION
   ===================================================== */
.light {
  margin-top: 0.75rem;
  background: var(--light);
  color: var(--light-text);
  border-radius: var(--radius-lg);
  padding-bottom: 0.75rem;
}
.light .eyebrow { color: #7b8496; }
.light .h2 { color: var(--light-text); }

/* what you get */
.section--get { padding-top: 1.6rem; }
.get {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}
.get__left .h2 { margin-bottom: 1.4rem; font-size: 1.95rem; white-space: nowrap; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #2a3247;
}
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 0.05rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: linear-gradient(135deg, #8b7cff, #5a4cfb);
  box-shadow: 0 4px 10px -3px rgba(90,76,251,.6);
}
.checklist li::after {
  content: '';
  position: absolute; left: 0.38rem; top: 0.4rem;
  width: 0.45rem; height: 0.25rem;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* laptop image */
.get__center { position: relative; margin: -0.5rem 0.75rem -1rem -1.75rem; }
.get__img { display: block; width: 100%; height: auto; }

.get__right { padding-top: 0.5rem; padding-left: 0.5rem; }
.handwritten {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  line-height: 1.05;
  color: #8b92a5;
  transform: rotate(-7deg);
  margin: 0 0 1.4rem 1.25rem;
}
.get__right h3 { font-size: 1.4rem; line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.get__right p:not(.handwritten) { font-size: 1rem; line-height: 1.55; color: var(--light-muted); margin-bottom: 1.5rem; }

/* reviews */
.section--reviews { padding-top: 2.4rem; }
.section--reviews .section__head { align-items: center; margin-bottom: 1.1rem; }
.section--reviews .h2 { font-size: 1.95rem; }
.slider-nav { display: flex; gap: 0.5rem; }
.slider-btn {
  width: 2.4rem; height: 2.4rem; border-radius: 0.7rem;
  background: #fff; border: 1px solid var(--light-border);
  display: grid; place-items: center; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.slider-btn:hover { border-color: #c9cede; background: #f5f6fa; }
.slider-btn svg { width: 1rem; height: 1rem; fill: none; stroke: #0b1020; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem 1.3rem;
  box-shadow: 0 0.6rem 2rem -1.4rem rgba(20, 25, 60, .35);
}
.review__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.review__head img { width: 3.4rem; height: 3.4rem; border-radius: 50%; }
.review__head strong { display: block; font-size: 1.0625rem; font-weight: 600; }
.review__head span { font-size: 0.8125rem; color: #6c7488; }
.review p { font-size: 1rem; line-height: 1.55; color: #3a4257; }

/* CTA */
.section--cta { padding-top: 1.5rem; }
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #060c14;
  padding: 3rem 3.5rem;
  min-height: 16rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: #fff;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
}
.cta__waves { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.cta__waves svg { position: absolute; left: -5%; top: -30%; width: 110%; height: 160%; }
.cta__waves .glow {
  position: absolute; width: 60%; height: 140%; left: 20%; top: -20%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(70, 60, 220, .45) 0%, rgba(70,60,220,0) 65%);
  filter: blur(40px);
  animation: wave 16s ease-in-out infinite alternate;
}
@keyframes wave { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(8%, 6%, 0) scale(1.1); } }
.cta__left, .cta__right { position: relative; z-index: 1; }
.cta .eyebrow { color: #9aa4bb; }
.cta .h2 { color: #fff; font-size: 2.375rem; margin-bottom: 0.9rem; }
.cta__text { font-size: 1.0625rem; line-height: 1.5; color: rgba(238,242,250,.85); max-width: 27rem; }
.cta__form {
  display: flex;
  background: #fff;
  border-radius: 0.8rem;
  padding: 0.25rem;
  gap: 0.25rem;
  box-shadow: 0 1.25rem 2.5rem -1.25rem rgba(0,0,0,.6);
}
.cta__form input {
  flex: 1; min-width: 0;
  border: 0; outline: 0; background: transparent;
  padding: 0 1rem;
  font-size: 0.9375rem; color: var(--light-text);
}
.cta__form input::placeholder { color: #8a92a6; }
.cta__form .btn { border-radius: 0.6rem; height: 3.3rem; padding: 0 1.4rem; }
.cta__perks { display: flex; gap: 1.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cta__perks li { position: relative; padding-left: 1.6rem; font-size: 0.9375rem; color: rgba(238,242,250,.9); }
.cta__perks li::before {
  content: '';
  position: absolute; left: 0; top: 0.1rem;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  border: 1.5px solid #fff;
}
.cta__perks li::after {
  content: '';
  position: absolute; left: 0.28rem; top: 0.36rem;
  width: 0.38rem; height: 0.2rem;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding: 2rem 0 2rem; }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; }
.footer__brand p { margin-top: 0.6rem; font-size: 0.8125rem; color: var(--muted); }
.footer__links { display: flex; gap: 1.75rem; padding-top: 0.4rem; }
.footer__links a { font-size: 0.875rem; color: var(--text-2); transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.socials { display: flex; gap: 1.5rem; }
.socials a { color: #d7dce8; transition: color .15s; }
.socials a:hover { color: #fff; }
.socials svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__copy { font-size: 0.78rem; color: var(--muted); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  html { font-size: 14px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ideas { grid-template-columns: 1fr; }
  .get { grid-template-columns: 1fr 1fr; }
  .get__left .h2 { white-space: normal; }
  .get__center { grid-column: 1 / -1; order: 3; max-width: 40rem; margin: 0 auto; width: 100%; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 1.75rem; }
  .step::before, .step::after { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .compare__foot { flex-direction: column; align-items: flex-start; }
  .section--compare::before { top: 0; aspect-ratio: auto; background-position: center; opacity: .6; -webkit-mask-image: none; mask-image: none; }
  .section--compare .compare { max-width: none; }
  .compare__stats { flex-wrap: wrap; gap: 0.75rem 0; }
  .hero__inner { min-height: 34rem; }
  .hero__title { font-size: 4rem; }
}
@media (max-width: 860px) {
  html { font-size: 15px; }
  :root { --pad-x: 1rem; }
  .nav { padding: 1rem 1.25rem 0; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 4.25rem; left: 1rem; right: 1rem;
    padding: 0.75rem;
    border-radius: 0.9rem;
    background: rgba(8, 12, 24, .96);
    border: 1px solid var(--border-2);
  }
  .nav__links.is-open a { padding: 0.6rem 0.75rem; border-radius: 0.5rem; }
  .nav__links.is-open a:hover { background: rgba(255,255,255,.06); }
  .hero__inner { min-height: auto; background-position: 66% 50%; background-image: url('../assets/img/hero-bg-sm.webp'); }
  .hero__inner::before {
    background: linear-gradient(180deg, rgba(5,9,18,.82) 0%, rgba(5,9,18,.72) 45%, rgba(5,9,18,.45) 70%, rgba(5,9,18,.75) 100%);
  }
  .social-proof p { flex: 1; }
  .hero__content { padding: 2rem 1.25rem 2.5rem; }
  .hero__title { font-size: 3rem; margin-bottom: 1.5rem; white-space: normal; }
  .hero__text { margin-bottom: 1.75rem; }
  .hero__actions { gap: 0.75rem; margin-bottom: 2rem; }
  .btn { height: 3.1rem; padding: 0 1.4rem; }
  .social-proof p br { display: none; }
  .h2 { font-size: 1.85rem; }
  .card--how { padding: 1.75rem 1.25rem; }
  .card--how .h2 { font-size: 1.75rem; }
  .ideas__grid { grid-template-columns: repeat(2, 1fr); }
  .get { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { align-items: flex-start; }
}
@media (max-width: 560px) {
  :root { --pad-x: 0.5rem; --gap: 0.6rem; }
  .hero__title { font-size: 2.6rem; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--4.projects { grid-template-columns: repeat(2, 1fr); }
  .project { padding: 0.8rem 0.7rem 0.7rem; }
  .project h3 { font-size: 0.95rem; }
  .tags span { font-size: 0.7rem; line-height: 1.4rem; padding: 0 0.5rem; }
  .shot { font-size: calc((100cqw - 1.4rem) / 19); }
  .ideas__grid { grid-template-columns: repeat(2, 1fr); }
  .idea { padding: 1.1rem 0.9rem; }
  .idea__icon { margin-bottom: 1rem; }
  .section__head { flex-wrap: wrap; align-items: flex-start; }
  .section__head .h2 { flex: 1 1 100%; }
  .link { padding-bottom: 0; }
  .h2 { font-size: 1.6rem; }
  .ideas__main { padding: 1.5rem 1.1rem; }
  .ideas__main .h2 { font-size: 1.6rem; }
  .card--how { padding: 1.5rem 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 0.75rem; }
  .feature { padding: 1.25rem 1.1rem; }
  .get__center { margin: 0 -0.5rem; }
  .review { padding: 1.25rem 1rem; }
  .cta { padding: 1.9rem 1.4rem; }
  .cta__form { flex-direction: column; padding: 0.5rem; }
  .cta__form input { padding: 0.75rem 0.6rem; }
  .cta__perks { gap: 0.75rem 1.1rem; }
  .footer__links { flex-wrap: wrap; gap: 0.9rem 1.25rem; }
  .compare__head { display: none; }
  .compare__row { grid-template-columns: 1fr; }
  .compare__cell { padding: 0.9rem 1rem; }
  .compare__cell--label { padding-bottom: 0.2rem; justify-content: flex-start; }
  .compare__cell--old::before { content: 'Классическая разработка'; font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--eyebrow); }
  .compare__cell--new::before { content: 'FlyTheCode'; font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: #a99dff; }
  .compare__cell--new { border-left: 0; }
  .compare__foot { gap: 1rem; padding: 1.25rem 1rem; }
  .compare__stats { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .compare__stat { border-right: 0; margin-right: 0; padding-right: 0; }
  .compare__stat b { font-size: 1.5rem; }
  .section__lead { padding-bottom: 0; }
  .section--compare { padding: 2.5rem 0 3rem; }
  .section--compare::before { background-image: url('../assets/img/compare-bg-sm.webp'); }
}

/* =====================================================
   MOBILE POLISH (overrides)
   ===================================================== */
.nowrap { white-space: nowrap; }
@media (max-width: 860px) {
  html { font-size: 14px; }
  .section { padding-top: 1.75rem; }
  .eyebrow { font-size: 0.7rem; margin-bottom: 0.6rem; }
  .h2 { font-size: 1.7rem; line-height: 1.15; }
  .section__head { margin-bottom: 1rem; }
  .btn { height: 2.9rem; padding: 0 1.25rem; font-size: 0.95rem; }

  /* hero */
  .nav { padding: 0.9rem 1rem 0; }
  .logo img { height: 2.5rem; }
  .hero__content { padding: 1.5rem 1rem 1.75rem; max-width: none; }
  .hero__title { font-size: 2.5rem; margin-bottom: 0.9rem; letter-spacing: -0.03em; }
  .hero__text { font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.25rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 0.6rem; margin-bottom: 1.4rem; }
  .hero__actions .btn { width: 100%; }
  .avatars img, .avatars__more { width: 2.1rem; height: 2.1rem; border-width: 2px; margin-left: -0.55rem; }
  .social-proof { gap: 0.7rem; }
  .social-proof p { font-size: 0.8rem; line-height: 1.35; }

  /* steps */
  .section--how { padding-top: 0.75rem; }
  .card--how { padding: 1.4rem 1rem 1.25rem; }
  .card--how .h2 { font-size: 1.45rem; margin-bottom: 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.75rem; }
  .step__icon { width: 2.4rem; height: 2.4rem; margin-bottom: 0.55rem; border-radius: 0.6rem; }
  .step h3 { font-size: 1.05rem; margin-bottom: 0.1rem; }
  .step p { font-size: 0.85rem; }

  /* features */
  .grid--4 { grid-template-columns: 1fr; gap: 0.6rem; }
  .feature { padding: 0.9rem 1rem; display: grid; grid-template-columns: 2.4rem 1fr; column-gap: 0.8rem; align-items: start; }
  .feature__head { grid-column: 1 / -1; display: contents; }
  .feature__icon { width: 2.4rem; height: 2.4rem; grid-row: 1 / span 2; }
  .feature__icon svg { width: 1.5rem; height: 1.5rem; }
  .feature h3 { font-size: 1rem; margin-top: 0.15rem; margin-bottom: 0.2rem; }
  .feature p { font-size: 0.875rem; line-height: 1.45; grid-column: 2; }

  /* compare */
  .section--compare { margin-top: 1.75rem; padding: 2rem 0 2.25rem; }
  .section__head--center { gap: 0.6rem; margin-bottom: 1.1rem; }
  .section__head--center .h2 br { display: none; }
  .section__lead { font-size: 0.9rem; line-height: 1.45; }
  .compare__cell { padding: 0.75rem 0.9rem; }
  .compare__cell--label { font-size: 0.9rem; padding-bottom: 0.1rem; }
  .compare__cell strong { font-size: 1.05rem; }
  .compare__cell span { font-size: 0.82rem; }
  .compare__cell--old::before, .compare__cell--new::before { font-size: 0.62rem; }
  .compare__foot { padding: 0.9rem 0.9rem 1rem; gap: 0.75rem; }
  .compare__stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; width: 100%; gap: 0.5rem; }
  .compare__stat { flex-direction: column; align-items: flex-start; gap: 0.1rem; border: 0; margin: 0; padding: 0; white-space: normal; }
  .compare__stat b { font-size: 1.4rem; }
  .compare__stat span { font-size: 0.75rem; line-height: 1.2; }
  .compare__foot .btn { width: 100%; margin: 0.25rem 0 0; }

  /* portfolio */
  .grid--4.projects { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .project { padding: 0.8rem 0.7rem 0.7rem; }
  .project h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
  .tags { gap: 0.3rem; margin-bottom: 0.7rem; }
  .tags span { font-size: 0.68rem; line-height: 1.35rem; padding: 0 0.5rem; }
  .shot { font-size: calc((100cqw - 1.4rem) / 19); }
  .section__head .link { font-size: 0.85rem; }

  /* ideas */
  .section--ideas { padding-top: 0.6rem; }
  .ideas { gap: 0.6rem; }
  .ideas__main { padding: 1.25rem 1.1rem 1.2rem; }
  .ideas__main .h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
  .ideas__main > p { font-size: 0.9rem; margin-bottom: 1rem; }
  .ideas__main .btn { margin-bottom: 1rem; width: 100%; }
  .ideas__grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .idea { padding: 0.9rem 0.85rem; }
  .idea__icon { width: 1.8rem; height: 1.8rem; margin-bottom: 0.6rem; }
  .idea__icon svg { width: 1.7rem; height: 1.7rem; }
  .idea h3 { font-size: 0.92rem; margin-bottom: 0.15rem; }
  .idea p { font-size: 0.78rem; line-height: 1.35; }

  /* light */
  .light { margin-top: 0.6rem; border-radius: 1rem; }
  .section--get { padding-top: 1.6rem; }
  .get { gap: 1rem; }
  .get__left .h2 { font-size: 1.5rem; margin-bottom: 0.9rem; }
  .checklist li { font-size: 0.92rem; margin-bottom: 0.55rem; padding-left: 1.8rem; }
  .checklist li::before { width: 1.1rem; height: 1.1rem; top: 0.1rem; }
  .checklist li::after { left: 0.32rem; top: 0.42rem; width: 0.4rem; height: 0.22rem; }
  .get__center { order: 2; max-width: 26rem; margin: 0 auto; }
  .get__right { order: 3; padding: 0; }
  .handwritten { font-size: 1.25rem; margin: 0 0 1.1rem 0.5rem; display: inline-block; }
  .get__right h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
  .get__right p:not(.handwritten) { font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.9rem; }
  .get__right .btn { width: 100%; }

  /* reviews */
  .section--reviews { padding-top: 1.6rem; }
  .section--reviews .section__head { flex-wrap: nowrap; align-items: center; gap: 0.75rem; }
  .section--reviews .section__head .h2 { flex: 1 1 auto; font-size: 1.5rem; }
  .slider-btn { width: 2.1rem; height: 2.1rem; }
  .reviews { gap: 0.6rem; }
  .review { padding: 1rem 1rem 1.1rem; }
  .review__head { gap: 0.6rem; margin-bottom: 0.6rem; }
  .review__head img { width: 2.6rem; height: 2.6rem; }
  .review__head strong { font-size: 0.95rem; }
  .review__head span { font-size: 0.78rem; }
  .review p { font-size: 0.9rem; line-height: 1.5; }

  /* cta */
  .section--cta { padding-top: 1rem; }
  .cta { padding: 1.5rem 1.1rem 1.4rem; gap: 1.1rem; min-height: 0; border-radius: 1rem; }
  .cta .h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
  .cta__text { font-size: 0.9rem; }
  .cta__form { padding: 0.35rem; }
  .cta__form input { padding: 0.7rem 0.6rem; }
  .cta__form .btn { height: 2.8rem; }
  .cta__perks { gap: 0.4rem 1rem; margin-top: 0.9rem; }
  .cta__perks li { font-size: 0.82rem; }

  /* footer */
  .footer { padding: 1.5rem 0 1.5rem; }
  .footer__inner { gap: 1rem; }
  .footer .logo img { height: 2.3rem; }
  .footer__links { gap: 0.6rem 1rem; padding-top: 0; }
  .footer__right { gap: 0.6rem; }
}

/* =====================================================
   MOBILE v2: hero strip, steps timeline
   ===================================================== */
@media (max-width: 860px) {
  /* hero: text on solid dark, image as a native-scale strip below */
  .hero__inner { background: var(--bg); min-height: 0; }
  .hero__inner::before { background: none; }
  .hero__inner::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 0;
    height: 16rem;
    background: url('../assets/img/hero-bg.webp') 62% 50% / auto 100% no-repeat;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 100%);
  }
  .hero__content { padding: 1.4rem 1rem 14.5rem; }
  .hero__title { font-size: 2.6rem; }
  .social-proof p { color: rgba(238,242,250,.75); }

  /* steps: zigzag ("snake") timeline */
  .steps { display: flex; flex-direction: column; gap: 0; position: relative; padding: 0.25rem 0; }
  .steps::before {
    content: ''; position: absolute; left: 50%; top: 0.5rem; bottom: 0.5rem; width: 2px;
    background: repeating-linear-gradient(180deg, rgba(139,124,255,.45) 0 6px, transparent 6px 12px);
    transform: translateX(-50%);
  }
  .step { display: grid; grid-template-columns: 1fr 2.6rem 1fr; grid-template-rows: auto auto; column-gap: 0.85rem; row-gap: 0.1rem; align-items: center; padding: 0.8rem 0; }
  .step::before, .step::after { display: none; }
  .step__icon { position: relative; margin: 0; width: 2.6rem; height: 2.6rem; grid-column: 2; grid-row: 1 / span 2; border-radius: 0.8rem; box-shadow: 0 0 0 5px var(--bg-2), 0 0.6rem 1.5rem -0.75rem rgba(0,0,0,.9); }
  .step__icon::after { display: none; }
  .step h3 { font-size: 1.05rem; line-height: 1.2; margin: 0; }
  .step p { font-size: 0.85rem; line-height: 1.3; }
  .step:nth-child(4n+1) h3, .step:nth-child(4n+1) p { grid-column: 1; text-align: right; }
  .step:nth-child(4n+3) h3, .step:nth-child(4n+3) p { grid-column: 3; text-align: left; }
  .card--how .h2 { margin-bottom: 0.9rem; }

  /* compare heading centered, no exceptions */
  .section--compare .section__head { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .section--compare .h2 { text-align: center; width: 100%; }
}
