:root {
  --green: #A3B919;
  --green-dark: #7EA821;
  --green-deep: #5A7A18;
  --green-light: #F2F5D6;
  --green-tint: #FAFCEB;
  --charcoal: #1A2426;
  --charcoal-2: #0F1718;
  --ink: #252F31;
  --slate: #4A5559;
  --mist: #8A9396;
  --border: #E6E8E5;
  --light-grey: #F5F6F2;
  --paper: #FBFBF7;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow-md: 0 8px 28px rgba(20,30,30,.08);
  --shadow-lg: 0 24px 64px rgba(20,30,30,.16);
  --shadow-glow: 0 24px 64px rgba(163,185,25,.28);
  --container: 1240px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--charcoal); margin: 0; line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: clamp(36px, 4.6vw, 68px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; }
html[lang="de"] h1 { font-size: clamp(32px, 4vw, 58px); }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 14px;
  background: var(--green-light);
  border-radius: 999px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(163,185,25,.18);
}

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

/* ── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,251,247,.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(251,251,247,.94); }
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 28px; max-width: var(--container); margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; }
.brand-lockup { height: 36px; width: auto; display: block; }
.brand-lockup .wm { font-family: 'Inter', system-ui, sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.045em; }
.brand-lockup--light .wm { fill: #1A2426; }
.brand-lockup--light .craft { fill: #7EA821; }
.brand-lockup--dark .wm { fill: #F7F6F0; }
.brand-lockup--dark .craft { fill: #C5D44A; }
.nav-links { display: flex; gap: 28px; margin-left: 12px; }
.nav-link {
  font-family: var(--font-head);
  font-size: 14px; font-weight: 600; color: var(--slate);
  transition: color .15s;
}
.nav-link:hover { color: var(--charcoal); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 2px; font-size: 12px; font-weight: 700; color: var(--mist); font-family: var(--font-head); }
.lang-switch a { padding: 4px 8px; border-radius: 4px; transition: color .15s, background .15s; }
.lang-switch a.active { color: var(--charcoal); background: var(--light-grey); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn-green { background: var(--green); color: var(--charcoal); }
.btn-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--charcoal); background: var(--white); }
.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.btn-arrow svg { width: 16px; height: 16px; transition: transform .15s; }
.btn-arrow:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .nav-links, .nav-right .lang-switch { display: none; }
  .nav-right { gap: 8px; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(163,185,25,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
html[lang="de"] .hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
.hero-copy { padding-top: 8px; }
.hero-copy h1 { hyphens: none; word-break: normal; overflow-wrap: break-word; }
.dash { min-width: 0; max-width: 480px; }
.hero-copy h1 { margin-top: 22px; }
.hero-copy h1 .accent {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.hero-copy h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.18em;
  background: var(--green);
  opacity: 0.55;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; color: var(--slate);
  margin-top: 28px; max-width: 540px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 10px; margin-top: 22px;
  font-size: 13px; color: var(--mist);
  font-family: var(--font-head); font-weight: 600;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--mist); }

/* ── Hero dashboard mockup ─────────────────────────────────────────────── */
.dash {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dash-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; background: #DCDDDA; }
.dash-dot:nth-child(1) { background: #EF5F56; }
.dash-dot:nth-child(2) { background: #F6BE4F; }
.dash-dot:nth-child(3) { background: #62C254; }
.dash-url { margin-left: 12px; font-size: 11px; color: var(--mist); font-family: var(--font-body); letter-spacing: 0.02em; }
.dash-body { padding: 24px; }
.dash-shot { display: block; width: 100%; height: auto; }
.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ── Full-bleed hero variant ───────────────────────────────────────────── */
.hero-fullbleed {
  position: relative;
  padding: 0;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Background image with full positioning control. Adjust these two
     properties to taste:
       background-size: bigger % = zoom in; smaller % = zoom out
       background-position: shifts the visible window (e.g. 75% center
       pushes the right side of the image off-screen, showing more left). */
  background-image: url('screenshots/SalonHero.png');
  background-size: 110% auto;
  background-position: 0% center;
  background-repeat: no-repeat;
  background-color: #1A2426;
}
.hero-fullbleed::before { display: none; }
.hero-bg { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 24, 0.35) 0%,
    rgba(15, 23, 24, 0.18) 50%,
    rgba(15, 23, 24, 0.05) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}
.hero-fullbleed .hero-copy {
  max-width: 560px;
  margin-right: auto;
  padding: 40px 44px 36px;
  background: rgba(15, 23, 24, 0.42);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.hero-fullbleed .hero-copy h1 { color: #FFFFFF; margin-top: 18px; }
.hero-fullbleed .hero-copy h1 .underline::after { background: var(--green); opacity: 0.9; }
.hero-fullbleed .hero-sub { color: rgba(255, 255, 255, 0.92); margin-top: 22px; }
.hero-fullbleed .hero-meta { color: rgba(255, 255, 255, 0.78); margin-top: 18px; }
.hero-fullbleed .hero-meta .dot { background: rgba(255, 255, 255, 0.55); }
.hero-fullbleed .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}
.btn-ghost-light {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.dash-greeting {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  color: var(--charcoal); letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.dash-date {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--mist); text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.dash-section-label {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  color: var(--green-deep); text-transform: uppercase; letter-spacing: 0.14em;
  margin: 18px 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.dash-section-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}

.idea-card {
  display: flex; gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.idea-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.idea-card.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-light), #FAFCEB);
  box-shadow: 0 4px 18px rgba(163,185,25,.18);
}
.idea-card.primary::before {
  content: ''; position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 3px; background: var(--green); border-radius: 0 3px 3px 0;
}
.idea-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
}
.idea-card.primary .idea-icon { background: var(--white); border-color: var(--green); }
.idea-icon svg { width: 18px; height: 18px; stroke: var(--green-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.idea-body { flex: 1; min-width: 0; }
.idea-tag {
  font-family: var(--font-head); font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--mist);
  margin-bottom: 4px;
}
.idea-card.primary .idea-tag { color: var(--green-deep); }
.idea-title { font-size: 14px; color: var(--charcoal); font-weight: 600; line-height: 1.4; }
.idea-meta { font-size: 11px; color: var(--mist); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.idea-meta .pill {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  background: var(--white); color: var(--green-deep);
  border: 1px solid var(--green);
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 100%; }
}

/* ── Proof strip / works ───────────────────────────────────────────────── */
.works {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.works-inner { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.works-label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--mist);
}
.works-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.works-item {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  color: var(--slate);
  display: flex; align-items: center; gap: 8px;
  transition: color .15s;
}
.works-item:hover { color: var(--charcoal); }
.works-item svg { width: 18px; height: 18px; }

/* ── Pillars (replaces wedge) ──────────────────────────────────────────── */
.pillars {
  padding: 120px 0;
  background: var(--paper);
}
.pillars-intro { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.pillars-intro h2 { margin-top: 18px; }
.pillars-intro p { color: var(--slate); font-size: 19px; margin-top: 22px; line-height: 1.5; }

.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--green-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 {
  font-size: 22px; line-height: 1.2; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pillar p { color: var(--slate); font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) {
  .pillars { padding: 80px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── Features ──────────────────────────────────────────────────────────── */
.features { padding: 120px 0; background: var(--white); }
.features-intro { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.features-intro h2 { margin-top: 18px; }
.features-intro p { color: var(--slate); font-size: 19px; margin-top: 18px; }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 40px 0;
}
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }
/* Stacked variant: copy on top (constrained width), visual full-width
   below. Used when the visual is a detailed-UI demo that needs the full
   container width to stay readable. */
.feature-row--stacked {
  grid-template-columns: 1fr;
  gap: 40px;
}
.feature-row--stacked .feature-copy { max-width: 720px; }
.feature-visual--wide { max-width: none; }
.feature-copy h2 { margin-top: 18px; font-size: 38px; }
.feature-copy p {
  color: var(--slate); font-size: 17px; margin-top: 18px; line-height: 1.55;
  max-width: 480px;
}
.feature-bullets { margin-top: 24px; padding: 0; list-style: none; }
.feature-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 8px 0; font-size: 15px; color: var(--ink);
}
.feature-bullets svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--green-dark); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }

.feature-visual {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--green-light) 0%, var(--paper) 100%);
  padding: 44px;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.feature-visual::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 80% 20%, rgba(163,185,25,.14), transparent 50%);
  pointer-events: none;
}
.feature-visual .post-card,
.feature-visual .newsletter-card,
.feature-visual .calendar-card {
  width: 100%; max-width: 420px;
  position: relative; z-index: 1;
}

.post-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.post-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.post-card-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-light); font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--green-deep); display: flex; align-items: center; justify-content: center; }
.post-card-name { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.post-card-img {
  aspect-ratio: 4/5; background: linear-gradient(135deg, #E8C8A0, #A8876A);
  position: relative;
}
.post-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.3), transparent 50%);
}
.post-card-body { padding: 14px 16px; font-size: 13px; color: var(--ink); line-height: 1.5; }
.post-card-hashtags { color: var(--green-dark); font-size: 12px; margin-top: 8px; font-weight: 600; }

