/* Neoling Coming Soon — stylesheet */

@font-face {
  font-family: 'Euclid Square';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/EuclidSquare-Medium-WebXL.woff2') format('woff2');
}
@font-face {
  font-family: 'Euclid Square';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/EuclidSquare-Semibold-WebXL.woff2') format('woff2');
}
@font-face {
  font-family: 'Euclid Square';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/EuclidSquare-Bold-WebXL.woff2') format('woff2');
}

:root {
  --color-bg: #f4f2f0;
  --color-surface: #ffffff;
  --color-text-primary: #333333;
  --color-text-secondary: #7f7f7f;
  --color-border: #e8e6e3;
  --color-brand-primary: #c1856a;
  --color-brand-secondary: #ad6780;
  --color-text-brand: #a7745c;
  --color-bg-grey-light: #f9f9f9;
  --color-bg-grey-middle: #f1f1f1;
  --color-bg-grey-dark: #d6d8df;
  --color-error: #d54c3c;
  --gradient-brand: linear-gradient(90deg, #c1856a 2.07%, #ad6780 98.34%);
  --gradient-brand-pressed: linear-gradient(90deg, #af736b 2.07%, #ad6780 98.34%);
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-btn-primary:
    0 -4px 8px 0 rgba(0, 0, 0, 0.32) inset,
    0 4px 8px 0 rgba(255, 255, 255, 0.5) inset,
    0 4px 8px 0 rgba(0, 0, 0, 0.24);
  --shadow-btn-primary-pressed:
    0 -4px 8px 0 rgba(0, 0, 0, 0.32) inset,
    0 4px 8px 0 rgba(255, 255, 255, 0.5) inset;
  --shadow-btn-secondary:
    0 -4px 8px 0 rgba(175, 175, 175, 0.45) inset,
    0 6px 4px 0 rgba(255, 255, 255, 0.32) inset,
    0 4px 8px 0 rgba(0, 0, 0, 0.24);
  --shadow-btn-secondary-pressed:
    0 -4px 8px 0 rgba(175, 175, 175, 0.45) inset,
    0 4px 4px 0 rgba(255, 255, 255, 0.5) inset;
  /* Identisch zum mobile CARD_BOX_SHADOW (shadows.ts:105) — 3D-Card-Look */
  --shadow-card:
    0 -4px 8px 0 rgba(175, 175, 175, 0.45) inset,
    0 6px 4px 0 rgba(255, 255, 255, 0.32) inset,
    0 4px 8px 0 rgba(0, 0, 0, 0.24);
  /* Section-Gap — Mobile-Default, wird im Media-Query unten überschrieben */
  --section-gap: 80px;
  --cta-gap: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text-primary);
  font-family: 'Euclid Square', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-image:
    radial-gradient(ellipse 800px 600px at 50% -100px, rgba(193, 133, 106, 0.14), transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 200px, rgba(173, 103, 128, 0.08), transparent 60%);
  background-repeat: no-repeat;
}

a {
  color: var(--color-brand-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--color-brand-secondary);
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}
.page--narrow {
  max-width: 720px;
}

/* BACK LINK */
.back-link {
  display: inline-block;
  font-size: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  margin-bottom: 24px;
}
.back-link:hover {
  color: var(--color-text-brand);
}

/* PILOT BANNER — shrink to content, 16px Padding links + rechts */
.pilot-banner {
  --pilot-banner-bg: #af80fc;
  --pilot-banner-bg-pressed: #9b71f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  margin: 0 auto;
  border-radius: var(--radius-full);
  background: var(--pilot-banner-bg);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  text-align: center;
  line-height: 1.35;
  box-shadow: var(--shadow-btn-primary);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}
.pilot-banner:hover {
  color: #fff;
  background: var(--pilot-banner-bg-pressed);
}
.pilot-banner:active {
  background: var(--pilot-banner-bg-pressed);
  box-shadow: var(--shadow-btn-primary-pressed);
}
.pilot-banner:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.pilot-banner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pilot-banner-pulse 2.4s ease-in-out infinite;
}
@keyframes pilot-banner-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}
.pilot-banner__text {
  flex: 0 1 auto;
}
.pilot-banner__arrow {
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.pilot-banner:hover .pilot-banner__arrow {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .pilot-banner {
    font-size: 13px;
    padding: 10px 16px;
    gap: 8px;
  }
  .pilot-banner__arrow {
    font-size: 15px;
  }
  .pilot-banner__dot {
    width: 8px;
    height: 8px;
  }
}

/* STATUS TAG */
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  margin: 0 auto 16px;
  width: fit-content;
  max-width: 100%;
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  box-shadow: 0 0 0 0 rgba(193, 133, 106, 0.55);
  animation: status-pulse 2.4s ease-in-out infinite;
}
.status__label {
  text-transform: uppercase;
}
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193, 133, 106, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(193, 133, 106, 0); }
}

