/* =========================================================
   Proxy Engine — landing page styles
   ========================================================= */

:root {
  --bg: #08090c;
  --bg-alt: #0c0e13;
  --surface: #13151c;
  --surface-2: #191c25;
  --border: rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.05);
  --text: #f4f5f7;
  --text-dim: #9aa0ac;
  --text-dimmer: #6b7280;

  --accent: #c6ff3d;
  --accent-dark: #9ed625;
  --accent-2: #6a7bff;
  --accent-3: #ff5470;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); }

body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: rgba(198,255,61,0.1);
  color: var(--accent);
  padding: 0.1em 0.4em;
  border-radius: 5px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---------- noise + cursor glow ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  margin-left: -240px; margin-top: -240px;
  background: radial-gradient(circle, rgba(198,255,61,0.10) 0%, rgba(106,123,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(var(--cx, -1000px), var(--cy, -1000px));
  will-change: transform;
  transition: opacity .3s;
  display: none;
}
@media (min-width: 900px) { .cursor-glow { display: block; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #0a0b0e;
  box-shadow: 0 0 0 0 rgba(198,255,61,0.5);
}
.btn-primary:hover {
  background: #d6ff66;
  box-shadow: 0 8px 30px -8px rgba(198,255,61,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-dim);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 15px 28px; font-size: 15.5px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(8,9,12,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  color: var(--accent);
  display: flex;
  filter: drop-shadow(0 0 10px rgba(198,255,61,0.45));
}
.accent-dot { color: var(--accent); }

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 14.5px;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: none; align-items: center; gap: 6px; }

@media (min-width: 980px) {
  .main-nav { display: flex; }
  .header-cta { display: flex; }
}

.burger {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.burger span {
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
@media (min-width: 980px) { .burger { display: none; } }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(78vw, 340px);
  background: #0b0c11;
  border-left: 1px solid var(--border);
  z-index: 600;
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 17px; color: var(--text-dim); font-weight: 500; }
.mobile-nav a:hover { color: var(--text); }
.mobile-cta {
  margin-top: 10px;
  color: #0a0b0e !important;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.net-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.hero-glow-a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(198,255,61,0.20), transparent 70%);
  top: -180px; left: -160px;
}
.hero-glow-b {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(106,123,255,0.20), transparent 70%);
  top: 60px; right: -220px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(198,255,61,0.08);
  border: 1px solid rgba(198,255,61,0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  font-weight: 600;
}
.hero-title-hl {
  background: linear-gradient(100deg, var(--accent) 10%, #eaffb0 40%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  color: var(--text-dim);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  max-width: 520px;
}
@media (min-width: 560px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.hero-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
}
.hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-dimmer);
  line-height: 1.35;
}

/* ---- phone mockup ---- */
.hero-visual { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; }

.phone-frame {
  width: 264px;
  height: 538px;
  border-radius: 40px;
  background: linear-gradient(160deg, #1b1e27, #0c0d12);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  padding: 12px;
  position: relative;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 20px;
  background: #05060a;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #101219 0%, #0a0b10 100%);
  overflow: hidden;
  padding: 30px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}
.app-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.app-signal { margin-left: auto; color: var(--accent); display: flex; }
.app-signal svg { display: block; }

.app-sub-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(198,255,61,0.12), rgba(106,123,255,0.10));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.app-sub-dot { width: 6px; height: 6px; border-radius: 50%; background: #5cff8f; box-shadow: 0 0 6px #5cff8f; flex-shrink: 0; }
.app-sub-days { margin-left: auto; color: var(--text-dimmer); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

.app-connect-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
/* Кольца и кнопка — в одном 78×78 боксе, кольца растянуты на него целиком
   (inset:0; margin:auto) и масштабируются от собственного центра. Так пульс
   всегда идёт из-под кнопки, а не рядом. */
.connect-core {
  position: relative;
  width: 78px; height: 78px;
  display: grid;
  place-items: center;
}
.connect-ring {
  position: absolute;
  inset: 0; margin: auto;
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(198,255,61,0.35);
  animation: ringPulse 2.8s ease-out infinite;
}
.connect-ring.r1 { animation-delay: 0s; }
.connect-ring.r2 { animation-delay: .93s; }
.connect-ring.r3 { animation-delay: 1.86s; }
@keyframes ringPulse {
  0%   { transform: scale(0.78); opacity: 0.7; }
  100% { transform: scale(2.2);  opacity: 0; }
}
.connect-btn {
  width: 78px; height: 78px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 35% 30%, #daff7a, var(--accent) 60%, var(--accent-dark));
  color: #0a0b0e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(198,255,61,0.45);
  position: relative;
  z-index: 2;
}
.connect-status {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: #5cff8f; box-shadow: 0 0 6px #5cff8f; }
.connect-loc { font-size: 11px; color: var(--text-dimmer); }

.app-loc-list { display: flex; flex-direction: column; gap: 7px; }
.app-loc-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 8px 11px;
}
.app-loc-row.active { border-color: rgba(198,255,61,0.3); color: var(--text); background: rgba(198,255,61,0.06); }
.loc-ping { color: var(--text-dimmer); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; }

.visual-caption {
  font-size: 11.5px;
  color: var(--text-dimmer);
  text-align: center;
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  z-index: 2;
  display: none;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--accent);
  margin: 6px auto 0;
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { opacity: 0; }
}
@media (min-width: 700px) { .scroll-cue { display: block; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
}
.mq-list {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}
.marquee-track span { display: inline-flex; }
.marquee-track .sep { color: var(--accent); opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   SECTION GENERICS
   ========================================================= */
.section { padding: 108px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(106,123,255,0.10);
  border: 1px solid rgba(106,123,255,0.28);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-on-dark { color: var(--accent); background: rgba(198,255,61,0.1); border-color: rgba(198,255,61,0.3); }

.section-head h2, .final-cta h2, .shot-text h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.16;
}

.section-lead {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 640px;
}

/* reveal animation base */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal][data-reveal-delay="1"] { transition-delay: .12s; }

/* =========================================================
   PROBLEM / COMPARE
   ========================================================= */
.problem { background: var(--bg-alt); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 860px) {
  .compare-grid { grid-template-columns: 1fr auto 1fr; }
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--border);
}
.compare-before { background: var(--surface); }
.compare-after {
  background: linear-gradient(160deg, rgba(198,255,61,0.07), rgba(106,123,255,0.05));
  border-color: rgba(198,255,61,0.25);
}
.compare-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}
.compare-after .compare-title { color: var(--accent); }
.compare-card ul { display: flex; flex-direction: column; gap: 13px; }
.compare-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.compare-before li::before {
  content: '×';
  position: absolute; left: 0; top: -1px;
  color: var(--accent-3);
  font-weight: 700;
}
.compare-after li { color: var(--text); }
.compare-after li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  color: var(--accent);
  font-weight: 700;
}

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transform: rotate(90deg);
}
@media (min-width: 860px) { .compare-arrow { transform: none; } }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 980px) {
  .how-tracks { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.how-track-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 22px;
}

.how-steps { display: flex; flex-direction: column; gap: 22px; }
.how-steps li { display: flex; gap: 16px; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dimmer);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-steps strong { font-size: 15px; font-weight: 600; }
.how-steps p { margin-top: 4px; font-size: 13.8px; color: var(--text-dim); line-height: 1.5; }

/* =========================================================
   FEATURES
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  will-change: transform;
}
.feature-card:hover {
  border-color: rgba(198,255,61,0.3);
  background: var(--surface-2);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(198,255,61,0.08);
  border: 1px solid rgba(198,255,61,0.2);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 16.5px; margin-bottom: 10px; }
.feature-card p { font-size: 13.8px; color: var(--text-dim); line-height: 1.55; }

/* =========================================================
   SCREENSHOT SECTIONS
   ========================================================= */
.shot-section { background: var(--bg-alt); }
.shot-section--alt { background: var(--bg); }

.shot-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}
@media (min-width: 940px) {
  .shot-block { grid-template-columns: 1.15fr 0.85fr; }
  /* блок со скриншотом приложения: узкая колонка под телефон, широкая под текст */
  .shot-block--phone { grid-template-columns: 0.72fr 1.28fr; }
}