.feature-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: transparent;
}

/* Wizard fragment — faithful slice of Feedcraft's actual step-3 (Idee).
   Reproduces the topic textarea + chip suggestions + colored source
   legend at marketing scale so it reads at ~500px column width.
   Chip colors mirror webui/static/css/styles.css (.topic-chip variants):
     - default (db / green-light) = Datenbank
     - .wf-chip-web (orange tint)  = Web-Recherche
     - .wf-chip-booking (purple)   = Booking-Daten */
.wizard-fragment {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  font-family: var(--font-body);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.wf-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wf-bizpicker {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 12px 0 14px;
}
.wf-bizbtn {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--mist);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
.wf-bizbtn.is-active {
  background: var(--charcoal);
  color: var(--white);
}
.wf-bizbtn:hover:not(.is-active) {
  color: var(--charcoal);
}
.wf-question {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}
.wf-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--paper);
  min-height: 60px;
}
.wf-cursor {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--green-dark);
  margin-left: 2px;
  vertical-align: -2px;
  animation: wf-blink 1s steps(2, start) infinite;
}
@keyframes wf-blink { to { visibility: hidden; } }
.wf-chips-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--mist);
  margin: 20px 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  /* Reserve vertical space for the tallest industry variant so the card
     doesn't jump height when switching tabs. Sized for ~4 rows of
     natural-language chips at this column width. */
  min-height: 150px;
  align-content: flex-start;
}
.wf-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--green-light);
  color: var(--charcoal);
  font-size: 12px;
  line-height: 1.4;
}
.wf-chip-web {
  background: rgba(253, 170, 51, 0.15);
  border-color: rgba(253, 170, 51, 0.5);
}
.wf-chip-booking {
  background: rgba(130, 80, 170, 0.13);
  border-color: rgba(130, 80, 170, 0.45);
  color: rgb(70, 40, 100);
}
.wf-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 10px;
  color: var(--mist);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.wf-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: 0;
}
.wf-dot-db { background: var(--green); }
.wf-dot-web { background: rgb(253, 170, 51); }
.wf-dot-booking { background: rgb(130, 80, 170); }

