/* =========================================================
   SKIP2Q — Design System
   Brand: pink/magenta → orange gradient on deep dark
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg: #08060F;
  --bg-2: #0E0A1A;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Brand */
  --brand-pink: #FF2D8E;
  --brand-magenta: #C724B1;
  --brand-orange: #FF6B35;
  --brand-purple: #8B2EFF;
  --brand-green: #00E5A0;

  /* Brand gradient */
  --grad: linear-gradient(135deg, #FF2D8E 0%, #FF6B35 100%);
  --grad-soft: linear-gradient(135deg, rgba(255, 45, 142, 0.15) 0%, rgba(255, 107, 53, 0.10) 100%);
  --grad-text: linear-gradient(135deg, #FF4FA3 0%, #FF8A50 100%);

  /* Text */
  --text: #FFFFFF;
  --text-muted: #A0A3BD;
  --text-subtle: #6B6E89;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 8px 40px rgba(255, 45, 142, 0.25);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 880px;
  --pad-x: clamp(18px, 4vw, 32px);
  --section-y: clamp(64px, 10vw, 128px);
  --nav-h: 68px;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: var(--section-y) 0; position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brand-pink); margin-bottom: 14px;
  padding: 6px 14px; border-radius: 999px; background: rgba(255,45,142,0.08);
  border: 1px solid rgba(255,45,142,0.18);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(30px, 4.5vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); letter-spacing: -0.015em; }
h4 { font-size: 17px; font-weight: 700; }
p { color: var(--text-muted); font-size: 16px; line-height: 1.65; }
.lede { font-size: clamp(17px, 1.7vw, 19px); color: var(--text-muted); max-width: 540px; }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border: none; border-radius: 12px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%); opacity: 0; transition: opacity 0.2s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 48px rgba(255, 45, 142, 0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline { background: rgba(255,255,255,0.04); color: var(--text); border: 1px solid var(--border-strong); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-muted); padding: 10px 18px; }
.btn-ghost:hover { color: var(--text); }
.btn-pill { border-radius: 999px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(8, 6, 15, 0.72); border-bottom: 1px solid var(--border); transition: background 0.2s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 12px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; letter-spacing: -0.02em; }
.nav-brand-mark { width: 32px; height: 32px; }
.nav-brand-text { color: #fff; }
.nav-brand-text .accent { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-muted); border-radius: 8px; transition: all 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; gap: 2px; padding: 3px; background: var(--surface); border-radius: 999px; border: 1px solid var(--border); }
.lang-switch a { padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--text-muted); border-radius: 999px; }
.lang-switch a.active { background: var(--surface-2); color: var(--text); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 10px; width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--text); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content:''; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  /* The pill CTA in the navbar pushes the row past the viewport on phones.
     It's reachable via the hero CTA and the hamburger menu — hide it here. */
  .nav-right > .btn-primary { display: none; }
  .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(8, 6, 15, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 14px var(--pad-x) 24px; border-bottom: 1px solid var(--border);
    transform: translateY(-150%); transition: transform 0.25s ease; gap: 4px;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 14px; font-size: 16px; border-radius: 10px; min-height: 48px; display: flex; align-items: center; }
  .nav-right .lang-switch { display: flex; }
}

@media (max-width: 540px) {
  :root { --nav-h: 60px; --section-y: 56px; }
  .nav-brand-mark { width: 28px; height: 28px; }
  .nav-brand-text { font-size: 17px; letter-spacing: -0.015em; }
  .lang-switch a { padding: 5px 10px; font-size: 11px; }
  /* Stack hero CTAs full-width — easier tap targets on phones */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  /* Stack store buttons too */
  .store-row { flex-direction: column; align-items: stretch; }
  .store-row .store-btn { justify-content: center; }
  /* Tighter section internals */
  .section-header { margin-bottom: 36px; }
  .glass-card { padding: 22px; }
  .feature, .step { padding: 22px; }
  .ai-row { padding: 22px; }
  /* Smaller hero meta on phones */
  .hero-meta { gap: 14px; font-size: 12px; margin-top: 36px; }
  /* Less aggressive heading sizes for very narrow viewports */
  h1 { letter-spacing: -0.025em; }
  /* Footer single column already kicks in at 540px from the existing grid rule */
  .footer { padding: 48px 0 28px; }
  .footer-grid { margin-bottom: 36px; }
  /* CTA card tighter on mobile */
  .cta-card { border-radius: 20px; }
}