/* HERO BLOCK — Header + Audio + Banner als zusammengehörige Gruppe */
.hero-block {
  margin: 0 0 var(--section-gap);
}

/* HERO */
.hero {
  text-align: center;
  padding: 0;
  margin: 0 0 24px;
}
.hero__image {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  animation: cap-wobble 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.4s 1 both;
  transform-origin: center 70%;
}
.hero__image--small {
  max-width: 180px;
  margin-bottom: 20px;
}
@keyframes cap-wobble {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  30%  { transform: translateY(0)      rotate(-3deg);  opacity: 1; }
  50%  { transform: translateY(-4px)   rotate(2deg);  }
  70%  { transform: translateY(0)      rotate(-1deg); }
  100% { transform: translateY(0)      rotate(0deg);  opacity: 1; }
}
.hero__headline {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 auto;
  max-width: 760px;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}
.hero__slogan {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-text-brand);
  margin: 16px auto 0;
  max-width: 560px;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 10px auto 0;
  max-width: 540px;
}
.hero__framing {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 24px auto 0;
  max-width: 460px;
  opacity: 0.85;
}
.hero__framing-domain {
  font-weight: 600;
  color: var(--color-text-brand);
}

/* HERO PITCH — Statement zwischen Audio und Banner */
.hero-pitch {
  max-width: 580px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
}
.hero-pitch strong {
  font-weight: 700;
  color: var(--color-text-primary);
}
.hero--compact {
  padding: 12px 0 24px;
}
.hero--compact .hero__headline {
  font-size: 30px;
}

/* EYEBROW — Section-Anker oberhalb des Titles */
.eyebrow {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-brand);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 14px;
}

/* SECTION TITLE */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--color-text-primary);
  text-align: center;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* PAGE WRAP — Container für alle Sections nach dem Hero */
.page-wrap {
  display: block;
}

/* AUDIO DEMO — ca. 2/3 Page-width, gleiche Breite wie Banner */
.audio-demo[hidden] {
  display: none;
}
.audio-demo {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  max-width: 580px;
  width: 100%;
}
.audio-demo__play {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-btn-primary);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease;
}
.audio-demo__play:hover {
  transform: scale(1.05);
}
.audio-demo__play:active {
  transform: scale(0.97);
  box-shadow: var(--shadow-btn-primary-pressed);
}
.audio-demo__play svg {
  width: 28px;
  height: 28px;
}
.audio-demo__play .audio-demo__icon-pause {
  display: none;
}
.audio-demo.is-playing .audio-demo__play .audio-demo__icon-play {
  display: none;
}
.audio-demo.is-playing .audio-demo__play .audio-demo__icon-pause {
  display: block;
}
.audio-demo.is-playing .audio-demo__play {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow-btn-primary), 0 0 0 0 rgba(193, 133, 106, 0.4); }
  50%      { box-shadow: var(--shadow-btn-primary), 0 0 0 16px rgba(193, 133, 106, 0); }
}
.audio-demo__text {
  flex: 1;
  min-width: 0;
}
.audio-demo__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--color-text-primary);
}
.audio-demo__sub {
  font-size: 14px;
  margin: 0;
  color: var(--color-text-secondary);
}
.audio-demo__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.audio-demo__bar {
  flex: 1;
  height: 4px;
  background: var(--color-bg-grey-middle);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.audio-demo__fill {
  height: 100%;
  width: 0;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}
.audio-demo__time {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* MOMENTS */
.moments {
  margin: 0 0 var(--section-gap);
}
.moments__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.moment {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.moment__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.6;
}
.moment__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}
.moment__body {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 1.6;
}
.moments__tagline {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-primary);
  margin: 32px 0 0;
}

