/* ═══════════════════════════════════════════
   PEAKSYNQ — Main Stylesheet
   Edit freely. Link: <link rel='stylesheet' href='styles.css'/>
═══════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}

:root {
  --bg-deep: #0a1628;
  --bg-surface: #0f1f33;
  --bg-elevated: #15283f;
  --bg-darker: #060e1a;
  --text-primary: #e8f1f8;
  --text-secondary: #b4c4d4;
  --text-muted: #6b7f95;
  --cyan: #1da8e0;
  --cyan-bright: #4dd9ff;
  --cyan-deep: #0e7baa;
  --cyan-glow: rgba(77, 217, 255, 0.3);
  --warm: #ffb199;
  --warm-glow: rgba(255, 177, 153, 0.2);
  --line: rgba(232, 241, 248, 0.08);
  --line-strong: rgba(232, 241, 248, 0.18);
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", monospace;
  --max: 1180px;
  --r: 4px;
}

body {
  font-family: var(--body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  background-image:
    radial-gradient(at 10% 0%, rgba(29, 168, 224, 0.13) 0%, transparent 50%),
    radial-gradient(at 90% 100%, rgba(77, 217, 255, 0.07) 0%, transparent 50%);
  background-attachment: fixed;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 50;
  color: var(--text-primary);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-variation-settings: "opsz" 60;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
::selection {
  background: var(--cyan);
  color: var(--bg-deep);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 22, 40, 0.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.brand span {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--cyan-bright);
}
.nav-cta {
  background: var(--cyan);
  color: var(--bg-deep) !important;
  padding: 10px 20px;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--cyan-bright);
  box-shadow: 0 0 20px var(--cyan-glow);
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    font-size: 0.8rem;
    padding: 8px 14px;
    white-space: nowrap;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg-deep);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--cyan-glow);
}
.btn-primary::after {
  content: "↗";
  transition: transform 0.2s;
}
.btn-primary:hover::after {
  transform: translate(2px, -2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
  background: rgba(29, 168, 224, 0.06);
}
.btn-warm {
  background: var(--warm);
  color: #1a0a00;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn-warm:hover {
  background: #ffc4af;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--warm-glow);
}
.btn-warm::after {
  content: "↗";
  transition: transform 0.2s;
}
.btn-warm:hover::after {
  transform: translate(2px, -2px);
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-bright);
  margin-bottom: 20px;
  display: block;
}
.section-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.section-head h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p {
  color: var(--text-secondary);
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
}

/* ── HERO ── */
.hero {
  padding: 88px 0 108px;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  padding: 6px 14px;
  border: 1px solid var(--cyan);
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(29, 168, 224, 0.08);
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 8px var(--cyan-bright);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 920px;
  letter-spacing: -0.035em;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.hero h1 .strike {
  position: relative;
  color: var(--text-muted);
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 5px;
  background: var(--cyan-bright);
  box-shadow: 0 0 12px var(--cyan-glow);
  transform: rotate(-1.5deg);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 32px 0 40px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-trust-item strong {
  font-family: var(--display);
  color: var(--text-primary);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.hero-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-flags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(232, 241, 248, 0.05);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 100px;
}

/* geo decoration */
.hero-deco {
  position: absolute;
  right: -60px;
  top: 80px;
  width: 440px;
  height: 440px;
  pointer-events: none;
  opacity: 0.9;
}
@media (max-width: 960px) {
  .hero-deco {
    display: none;
  }
}

/* ── HERO ANIMATIONS ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes orbSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbSpinRev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatXY {
  0%,
  100% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(10px, -10px);
  }
}
@keyframes shimmerPass {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(400%);
  }
}
@keyframes clipReveal {
  from {
    clip-path: inset(0 101% 0 0);
  }
  to {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes pulsRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* subtle tech grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 168, 224, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 168, 224, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 90% 70% at 38% 50%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 38% 50%,
    black 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* floating dot particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan-bright);
}
.hero-particle:nth-child(1) {
  width: 3px;
  height: 3px;
  top: 18%;
  left: 12%;
  opacity: 0.5;
  animation: floatY 4.2s ease-in-out infinite;
}
.hero-particle:nth-child(2) {
  width: 2px;
  height: 2px;
  top: 64%;
  left: 7%;
  opacity: 0.3;
  animation: floatY 6s ease-in-out infinite;
  animation-delay: 1.1s;
}
.hero-particle:nth-child(3) {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 22%;
  opacity: 0.18;
  animation: floatXY 5.4s ease-in-out infinite;
  animation-delay: 0.6s;
}
.hero-particle:nth-child(4) {
  width: 2px;
  height: 2px;
  top: 74%;
  left: 50%;
  opacity: 0.35;
  animation: floatY 7s ease-in-out infinite;
  animation-delay: 2.3s;
}
.hero-particle:nth-child(5) {
  width: 3px;
  height: 3px;
  top: 12%;
  left: 66%;
  opacity: 0.25;
  animation: floatXY 4.8s ease-in-out infinite;
  animation-delay: 1.7s;
}
.hero-particle:nth-child(6) {
  width: 2px;
  height: 2px;
  top: 50%;
  left: 80%;
  opacity: 0.4;
  animation: floatY 5.6s ease-in-out infinite;
  animation-delay: 0.9s;
}
.hero-particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 82%;
  left: 36%;
  opacity: 0.22;
  animation: floatXY 6.4s ease-in-out infinite;
  animation-delay: 3s;
}
.hero-particle:nth-child(8) {
  width: 2px;
  height: 2px;
  top: 28%;
  left: 88%;
  opacity: 0.3;
  animation: floatY 5s ease-in-out infinite;
  animation-delay: 1.9s;
}
@media (max-width: 760px) {
  .hero-particles {
    display: none;
  }
}

/* entrance stagger + orb + em reveal (respects reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow {
    animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.05s;
  }
  .hero h1 {
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.18s;
  }
  .hero h1 em {
    display: inline-block;
    animation: clipReveal 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.74s;
  }
  .hero-sub {
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.34s;
  }
  .hero-ctas {
    animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.5s;
  }
  .hero-flags {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.66s;
  }
  .hero-trust {
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.82s;
  }
  .hero-deco {
    animation: heroFadeIn 1.4s ease both;
    animation-delay: 0.3s;
  }
  .orbit-outer {
    transform-origin: 220px 220px;
    animation: orbSpin 90s linear infinite;
  }
  .orbit-mid {
    transform-origin: 220px 220px;
    animation: orbSpinRev 60s linear infinite;
  }
  .orbit-pulse {
    transform-origin: 220px 220px;
    animation: pulsRing 2.8s ease-out infinite;
  }
}

/* shimmer sweep on warm CTA */
.btn-warm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-200%);
  animation: shimmerPass 3.5s ease-in-out infinite;
  animation-delay: 2s;
  pointer-events: none;
  border-radius: inherit;
}