/* Belt-and-braces: never let anything bust the viewport horizontally on mobile */
@media (max-width: 640px) {
  body, html { max-width: 100%; }
  .container, .container-narrow { width: 100%; }
  .stats-strip { padding: 22px 16px; }
  .stat-value { font-size: 26px; }
  .stat-label { font-size: 11px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(80px, 14vw, 160px) 0 clamp(60px, 10vw, 120px); overflow: hidden; isolation: isolate; }
.hero-bg {
  position: absolute; inset: -10% -10% 0 -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255, 45, 142, 0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(139, 46, 255, 0.14) 0%, transparent 70%);
  filter: blur(20px);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 80%);
}
.hero-inner { text-align: center; max-width: 820px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px; backdrop-filter: blur(10px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand-green); box-shadow: 0 0 0 4px rgba(0, 229, 160, 0.15); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(0, 229, 160, 0.15); } 50% { box-shadow: 0 0 0 8px rgba(0, 229, 160, 0.05); } }
.hero h1 { margin-bottom: 22px; }
.hero p.lede { margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-meta { margin-top: 56px; color: var(--text-subtle); font-size: 13px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { width: 16px; height: 16px; opacity: 0.7; }

/* Particles */
.particle { position: absolute; border-radius: 999px; pointer-events: none; opacity: 0.7; }
@keyframes p0 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,-12px); } }
@keyframes p1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-10px,8px); } }
@keyframes p2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,14px); } }
@keyframes p3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-8px,-10px); } }

/* ---------- Cards / Glass ---------- */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.glass-card:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-2px); }
.glass-card.featured {
  background: linear-gradient(180deg, rgba(255,45,142,0.06) 0%, rgba(255,45,142,0.02) 100%);
  border-color: rgba(255,45,142,0.18);
}

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { padding: 28px 24px; }
.step-num { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; border-radius: 8px; margin-bottom: 18px; }
.step-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); color: var(--brand-pink); border-radius: 12px; margin-bottom: 16px; border: 1px solid rgba(255,45,142,0.15); }
.step-icon svg { width: 22px; height: 22px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.55; }

@media (max-width: 1000px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- AI layers ---------- */
.ai-stack { display: flex; flex-direction: column; gap: 16px; max-width: 880px; margin: 0 auto; }
.ai-row { display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: flex-start; padding: 28px; }
.ai-icon-block { width: 64px; height: 64px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-icon-block svg { width: 30px; height: 30px; }
.ai-row[data-tone="pink"] .ai-icon-block { background: rgba(255,45,142,0.10); color: var(--brand-pink); }
.ai-row[data-tone="green"] .ai-icon-block { background: rgba(0,229,160,0.10); color: var(--brand-green); }
.ai-row[data-tone="purple"] .ai-icon-block { background: rgba(139,46,255,0.12); color: var(--brand-purple); }
.ai-row .label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.ai-row[data-tone="pink"] .label { color: var(--brand-pink); }
.ai-row[data-tone="green"] .label { color: var(--brand-green); }
.ai-row[data-tone="purple"] .label { color: var(--brand-purple); }
.ai-row h3 { margin: 4px 0 8px; }
.ai-row p { font-size: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 999px; letter-spacing: 0.3px; }
.ai-row[data-tone="pink"] .tag { background: rgba(255,45,142,0.10); color: var(--brand-pink); border: 1px solid rgba(255,45,142,0.18); }
.ai-row[data-tone="green"] .tag { background: rgba(0,229,160,0.10); color: var(--brand-green); border: 1px solid rgba(0,229,160,0.20); }
.ai-row[data-tone="purple"] .tag { background: rgba(139,46,255,0.10); color: var(--brand-purple); border: 1px solid rgba(139,46,255,0.20); }

@media (max-width: 640px) {
  .ai-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
}

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { padding: 26px; }
.feature-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 18px; color: var(--brand-pink); }
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14px; line-height: 1.55; }