/* Strategy fragment — faithful slice of Feedcraft's strategy view.
   Goal pill + plan items list + outcome forecast. Visually distinct
   from the wizard fragment (form+chips) — this one reads as a
   structured plan list. Same card chrome for consistency. */
.strategy-fragment {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  font-family: var(--font-body);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  /* Lock width regardless of inner content. Inline-flex children
     (bizpicker, weeks badge, radio) can otherwise let the card
     shrink-fit, making it appear to jump width on tab switch. */
  width: 100%;
  box-sizing: border-box;
}
.sf-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sf-bizpicker {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 12px 0 16px;
}
.sf-bizbtn {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--mist);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
.sf-bizbtn.is-active {
  background: var(--charcoal);
  color: var(--white);
}
.sf-bizbtn:hover:not(.is-active) { color: var(--charcoal); }

.sf-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.sf-card {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.sf-card.is-selected {
  border-color: var(--green);
  background: rgba(163, 185, 25, 0.06);
  box-shadow: 0 0 0 3px rgba(163, 185, 25, 0.12);
}
.sf-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.sf-radio {
  width: 14px; height: 14px;
  border: 1.5px solid var(--mist);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.sf-radio-on { border-color: var(--green); }
.sf-radio-on::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--green);
}
.sf-weeks {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}
.sf-card.is-selected .sf-weeks { color: var(--green-deep); }
.sf-problem {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 8px;
  /* Reserve 2 lines so the card height doesn't change when an industry's
     problem statement happens to fit on a single line. */
  min-height: 2.7em;
}
.sf-evidence {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sf-ev {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}
.sf-ev::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--mist);
  font-weight: 700;
}
.sf-more {
  font-size: 11px;
  color: var(--mist);
  padding-top: 12px;
  text-align: center;
  font-style: italic;
}

/* Team-Capture fragment — staff uploads awaiting (or just past) owner review.
   Visual story: people, captured media, status. List of capture entries
   with avatar + name + time + media-type + target post + status pill. */