/* ── EXTENDED ANIMATIONS ── */

/* 1. Eyebrow pill glow pulse */
@keyframes eyebrowGlow {
  0%, 100% { box-shadow: none; border-color: rgba(29,168,224,0.45); }
  50% { box-shadow: 0 0 18px rgba(77,217,255,0.35), inset 0 0 8px rgba(77,217,255,0.08); border-color: var(--cyan-bright); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow { animation: heroFadeUp 0.65s cubic-bezier(0.22,1,0.36,1) both 0.05s, eyebrowGlow 3s ease-in-out infinite 1s; }
}

/* 2. Gradient shimmer shift on h1 em */
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 em {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 40%, #7ef6ff 60%, var(--cyan) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: clipReveal 1.1s cubic-bezier(0.4,0,0.2,1) both 0.74s, gradShift 4s ease-in-out infinite 2s;
  }
}

/* 3. Blinking cursor after em text */
@keyframes cursorBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 em::after {
    content: '|';
    font-style: normal;
    -webkit-text-fill-color: var(--cyan-bright);
    color: var(--cyan-bright);
    opacity: 0;
    animation: cursorBlink 0.65s step-end 6;
    animation-delay: 1.85s;
    animation-fill-mode: both;
  }
}

/* 4. Horizontal scan line sweeping hero */
@keyframes scanDown {
  0% { top: -2px; opacity: 0; }
  5% { opacity: 0.45; }
  95% { opacity: 0.45; }
  100% { top: 100%; opacity: 0; }
}
.hero-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 20%, var(--cyan-bright) 50%, var(--cyan) 80%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  animation: scanDown 7s ease-in-out infinite;
  animation-delay: 2.5s;
}

/* 5. Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  z-index: 200;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* 6. Pain cards stagger */
@media (prefers-reduced-motion: no-preference) {
  .pain-card { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1); }
  .pain-card.in { opacity: 1; transform: translateY(0); }
  .pain-card:nth-child(1) { transition-delay: 0s; }
  .pain-card:nth-child(2) { transition-delay: 0.1s; }
  .pain-card:nth-child(3) { transition-delay: 0.2s; }
  .pain-card:nth-child(4) { transition-delay: 0.3s; }
}

