/* Groundwork Web — Founding Client Landing */
:root {
  --bg: #0a0a0a;
  --bg-soft: #111;
  --bg-muted: #f4f2ef;
  --bg-card: #fff;
  --text: #fafaf9;
  --text-dark: #171717;
  --text-muted: #737373;
  --border: #e7e5e0;
  --border-dark: rgba(255,255,255,0.1);
  --accent: #d4894a;
  --accent-bright: #e8a066;
  --accent-glow: rgba(212,137,74,0.35);
  --accent-subtle: rgba(212,137,74,0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --container: 1120px;
  --header-h: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --mobile-cta-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .pulse-dot { animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-muted);
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-cta { padding-bottom: var(--mobile-cta-h); }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 0.75rem 1rem; background: var(--accent); color: #fff; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Check icon (CSS — no JS dependency) */
.check-icon {
  display: inline-block; width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 50%; background: var(--accent-subtle); border: 1px solid rgba(212,137,74,0.3);
  position: relative;
}
.check-icon::after {
  content: ""; position: absolute; left: 5px; top: 3px;
  width: 5px; height: 9px; border: solid var(--accent); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-icon--light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.check-icon--light::after { border-color: var(--accent-bright); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92), transparent);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.site-header.is-scrolled .logo,
.site-header.is-scrolled .header-spots { color: var(--text-dark); }
.site-header.is-scrolled .header-spots { border-color: var(--border); background: var(--bg-muted); }

.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.logo { font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em; color: #fff; }
.header-spots {
  display: none; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.7rem;
  border-radius: 999px; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .header-spots { display: inline-flex; } }

.mobile-cta {
  position: fixed; inset: auto 0 0; z-index: 99;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%); transition: transform 0.3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (min-width: 960px) { .mobile-cta { display: none !important; } body.has-mobile-cta { padding-bottom: 0; } }
@media (max-width: 959px) { body { padding-bottom: var(--mobile-cta-h); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9375rem; border-radius: 999px;
  padding: 0.85rem 1.6rem; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: min(100vh, 900px); display: flex; align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background: var(--bg); color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(212,137,74,0.2), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(212,137,74,0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0a, #111 55%, #0a0a0a);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.55rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.25rem;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent); animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-bright); margin: 0 0 0.75rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 3.75rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 1.25rem; }
.text-gradient { background: linear-gradient(135deg, #fff 25%, var(--accent-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 1.1rem; line-height: 1.65; color: rgba(255,255,255,0.62); max-width: 32rem; margin: 0 0 1.75rem; }
.hero-lead strong { color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.hero-note { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin: 0; }

/* Hero mockup */
.hero-visual { position: relative; }
.hero-visual-glow {
  position: absolute; inset: -15% -10%; pointer-events: none;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(40px);
}
.mockup-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); background: #1a1a1a;
  box-shadow: 0 32px 64px rgba(0,0,0,0.45);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
}
.mockup-chrome {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  background: rgba(0,0,0,0.5); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-chrome span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.mockup-chrome span:nth-child(2) { background: #febc2e; }
.mockup-chrome span:nth-child(3) { background: #28c840; }
.mockup-chrome p { margin: 0 0 0 auto; font-size: 0.6875rem; color: rgba(255,255,255,0.35); font-family: ui-monospace, monospace; }
.mockup-badge {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem; border-radius: 6px;
  background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1);
}
.hero-price-chip {
  display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.chip-label { display: block; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); }
.chip-price { font-size: 1.5rem; font-weight: 700; color: #fff; }
.chip-price small { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.chip-was { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: line-through; }
.chip-now { font-size: 1.25rem; font-weight: 700; color: var(--accent-bright); }
.chip-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* Stats strip */
.stats-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-dark); }
.stat span { font-size: 0.75rem; color: var(--text-muted); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-light { background: var(--bg-card); }
.section-muted { background: var(--bg-muted); }
.section-dark { background: var(--bg-soft); color: #fff; }
.section-cta { position: relative; background: var(--bg); color: #fff; padding: 5rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,137,74,0.18), transparent); }

.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 0.75rem; }
.eyebrow-light { color: var(--accent-bright); }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.35rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin: 0 0 0.75rem; }
.section-title.light { color: #fff; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); margin: 0; max-width: 36rem; }
.section-lead.light { color: rgba(255,255,255,0.6); }
.section-lead.center { margin-inline: auto; text-align: center; }
.section-note { text-align: center; color: var(--text-muted); font-size: 0.95rem; margin-top: 2rem; }

/* Proof + founder */
.proof-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .proof-layout { grid-template-columns: 280px 1fr; gap: 3.5rem; } }
.founder-card {
  display: flex; gap: 1rem; padding: 1.5rem;
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff; font-weight: 700; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
}
.founder-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin: 0 0 0.25rem; }
.founder-name { margin: 0 0 0.5rem; font-size: 1.1rem; }
.founder-bio { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.proof-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.proof-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.4rem 0; font-size: 0.95rem; }
.industry-line { margin-top: 1.5rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.industry-line strong { color: var(--text-dark); }

/* Offer */
.offer-split { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .offer-split { grid-template-columns: 1fr 1fr; } }
.offer-details { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.offer-details li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.offer-details li::before { content: "✓"; color: var(--accent-bright); font-weight: 700; flex-shrink: 0; }

.pricing-panel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 2rem;
}
.spots-badge { text-align: center; margin-bottom: 1.5rem; }
.spots-num { display: block; font-size: 3rem; font-weight: 700; color: var(--accent-bright); line-height: 1; }
.spots-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.pricing-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.pricing-col { padding: 1.25rem; border-radius: var(--radius); text-align: center; border: 1px solid var(--border-dark); }
.pricing-col.muted { opacity: 0.55; }
.pricing-col.active { background: var(--accent-subtle); border-color: rgba(212,137,74,0.35); }
.pricing-col p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.pricing-col .big { font-size: 1.75rem; font-weight: 700; color: #fff; margin: 0.35rem 0 !important; }
.pricing-note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); text-align: center; margin: 0 0 1.25rem; }

/* Included bento */
.included-bento { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .included-bento { grid-template-columns: repeat(3, 1fr); } }
.included-feature {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--bg-muted); border: 1px solid var(--border);
}
.included-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1rem;
  background: var(--accent-subtle); border: 1px solid rgba(212,137,74,0.25);
  background-repeat: no-repeat; background-position: center; background-size: 22px;
}
.included-icon[data-icon="layout"] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4894a' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); }
.included-icon[data-icon="phone"] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4894a' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.included-icon[data-icon="shield"] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4894a' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.included-feature h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.included-feature p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.included-also { padding: 1.5rem 1.75rem; border-radius: var(--radius); border: 1px dashed var(--border); background: #fff; }
.included-also-label { margin: 0 0 0.75rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.included-also ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.35rem; }
@media (min-width: 640px) { .included-also ul { grid-template-columns: repeat(2, 1fr); } }
.included-also li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }

/* Trade */
.trade-grid { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .trade-grid { grid-template-columns: 1fr 1fr; } }
.trade-card { padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; }
.trade-card.accent { border-color: rgba(212,137,74,0.35); background: linear-gradient(145deg, rgba(212,137,74,0.06), #fff); }
.trade-card h3 { margin: 0 0 1rem; font-size: 1.1rem; }
.trade-card ul { margin: 0; padding-left: 1.25rem; color: var(--text-muted); }
.trade-card li { padding: 0.25rem 0; }

/* Timeline */
.timeline { display: grid; gap: 0; max-width: 720px; margin-inline: auto; }
@media (min-width: 768px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: none; }
  .timeline-step { position: relative; }
  .timeline-line { display: none; }
}
.timeline-step { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-bottom: 1.5rem; }
@media (min-width: 768px) { .timeline-step { display: block; padding-bottom: 0; } }
.timeline-marker {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-subtle); border: 1px solid rgba(212,137,74,0.3);
  color: var(--accent); font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .timeline-marker { margin-bottom: 1rem; } }
.timeline-body h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.timeline-body p { margin: 0; font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }
.timeline-line { grid-column: 1; width: 2px; height: 100%; background: var(--border); margin-left: 19px; }

/* Benefits */
.benefits-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark);
}
.benefit-card h3 { margin: 0 0 0.5rem; color: #fff; font-size: 1.05rem; }
.benefit-card p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* FAQ */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left;
  font-weight: 600; font-size: 1rem; color: var(--text-dark);
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0; position: relative;
  transition: transform 0.25s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 1px;
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after { width: 2px; height: 12px; top: 4px; left: 9px; transition: transform 0.25s; }
.faq-item.is-open .faq-icon::after { transform: scaleY(0); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-panel p { margin: 0; padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* CTA + Form */
.cta-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.cta-checklist { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.cta-checklist li { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; color: rgba(255,255,255,0.65); }

.form-panel {
  background: #fff; color: var(--text-dark); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.form-panel h3 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.form-sub { margin: 0 0 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.35rem; }
.field input, .field select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 10px; background: #fff; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,137,74,0.12);
}
.field-error { display: block; font-size: 0.8125rem; color: #dc2626; margin-top: 0.25rem; }
.fieldset { border: 0; margin: 0 0 1rem; padding: 0; }
.fieldset legend { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; padding: 0; }
.radio-group { display: grid; gap: 0.5rem; }
.radio-option {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.85rem; border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
}
.radio-option:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(212,137,74,0.12); }
.radio-option input { width: auto; margin: 0; accent-color: var(--accent); }
.radio-option span { font-size: 0.9rem; font-weight: 500; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-trust { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin: 0.75rem 0 0; }

.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1rem; font-size: 0.9rem; }
.alert p { margin: 0.35rem 0 0; }
.alert.success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #166534; }
.alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* Footer */
.site-footer { background: #050505; color: rgba(255,255,255,0.5); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1.5fr 1fr; } }
.footer-logo { color: #fff; margin: 0 0 0.5rem; }
.footer-tagline { margin: 0; max-width: 28rem; font-size: 0.9rem; }
.footer-meta a { color: rgba(255,255,255,0.7); }
.footer-meta a:hover { color: var(--accent-bright); }
.footer-meta p { margin: 0.5rem 0 0; font-size: 0.85rem; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-bottom p { margin: 0; }

.reveal { opacity: 1; transform: none; }
html.js-anim .reveal { opacity: 0; transform: translateY(20px); }

@media (max-width: 959px) {
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .mockup-frame { transform: none; }
}
@media (max-width: 639px) {
  .section { padding: 3.5rem 0; }
  .header-cta { padding: 0.55rem 0.9rem; font-size: 0.75rem; }
}