.capture-fragment {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  font-family: var(--font-body);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.cf-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cf-bizpicker {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 12px 0 16px;
}
.cf-bizbtn {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--mist);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
.cf-bizbtn.is-active { background: var(--charcoal); color: var(--white); }
.cf-bizbtn:hover:not(.is-active) { color: var(--charcoal); }

.cf-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.cf-row {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: flex-start;
}
.cf-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.cf-body { flex: 1; min-width: 0; }
.cf-line1 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.cf-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--charcoal);
}
.cf-time {
  font-size: 11px;
  color: var(--mist);
}
.cf-line2 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 6px;
}
.cf-icon {
  display: inline-flex;
  width: 14px; height: 14px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.cf-icon svg { width: 100%; height: 100%; }
.cf-target {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cf-status {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
}
.cf-status-pending {
  background: rgba(253, 170, 51, 0.15);
  color: rgb(180, 100, 0);
}
.cf-status-approved {
  background: rgba(163, 185, 25, 0.18);
  color: var(--green-deep);
}

/* DM-Automation fragment — configured triggers (top) + runtime exchange
   (bottom). Top section shows the setup angle (keyword + response type
   + target), bottom section shows the comment → DM behavior. */
.dm-fragment {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px;
  font-family: var(--font-body);
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}
.df-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.df-bizpicker {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 12px 0 16px;
}
.df-bizbtn {
  background: transparent;
  border: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--mist);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease;
}
.df-bizbtn.is-active { background: var(--charcoal); color: var(--white); }
.df-bizbtn:hover:not(.is-active) { color: var(--charcoal); }

.df-triggers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.df-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
}
.df-tkw {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}
.df-tarrow { color: var(--mist); font-weight: 700; flex-shrink: 0; }
.df-ttype {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.df-ttype-datei { background: rgba(253, 170, 51, 0.18); color: rgb(150, 90, 0); }
.df-ttype-link  { background: rgba(54, 157, 190, 0.18); color: rgb(20, 90, 115); }
.df-ttype-text  { background: rgba(163, 185, 25, 0.22); color: var(--green-deep); }
.df-tlabel {
  color: var(--slate);
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.df-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 12px;
  color: var(--mist);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.df-divider::before,
.df-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.df-post {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.df-post-caption {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  /* Reserve enough room for the longest industry variant so the card
     doesn't grow/shrink when switching tabs. */
  min-height: 152px;
}
.df-post-topic {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}
.df-post-text {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
}
.df-trigger-inline {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--green-deep);
  background: var(--green-light);
  padding: 1px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.newsletter-subject {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.newsletter-subject strong { display: block; color: var(--charcoal); font-weight: 700; }
.newsletter-subject span { color: var(--mist); font-size: 12px; }
.newsletter-hero {
  padding: 24px;
  background: var(--green-light);
}
.newsletter-hero h3 {
  font-family: var(--font-head); color: var(--charcoal); font-size: 20px; margin: 0 0 8px;
}
.newsletter-hero p { font-size: 13px; color: var(--slate); margin: 0; }
.newsletter-section { padding: 16px 22px; border-top: 1px solid var(--border); }
.newsletter-section h4 { font-size: 14px; color: var(--charcoal); margin: 0 0 4px; font-family: var(--font-head); }
.newsletter-section p { font-size: 12px; color: var(--slate); margin: 0; }

.calendar-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 22px;
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  color: var(--charcoal); margin-bottom: 14px;
}
.cal-head span { color: var(--green-deep); font-weight: 700; font-size: 11px; background: var(--green-light); padding: 4px 10px; border-radius: 999px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-daynames {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  font-size: 10px; color: var(--mist); font-weight: 700; margin-bottom: 6px; font-family: var(--font-head);
}
.cal-day {
  aspect-ratio: 1; border-radius: 6px;
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 4px 6px; font-size: 10px; color: var(--mist);
  background: var(--paper); position: relative;
  font-family: var(--font-head); font-weight: 600;
}
.cal-day.filled { background: var(--green-light); color: var(--green-deep); font-weight: 800; }
.cal-day.filled::after {
  content: ''; position: absolute; bottom: 4px; left: 6px; right: 6px;
  height: 3px; border-radius: 2px; background: var(--green);
}

@media (max-width: 960px) {
  .features { padding: 80px 0; }
  .features-intro { margin-bottom: 56px; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; padding: 24px 0; }
  .feature-row.reverse .feature-visual, .feature-row.reverse .feature-copy { order: unset; }
  .feature-visual { min-height: 280px; padding: 28px; }
  .feature-copy h2 { font-size: 30px; }
}

/* ── How (3 steps) ─────────────────────────────────────────────────────── */
.how { padding: 120px 0; background: var(--charcoal); color: var(--white); }
.how .features-intro h2 { color: var(--white); }
.how .features-intro p { color: #B5BCBE; }
.how .eyebrow { background: rgba(163,185,25,.16); color: var(--green); }
.how .eyebrow::before { background: var(--green); box-shadow: 0 0 0 4px rgba(163,185,25,.2); }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.how-step {
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.how-step:hover { transform: translateY(-4px); border-color: rgba(163,185,25,.4); background: rgba(163,185,25,.05); }
.how-step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  color: var(--green); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.how-step-num::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}
.how-step h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; letter-spacing: -0.02em; }
.how-step p { color: #9DA4A6; font-size: 15px; line-height: 1.55; }

@media (max-width: 900px) {
  .how { padding: 80px 0; }
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-step { padding: 24px; }
}

/* ── Pricing ───────────────────────────────────────────────────────────── */
.pricing { padding: 120px 0; background: var(--paper); }
.pricing-intro { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pricing-intro h2 { margin-top: 18px; }
.pricing-intro p { color: var(--slate); font-size: 19px; margin-top: 18px; }
.pricing-card {
  max-width: 480px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}
.pricing-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--green), transparent 40%);
  border-radius: var(--radius-xl);
  z-index: -1; opacity: 0.4;
}
.pricing-price {
  font-family: var(--font-head); color: var(--charcoal);
  margin: 22px 0 6px;
}
.pricing-price .amount { font-size: 72px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pricing-price .period { font-size: 18px; color: var(--slate); font-weight: 600; }
.pricing-sub { color: var(--mist); font-size: 13px; margin-bottom: 32px; font-family: var(--font-head); font-weight: 600; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.pricing-features li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 15px; color: var(--ink); }
.pricing-features svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.pricing-note {
  margin-top: 24px; padding: 16px 20px; border-radius: 12px;
  background: var(--green-light); font-size: 13px; color: var(--ink);
  text-align: left;
}
/* Two-tier pricing grid */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px; max-width: 920px; margin: 0 auto; align-items: stretch;
}
.pricing-grid .pricing-card { max-width: none; margin: 0; display: flex; flex-direction: column; }
/* Push each card's CTA to the bottom so both buttons line up regardless of
   how many features each tier lists. */
.pricing-grid .pricing-card > .btn { margin-top: auto; }
.pricing-plan-name {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  color: var(--charcoal); margin-bottom: 4px;
}
.pricing-plus {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  color: var(--slate); margin: 0 0 14px; text-align: left;
}
.pricing-card.featured { border-color: var(--green); box-shadow: 0 18px 50px rgba(0,0,0,0.12); }
.pricing-card.featured::before { opacity: 0.7; }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: 999px;
  letter-spacing: 0.02em; white-space: nowrap;
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: var(--white); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-intro { text-align: center; margin-bottom: 56px; }
.faq-intro h2 { margin-top: 18px; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--charcoal);
  cursor: pointer; user-select: none;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: '+'; flex-shrink: 0;
  font-family: var(--font-head); font-weight: 400;
  font-size: 28px; line-height: 1; color: var(--green-dark);
  transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding-top: 14px; color: var(--slate); font-size: 15px; line-height: 1.65; max-width: 640px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.cta {
  padding: 120px 0; background: var(--charcoal); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center top, rgba(163,185,25,.22), transparent 60%);
  pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--white); max-width: 780px; margin: 0 auto; font-size: clamp(36px, 5vw, 64px); }
.cta p { color: #B5BCBE; font-size: 18px; margin-top: 22px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btn { margin-top: 40px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal-2); color: #9DA4A6;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h4 {
  color: var(--white); font-family: var(--font-head); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  margin: 0 0 16px;
}
.footer-brand-copy { font-size: 14px; line-height: 1.6; color: #9DA4A6; margin-top: 14px; max-width: 300px; }
.footer-contact-line { font-size: 14px; line-height: 1.6; color: #9DA4A6; margin: 0; }
.footer-contact-line + .footer-contact-line { margin-top: 4px; }
.footer-contact-line a { color: var(--white); }
.footer-contact-line a:hover { color: var(--green); }

.signup-main { padding: 56px 0 96px; }
.signup-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.signup-eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--green-dark);
}
.signup-head h1 {
  margin-top: 16px;
  font-size: clamp(36px, 4.6vw, 64px);
}

/* The parent grid owns the row tracks; both column-wrappers use
   display: contents so their children become direct grid items. Then
   grid-template-areas pins each card to a specific row + column, and
   row heights auto-size to the taller of each paired card — meaning
   Über dich + plan-card stretch to the same height, Dein Betrieb +
   pay-card stretch to the same height, and the legal note sits in its
   own row underneath. */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "uberdich       plan"
    "dein-betrieb   pay"
    ".              note";
  column-gap: 56px;
  row-gap: 28px;
}