/* 7. Step number glow on reveal */
@keyframes numGlow {
  from { color: transparent; text-shadow: 0 0 24px var(--cyan-bright); opacity: 0; }
  to { color: var(--cyan-bright); text-shadow: none; opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .step-num { opacity: 0; }
  .step.in .step-num { animation: numGlow 0.7s cubic-bezier(0.22,1,0.36,1) both 0.25s; }
}

/* 8. Step connector line draw between steps */
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* 9. Dashboard bar chart grow */
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.db-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: none;
}
.dashboard-visual.in .db-bar {
  animation: barGrow 0.7s cubic-bezier(0.34, 1.36, 0.64, 1) both;
}
.dashboard-visual.in .db-bar:nth-child(1) { animation-delay: 0.1s; }
.dashboard-visual.in .db-bar:nth-child(2) { animation-delay: 0.18s; }
.dashboard-visual.in .db-bar:nth-child(3) { animation-delay: 0.26s; }
.dashboard-visual.in .db-bar:nth-child(4) { animation-delay: 0.34s; }
.dashboard-visual.in .db-bar:nth-child(5) { animation-delay: 0.42s; }
.dashboard-visual.in .db-bar:nth-child(6) { animation-delay: 0.5s; }
.dashboard-visual.in .db-bar:nth-child(7) { animation-delay: 0.58s; }

/* 10. Dashboard stat value count */
.db-stat-val { transition: opacity 0.4s ease; }

/* 11. Service card hover glow border */
.service-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(77,217,255,0.35), 0 0 32px rgba(77,217,255,0.08);
  border-color: rgba(77,217,255,0.4);
}

/* 12. Stat box number animate in */
@keyframes statPop {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .stat-box.in .stat-num { animation: statPop 0.6s cubic-bezier(0.34,1.36,0.64,1) both 0.15s; }
}

