/* ============================================================
   Solution Pitches @ KI Gipfel 2026 — Landing Page
   Brand: Startup Stuttgart e.V.
   ============================================================ */

:root {
  /* Brand */
  --green: #a0fab0;
  --green-deep: #66d77a;
  --pink:  #f3cdf6;
  --orange: #ed531d;
  --purple: #4b35ed;

  /* KI Palooza festival gradient */
  --palooza-1: #ff6a1a;
  --palooza-2: #ff2e7e;
  --palooza-3: #b622d8;

  /* Neutrals */
  --ink:        #0E0E0C;
  --ink-soft:   #1c1c19;
  --ink-line:   #2a2a26;
  --paper:      #F5F4EE;
  --paper-2:    #ECEAE0;
  --paper-line: #d8d4c5;
  --muted:      #6b6b62;

  /* Type */
  --serif: "Clash Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body:  "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:  "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --pad-x: clamp(20px, 4vw, 64px);
  --maxw: 1440px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--ink-line);
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark { width: 36px; height: 36px; }
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-size: 14px;
  color: var(--green);
}
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  opacity: .8;
  transition: opacity .15s;
}
.site-nav a:hover { opacity: 1; }
.site-nav .nav-cta {
  background: var(--green);
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  opacity: 1;
  transition: transform .15s, background .15s;
}
.site-nav .nav-cta:hover { background: #b6ffc7; transform: translateY(-1px); }
@media (max-width: 700px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ============== HERO ============== */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(40px, 8vh, 80px) var(--pad-x) 0;
  position: relative;
  overflow: hidden;
}
.hero > * { position: relative; z-index: 1; }
.hero-glow {
  position: absolute;
  z-index: 0;
  top: -20%;
  right: -10%;
  width: min(80vw, 900px);
  height: min(80vw, 900px);
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(255,46,126,0.55), rgba(255,46,126,0) 70%),
    radial-gradient(closest-side, rgba(255,106,26,0.5), rgba(255,106,26,0) 70%);
  background-position: 30% 30%, 70% 60%;
  background-size: 70% 70%, 65% 65%;
  background-repeat: no-repeat;
  filter: blur(20px);
  opacity: 0.85;
  animation: heroGlow 14s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-4%, 5%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow { animation: none; }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.hero-kicker .kicker-brand { color: var(--paper); font-weight: 500; }
.hero-kicker .kicker-x { color: var(--muted); }
.hero-kicker .kicker-palooza {
  font-weight: 500;
  background: linear-gradient(90deg, var(--palooza-1), var(--palooza-2) 55%, var(--palooza-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: #b5b1a3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(160,250,176,0.6); }
  100% { box-shadow: 0 0 0 12px rgba(160,250,176,0); }
}
.meta-sep {
  width: 6px; height: 6px;
  background: #444;
  display: inline-block;
}
.meta-kv b { color: var(--paper); font-weight: 500; }

/* Headline */
.hero-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 8.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 40px;
  max-width: 18ch;
}
.hero-headline .line { display: block; }
.hero-headline .num {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  position: relative;
}
.hero-headline .accent {
  background: var(--green);
  color: var(--ink);
  padding: 0 0.15em 0.05em;
  display: inline-block;
  transform: rotate(-1.2deg);
  margin-bottom: 0.05em;
}
.hero-headline .accent-grad {
  background: linear-gradient(100deg, var(--palooza-1), var(--palooza-2) 50%, var(--palooza-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-right: 0.1em;
  margin-right: -0.1em;
}

/* Hero foot: subline + CTA in two columns */
.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}
@media (max-width: 800px) {
  .hero-foot { grid-template-columns: 1fr; }
}
.hero-subline {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  color: #d8d4c5;
  max-width: 56ch;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 17px;
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
}
.btn-primary {
  background: var(--green);
  color: var(--ink);
}
.btn-primary:hover {
  background: #b6ffc7;
  transform: translateY(-2px);
  box-shadow: 0 12px 0 -6px rgba(160,250,176,0.4);
}
.btn .arrow {
  display: inline-block;
  transition: transform .2s;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; padding: 22px; font-size: 18px; }
.cta-note {
  font-family: var(--mono);
  font-size: 13px;
  color: #b5b1a3;
}
.cta-note b { color: var(--green); font-weight: 500; }
.countdown { display: block; margin-top: 4px; color: var(--paper); }

/* Marquee */
.hero-marquee {
  margin: 0 calc(-1 * var(--pad-x));
  margin-top: 64px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 40s linear infinite;
  padding-left: 32px;
}
.marquee-track .bullet {
  color: var(--pink);
  font-size: 0.5em;
  display: inline-flex;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== Section heads ============== */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow-dark { color: #b5b1a3; }
.eyebrow-rules { color: var(--ink); opacity: .55; }
.section-head {
  padding: clamp(64px, 9vh, 110px) var(--pad-x) 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head-light { color: var(--paper); }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
}

/* ============== WAS IST ============== */
.what {
  background: var(--paper);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.what-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 900px) { .what-grid { grid-template-columns: 1fr; } }
.what-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid var(--paper-line);
  padding-top: 24px;
}
.stat {
  border-bottom: 1px solid var(--paper-line);
  padding-bottom: 24px;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat-num span {
  color: var(--orange);
}
.stat-label {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 24ch;
}
.what-prose {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: #2a2a26;
}
.what-prose p { margin: 0 0 18px; }
.pullquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 32px !important;
  padding-top: 32px;
  border-top: 1px solid var(--paper-line);
}
.strike {
  position: relative;
  display: inline-block;
  color: var(--muted);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 0.12em;
  background: var(--orange);
  transform: rotate(-2deg);
}

/* ============== FORMAT ============== */
.format {
  background: var(--green);
  color: var(--ink);
  padding: clamp(64px, 9vh, 110px) var(--pad-x);
}
.format-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
@media (max-width: 900px) { .format-grid { grid-template-columns: 1fr; } }
.format-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}
.format-title .strict {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.format-title .strict::after {
  content: "";
  display: inline-block;
  width: 0.18em;
  height: 0.85em;
  background: var(--orange);
  margin-left: 0.05em;
  vertical-align: -0.05em;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.format-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 46ch;
  margin: 0 0 48px;
}

/* Timer */
.timer { margin-top: 24px; }
.timer-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.timer-axis .cut { color: var(--orange); font-weight: 500; }
.timer-bar {
  position: relative;
  height: 28px;
  background: rgba(14,14,12,0.12);
  border: 1px solid rgba(14,14,12,0.4);
  display: flex;
  overflow: hidden;
}
.seg {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  border-right: 1px solid rgba(245,244,238,0.2);
}
.seg-1 { background: #0e0e0c; }
.seg-2 { background: #2a2a26; }
.seg-3 { background: #4a4a44; }
.seg-cut {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--orange);
}

/* Minutes */
.format-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.minute {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: transform .2s;
}
.minute:hover { transform: translateX(6px); }
.minute header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.m-num { color: var(--green); font-weight: 500; }
.m-tag {
  background: rgba(160,250,176,0.12);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 99px;
}
.minute h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.m2 { border-left: 4px solid var(--green); }
.m3 { border-left: 4px solid var(--orange); }
.m1 { border-left: 4px solid var(--pink); }

/* ============== REWARDS ============== */
.reward {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.reward .section-head { color: var(--paper); }
.reward .eyebrow { color: #b5b1a3; }
.reward-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .reward-grid { grid-template-columns: 1fr; } }
.reward-card {
  border: 1px solid var(--ink-line);
  padding: 36px 36px 40px;
  border-radius: 6px;
  position: relative;
}
.reward-primary {
  background: linear-gradient(180deg, rgba(160,250,176,0.06), transparent 60%);
  border-color: rgba(160,250,176,0.25);
}
.reward-secondary {
  background: linear-gradient(180deg, rgba(243,205,246,0.06), transparent 60%);
  border-color: rgba(243,205,246,0.22);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b5b1a3;
  border-bottom: 1px solid var(--ink-line);
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.card-tag { color: var(--paper); }
.reward-primary .card-count { color: var(--green); font-weight: 500; }
.reward-secondary .card-count { color: var(--pink); }

.reward-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reward-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.bullet-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green);
  border: 1px solid currentColor;
  padding: 4px 0;
  text-align: center;
  border-radius: 2px;
}
.reward-secondary .bullet-num { color: var(--pink); }
.reward-list h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  line-height: 1.15;
}
.reward-list p {
  margin: 0;
  color: #b5b1a3;
  font-size: 15px;
}
.card-aside {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  font-size: 14px;
  color: #b5b1a3;
  font-style: italic;
}

/* ============== SCHEDULE ============== */
.schedule {
  background: var(--paper);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.timeline {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  position: relative;
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; border-top: none; }
}
.step {
  padding: 32px 24px 36px 0;
  position: relative;
  border-right: 1px solid var(--paper-line);
}
.step:last-child { border-right: none; }
.step-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  position: absolute;
  top: -9px;
  left: 0;
}
.step.is-active .step-dot {
  background: var(--green);
  border-color: var(--ink);
  box-shadow: 0 0 0 6px rgba(160,250,176,0.35);
}
.step-final .step-dot { background: var(--orange); border-color: var(--ink); }

.step-date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.step-label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 6px 0 8px;
}
.step-note {
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .step { border-right: none; border-bottom: 1px solid var(--paper-line); padding: 24px 0; }
  .step-dot { position: static; margin-bottom: 12px; }
}

/* ============== RULES ============== */
.rules {
  background: var(--pink);
  color: var(--ink);
  padding: clamp(64px, 9vh, 110px) var(--pad-x);
}
.rules-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .rules-inner { grid-template-columns: 1fr; } }
.rules-head .section-title { max-width: 14ch; }
.rules-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(14,14,12,0.25);
}
.rules-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(14,14,12,0.25);
  align-items: start;
}
.rule-no {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 500;
  padding-top: 4px;
}
.rules-list p {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
}