/* SETUP — In wenigen Minuten startklar */
.setup {
  margin: 0 0 var(--section-gap);
  text-align: center;
}
.setup__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  max-width: 580px;
  margin: 0 auto;
}
.setup__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px auto;
  max-width: 640px;
}
/* Tertiary-Button-Style aus web/buttons.css übernommen, in Brand-Tertiary-Lila */
.setup__chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--color-bg-grey-light);
  border: 1px solid #af80fc;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  color: #6031f9;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-btn-secondary);
}
.setup__chip--more {
  color: var(--color-text-secondary);
  font-weight: 500;
}
.setup__steps {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  max-width: 580px;
  margin: 0 auto;
}
.setup__steps strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

/* FOUNDERS */
.founders {
  margin: 0 0 var(--section-gap);
}
.founders__intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 32px;
}
.founders__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.founder {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.founder__photo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
}
.founder__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.founder__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}
.founder__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin: 2px 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.founder__bio {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.founders__closing {
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--color-bg-grey-light);
  border-radius: var(--radius-lg);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 720px;
  font-weight: 500;
}

/* CTA SECTION */
.cta-section {
  margin: 0 0 var(--cta-gap);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* CARDS */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.card--primary {
  border: 2px solid #af80fc;
}
.card--secondary {
  padding: 24px;
}
.card--standalone {
  margin: 0 auto;
}
/* Match zum Pilot-Banner: gleiches Lila, 3D-Shadow, Pille */
.card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #af80fc;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  box-shadow: var(--shadow-btn-primary);
}
/* Launch-Variante: hellere Lila-Welt, flacher (kein 3D-Shadow) */
.card__badge--launch {
  background: #f3f2ff;
  color: #6031f9;
  box-shadow: none;
}

/* Launch-Card: kompaktes Form-Layout */
.card--secondary .form {
  gap: 10px;
}
.card--secondary .card__body {
  margin-bottom: 16px;
}
.card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}
.card__body {
  margin: 0 0 20px;
  color: var(--color-text-primary);
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Mini-Benefits unter dem Card-Body (Pilot-Card auf index) */
.card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card__benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-primary);
}

/* FORM */
.form {
  display: grid;
  gap: 12px;
}
.form__field {
  display: grid;
  gap: 4px;
}
.form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
.form__hint {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  opacity: 0.55;
}
/* TEXT INPUTS — matched zu app .input-base */
.form input[type='text'],
.form input[type='email'],
.form input[type='tel'] {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  height: 56px;
  padding: 8px 16px;
  border: 1px solid var(--color-bg-grey-dark);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 4px 6px 0 #d6d8df inset;
  color: var(--color-text-primary);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus {
  outline: none;
  border-color: var(--color-brand-primary);
  box-shadow: none;
}

/* SELECT — matched zu app .dropdown-header (collapsed state) */
.form__select-wrap {
  position: relative;
  width: 100%;
}
.form__select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a9597e; /* color-text-brand-secondary aus app */
  pointer-events: none;
  z-index: 1;
}
.form__select {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  height: 56px;
  width: 100%;
  padding: 8px 48px 8px 52px;
  border: 1px solid var(--color-bg-grey-dark);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-grey-light);
  box-shadow: var(--shadow-btn-secondary);
  color: var(--color-text-primary);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237f7f7f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
