/* ==========================================================================
   Çıkartma! — promo site
   Dark, sticker-inspired design built on the app's own real dark-mode brand
   color (mint #22D3A6 on near-black #0A0C12 — see src/ui/theme/darkColors.ts).
   ========================================================================== */

:root {
  --bg: #0a0c12;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f6f2;
  --text-muted: rgba(245, 246, 242, 0.66);
  --text-faint: rgba(245, 246, 242, 0.42);
  --primary: #22d3a6;
  --primary-strong: #14b98d;
  --primary-bright: #6ee7c8;
  --primary-soft: rgba(34, 211, 166, 0.14);
  --red: #e2483f;
  --blue: #3d7bff;
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 30px 70px -25px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 16px 40px -18px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 20px 50px -20px rgba(34, 211, 166, 0.35);
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Baloo 2", var(--font-body);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #04140f;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 300;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.wrap--narrow {
  max-width: 780px;
}

.accent {
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--primary-bright), #8ff0d9, var(--primary));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 7s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- scroll progress bar ---------- */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  z-index: 400;
  box-shadow: 0 0 14px rgba(34, 211, 166, 0.65);
}

/* ---------- aurora background (fixed, drifts slowly, visible through the
   whole page since sections use translucent rather than opaque fills) ---------- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  will-change: transform;
}
.aurora-blob--a {
  width: 640px;
  height: 640px;
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.4;
  animation: driftA 28s ease-in-out infinite alternate;
}
.aurora-blob--b {
  width: 520px;
  height: 520px;
  top: 32%;
  right: -12%;
  background: radial-gradient(circle, var(--red), transparent 70%);
  opacity: 0.22;
  animation: driftB 34s ease-in-out infinite alternate;
}
.aurora-blob--c {
  width: 580px;
  height: 580px;
  bottom: -18%;
  left: 24%;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  opacity: 0.18;
  animation: driftC 40s ease-in-out infinite alternate;
}
@keyframes driftA {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(90px, 70px) scale(1.18); }
}
@keyframes driftB {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-70px, 90px) scale(0.88); }
}
@keyframes driftC {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(60px, -80px) scale(1.12); }
}

header, main, footer {
  position: relative;
  z-index: 1;
}

/* ---------- buttons / badges ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-primary {
  background: var(--primary);
  color: #04140f;
  box-shadow: 0 10px 30px -12px rgba(34, 211, 166, 0.55);
}
.btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(34, 211, 166, 0.7);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

.store-badge,
.btn-primary {
  position: relative;
  overflow: hidden;
}
.store-badge::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.store-badge:hover::after,
.btn-primary:hover::after {
  left: 130%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px 10px 16px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 166, 0.45);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow);
}
.store-badge svg {
  width: 26px;
  height: 26px;
  color: var(--text);
  flex-shrink: 0;
}
.store-badge span {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.15;
}
.store-badge small {
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(34, 211, 166, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.eyebrow--pulse {
  animation: pulseBadge 2.6s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 166, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(34, 211, 166, 0); }
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 12, 18, 0.78);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .2s var(--ease);
}
.brand:hover {
  transform: translateY(-1px);
}
.brand-mark {
  border-radius: 9px;
  box-shadow: var(--shadow-md);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color .18s ease;
  padding: 4px 0;
}
.nav-links a span {
  position: relative;
}
.nav-links a span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
  border-radius: 2px;
  transition: right .3s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover span::after {
  right: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 84px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 680px;
  background:
    radial-gradient(560px 360px at 18% 15%, rgba(34, 211, 166, 0.22), transparent 70%),
    radial-gradient(460px 320px at 88% 5%, rgba(226, 72, 63, 0.14), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 30% 20%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--x, 20%) var(--y, 30%), rgba(34, 211, 166, 0.16), transparent 68%);
  transition: background .15s ease-out;
}
.hero-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: .4em;
}
.hero .lead {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 36px;
}
.hero-actions--center {
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat span {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 600;
}

/* phone frame + keyboard mock */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone-frame {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.2;
  background: linear-gradient(180deg, #191d27, #0e1017);
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg), inset 0 0 0 8px #05060a;
  overflow: hidden;
  z-index: 2;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-frame:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 0 0 8px #05060a;
}
.phone-frame--sm {
  width: 200px;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #05060a;
  border-radius: 14px;
  z-index: 5;
}
.screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.screenshot.missing {
  display: none;
}
.screenshot-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(140px 140px at 30% 25%, rgba(34, 211, 166, 0.28), transparent 65%),
    radial-gradient(160px 160px at 80% 85%, rgba(226, 72, 63, 0.2), transparent 65%),
    linear-gradient(160deg, #171b26, #0b0d13);
  color: var(--text-faint);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-align: center;
  padding: 20px;
}
.fallback-icon {
  font-size: 34px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

/* the hero's own fake keyboard grid (built from real sticker assets, not a screenshot) */

.keyboard-mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #12151f, #0a0c12 60%);
  padding-top: 44px;
}
.keyboard-mock__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
}
.keyboard-mock__bar .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.keyboard-mock__title {
  margin-left: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
}
.keyboard-mock__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  overflow: hidden;
}
.keyboard-mock__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  animation: popIn .5s var(--ease) backwards;
  animation-delay: calc(var(--pop-i, 0) * 70ms);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}
