/* =========================================================================
   Superkitchen, getsuperkitchen.com
   Designsprache aus der App (DESIGN.md): warmes Creme, Coral als einzige
   Akzentfarbe, New-York-Serifen fuer Headlines, Hairline-Borders statt
   Schatten, viel Luft. Dezent als Default.
   ========================================================================= */

:root {
  /* Hintergrund (warmes Creme) */
  --cream:        #F8F1E9;
  --cream-subtle: #F2ECE2;
  --cream-muted:  #EBE4D8;
  --surface:      #FFFFFF;

  /* Schrift und Linien */
  --ink:        #111110;
  --ink-soft:   #2A2A28;
  --ink-muted:  #6B6B66;
  --ink-subtle: #A0A09A;
  --line:       #EAE3D7;
  --line-soft:  #F1ECE2;
  --line-strong:#DCD3C4;

  /* Brand Coral */
  --coral:     #D75658;
  --coral-50:  #FCEEEE;
  --coral-100: #F6D2D2;
  --coral-700: #B23F41;

  /* Power-Akzente */
  --berry: #B43A4C;
  --sky:   #2864A3;
  --sun:   #C68A00;

  /* Radius (continuous-Optik der App) */
  --r-xs:   8px;
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;

  --maxw: 1080px;
  --maxw-doc: 760px;

  --serif: "New York", "Iowan Old Style", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typografie ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -0.6px; }