.signup-form, .signup-side {
  display: contents;
  margin: 0;
}

.signup-fieldset:nth-of-type(1) { grid-area: uberdich; }
.signup-fieldset:nth-of-type(2) { grid-area: dein-betrieb; }
.plan-card { grid-area: plan; }
.pay-card  { grid-area: pay; }
.signup-side > .legal-note { grid-area: note; }

@media (max-width: 900px) {
  .signup-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "uberdich"
      "plan"
      "dein-betrieb"
      "pay"
      "note";
    row-gap: 20px;
  }
}
.signup-fieldset {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; margin: 0; background: var(--white);
}
.signup-fieldset-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal);
  margin: 0 0 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--slate);
}
.field input, .field select {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--paper); color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--green-dark); background: var(--white);
}
.field input[readonly], .field select[readonly] {
  background: var(--light-grey); color: var(--mist); cursor: not-allowed;
}
.field-hint { font-size: 12px; color: var(--mist); margin-top: 2px; }
.field-optional { font-weight: 400; color: var(--mist); font-size: 12px; }
.field-error {
  display: block; margin-top: 8px; padding: 10px 12px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px;
  font-size: 13px; line-height: 1.5; color: #b91c1c;
}
.field-error a { color: #b91c1c; text-decoration: underline; font-weight: 600; }
.field-error[hidden] { display: none; }

.address-search-field { position: relative; }
.address-suggestions {
  position: absolute; top: calc(100% - 2px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0 0 10px 10px; box-shadow: var(--shadow-md);
  max-height: 320px; overflow-y: auto; z-index: 20;
}
.address-suggestion {
  display: block; width: 100%; text-align: left;
  padding: 12px 14px; border: none; background: var(--white);
  cursor: pointer; font-family: var(--font-body);
  border-bottom: 1px solid var(--border);
  transition: background .12s;
}
.address-suggestion:last-child { border-bottom: none; }
.address-suggestion:hover, .address-suggestion:focus {
  background: var(--green-light); outline: none;
}
.addr-line1 {
  display: block; font-size: 14px; font-weight: 600; color: var(--ink);
}
.addr-line2 {
  display: block; font-size: 12px; color: var(--mist); margin-top: 2px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row .field { margin-bottom: 0; }
.field-row.field-row-zip-city { grid-template-columns: 120px 1fr; }
.field-zip { flex: 0 0 auto; }
.field-city { flex: 1 1 auto; }

.signup-form.locked .signup-fieldset { opacity: 0.7; }

.plan-card {
  background: var(--green-light); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}
.plan-card h3 { font-size: 18px; margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.plan-amount { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--charcoal); letter-spacing: -0.02em; }
.plan-period { font-size: 16px; color: var(--slate); }
.plan-sub { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--mist); margin: -8px 0 18px; }
.plan-meta { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.plan-meta li { font-size: 14px; color: var(--slate); padding-left: 18px; position: relative; }
.plan-meta li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-dark);
}

.pay-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border);
}
.pay-card h3 { font-size: 18px; margin-bottom: 16px; }
.pay-placeholder { font-size: 14px; color: var(--mist); margin-bottom: 16px; }
.pay-cta { width: 100%; }
.pay-cta:disabled { opacity: 0.45; cursor: not-allowed; }
.paddle-checkout-container { min-height: 0; }
.paddle-checkout-container:not(:empty) { margin-top: 0; }

