/* ==========================================================================
   drybuilds — design system
   ========================================================================== */

:root {
  --bg: #07080b;
  --bg-2: #0b0d12;
  --bg-3: #10131a;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f3f5f9;
  --muted: #98a1b3;
  --muted-2: #6b7488;

  --accent: #7c5cff;
  --accent-2: #4ea8ff;
  --accent-3: #b8ff3d;
  --accent-grad: linear-gradient(120deg, #7c5cff 0%, #4ea8ff 55%, #6ee7ff 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 0 1px rgba(124, 92, 255, 0.35), 0 20px 60px -20px rgba(124, 92, 255, 0.5);

  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
}

p { margin: 0; }

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

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

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: rgba(124, 92, 255, 0.35); color: #fff; }

/* ---- layout -------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { position: relative; padding: 120px 0; }

.section--tight { padding: 84px 0; }

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-2);
  opacity: 0.7;
}

.section-head.center .eyebrow::before { display: none; }

.h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.65;
}

.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent-grad);
  color: #06070a;
  box-shadow: 0 14px 40px -14px rgba(124, 92, 255, 0.85);
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.28); }

.btn--sm { padding: 11px 20px; font-size: 14px; }

.btn--block { width: 100%; }

/* ---- header -------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-grad);
  display: grid;
  place-items: center;
  color: #06070a;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px -8px rgba(124, 92, 255, 0.9);
}

.logo b { color: var(--muted); font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  color: var(--muted);
}

.nav__links a { transition: color 0.25s; }
.nav__links a:hover { color: var(--text); }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  place-items: center;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  position: relative;
  transition: 0.3s var(--ease);
}

.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  transition: 0.3s var(--ease);
}

.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 99;
  background: rgba(7, 8, 11, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s var(--ease);
}

.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

.mobile-menu a {
  padding: 14px 8px;
  font-size: 17px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.mobile-menu .btn { margin-top: 16px; }

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

.hero {
  position: relative;
  padding: 190px 0 110px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}

.orb--1 { width: 560px; height: 560px; background: #5b3bff; top: -180px; left: -120px; }
.orb--2 { width: 480px; height: 480px; background: #0e6bff; top: 40px; right: -140px; animation-delay: -6s; }
.orb--3 { width: 420px; height: 420px; background: #00b3a4; bottom: -220px; left: 40%; animation-delay: -12s; opacity: 0.32; }

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 24px) scale(0.96); }
}

.hero__inner { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 0 4px rgba(184, 255, 61, 0.16);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 255, 61, 0.16); }
  50% { box-shadow: 0 0 0 9px rgba(184, 255, 61, 0.05); }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  margin-bottom: 26px;
  max-width: 15ch;
}

.hero h1 .line { display: block; }

.hero__sub {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13.5px;
  color: var(--muted-2);
}

.hero__micro span { display: inline-flex; align-items: center; gap: 8px; }
.hero__micro svg { color: var(--accent-3); }

/* hero visual */
.hero__visual {
  position: relative;
  margin-top: 84px;
  perspective: 1600px;
}

.mock {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(20, 23, 32, 0.9), rgba(10, 12, 17, 0.95));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
  transform: rotateX(6deg);
  transform-origin: top center;
  transition: transform 0.8s var(--ease);
}

.mock:hover { transform: rotateX(0deg); }

.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: #2b3040; display: block; }
.mock__bar i:nth-child(1) { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.mock__body { display: grid; grid-template-columns: 200px 1fr; min-height: 340px; }

.mock__side {
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.012);
}

.mock__nav-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.mock__nav-item.active { background: linear-gradient(90deg, rgba(124, 92, 255, 0.35), rgba(78, 168, 255, 0.14)); }

.mock__main { padding: 22px; display: flex; flex-direction: column; gap: 16px; }

.mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.mock__kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.mock__kpi b { display: block; font-size: 22px; font-family: "Space Grotesk", sans-serif; }
.mock__kpi small { color: var(--muted-2); font-size: 11px; }

.mock__chart {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.mock__bars { position: absolute; inset: auto 16px 16px 16px; display: flex; align-items: flex-end; gap: 10px; height: 70%; }

.mock__bars i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #7c5cff, #4ea8ff);
  opacity: 0.85;
  animation: grow 1.4s var(--ease) backwards;
}

@keyframes grow { from { transform: scaleY(0.05); transform-origin: bottom; } }

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 44px;
  background: rgba(12, 14, 20, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-card .ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-3) 0 88%, rgba(255, 255, 255, 0.1) 88% 100%);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #06070a;
}

.floating-card small { color: var(--muted); font-size: 12px; display: block; }
.floating-card b { font-size: 14px; }

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

.marquee-wrap { padding: 44px 0; border-block: 1px solid var(--border); overflow: hidden; }

.marquee-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 26px;
}

.marquee { display: flex; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }

.marquee__track {
  display: flex;
  gap: 64px;
  padding-right: 64px;
  animation: scroll-x 32s linear infinite;
  flex-shrink: 0;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes scroll-x { to { transform: translateX(-100%); } }

.marquee__logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted-2);
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee__logo:hover { color: var(--text); }

/* ---- grids & cards ------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  padding: 32px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(124, 92, 255, 0.6), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.28);
  color: #b3a4ff;
  margin-bottom: 20px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

.card__metric {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* problem list */
.pain-list { display: grid; gap: 14px; margin-top: 8px; }

.pain {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.pain:hover { border-color: var(--border-strong); transform: translateX(6px); }

.pain__x {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 95, 87, 0.14);
  color: #ff8a84;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.pain b { display: block; margin-bottom: 2px; }
.pain p { color: var(--muted); font-size: 14.5px; }

/* ---- process ------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}

.step:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.step__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

.step__line {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: var(--border-strong);
}

.step:last-child .step__line { display: none; }

/* ---- stats --------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.stat { padding: 40px 28px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }

.stat b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat span { color: var(--muted); font-size: 14px; }

/* ---- testimonials -------------------------------------------------------- */

.quote {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}

.quote:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.quote__stars { display: flex; gap: 4px; color: #ffc247; }

.quote p { font-size: 16.5px; line-height: 1.6; color: #dde2ec; }

.quote__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #06070a;
  background: var(--accent-grad);
  flex: none;
}

.quote__who b { display: block; font-size: 14.5px; }
.quote__who small { color: var(--muted-2); font-size: 13px; }

/* ---- case studies -------------------------------------------------------- */

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}

.case:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.case__body { padding: 44px; display: flex; flex-direction: column; gap: 18px; }

.case__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(78, 168, 255, 0.12);
  color: #8ecbff;
  border: 1px solid rgba(78, 168, 255, 0.25);
}

.case h3 { font-size: 26px; }

.case__results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 6px; }

.case__result b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--accent-3);
}

.case__result span { font-size: 12.5px; color: var(--muted-2); }