h3 { font-size: 1.22rem; letter-spacing: -0.3px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--coral);
  margin: 0 0 14px;
}
.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.62;
}
p { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.measure { max-width: 620px; }
.center .measure { margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; color: var(--coral); flex: none; }
.brand .word { font-family: var(--serif); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.4px; }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav .links a.navlink {
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
}
.nav .links a.navlink:hover { color: var(--ink); text-decoration: none; }
@media (max-width: 720px) {
  .nav .links a.navlink { display: none; }
}

/* ---------- Sprach-Dropdown (bleibt auch mobil sichtbar) ---------- */
.lang { position: relative; flex: none; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  color: var(--ink-soft); background: transparent;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 7px 11px; cursor: pointer;
}
.lang-btn:hover { color: var(--ink); border-color: var(--ink); }
.lang-btn svg { width: 15px; height: 15px; flex: none; }
.lang-btn .chev { width: 11px; height: 11px; transition: transform .15s ease; }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 150px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(31, 26, 23, .12);
  padding: 6px; display: none; z-index: 60;
}
.lang.open .lang-menu { display: block; }
.lang-menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 9px;
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
}
.lang-menu a:hover { background: var(--cream); color: var(--ink); text-decoration: none; }
.lang-menu a[aria-current="true"] { color: var(--ink); font-weight: 600; }
.lang-menu a[aria-current="true"]::after { content: "✓"; color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-brand { background: var(--coral); color: #fff; }
.btn-brand:hover { background: var(--coral-700); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink-soft); padding-left: 6px; padding-right: 6px; }
.btn-ghost:hover { color: var(--ink); }

/* App-Store-Badge (Apple-Stil, verlinkt auf den Store) */
.btn-store {
  background: var(--ink); color: #fff; padding: 10px 20px 10px 17px; gap: 12px;
}
.btn-store:hover { background: #000; }
.btn-store svg { width: 22px; height: 22px; fill: #fff; flex: none; margin-top: -2px; }
.btn-store .st { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.btn-store .st .small { font-size: 0.66rem; opacity: .85; font-weight: 500; letter-spacing: .2px; }
.btn-store .st .big { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.2px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.center .btn-row { justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 7vw, 90px); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 30ch; }
.hero .btn-row { margin-top: 30px; }
.hero .fineprint { margin-top: 18px; color: var(--ink-muted); font-size: 0.9rem; }
.hero .fineprint .dot { color: var(--line-strong); margin: 0 8px; }

.hero-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
/* weiches Coral-Glow hinter den Phones */
.hero-visual::before {
  content: ""; position: absolute; inset: -6% -4% 4% -4%;
  background: radial-gradient(60% 55% at 60% 38%, var(--coral-100), transparent 70%);
  filter: blur(8px); opacity: .8; z-index: 0;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero .lead, .hero h1 { max-width: none; }
  .hero .btn-row { justify-content: center; }
  .hero .fineprint { text-align: center; }
  .hero-visual { min-height: 0; margin-top: 30px; }
}

/* ---------- Phone-Mockup ---------- */
.phone {
  position: relative; width: 270px; aspect-ratio: 9 / 19.3;
  background: #111; border-radius: 42px; padding: 10px;
  box-shadow: 0 1px 0 1px #2a2a28 inset, 0 40px 80px -30px rgba(60,40,30,.45), 0 12px 30px -18px rgba(60,40,30,.35);
  z-index: 1;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  background: var(--cream); border-radius: 33px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone .island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; background: #0c0c0c; border-radius: 999px; z-index: 5;
}
.hero-visual .phone { width: clamp(240px, 30vw, 286px); }
/* Zweites Phone leicht versetzt dahinter */
.hero-visual .phone.back {
  position: absolute; left: 6%; top: 12%; transform: rotate(-7deg) scale(.82);
  opacity: .96; filter: saturate(1.02);
}
.hero-visual .phone.front { transform: rotate(2.5deg); }
@media (max-width: 880px) {
  .hero-visual .phone.back { display: none; }
  .hero-visual .phone.front { transform: none; }
  .phone { width: 260px; }
}

/* Screen-Inhalt, gemeinsame Bausteine */
.scr { padding: 38px 14px 16px; display: flex; flex-direction: column; gap: 12px; height: 100%; }
.scr-eyebrow { font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; color: var(--coral); }
.scr-h { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 19px; letter-spacing: -0.3px; line-height: 1.1; }

/* Heute-Karte: Foto mit Titel-Overlay (dishTitleOverlay) */
.shot {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1 / 1;
  background: var(--cream-muted) center/cover no-repeat;
}
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(205deg, transparent 42%, rgba(0,0,0,.06) 60%, rgba(0,0,0,.62) 100%);
}
.shot .badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 9px; font-weight: 700; color: #fff; padding: 4px 9px; border-radius: 999px;
  background: rgba(20,18,16,.34); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.shot .overlay {
  position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
}
.shot .overlay .av {
  width: 26px; height: 26px; border-radius: 999px; flex: none;
  background: #6B52C2; color: #fff; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; border: 1.5px solid rgba(255,255,255,.9);
}
.shot .overlay .t {
  font-family: var(--serif); font-weight: 700; color: #fff; font-size: 16px; line-height: 1.12;
  letter-spacing: -0.2px; text-shadow: 0 1px 3px rgba(0,0,0,.45);
}

/* Power-Chips (PowerStrip .chips) */
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 9px; font-size: 10px; font-weight: 700; color: var(--ink-soft);
}
.chip .em { font-size: 11px; }

/* Listenzeilen im Screen */
.rowline { display: flex; align-items: center; gap: 9px; }
.rowline .thumb {
  width: 34px; height: 34px; border-radius: var(--r-sm); flex: none;
  background: var(--cream-muted) center/cover no-repeat;
}
.rowline .tx { flex: 1; min-width: 0; }
.rowline .tx .a { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.rowline .tx .b { font-size: 10px; color: var(--ink-muted); }
.rowline .q { font-size: 11px; font-weight: 700; color: var(--ink); }
.scr .divider { height: 1px; background: var(--line); margin: 2px 0 2px 43px; }

.card-mini {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px; display: flex; flex-direction: column; gap: 9px;
}

/* Power-Liste (PowerStrip .full) */
.pwr { display: flex; flex-direction: column; gap: 8px; }
.pwr .p { display: flex; align-items: center; gap: 8px; }
.pwr .p .em { width: 16px; font-size: 13px; text-align: center; }
.pwr .p .lb { width: 52px; font-size: 10px; font-weight: 600; color: var(--ink-soft); }
.pwr .p .bar { flex: 1; height: 6px; border-radius: 999px; background: var(--cream-muted); overflow: hidden; }
.pwr .p .bar span { display: block; height: 100%; border-radius: 999px; }
.pwr .p .v { width: 20px; text-align: right; font-size: 10px; font-weight: 700; color: var(--ink-muted); }

.scr .pill-btn {
  margin-top: auto; background: var(--coral); color: #fff; text-align: center;
  font-size: 12px; font-weight: 700; padding: 11px; border-radius: 999px;
}

/* ---------- Feature-Highlights (alternierend) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.feature + .feature { margin-top: clamp(64px, 9vw, 120px); }
.feature.flip .feature-visual { order: -1; }
.feature .feature-visual { display: grid; place-items: center; position: relative; }
.feature .feature-visual::before {
  content: ""; position: absolute; width: 78%; height: 78%; border-radius: 50%;
  background: radial-gradient(circle, var(--coral-50), transparent 68%);
  z-index: 0;
}
.feature h2 { margin-bottom: 16px; }
.feature p { color: var(--ink-soft); max-width: 46ch; }
.feature .ic {
  width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--coral-100); color: var(--coral-700); margin-bottom: 20px; font-size: 22px;
}
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature.flip .feature-visual { order: 0; }
  .feature p { max-width: none; }
  .feature .feature-text { text-align: center; }
  .feature .ic { margin-left: auto; margin-right: auto; }
}

/* ---------- Feature-Grid (restliche USPs) ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; transition: border-color .2s ease, transform .2s ease;
}
.gcard:hover { border-color: var(--coral-100); transform: translateY(-2px); }
.gcard .ic {
  width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--coral-100); color: var(--coral-700); font-size: 20px; margin-bottom: 16px;
}
.gcard h3 { margin-bottom: 7px; }
.gcard p { margin: 0; color: var(--ink-muted); font-size: 0.96rem; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* ---------- Power-Band ---------- */
.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.power-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.power-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 124px;
}
.power-item .o {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; font-size: 28px;
  border: 1.5px solid var(--line);
}
.power-item .n { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.power-item .d { font-size: 0.8rem; color: var(--ink-muted); text-align: center; line-height: 1.3; }

/* ---------- Trust ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.trust { display: flex; gap: 14px; align-items: flex-start; }
.trust .ic { color: var(--coral); flex: none; margin-top: 2px; }
.trust h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.trust p { margin: 0; font-size: 0.93rem; color: var(--ink-muted); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- CTA-Band (invers, Voll-Coral) ---------- */
.cta { background: var(--coral); color: #fff; text-align: center; }
.cta .mark { width: 56px; height: 56px; color: #fff; margin: 0 auto 22px; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.9); max-width: 46ch; margin-left: auto; margin-right: auto; }
.cta .btn-store { background: #fff; color: var(--ink); margin-top: 26px; }
.cta .btn-store svg { fill: var(--ink); }
.cta .btn-store:hover { background: #fff; opacity: .92; }

/* ---------- Footer ---------- */
footer.site { background: var(--cream); border-top: 1px solid var(--line); padding: 54px 0 40px; }
footer .top { display: flex; flex-wrap: wrap; gap: 28px 48px; justify-content: space-between; }
footer .brand .word { font-size: 1.3rem; }
footer .tag { color: var(--ink-muted); margin: 12px 0 0; max-width: 34ch; font-size: 0.95rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 10px 26px; }
footer nav a { color: var(--ink-soft); font-size: 0.95rem; }
footer nav a:hover { color: var(--ink); }
footer .legal {
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  color: var(--ink-subtle); font-size: 0.85rem;
}
footer .legal a { color: var(--ink-muted); }

/* ---------- Reveal-Animation (nur mit JS, sonst sichtbar) ---------- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(16px); }
.js-reveal [data-reveal].in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================================
   Rechtstexte / Dokument-Layout
   ========================================================================= */
.doc { max-width: var(--maxw-doc); margin: 0 auto; padding: 40px 22px 96px; }
.doc .back { display: inline-block; margin-bottom: 22px; font-size: 0.94rem; color: var(--ink-muted); }
.doc .back:hover { color: var(--coral); }
.doc h1 { font-size: clamp(2rem, 5vw, 2.7rem); margin-bottom: 6px; }
.doc .meta { color: var(--ink-muted); font-size: 0.9rem; margin: 0 0 26px; }
.doc .lead { margin-bottom: 8px; }
.doc-section { margin-top: 30px; }
.doc-section h2 {
  font-size: 1.24rem; margin-bottom: 8px; letter-spacing: -0.2px;
  display: flex; gap: 10px; align-items: baseline;
}
.doc-section h2 .num { color: var(--coral); font-weight: 700; font-family: var(--sans); font-size: 0.98rem; }
.doc-section p { color: var(--ink-soft); margin: 0 0 10px; }
.doc .pre { white-space: pre-line; }
.doc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 24px; margin: 18px 0;
}

/* 404 */
.mini-center { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 40px 22px; }
.mini-center .mark { width: 52px; height: 52px; color: var(--coral); margin: 0 auto 20px; }

/* =========================================================================
   Echte App-Screenshots, Feature-Illustrationen, Screenshot-Galerie (v2)
   ========================================================================= */
/* Screenshot füllt den Phone-Frame randlos */
.phone-screen img.app-shot {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  border-radius: 33px;
}

/* Helle Feature-Illustrationen (photo2recipe / inspiration): der weisse Hintergrund
   ist serverseitig per PIL aufs Creme gebacken (assets/app/*-cream.jpg), die
   Illustration steht damit frei auf dem Seitenhintergrund, browser- und cache-
   unabhaengig. Kein weisser Kasten mehr. */
.feature-illus { position: relative; z-index: 1; width: 100%; max-width: 470px; }
.feature-illus img { width: 100%; height: auto; }
/* Coral-Glow hinter den creme-gebackenen Illustrationen ausblenden, sonst umrandet
   er die quadratische Creme-Flaeche sichtbar. Beim Phone-Visual bleibt er. */
.feature-visual:has(.feature-illus)::before { display: none; }

/* Horizontale Screenshot-Galerie */
.shots-rail {
  overflow-x: auto; scroll-snap-type: x proximity;
  margin: 0 -22px; padding: 4px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 22px, #000 calc(100% - 22px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 22px, #000 calc(100% - 22px), transparent);
}
.shots-track { display: flex; gap: 26px; width: max-content; padding: 6px 22px; }
.phone-shot {
  margin: 0; flex: none; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.shots-rail .phone { width: 206px; }
.shots-rail .phone .island { width: 64px; height: 18px; top: 9px; }
.phone-shot figcaption { font-size: 0.9rem; font-weight: 600; color: var(--ink-muted); text-align: center; }
@media (max-width: 560px) { .shots-rail .phone { width: 188px; } }

/* =========================================================================
   Kontaktformular (/kontakt/)
   ========================================================================= */
.form { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label, .form .form-legend { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.form label .opt { color: var(--ink-subtle); font-weight: 500; }
.form input[type=text], .form input[type=email], .form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 12px 14px; width: 100%; transition: border-color .2s ease;
}
.form textarea { min-height: 152px; resize: vertical; line-height: 1.55; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--coral); }

/* Segmentierte Auswahl Feedback / Wunsch */
.form .seg { display: flex; gap: 10px; flex-wrap: wrap; }
.form .seg label {
  flex: 1; min-width: 140px; cursor: pointer; display: flex; align-items: center; gap: 9px;
  font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--line-strong); border-radius: var(--r-md); padding: 12px 14px;
  transition: border-color .2s ease, background .2s ease;
}
.form .seg label:has(input:checked) { border-color: var(--coral); background: var(--coral-50); color: var(--ink); }
.form .seg input { accent-color: var(--coral); }

/* Honeypot: für Menschen unsichtbar, für Bots ausfüllbar */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form .actions .btn { cursor: pointer; }
.form-note { color: var(--ink-muted); font-size: 0.9rem; }

.form-alert { border-radius: var(--r-md); padding: 14px 16px; font-size: 0.95rem; }
.form-alert.err { background: var(--coral-50); border: 1px solid var(--coral-100); color: var(--coral-700); }

.form-ok {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; margin-top: 28px;
}
.form-ok h2 { font-size: 1.4rem; margin-bottom: 8px; }
.form-ok p { color: var(--ink-soft); margin: 0; }
