/* ==========================================================================
   holy-search.de — Light Mode · Signal Lime
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --surface: #F5F5F7;
  --surface-2: #EBEBEF;
  --text-primary: #050509;
  --text-secondary: rgba(5, 5, 9, 0.55);
  --text-muted: rgba(5, 5, 9, 0.38);
  --border: rgba(5, 5, 9, 0.10);
  --border-strong: rgba(5, 5, 9, 0.20);

  --accent: #C6FF3D;
  --accent-soft: #E2FF7A;
  --accent-on: #050509;

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;

  --container: 1200px;
  --section-pad-y: clamp(64px, 8vw, 96px);
  --section-pad-x: clamp(20px, 4vw, 32px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
::selection { background: var(--accent); color: var(--accent-on); }
::-moz-selection { background: var(--accent); color: var(--accent-on); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--section-pad-x);
}

/* Typography utilities */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
h1, h2, h3 { font-family: var(--sans); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h1 { font-size: clamp(40px, 7vw, 88px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.025em; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.25; }
.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-on);
  box-shadow: 0 0 0 0 rgba(198, 255, 61, 0);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(198, 255, 61, 0.55);
}
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
}
.btn-ghost:hover { background: var(--surface); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand .dot { color: var(--text-primary); }
.brand .accent { color: var(--text-primary); position: relative; }
.brand .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 6px;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { font-size: 14px; padding: 10px 16px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-block: clamp(72px, 11vw, 144px) clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-center {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow { margin-bottom: 20px; }
.hero-h1 { margin-bottom: 28px; }
.hero-h1 span { display: block; }
.hero-h1-sub {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.2;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--accent-soft);
  border-radius: var(--radius-full);
}
/* ==========================================================================
   WOLKENFELD SLIDER
   ========================================================================== */
.wk-section { padding-block: clamp(56px, 7vw, 80px) clamp(40px, 5vw, 56px); }
.wk-head { text-align: center; margin-bottom: 40px; }
.wk-head .eyebrow { display: inline-block; }
.wk-head h2 { font-size: clamp(36px, 6vw, 64px); }
.wk-overflow {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.wk-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: wk-scroll 42s linear infinite;
  padding-inline: 16px;
}
.wk-track:hover { animation-play-state: paused; }
@keyframes wk-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wk-card {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.wk-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.wk-card-inner {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--surface-2);
}
.wk-card-inner img,
.wk-card-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wk-card-label {
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  display: flex;
  gap: 8px;
}
.wk-card-label .muted { color: var(--text-muted); }
@media (prefers-reduced-motion: reduce) {
  .wk-track { animation: none; }
}

/* ==========================================================================
   EXIT MOMENT
   ========================================================================== */
.exit-moment { padding-block: clamp(40px, 5vw, 64px) var(--section-pad-y); }
.exit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .exit-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}
.exit-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.exit-image img { width: 100%; height: auto; display: block; }
.exit-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.exit-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.exit-copy h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.exit-copy p { color: var(--text-secondary); margin-bottom: 14px; max-width: 540px; }
.exit-copy p.muted { color: var(--text-muted); margin-bottom: 28px; }
.exit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.exit-stat {
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.exit-stat .num {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.exit-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   CREATIVE GALLERY
   ========================================================================== */
.creative-gallery { background: var(--surface); }
.cg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 760px) { .cg-grid { grid-template-columns: repeat(4, 1fr); } }
.cg-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cg-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.cg-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}
.cg-frame img,
.cg-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.cg-card:hover .cg-frame img { transform: scale(1.04); }
.cg-meta {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.cg-brand {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
}
.cg-type {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ==========================================================================
   FIT / WHO
   ========================================================================== */
.fit { background: var(--surface); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .fit-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.fit-copy h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 20px; }
.fit-copy p { color: var(--text-secondary); margin-bottom: 24px; max-width: 540px; }
.fit-list { display: flex; flex-direction: column; gap: 12px; }
.fit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-primary);
  font-size: 16px;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
}
.fit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.fit-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
section { padding-block: var(--section-pad-y); }
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 { margin-bottom: 16px; }
.section-head h2 span { display: block; }

/* ==========================================================================
   PROBLEM CARDS
   ========================================================================== */
.problem { background: var(--surface); }
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-secondary); font-size: 16px; }