.form__select:focus {
  outline: none;
  border-color: var(--color-brand-primary);
}
.form__select:invalid {
  color: var(--color-text-secondary);
  font-weight: 500;
}
.form__select option {
  color: var(--color-text-primary);
  font-weight: 500;
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form__consent {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(51, 51, 51, 0.7);
  margin-top: 4px;
}
.form__consent a {
  opacity: 1;
}
.form__consent input[type='checkbox'] {
  margin-top: 2px;
  accent-color: var(--color-brand-primary);
  flex-shrink: 0;
}

/* BUTTONS — 3D style (works as <button> AND <a>) */
.button {
  position: relative;
  display: inline-flex;
  height: 56px;
  width: 100%;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  text-decoration: none;
  box-sizing: border-box;
}
.button--primary {
  color: #ffffff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-btn-primary);
}
.button--primary:hover {
  color: #ffffff;
}
.button--secondary {
  color: var(--color-text-brand);
  background: var(--color-bg-grey-light);
  border: 2px solid var(--color-brand-primary);
  box-shadow: var(--shadow-btn-secondary);
}
.button--secondary:hover {
  color: var(--color-text-brand);
}
@media (hover: hover) and (pointer: fine) {
  .button--primary:hover:not(.is-loading) {
    background: var(--gradient-brand-pressed);
  }
  .button--primary:active:not(.is-loading) {
    background: var(--gradient-brand-pressed);
    box-shadow: var(--shadow-btn-primary-pressed);
  }
  .button--secondary:hover:not(.is-loading) {
    background: var(--color-bg-grey-middle);
  }
  .button--secondary:active:not(.is-loading) {
    background: var(--color-bg-grey-middle);
    box-shadow: var(--shadow-btn-secondary-pressed);
  }
}
.button:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

/* Loading state */
.button.is-loading {
  cursor: progress;
  opacity: 0.85;
}
.button.is-loading .button__label {
  visibility: hidden;
}
.button__spinner {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.button.is-loading .button__spinner {
  display: block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* PILOT PAGE */
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}
.pilot-block {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.pilot-block__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}
.pilot-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pilot-block__list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.pilot-block__list li:last-child {
  margin-bottom: 0;
}
.pilot-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-primary);
}
.pilot-form-section {
  margin: 40px 0;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 48px 0 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.footer__slogan {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-brand);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.footer__legal {
  margin: 0;
}
.footer__legal a {
  color: var(--color-text-secondary);
  margin: 0 4px;
}
.footer__legal a:hover {
  color: var(--color-text-brand);
}

/* LEGAL PAGES */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}
.legal h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
}
.legal h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 8px;
}
.legal p,
.legal ul {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-primary);
  margin: 0 0 12px;
}
.legal ul {
  padding-left: 20px;
}
.legal a.back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
}

/* THANK YOU */
.thanks {
  text-align: center;
  padding: 80px 20px;
}
.thanks h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}
.thanks p {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
}
.thanks a {
  color: var(--color-text-brand);
  font-weight: 500;
}

/* RESPONSIVE */
@media (min-width: 720px) {
  :root {
    --section-gap: 200px;
    --cta-gap: 120px;
  }
  .page {
    padding: 56px 40px 64px;
  }
  .hero__image {
    max-width: 340px;
  }
  .hero__headline {
    font-size: 48px;
  }
  .hero--compact .hero__headline {
    font-size: 40px;
  }
  .hero__slogan {
    font-size: 20px;
  }
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .moments__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .founders__grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .card--primary {
    padding: 32px 28px;
  }
  .pilot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .audio-demo.is-playing .audio-demo__play,
  .status__dot {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