/* Once Paddle's inline widget renders, free up vertical room by hiding
   the page heading and the pay-card chrome. Paddle's iframe brings its
   own styling, so the wrapping card is no longer pulling its weight. */
body.signup-paying #signupHead { display: none; }
body.signup-paying .signup-main { padding-top: 32px; }
body.signup-paying .pay-card {
  padding: 0; border: none; background: transparent;
}
body.signup-paying .pay-card > h3,
body.signup-paying #paddle-placeholder,
body.signup-paying #goToPaymentBtn {
  display: none !important;
}

.legal-note { font-size: 12px; color: var(--mist); line-height: 1.5; text-align: center; }
.legal-note a { color: var(--slate); text-decoration: underline; }

.signup-success {
  max-width: 640px; margin: 0 auto;
  text-align: center; padding: 32px 16px 80px;
}
.signup-success h1 {
  margin: 16px 0 24px;
}
.signup-success p {
  font-size: 17px; line-height: 1.6; color: var(--slate);
  max-width: 52ch; margin: 0 auto;
}
.signup-success .overlay-detail {
  margin-top: 28px; padding: 12px 18px;
  background: var(--green-light); border-radius: 10px;
  font-size: 14px; color: var(--charcoal); display: inline-block;
}

.success-main {
  min-height: 60vh; padding: 80px 0 120px;
  display: flex; align-items: center; justify-content: center;
}
.success-card { max-width: 640px; margin: 0 auto; text-align: center; }
.success-eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--green-dark);
}
.success-card h1 {
  font-family: var(--font-head); font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.05;
  margin: 16px 0 24px;
}
.success-lede {
  font-size: 18px; line-height: 1.55; color: var(--slate);
  margin: 0 auto; max-width: 48ch;
}
.success-email {
  margin-top: 28px; padding: 14px 20px;
  background: var(--green-light); border-radius: 10px;
  font-size: 15px; color: var(--charcoal); display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { font-size: 14px; color: #9DA4A6; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--mist); flex-wrap: wrap; gap: 12px;
}
.footer .lang-switch a.active { color: var(--white); background: rgba(255,255,255,.06); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Reveal animations ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── VIBE: dark-hero variant ───────────────────────────────────────────── */
body[data-vibe="dark"] .hero { background: var(--charcoal); }
body[data-vibe="dark"] .hero::before {
  background: radial-gradient(circle, rgba(163,185,25,.32), transparent 60%);
  top: -150px; right: -100px;
}
body[data-vibe="dark"] .hero::after {
  content: ''; position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(163,185,25,.12), transparent 60%);
  pointer-events: none; z-index: 0;
}
body[data-vibe="dark"] .hero-copy h1 { color: var(--white); }
body[data-vibe="dark"] .hero-copy h1 .underline::after { background: var(--green); opacity: 0.7; }
body[data-vibe="dark"] .hero-sub { color: #B5BCBE; }
body[data-vibe="dark"] .hero .eyebrow { background: rgba(163,185,25,.18); color: var(--green); }
body[data-vibe="dark"] .hero .eyebrow::before { background: var(--green); box-shadow: 0 0 0 4px rgba(163,185,25,.2); }
body[data-vibe="dark"] .hero-meta { color: #8A9396; }
body[data-vibe="dark"] .hero .btn-primary { background: var(--green); color: var(--charcoal); }
body[data-vibe="dark"] .hero .btn-primary:hover { background: #C5D44A; }
body[data-vibe="dark"] .hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.18); }
body[data-vibe="dark"] .hero .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
body[data-vibe="dark"] .nav { background: rgba(26,36,38,.8); }
body[data-vibe="dark"] .nav.scrolled { background: rgba(26,36,38,.95); border-bottom-color: rgba(255,255,255,.06); }
body[data-vibe="dark"] .nav-link { color: #B5BCBE; }
body[data-vibe="dark"] .nav-link:hover { color: var(--white); }
body[data-vibe="dark"] .nav .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.18); }
body[data-vibe="dark"] .nav .btn-primary { background: var(--green); color: var(--charcoal); }
body[data-vibe="dark"] .nav .lang-switch { color: rgba(255,255,255,.5); }
body[data-vibe="dark"] .nav .lang-switch a.active { color: var(--white); background: rgba(255,255,255,.08); }
body[data-vibe="dark"] .nav .brand-lockup--light .wm { fill: var(--white); }
body[data-vibe="dark"] .nav .brand-lockup--light .craft { fill: var(--green); }

/* ── VIBE: editorial ───────────────────────────────────────────────────── */
body[data-vibe="editorial"] h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 9vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}
body[data-vibe="editorial"] h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}
body[data-vibe="editorial"] .hero-grid {
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}
body[data-vibe="editorial"] .hero { padding: 96px 0 96px; }
body[data-vibe="editorial"] .hero-copy h1 .underline::after { display: none; }
body[data-vibe="editorial"] .hero-copy h1 .accent {
  background: none; -webkit-text-fill-color: var(--green-deep);
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

/* ── Tweaks panel ──────────────────────────────────────────────────────── */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  font-family: var(--font-head);
}
.tweaks-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.tweaks-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--mist); line-height: 1;
  padding: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.tweaks-close:hover { color: var(--charcoal); }