/* ==========================================================================
   SOLUTION / PILLARS
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 760px) {
  .pillar { grid-template-columns: 80px 1fr 80px; gap: 40px; }
}
.pillar-num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  margin-top: 24px;
  color: var(--accent-on);
  background: var(--accent);
  border-radius: var(--radius-md);
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 760px) {
  .pillar-icon { display: flex; }
}
.pillar h3 { margin-bottom: 12px; font-size: clamp(22px, 2.4vw, 28px); }
.pillar p { color: var(--text-secondary); max-width: 680px; }

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder { background: var(--surface); }
.founder-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .founder-cards { grid-template-columns: 1fr 1fr; }
}
.founder-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-portrait {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--surface-2);
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-meta .name { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.founder-meta .role {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-top: 4px;
}
.founder-card p { color: var(--text-secondary); font-size: 15.5px; }
.lime-underline {
  background-image: linear-gradient(transparent 60%, var(--accent) 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   PROCESS / HOW WE WORK
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.step {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--text-secondary); font-size: 15.5px; }

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.proof { background: var(--surface); }
.testimonial-featured {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
}
.testimonial-featured blockquote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 24px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-meta .who { font-weight: 700; font-size: 15px; }
.testimonial-meta .brand-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-top: 2px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card blockquote { font-size: 16px; color: var(--text-primary); line-height: 1.55; }
.logo-wall-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
@media (min-width: 720px) { .logo-wall { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1000px) { .logo-wall { grid-template-columns: repeat(9, 1fr); } }
.logo-wall img {
  max-height: 36px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(1) brightness(0.55) opacity(0.75);
  transition: filter 0.2s ease;
}
.logo-wall img:hover { filter: grayscale(0) brightness(1) opacity(1); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
  font-weight: 700;
  font-size: clamp(16.5px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-primary);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; transition: transform 0.2s ease; }
.faq-item.is-open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding-bottom: 28px;
  color: var(--text-secondary);
  max-width: 800px;
  font-size: 16px;
  line-height: 1.65;
}
.faq-a-inner p + p { margin-top: 12px; }
.faq-a-inner ul { padding-left: 0; margin-top: 12px; }
.faq-a-inner ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.faq-a-inner ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
}
.faq-a-inner ul ul { margin-top: 8px; padding-left: 18px; }
.faq-a-inner strong { color: var(--text-primary); font-weight: 700; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final {
  background: var(--text-primary);
  color: #fff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.28);
  --bg: #0F0F14;
  --surface: #15151B;
}
.final h2 { color: #fff; }
.final .lede { color: rgba(255, 255, 255, 0.7); margin-bottom: 0; }
.final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .final-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.lead-form, .calendly-slot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { min-height: 90px; resize: vertical; }
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pills input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pills label {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  margin: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.radio-pills input[type="radio"]:checked + label {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.form-fallback {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}
.form-fallback a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.form-success {
  display: none;
  background: var(--accent);
  color: var(--accent-on);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-top: 16px;
}
.calendly-slot {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
}
.calendly-head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calendly-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.calendly-title {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
}
.calendly-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}
.calendly-inline-widget {
  flex: 1;
  min-width: 320px;
  height: 1050px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0b0b0b;
}
@media (max-width: 899px) {
  .calendly-inline-widget { height: 1180px; }
}
.final-tag {
  margin-top: clamp(48px, 6vw, 72px);
  text-align: center;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.4;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.55);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer a { transition: color 0.15s ease; }
.footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   MOTION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