/* ============== APPLY / FORM ============== */
.apply {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 9vh, 110px) var(--pad-x);
}
.apply-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 950px) { .apply-grid { grid-template-columns: 1fr; } }
.apply-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.apply-lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: #d8d4c5;
  max-width: 30ch;
  margin: 0 0 40px;
}
.apply-checklist h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
  font-weight: 500;
}
.apply-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  color: #d8d4c5;
}
.apply-checklist .cb {
  display: inline-block;
  width: 1.2em;
  color: var(--green);
}
.apply-contact {
  font-size: 14px;
  color: #b5b1a3;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.apply-contact a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* Form shell */
.form-shell {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 48px);
  position: relative;
  border: 1px solid #ddd8c8;
}
.form-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--paper-line);
}
.form-meta-tag {
  background: var(--ink);
  color: var(--green);
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.form-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1;
}
.form-sub {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 28px;
}
.req { color: var(--orange); font-style: normal; }

.fs {
  border: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--paper-line);
  padding-top: 20px;
}
.fs legend {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0 0 14px;
  margin: 0;
}
.fs-hint {
  background: rgba(160,250,176,0.25);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--ink);
  margin: 0 0 16px;
  border-left: 3px solid var(--green-deep);
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.f {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.f > span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.f .cnt {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}
.f input, .f select, .f textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid #c9c4b2;
  background: #fff;
  border-radius: 4px;
  outline: none;
  width: 100%;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.f input::placeholder, .f textarea::placeholder { color: #a8a496; }
.f input:focus, .f select:focus, .f textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(160,250,176,0.4);
}
.f textarea { resize: vertical; }

.radio-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.radio-row > span {
  font-size: 13px;
  font-weight: 500;
  flex-basis: 100%;
  margin-bottom: 4px;
}
.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.radio input { accent-color: var(--ink); }

.dropzone {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 2px dashed #c9c4b2;
  background: #fafaf3;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover { border-color: var(--ink); background: #fff; }
.dz-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dropzone b { font-weight: 500; }
.dropzone p { margin: 6px 0 0; font-size: 13px; color: var(--muted); }

.consents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-line);
}
.check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
  cursor: pointer;
}
.check input { accent-color: var(--ink); margin-top: 3px; }

.form-foot {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 14px 0 0;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px var(--pad-x) 24px;
  border-top: 1px solid var(--ink-line);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-line);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
.logo-mark-lg { width: 64px; height: 64px; }
.footer-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--green);
}
.footer-line {
  font-size: 14px;
  color: #b5b1a3;
  margin-top: 4px;
  max-width: 30ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b5b1a3;
  margin-bottom: 12px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--paper);
  margin-bottom: 8px;
  opacity: .85;
  transition: opacity .15s, color .15s;
}
.footer-cols a:hover { opacity: 1; color: var(--green); }
.footer-band {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Tweaks (panel-less light styling) — controlled by JS ===== */
body.theme-light .hero,
body.theme-light .reward,
body.theme-light .apply,
body.theme-light .site-header,
body.theme-light .site-footer {
  background: var(--paper);
  color: var(--ink);
}