@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 32px; }
.stat { text-align: center; padding: 8px; }
.stat-value { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
@media (max-width: 640px) { .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; } }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote-mark { font-family: Georgia, serif; font-size: 48px; line-height: 0.6; color: var(--brand-pink); height: 24px; }
.testimonial p { font-size: 14px; line-height: 1.6; color: var(--text); font-style: italic; }
.testimonial-author { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.testimonial-author .name { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- CTA section ---------- */
.cta-card {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 72px) clamp(28px, 5vw, 56px);
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255, 45, 142, 0.18) 0%, transparent 70%),
    radial-gradient(60% 100% at 50% 100%, rgba(255, 107, 53, 0.12) 0%, transparent 70%),
    var(--bg-2);
  border: 1px solid var(--border-strong);
}
.cta-card h2 { margin-bottom: 14px; }
.cta-card p { margin: 0 auto 32px; max-width: 480px; }
.store-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; min-height: 56px;
  background: #fff; color: #08060F; border-radius: 14px; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: transform 0.2s;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .small { font-size: 11px; line-height: 1; opacity: 0.65; display: block; margin-bottom: 3px; font-weight: 500; }
.store-btn .big { font-size: 16px; line-height: 1; font-weight: 700; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand-block .nav-brand { margin-bottom: 14px; }
.footer-brand-block p { font-size: 13px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--text); letter-spacing: 0.3px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom .copy { font-size: 12px; color: var(--text-subtle); }
.social-row { display: flex; gap: 8px; }
.social-row a {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text-muted); transition: all 0.15s;
}
.social-row a:hover { background: var(--surface-2); color: var(--text); border-color: var(--border-strong); }
.social-row svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Generic content (legal/about) pages ---------- */
.page-hero { padding: 88px 0 24px; text-align: left; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 10px; }
.page-hero .lede { color: var(--text-muted); }
.prose { max-width: 720px; margin: 0 auto; padding: 24px 0 64px; color: var(--text-muted); font-size: 15px; line-height: 1.75; }
.prose h2 { font-size: 22px; color: var(--text); margin: 36px 0 12px; letter-spacing: -0.01em; }
.prose h3 { font-size: 17px; color: var(--text); margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; font-size: 15px; }
.prose ul, .prose ol { margin: 12px 0 14px 24px; }
.prose li { margin-bottom: 6px; font-size: 15px; }
.prose a { color: var(--brand-pink); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-orange); }
.prose strong { color: var(--text); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ---------- Forms (contact) ---------- */
.form-grid { display: grid; gap: 16px; max-width: 560px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: rgba(255,45,142,0.5); background: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 12px; color: var(--text-subtle); }
.form-success {
  display: none; background: rgba(0, 229, 160, 0.08); border: 1px solid rgba(0, 229, 160, 0.25);
  color: var(--brand-green); padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-bottom: 16px;
}
.form-success.show { display: block; }

/* ---------- 404 ---------- */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 0; }
.error-code { font-size: clamp(80px, 14vw, 160px); font-weight: 900; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.04em; }
.error-page h1 { font-size: clamp(24px, 3vw, 32px); margin: 12px 0 8px; }
.error-page p { margin-bottom: 24px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Skip link ---------- */
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--brand-pink); color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; z-index: 200; }
.skip-link:focus { top: 8px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