.keyboard-mock__row {
  height: 78px;
  margin: 0 10px 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
}

.floaters {
  position: absolute;
  inset: -30px -60px;
  pointer-events: none;
  z-index: 1;
}
.floater {
  position: absolute;
  width: 68px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-16px) rotate(var(--r, 0deg)); }
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 21, 31, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.float-chip--a {
  top: 8%;
  right: -6%;
  animation-delay: .4s;
}
.float-chip--b {
  bottom: 12%;
  left: -8%;
  animation-delay: 1.3s;
}

/* ---------- marquee ---------- */

.marquee-section {
  position: relative;
  z-index: 1;
  padding: 34px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee--reverse .marquee-track {
  animation-name: marqueeReverse;
  animation-duration: 46s;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 9px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- quick strip ---------- */

.strip {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}
.strip-item:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.strip-emoji {
  font-size: 17px;
}

/* ---------- sections ---------- */

.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.section--muted {
  background: rgba(255, 255, 255, 0.022);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}
.section-head .lead {
  color: var(--text-muted);
  font-size: 16.5px;
}
.section-head .eyebrow {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

/* feature rows */

.feature-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 46px 0;
}
.feature-row + .feature-row {
  border-top: 1px solid var(--border-soft);
}
.feature-row--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.feature-row--reverse .feature-visual {
  order: 2;
}
.feature-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.feature-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-copy h3 {
  font-size: 26px;
  margin-bottom: .45em;
}
.feature-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
}
.check-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  transition: transform .2s ease;
}
.check-list li:hover {
  transform: translateX(3px);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--primary-soft);
  border: 1px solid rgba(34, 211, 166, 0.35);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(40deg);
}

/* sticker wall (used inside a feature row) */

.sticker-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 360px;
}
.sticker-wall img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sticker-wall img:hover {
  transform: translateY(-6px) scale(1.06) rotate(-2deg);
  box-shadow: var(--shadow-glow);
}
.sticker-wall > *:nth-child(2) { margin-top: 22px; }
.sticker-wall > *:nth-child(5) { margin-top: -10px; }

/* ---------- team grid ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(34, 211, 166, 0.4);
  background: var(--surface-strong);
  box-shadow: var(--shadow-glow);
}
.team-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
  transition: transform .25s var(--ease);
}
.team-card:hover img {
  transform: scale(1.08) rotate(-3deg);
}
.team-card span {
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
}

/* ---------- screenshots row ---------- */

.shots-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x mandatory;
}
.shots-row .phone-frame {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.shots-row::-webkit-scrollbar {
  height: 8px;
}
.shots-row::-webkit-scrollbar-thumb {
  background: var(--surface-strong);
  border-radius: 999px;
}

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 166, 0.35);
  box-shadow: var(--shadow-glow);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .25s var(--ease);
}
.step:hover .step-num {
  transform: scale(1.12) rotate(-6deg);
}
.step h3 {
  font-size: 19px;
}
.step p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- faq ---------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color .2s ease, background .2s ease;
}
.faq details:hover {
  border-color: rgba(34, 211, 166, 0.28);
}
.faq details[open] {
  background: var(--surface-strong);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
  transition: transform .25s var(--ease);
  margin-left: 12px;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin: 14px 0 2px;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- final cta ---------- */

.cta {
  position: relative;
  z-index: 1;
  padding: 110px 0 120px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-soft);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 340px at 50% 0%, rgba(34, 211, 166, 0.18), transparent 70%);
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta .lead {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
}
.cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- footer ---------- */

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}
.footer-copy {
  margin: 0;
  color: var(--text-faint);
  font-size: 13px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-legal-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-legal-links a:hover {
  color: var(--text);
}

/* ---------- reveal-on-scroll ---------- */

[data-reveal] {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
}
[data-reveal="up"] { transform: translateY(32px); }
[data-reveal="left"] { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal="scale"] { transform: scale(.9); }
[data-reveal="blur"] { transform: translateY(18px); filter: blur(10px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-reveal-group] .stagger-child {
  opacity: 0;
  transform: translateY(22px) scale(.96);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal-group].is-visible .stagger-child {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero-row {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }
  .float-chip {
    display: none;
  }
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row--reverse .feature-visual {
    order: 0;
  }
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    background: rgba(14, 17, 25, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 8px;
    border-radius: 10px;
  }
  .nav-links a:hover {
    background: var(--surface);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta .btn-sm {
    display: none;
  }
  .strip-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .section {
    padding: 64px 0;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats {
    gap: 22px;
  }
  .phone-frame:hover,
  [data-tilt] {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .phone-frame {
    width: 240px;
  }
}