.tweaks-section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mist); margin: 12px 0 8px;
}
.tweaks-options {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
}
.tweak-opt {
  background: var(--paper); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 10px 6px;
  font-size: 11px; font-weight: 700; color: var(--slate);
  cursor: pointer; text-align: center;
  transition: border-color .15s, color .15s, background .15s;
  font-family: var(--font-head);
}
.tweak-opt:hover { border-color: var(--mist); color: var(--charcoal); }
.tweak-opt.active { background: var(--green-light); border-color: var(--green); color: var(--green-deep); }
.tweak-headline-opts { display: flex; flex-direction: column; gap: 6px; }
.tweak-headline-opts .tweak-opt { text-align: left; padding: 10px 12px; line-height: 1.3; }
.tweaks-hidden { display: none !important; }


/* ── Legal pages ───────────────────────────────────────────────────────── */
.legal {
  padding: 72px 0 120px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.legal::before {
  content: ''; position: absolute; pointer-events: none;
  top: -120px; right: -200px; width: 720px; height: 720px;
  background: radial-gradient(circle at center, rgba(163,185,25,.10), transparent 60%);
  z-index: 0;
}
.legal .container { position: relative; z-index: 1; }
.legal-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  margin-bottom: 56px;
}
.legal-eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--green-deep);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid #E5EBC2;
  padding: 6px 12px; border-radius: 999px;
}
.legal-eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}
.legal-head h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.0;
  margin-top: 20px; max-width: 14ch;
}
.legal-head .legal-meta {
  margin-top: 24px; display: flex; gap: 24px; flex-wrap: wrap;
  color: var(--mist); font-size: 14px;
}
.legal-head .legal-meta strong { color: var(--ink); font-weight: 600; }