/* 13. Flag pill entrance stagger (override container with span-level stagger) */
@keyframes flagPop {
  from { transform: scale(0.75) translateY(6px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-flags { animation: none; opacity: 1; }
  .hero-flags span { animation: flagPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
  .hero-flags span:nth-child(1) { animation-delay: 0.68s; }
  .hero-flags span:nth-child(2) { animation-delay: 0.76s; }
  .hero-flags span:nth-child(3) { animation-delay: 0.84s; }
  .hero-flags span:nth-child(4) { animation-delay: 0.92s; }
  .hero-flags span:nth-child(5) { animation-delay: 1.00s; }
  .hero-flags span:nth-child(6) { animation-delay: 1.08s; }
  .hero-flags span:nth-child(7) { animation-delay: 1.16s; }
}

/* 14. Audit banner slide up */
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.audit-banner { animation: bannerIn 0.6s cubic-bezier(0.22,1,0.36,1) both; }

/* ── AUDIT BANNER ── */
.audit-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 177, 153, 0.12) 0%,
    rgba(29, 168, 224, 0.08) 100%
  );
  border-top: 1px solid rgba(255, 177, 153, 0.2);
  border-bottom: 1px solid rgba(255, 177, 153, 0.2);
  padding: 20px 0;
}
.audit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.audit-inner p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-variation-settings: "opsz" 60;
}
.audit-inner p strong {
  color: var(--warm);
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--bg-darker);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem h2 em {
  color: var(--warm);
  font-style: italic;
}
.problem-lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  max-width: 620px;
  color: var(--text-secondary);
  margin: 20px 0 56px;
  font-variation-settings: "opsz" 60;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pain-card {
  background: var(--bg-darker);
  padding: 34px 28px;
  transition: background 0.3s;
}
.pain-card:hover {
  background: var(--bg-surface);
}
.pain-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--cyan-bright);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}
.pain-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}
.pain-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29, 168, 224, 0.06) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--cyan-deep);
  transform: translateY(-3px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card.featured-service {
  border-color: var(--cyan);
  background: linear-gradient(
    160deg,
    rgba(29, 168, 224, 0.1) 0%,
    var(--bg-surface) 60%
  );
}
.service-card.featured-service .service-icon {
  color: var(--cyan-bright);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.service-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-stack {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.service-stack span {
  display: inline-block;
  margin-right: 6px;
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--warm);
  color: #1a0a00;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* ── DASHBOARD SPOTLIGHT ── */
.dashboard-spot {
  background: var(--bg-surface);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.dashboard-text .section-eyebrow {
  color: var(--warm);
}
.dashboard-text h2 em {
  font-style: italic;
  color: var(--warm);
}
.dashboard-text p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.68;
  margin-top: 20px;
  margin-bottom: 32px;
}
.dashboard-bullets {
  list-style: none;
  margin-bottom: 36px;
}
.dashboard-bullets li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.dashboard-bullets li:last-child {
  border-bottom: none;
}
.dashboard-bullets li::before {
  content: "◆";
  color: var(--warm);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 5px;
}
.dashboard-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.db-header {
  background: var(--bg-deeper, #030810);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.db-title {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}
.db-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.db-stat {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px;
}
.db-stat-val {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--cyan-bright);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
}
.db-stat-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.db-chart {
  grid-column: 1/-1;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px;
}
.db-chart-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.db-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.db-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan-bright), var(--cyan));
  border-radius: 2px 2px 0 0;
  opacity: 0.8;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 64px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── RESULTS ── */
.results {
  background: var(--bg-darker);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin: 64px 0 80px;
}
@media (max-width: 800px) {
  .results-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.stat-box {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-box:nth-child(4n) {
  border-right: none;
}
@media (max-width: 800px) {
  .stat-box:nth-child(2n) {
    border-right: none;
  }
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}
.testimonial {
  background: var(--bg-surface);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.3s;
  position: relative;
}
.testimonial:hover {
  border-color: var(--cyan-deep);
  transform: translateY(-2px);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--display);
  font-size: 4.5rem;
  color: var(--cyan);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}
.testimonial-text {
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.48;
  color: var(--text-primary);
  font-variation-settings: "opsz" 60;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.t-meta {
  font-size: 0.86rem;
}
.t-meta strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
}
.t-meta span {
  color: var(--text-muted);
}

/* ── PRICING ── */
.pricing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(29, 168, 224, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pricing .container {
  position: relative;
  z-index: 1;
}
.pricing-note {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: block;
}
.pricing-note span {
  color: var(--cyan-bright);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  padding: 32px 26px;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.price-card:hover {
  border-color: var(--cyan-deep);
  transform: translateY(-3px);
}
.price-card.featured {
  background: linear-gradient(
    180deg,
    rgba(29, 168, 224, 0.12) 0%,
    var(--bg-surface) 100%
  );
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(29, 168, 224, 0.15);
  position: relative;
}
.price-card.featured:hover {
  box-shadow: 0 0 60px rgba(77, 217, 255, 0.2);
}
.price-card.audit-card {
  border-color: rgba(255, 177, 153, 0.4);
  background: linear-gradient(
    180deg,
    rgba(255, 177, 153, 0.08) 0%,
    var(--bg-surface) 100%
  );
}
.price-card.audit-card:hover {
  border-color: var(--warm);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  font-weight: 600;
}
.price-badge.popular {
  background: var(--warm);
  color: #1a0a00;
}
.price-badge.new {
  background: var(--cyan-bright);
  color: var(--bg-deep);
}
.price-tier {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.price-card h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--text-primary);
  font-variation-settings:
    "opsz" 60,
    "SOFT" 100;
  line-height: 1.18;
}
.price-amount {
  margin-bottom: 4px;
}
.price-from {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}
.price-usd {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
.price-usd sub {
  font-size: 1rem;
  vertical-align: baseline;
  font-family: var(--body);
  font-weight: 300;
  color: var(--text-muted);
}
.price-inr {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}
.price-recur {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 8px 0 4px;
}
.price-recur strong {
  color: var(--cyan-bright);
  font-weight: 600;
}
.price-paysback {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--line);
  font-variation-settings: "opsz" 60;
  margin-top: 4px;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.price-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.price-features li::before {
  content: "→";
  color: var(--cyan-bright);
  flex-shrink: 0;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.82rem;
}
.audit-card .price-features li::before {
  color: var(--warm);
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 13px 20px;
}
.price-card.audit-card .btn-primary {
  background: var(--warm);
  color: #1a0a00;
}
.price-card.audit-card .btn-primary:hover {
  background: #ffc4af;
}
.price-guarantee {
  text-align: center;
  max-width: 560px;
  margin: 48px auto 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-variation-settings: "opsz" 60;
}
.price-guarantee strong {
  color: var(--cyan-bright);
  font-style: normal;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ── FAQ ── */
.faq {
  background: var(--bg-surface);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.faq .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  max-width: 760px;
  margin: 64px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-variation-settings: "opsz" 60;
  transition: color 0.2s;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--cyan-bright);
}
.faq-icon {
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: var(--cyan-bright);
}
.faq-item[open] summary {
  color: var(--cyan-bright);
}
.faq-answer {
  padding: 0 0 26px;
  color: var(--text-secondary);
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.68;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--bg-darker);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(at 50% 50%, rgba(29, 168, 224, 0.18) 0%, transparent 55%),
    radial-gradient(rgba(77, 217, 255, 0.05) 1px, transparent 1px);
  background-size:
    100% 100%,
    32px 32px;
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
}
.final-cta h2 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 820px;
  margin: 0 auto 24px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 60;
}
.final-cta h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p {
  max-width: 500px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  font-size: 1.06rem;
}
.final-cta .btn-primary {
  padding: 20px 36px;
  font-size: 1rem;
}
.final-cta-note {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-darker);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  font-size: 1.55rem;
}
.footer-tagline {
  max-width: 300px;
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cyan-bright);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.75s ease,
      transform 0.75s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
}
*:focus-visible {
  outline: 2px solid var(--cyan-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