.browser-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #14161d;
  border-bottom: 1px solid var(--border-soft);
}
.browser-bar span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--text-dimmer);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
}

.shot-frame img { display: block; width: 100%; height: auto; }

.shot-placeholder {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 36px;
  color: var(--text-dimmer);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #14161d, #0d0e13);
  border: 1.5px dashed rgba(255,255,255,0.15);
}
.shot-placeholder svg { color: var(--accent-2); opacity: 0.8; }
.shot-placeholder p { color: var(--text-dim); font-size: 14px; max-width: 380px; }
.shot-placeholder .shot-spec {
  font-size: 11.5px;
  color: var(--text-dimmer);
  max-width: 340px;
}
.shot-placeholder code { font-size: 0.85em; }

.phone-shot-frame {
  width: 240px;
  margin: 0 auto;
  border-radius: 34px;
  border: 8px solid #14161d;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.shot-placeholder--phone { aspect-ratio: 9/18.5; padding: 24px; }

.shot-text h2 { margin-bottom: 6px; }

/* =========================================================
   PLATFORMS
   ========================================================= */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .platform-grid { grid-template-columns: repeat(3, 1fr); } }

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color .3s, transform .3s var(--ease);
}
.platform-card:hover { transform: translateY(-4px); }
.status-ready:hover { border-color: rgba(198,255,61,0.35); }
.status-progress:hover { border-color: rgba(255,181,71,0.35); }

.platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.platform-icon { width: 28px; height: 28px; color: var(--text-dim); flex-shrink: 0; }
.platform-icon svg { display: block; width: 100%; height: 100%; }

.status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.status-pill--ready { color: #0a0b0e; background: var(--accent); }
.status-pill--progress { color: #1a1200; background: #ffb547; }

.platform-card h3 { font-size: 18px; margin-bottom: 8px; }
.platform-card p { font-size: 13.8px; color: var(--text-dim); }

/* =========================================================
   TECH
   ========================================================= */
.tech { background: var(--bg-alt); }

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-bottom: 50px;
}
@media (min-width: 720px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }

.tech-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  margin-bottom: 16px;
  font-weight: 600;
}
.tech-list { display: flex; flex-direction: column; gap: 11px; }
.tech-list li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.tech-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.security-banner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(120deg, rgba(198,255,61,0.08), rgba(106,123,255,0.06));
  border: 1px solid rgba(198,255,61,0.22);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.security-banner-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(198,255,61,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-banner strong { font-size: 15.5px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.security-banner p { margin-top: 8px; font-size: 14px; color: var(--text-dim); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
  align-items: start;
}
@media (min-width: 920px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  height: 100%;
}
.pricing-card--featured {
  border-color: rgba(198, 255, 61, 0.45);
  background: linear-gradient(180deg, rgba(198,255,61,0.06), var(--surface) 60%);
  box-shadow: 0 30px 60px -40px rgba(198,255,61,0.3);
}
@media (min-width: 920px) { .pricing-card--featured { transform: translateY(-10px); } }

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}
.pricing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.pricing-price { display: flex; align-items: baseline; gap: 6px; }
.pricing-amount { font-size: 34px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.pricing-per { font-size: 14px; color: var(--text-dim); }
.pricing-tagline { font-size: 14px; color: var(--text); line-height: 1.5; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 2px 0 4px;
  flex-grow: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 24px;
  font-size: 13.6px;
  color: var(--text-dim);
  line-height: 1.5;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(198, 255, 61, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6ff3d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card .btn { width: 100%; margin-top: auto; }

.pricing-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 12px;
}
.pricing-cta p { max-width: 520px; color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: transform .3s var(--ease), background .3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(198,255,61,0.1); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a p { padding: 0 22px 20px; font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { padding-bottom: 130px; }
.final-cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  padding: 76px 30px;
  background: linear-gradient(160deg, #14161d, #0a0b0f);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(198,255,61,0.18), transparent 65%);
  pointer-events: none;
}
.final-cta-box h2 { position: relative; margin-top: 4px; max-width: 640px; }
.final-cta-box > p { position: relative; margin-top: 18px; color: var(--text-dim); max-width: 480px; font-size: 16px; }

.final-cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.contact-methods {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: transform .25s var(--ease), border-color .25s;
  min-width: 220px;
  text-align: left;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(198,255,61,0.3); }
.contact-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-icon svg { display: block; width: 100%; height: 100%; }
.contact-card strong { display: block; font-size: 14px; }
.contact-card em { display: block; font-style: normal; font-size: 13px; color: var(--text-dim); margin-top: 2px; }

.contact-note {
  position: relative;
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-dimmer);
  max-width: 420px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 780px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.footer-nav a { font-size: 13.5px; color: var(--text-dim); }
.footer-nav a:hover { color: var(--text); }
.footer-meta { font-size: 12.5px; color: var(--text-dimmer); max-width: 360px; }

/* =========================================================
   MISC RESPONSIVE
   ========================================================= */
@media (max-width: 620px) {
  .section { padding: 78px 0; }
  .hero { padding-top: 130px; }
  .phone-frame { width: 230px; height: 470px; }
}