.legal-grid {
  display: grid; grid-template-columns: 240px 1fr; gap: 80px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 96px;
  font-family: var(--font-head);
}
.legal-toc-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--mist); margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc;
  border-left: 1px solid var(--border);
}
.legal-toc ol li {
  counter-increment: toc;
  position: relative;
}
.legal-toc ol li a {
  display: block; padding: 8px 0 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--slate);
  border-left: 2px solid transparent; margin-left: -1px;
  transition: color .15s, border-color .15s;
}
.legal-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-variant-numeric: tabular-nums;
  color: var(--mist); margin-right: 10px; font-size: 11px;
}
.legal-toc ol li a:hover { color: var(--charcoal); }
.legal-toc ol li a.active {
  color: var(--green-deep); border-left-color: var(--green);
  font-weight: 700;
}

.legal-body {
  max-width: 680px;
  font-size: 16.5px; line-height: 1.75; color: var(--ink);
}
.legal-body section { padding-bottom: 48px; }
.legal-body section + section {
  border-top: 1px solid var(--border); padding-top: 48px;
}
.legal-body h2 {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--charcoal);
  margin: 0 0 20px;
  display: flex; gap: 16px; align-items: baseline;
}
.legal-body h2 .legal-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--green-deep); letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  background: var(--green-light); border: 1px solid #E5EBC2;
  padding: 4px 10px; border-radius: 6px;
  position: relative; top: -2px;
}
.legal-body h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: var(--charcoal); margin: 28px 0 8px;
  letter-spacing: -0.01em;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol {
  margin: 12px 0 14px; padding-left: 22px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--charcoal); font-weight: 700; }
.legal-body a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-body a:hover { color: var(--green-dark); }

.legal-callout {
  background: var(--green-tint);
  border: 1px solid #E5EBC2;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 15px;
}
.legal-callout strong { display: block; margin-bottom: 6px; color: var(--green-deep); font-family: var(--font-head); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }

.legal-table {
  margin: 16px 0 20px; width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.legal-table th, .legal-table td {
  padding: 12px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.legal-table th {
  background: var(--light-grey);
  font-family: var(--font-head); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 700;
}
.legal-table tr:last-child td { border-bottom: none; }

.legal-imprint-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin: 16px 0 24px; font-size: 15px; line-height: 1.7;
  box-shadow: var(--shadow-sm);
}
.legal-imprint-card .label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--mist); margin-top: 14px;
}
.legal-imprint-card .label:first-child { margin-top: 0; }
.legal-imprint-card .value { color: var(--charcoal); margin-top: 2px; }

.legal-foot {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: var(--mist); font-size: 13px;
}
.legal-foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-foot-links a { color: var(--slate); }
.legal-foot-links a:hover { color: var(--charcoal); }

@media (max-width: 900px) {
  .legal { padding: 48px 0 80px; }
  .legal-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-toc { position: static; }
  .legal-head h1 { max-width: 100%; }
}