.case__visual {
  position: relative;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(124, 92, 255, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  border-left: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 40px;
  min-height: 320px;
}

.case__visual .panel {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(10, 12, 17, 0.9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-row span { font-size: 11px; color: var(--muted-2); width: 54px; flex: none; }
.bar-row i { height: 10px; border-radius: 999px; background: var(--accent-grad); display: block; }

/* ---- pricing ------------------------------------------------------------- */

.price {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}

.price:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.price--featured {
  border-color: rgba(124, 92, 255, 0.5);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-glow);
}

.price__badge {
  position: absolute;
  top: -13px;
  left: 32px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-grad);
  color: #06070a;
}

.price h3 { font-size: 19px; }
.price .amount { font-family: "Space Grotesk", sans-serif; font-size: 46px; letter-spacing: -0.045em; }
.price .amount small { font-size: 15px; color: var(--muted); font-family: "Inter", sans-serif; font-weight: 400; letter-spacing: 0; }
.price p { color: var(--muted); font-size: 14.5px; }

.price ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.price li { display: flex; gap: 11px; font-size: 14.5px; color: #cdd4e0; }

.price li svg { flex: none; margin-top: 3px; color: var(--accent-3); }

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

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item.open { border-color: var(--border-strong); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
}

.faq__q i {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.3s;
}

.faq__q i::before, .faq__q i::after {
  content: "";
  position: absolute;
  background: var(--text);
  border-radius: 2px;
}

.faq__q i::before { width: 11px; height: 1.6px; }
.faq__q i::after { width: 1.6px; height: 11px; transition: transform 0.4s var(--ease); }

.faq__item.open .faq__q i { background: var(--accent); transform: rotate(90deg); }
.faq__item.open .faq__q i::after { transform: scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq__a p { padding: 0 24px 24px; color: var(--muted); font-size: 15px; }

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

.cta-band {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 50% -20%, rgba(124, 92, 255, 0.4), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.cta-band h2 { font-size: clamp(30px, 4.4vw, 52px); margin-bottom: 18px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; font-size: 17px; }
.cta-band .hero__actions { justify-content: center; }

/* ---- form ---------------------------------------------------------------- */

.form { display: grid; gap: 16px; text-align: left; max-width: 520px; margin: 34px auto 0; }

.field { display: grid; gap: 8px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 500; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s, background 0.25s;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.06);
}

.field textarea { min-height: 110px; resize: vertical; }

.form__note { font-size: 12.5px; color: var(--muted-2); text-align: center; }

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

.site-footer { border-top: 1px solid var(--border); padding: 64px 0 40px; margin-top: 40px; }

.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.footer__brand p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 320px; }

.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 16px; font-family: "Inter", sans-serif; font-weight: 600; }
.footer__col a { display: block; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 13.5px;
}

.footer__bottom a:hover { color: var(--text); }

/* ---- reveal animations --------------------------------------------------- */

.reveal {
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

/* Only hide for animation when JS is available — no-JS visitors see everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.in { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .case { grid-template-columns: 1fr; }
  .case__visual { border-left: 0; border-top: 1px solid var(--border); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: grid; }
  .logo { font-size: 17px; }
  .mobile-menu { display: flex; }
  .section { padding: 84px 0; }
  .hero { padding: 140px 0 70px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
  .floating-card { right: 8px; bottom: -16px; }
  .case__body { padding: 30px; }
  .case__results { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 52px 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Hyros-style additions
   ========================================================================== */

/* ---- announcement bar ---- */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 11px 20px;
  font-size: 13.5px;
  color: #e6e9f2;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.22), rgba(78, 168, 255, 0.18));
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.announce b { color: #fff; font-weight: 600; }

.announce a {
  color: var(--accent-3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.countdown { display: inline-flex; gap: 6px; align-items: center; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.countdown span {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 2px 8px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ---- hero additions ---- */
.hero--tall { padding-top: 210px; }

.hero-claim { font-size: clamp(42px, 7.4vw, 92px); line-height: 1.02; }

.hero-quote {
  margin-top: 44px;
  font-size: 15.5px;
  color: var(--muted);
  border-left: 2px solid rgba(124, 92, 255, 0.6);
  padding-left: 18px;
  max-width: 560px;
}

.hero-quote b { color: var(--text); font-weight: 600; }

/* ---- story scenes ---- */
.scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}

.scene--flip .scene__media { order: -1; }

.scene__copy h3 { font-size: clamp(26px, 3.4vw, 42px); margin-bottom: 16px; }
.scene__copy p { color: var(--muted); font-size: 17px; line-height: 1.65; }

.scene__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }

.scene__list li { display: flex; gap: 11px; font-size: 15.5px; color: #d5dbe6; }

.scene__list svg { flex: none; margin-top: 4px; color: var(--accent-3); }

.scene__media { position: relative; }

.panel-ui {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 23, 32, 0.92), rgba(10, 12, 17, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-ui__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--muted-2);
}

.panel-ui__head i { width: 10px; height: 10px; border-radius: 50%; background: #2b3040; }
.panel-ui__head i:nth-child(1) { background: #ff5f57; }
.panel-ui__head i:nth-child(2) { background: #febc2e; }
.panel-ui__head i:nth-child(3) { background: #28c840; }

.panel-ui__body { padding: 20px; display: grid; gap: 14px; }

.rowline { display: flex; align-items: center; gap: 12px; }
.rowline span { font-size: 12px; color: var(--muted-2); width: 88px; flex: none; }
.rowline i { height: 10px; border-radius: 999px; background: var(--accent-grad); display: block; }

.panel-ui__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  line-height: 1.85;
  color: #a9b4c6;
  white-space: pre-wrap;
}

.panel-ui__code .k { color: #b3a4ff; }
.panel-ui__code .s { color: #9ff0c8; }
.panel-ui__code .c { color: #5b6478; }

/* ---- logos wall ---- */
.logos-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 48px;
}

.logos-wall span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted-2);
  transition: color 0.3s;
}

.logos-wall span:hover { color: var(--text); }

/* ---- guarantee ---- */
.guarantee {
  text-align: center;
  padding: 68px 32px;
  border: 1px solid rgba(184, 255, 61, 0.28);
  border-radius: var(--radius-xl);
  background: radial-gradient(120% 160% at 50% -30%, rgba(184, 255, 61, 0.12), transparent 60%);
}

.guarantee__seal {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 255, 61, 0.45);
  color: var(--accent-3);
  background: rgba(184, 255, 61, 0.06);
}

.guarantee h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.guarantee p { color: var(--muted); max-width: 620px; margin: 0 auto 30px; font-size: 17px; }

/* ---- segment tabs ---- */
.seg { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }

.seg button {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.seg button:hover { color: var(--text); border-color: var(--border-strong); }

.seg button.active {
  background: var(--accent-grad);
  color: #06070a;
  border-color: transparent;
  box-shadow: 0 12px 34px -14px rgba(124, 92, 255, 0.9);
}

.seg-panel { display: none; }

.seg-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  animation: fadeUp 0.5s var(--ease);
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.seg-panel h3 { font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 14px; }
.seg-panel p { color: var(--muted); font-size: 16.5px; }
.seg-panel .quote { margin: 0; }

/* ---- trust badges ---- */
.trust { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  color: var(--muted);
}

.trust svg { color: var(--accent-3); }

/* ---- responsive ---- */
@media (max-width: 980px) {
  .scene { grid-template-columns: 1fr; gap: 34px; padding: 40px 0; }
  .scene--flip .scene__media { order: 0; }
  .seg-panel.active { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .hero--tall { padding-top: 168px; }
  .announce { font-size: 12.5px; padding: 10px 14px; }
  .logos-wall { gap: 16px 28px; }
  .logos-wall span { font-size: 17px; }
  .guarantee { padding: 48px 22px; }
}

