/* ============================================
   KINGPIN LABS — DESIGN SYSTEM
   ============================================ */

:root {
  --bg-base: #07080c;
  --bg-surface: #0e1018;
  --bg-elevated: #141824;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);

  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(124, 92, 255, 0.5);

  --text: #eaecf4;
  --text-muted: #9099b0;
  --text-faint: #5a6178;

  --accent: #7c5cff;
  --accent-hover: #9277ff;
  --accent-glow: rgba(124, 92, 255, 0.35);
  --accent-2: #4cc9f0;
  --accent-3: #ff6b9d;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --content-w: 1140px;
  --article-w: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

*::selection { background: var(--accent); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 95% 5%, rgba(76, 201, 240, 0.12), transparent 60%),
    radial-gradient(800px 400px at 60% 110%, rgba(255, 107, 157, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 0, 0, 0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 0, 0, 0.7), transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.container.narrow {
  max-width: var(--article-w);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(7, 8, 12, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  transition: opacity 0.2s var(--ease);
}

.logo:hover { opacity: 0.85; }

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/logo.svg') center/66% no-repeat;
  z-index: 2;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
  z-index: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

nav a:hover {
  color: var(--text);
  background: var(--bg-glass);
}

nav a.cta {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent), #5a3ff2);
  padding: 8px 16px;
  margin-left: 6px;
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.3);
}

nav a.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.5);
}

/* ============================================
   MAIN / HERO
   ============================================ */

main {
  flex: 1;
  padding: 64px 0 80px;
  position: relative;
}

main.narrow {
  padding: 56px 0 80px;
}

.hero {
  text-align: center;
  padding: 48px 0 64px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.92); }
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--text);
}

h1 .grad {
  background: linear-gradient(120deg, #fff 0%, #b8a9ff 30%, var(--accent-2) 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5a3ff2 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-ghost:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================
   SECTION FRAMES
   ============================================ */

section {
  padding: 56px 0;
  position: relative;
}

section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--text);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.08) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124, 92, 255, 0.15);
}

.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(76, 201, 240, 0.15));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   STATS STRIP
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.stat {
  padding: 32px 24px;
  background: var(--bg-surface);
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   CTA BLOCK
   ============================================ */

.cta-block {
  position: relative;
  padding: 56px 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(124, 92, 255, 0.25), transparent 60%),
    radial-gradient(500px 300px at 90% 100%, rgba(76, 201, 240, 0.15), transparent 60%),
    var(--bg-surface);
  border: 1px solid var(--border-strong);
  text-align: center;
  overflow: hidden;
  margin-top: 24px;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 0, 0, 0.6), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 0, 0, 0.6), transparent 75%);
  pointer-events: none;
}

.cta-block > * { position: relative; }

.cta-block h2 {
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 28px;
}

/* ============================================
   ARTICLE (Privacy / SMS Terms)
   ============================================ */

.article-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 28px;
}

.article-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  font-size: 13px;
  padding: 24px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.article-toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.article-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-toc a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
  border-left: 2px solid transparent;
}

.article-toc a:hover {
  color: var(--text);
  background: var(--bg-glass-hover);
  border-left-color: var(--accent);
}

.article {
  max-width: var(--article-w);
  font-size: 16px;
  line-height: 1.75;
}

.article h1 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.article .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-family: 'JetBrains Mono', monospace;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  scroll-margin-top: 100px;
}

.article p {
  color: var(--text);
  margin-bottom: 16px;
}

.article ul, .article ol {
  margin: 0 0 18px 24px;
  color: var(--text);
}

.article li {
  margin-bottom: 8px;
  padding-left: 6px;
}

.article li::marker { color: var(--accent); }

.article strong { color: #fff; font-weight: 600; }
.article em { color: var(--accent-2); font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 0.95em; }

.article a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 201, 240, 0.3);
  transition: all 0.2s var(--ease);
}

.article a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 900px) {
  .article-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-toc {
    position: static;
    max-height: none;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h1 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.02rem;
}

form {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

label .required {
  color: var(--accent);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s var(--ease);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.consent {
  background: rgba(124, 92, 255, 0.04);
  border: 1px solid rgba(124, 92, 255, 0.18);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: all 0.2s var(--ease);
}

.consent:hover {
  border-color: rgba(124, 92, 255, 0.3);
  background: rgba(124, 92, 255, 0.06);
}

.consent input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--border-strong);
  background: var(--bg-base);
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}

.consent input[type="checkbox"]:hover {
  border-color: var(--accent);
}

.consent input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--accent), #5a3ff2);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.2);
}

.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent label {
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  cursor: pointer;
}

.consent-links {
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-left: 2px;
}

.consent-links a {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(76, 201, 240, 0.35);
}

.consent-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

button[type="submit"] {
  background: linear-gradient(135deg, var(--accent) 0%, #5a3ff2 100%);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s var(--ease);
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Contact sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 22px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}

.info-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-glass-hover);
}

.info-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 500;
}

.info-card-label svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.info-card-value {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.info-card-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thanks-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 20px 64px;
  max-width: 560px;
  margin: 0 auto;
}

.check-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(124, 92, 255, 0.35), transparent 60%),
    var(--bg-surface);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 0 60px rgba(124, 92, 255, 0.3);
}

.check-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 255, 0.3);
  animation: ripple 2.4s ease-out infinite;
}

.check-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 255, 0.3);
  animation: ripple 2.4s ease-out infinite 1.2s;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.check-svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.check-svg path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 0.9s 0.3s var(--ease) forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.thanks-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
}

.thanks-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 18px;
}

.thanks-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 28px;
}

.thanks-info svg {
  width: 16px;
  height: 16px;
  color: var(--accent-2);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
  margin-top: auto;
  background: rgba(0, 0, 0, 0.2);
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

footer nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

footer nav a {
  padding: 4px 10px;
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 11px;
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
  nav a { padding: 6px 10px; font-size: 13px; }
  nav a.cta { padding: 6px 12px; }
  .container { padding: 0 20px; }
  main { padding: 40px 0 60px; }
  section { padding: 36px 0; }
  .hero { padding: 24px 0 36px; }
  .cta-block { padding: 40px 24px; }
  form { padding: 24px; }
  footer .container { justify-content: center; text-align: center; }
}

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