:root {
  --hero-gradient: linear-gradient(160deg, #ff4e4e 0%, #ff9a3c 45%, #ffd93d 100%);
  --accent: #e06030;
  --accent-strong: #c44a20;
  --bg: #fffaf4;
  --surface: #ffffff;
  --border: #ffe4d0;
  --text: #222222;
  --muted: #888888;
  --shadow: 0 4px 24px rgba(255, 100, 50, 0.1);
  --shadow-featured: 0 8px 32px rgba(255, 90, 50, 0.35);
}

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

body {
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: var(--hero-gradient);
  padding: 64px 24px 72px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-content {
  flex: 1;
  min-width: 0;
  text-align: center;
}
.hero-visual {
  flex: 0 0 420px;
}
.hero-visual-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
  display: block;
}
@media (max-width: 780px) {
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-visual { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.hero-definition {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.hero-definition strong { color: #fff; }

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

.hero-app-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Layout ───────────────────────────────────────────── */
.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.section { padding: 52px 0; }
.section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.section-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 24px;
}

/* ── Calculator toggle ────────────────────────────────── */
.calc-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.calc-toggle-btn {
  flex-shrink: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  margin-top: 4px;
}
.calc-toggle-btn:hover { background: var(--border); }

/* ── Calculator ───────────────────────────────────────── */
.calc-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.calc-col-labels {
  display: grid;
  grid-template-columns: 1fr 1.1fr 28px;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 28px;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.delete-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  padding: 0;
}
.delete-btn:hover { color: var(--accent-strong); background: var(--border); }
.calc-input {
  font: inherit;
  background: #fff8f4;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s;
}
.calc-input:focus { outline: none; border-color: var(--accent); }
.calc-input.name-first { background: #fff0e8; border-color: #ffb08a; }

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 6px;
}
.add-btn:hover { color: var(--accent-strong); }
.add-btn:disabled { color: var(--muted); cursor: not-allowed; }

/* ── Calculate Button ────────────────────────────────── */
.calc-action {
  text-align: center;
  margin-top: 28px;
}
.calculate-btn {
  background: var(--hero-gradient);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 16px 40px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 100, 50, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 100, 50, 0.45);
}
@keyframes calcPulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.94); }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.calculate-btn.calculating {
  animation: calcPulse 0.6s ease-out;
}

/* ── Annual calendar leaves ───────────────────────────── */
@keyframes leafIn {
  from { opacity: 0; transform: translateY(-28px) scale(0.82); }
  to   { opacity: 1; transform: translateY(0)     scale(1); }
}
.annual-section h2 { margin-bottom: 24px; }
.annual-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cal-leaf {
  width: 110px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  background: #fff;
  animation: leafIn 0.45s ease-out both;
  text-align: center;
}
.cal-leaf-header {
  background: linear-gradient(135deg, #ff4e4e, #ff9a3c);
  height: 28px;
}
.cal-leaf-day {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  padding: 14px 0 6px;
}
.cal-leaf-month {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 14px;
}

/* ── Results scroll wrapper ───────────────────────────── */
.results-scroll-wrap {
  position: relative;
}
.results-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 12px;
  right: 0;
  width: 48px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.25s;
  background: linear-gradient(to left, var(--bg), transparent);
}
.results-scroll-wrap.at-end::after { opacity: 0; }

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 6px));
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: opacity 0.2s, background 0.15s, transform 0.15s;
}
.scroll-arrow:hover { background: var(--border); transform: translateY(calc(-50% - 6px)) scale(1.1); }
.scroll-arrow:disabled { opacity: 0; pointer-events: none; }
.arrow-left  { left:  -18px; }
.arrow-right { right: -18px; }

/* ── Results ──────────────────────────────────────────── */
.results-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 20px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.results-grid::-webkit-scrollbar { display: none; }
.result-card {
  flex: 0 0 232px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 14px;
  padding: 18px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(255, 100, 50, 0.08);
}
.result-card.featured {
  background: linear-gradient(145deg, #ff5f40, #ff9a3c);
  border-color: transparent;
  box-shadow: var(--shadow-featured);
}
.result-card.past {
  background: #f3f1ee;
  border-color: #e6e2dc;
  box-shadow: none;
}
.result-card.past .result-label,
.result-card.past .result-nth,
.result-card.past .result-together,
.result-card.past .result-date,
.result-card.past .result-countdown {
  color: #9a948c;
}
.result-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.result-card.featured .result-label { color: rgba(255,255,255,0.8); }
.result-nth {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.result-card.featured .result-nth { color: #fff; }
.result-together {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.result-card.featured .result-together { color: rgba(255,255,255,0.8); }
.result-date {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.result-card.featured .result-date { color: #fff; }
.result-countdown { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.result-card.featured .result-countdown { color: rgba(255,255,255,0.82); }

.hint-section { padding: 16px 0 40px; }
.hint-text {
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}

/* ── Share button (on result cards) ──────────────────── */
.result-share {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.result-card:not(.featured) .result-share { border-top-color: var(--border); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 7px 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.share-btn:hover { background: rgba(255,255,255,0.35); }
.result-card:not(.featured) .share-btn {
  background: var(--bg);
  border-color: var(--border);
  color: var(--accent);
}
.result-card:not(.featured) .share-btn:hover { background: var(--border); }
.share-btn-icon { font-size: 0.9rem; }

/* ── Share dialog ─────────────────────────────────────── */
.share-dialog {
  border: none;
  border-radius: 16px;
  padding: 32px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  font-family: inherit;
  max-width: 420px;
  width: 92%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.share-dialog::backdrop { background: rgba(0,0,0,0.4); }
.share-dialog-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}
.share-dialog-close:hover { color: var(--text); }
.share-dialog-names {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 2px;
  line-height: 1.1;
}
.share-dialog-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 20px;
}
.share-dialog-leaves {
  justify-content: flex-start;
  margin-bottom: 20px;
}
.share-dialog-card {
  background: linear-gradient(145deg, #ff5f40, #ff9a3c);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  color: #fff;
}
.share-dialog-card .result-label { color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.share-dialog-card .result-nth { color: #fff; font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.share-dialog-card .result-together { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin-bottom: 8px; }
.share-dialog-card .result-date { color: #fff; font-size: 1.1rem; font-weight: 900; margin-bottom: 4px; }
.share-dialog-card .result-countdown { color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 600; }
.share-dialog-url-row {
  display: flex;
  gap: 8px;
}
.share-url-input {
  flex: 1;
  font: inherit;
  font-size: 0.78rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--muted);
  min-width: 0;
}
.share-copy-btn {
  flex-shrink: 0;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.share-copy-btn:hover { background: var(--accent-strong); }

/* ── Presets ──────────────────────────────────────────── */
.presets-section { padding-bottom: 0; }
.presets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preset-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
}
.preset-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.preset-emoji { font-size: 1.3rem; }
.preset-label { font-size: 0.85rem; font-weight: 700; color: var(--text); }

/* ── Delete Dialog ────────────────────────────────────── */
.delete-dialog {
  border: none;
  border-radius: 14px;
  padding: 28px 28px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  font-family: inherit;
  max-width: 320px;
  width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.delete-dialog::backdrop {
  background: rgba(0,0,0,0.35);
}
.delete-dialog-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.delete-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.dialog-btn {
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.dialog-btn-cancel {
  background: var(--border);
  color: var(--text);
}
.dialog-btn-cancel:hover { background: #f0d8c0; }
.dialog-btn-confirm {
  background: #e03030;
  color: #fff;
}
.dialog-btn-confirm:hover { background: #b82020; }

.results-summary {
  margin-bottom: 22px;
}
.summary-line {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.summary-line + .summary-line {
  margin-top: 6px;
}
.summary-date {
  font-weight: 800;
  color: var(--accent);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 7px;
  white-space: nowrap;
}
.share-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ── Save Button ──────────────────────────────────────── */
.save-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.15s;
}
.save-btn:hover { background: var(--accent-strong); }

/* ── Saved Calculations ───────────────────────────────── */
.saved-section { padding-top: 40px; padding-bottom: 8px; }
.saved-section h2 { margin-bottom: 16px; }
.saved-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.saved-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 36px 14px 16px;
  min-width: 150px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.saved-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.saved-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 6px;
}
.saved-names {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.saved-dates {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}
.saved-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  transition: color 0.15s, background 0.15s;
}
.saved-delete:hover { color: var(--accent-strong); background: var(--border); }

/* ── Celebrities ──────────────────────────────────────── */
.celebs-section { padding-top: 48px; }
.celebs-filter-row { margin-bottom: 16px; }
.celebs-filter-input {
  width: 100%;
  max-width: 320px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.15s;
}
.celebs-filter-input:focus { border-color: var(--accent); }
.celebs-grid-wrap {
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.celebs-grid-wrap.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.celebs-toggle-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.celebs-toggle-btn:hover { border-color: var(--accent); background: var(--surface); }
.celebs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.celeb-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.celeb-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.celeb-emoji { font-size: 1.6rem; }
.celeb-names { font-size: 0.75rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.celeb-mb-preview { font-size: 0.65rem; color: var(--muted); font-weight: 600; line-height: 1.2; margin-top: 2px; }
.celeb-no-results { color: var(--muted); font-size: 0.88rem; padding: 12px 0; }
.celeb-hint { margin-top: 12px; font-size: 0.75rem; color: var(--muted); text-align: center; }

/* ── App Section ──────────────────────────────────────── */
.app-section {
  background: var(--hero-gradient);
  padding: 52px 24px;
  text-align: center;
}
.app-section h2 { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.app-sub { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-bottom: 24px; }
.app-buttons { display: flex; justify-content: center; gap: 16px; }
.app-btn {
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.15s;
}
.app-btn:hover { transform: translateY(-2px); }
.app-btn-icon { font-size: 1.6rem; }
.app-badge-link { display: inline-flex; transition: transform 0.15s; }
.app-badge-link:hover { transform: translateY(-2px); }
.app-badge-img { height: 56px; width: auto; display: block; }
.app-btn-text { text-align: left; }
.app-btn-text small { display: block; font-size: 0.62rem; color: var(--muted); line-height: 1; }
.app-btn-text strong { display: block; font-size: 0.9rem; color: var(--text); line-height: 1.4; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 820px) {
  .celebs-grid  { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .calc-col-labels { display: none; }
  .calc-row { grid-template-columns: 1fr; gap: 6px; position: relative; padding-right: 40px; }
  .delete-btn { position: absolute; right: 0; top: 8px; }
}
@media (max-width: 480px) {
  .celebs-grid { grid-template-columns: repeat(2, 1fr); }
  .app-buttons { flex-direction: column; align-items: center; }
}

/* ── Language switcher ──────────────────────────────────── */
.lang-switcher {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 1000;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  color: var(--text);
  line-height: 1.4;
}

.lang-btn:hover {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.lang-caret {
  font-size: 10px;
  opacity: 0.5;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 4px;
  margin: 0;
  min-width: 130px;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 6px;
  color: var(--text);
}

.lang-option:hover {
  background: var(--bg);
}

/* ── Hero icon ──────────────────────────────────────────── */
.hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ── Imprint Footer ──────────────────────────────────── */
.imprint-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0 24px;
  margin-top: 8px;
}
.imprint-inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.imprint-heading {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
.imprint-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 18px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.imprint-cols p { margin: 0; }
.imprint-tmg { font-weight: 700; color: var(--text); }
.imprint-cols a { color: var(--accent); text-decoration: none; }
.imprint-cols a:hover { text-decoration: underline; }

/* ── Coming Soon Toast ───────────────────────────────── */
.coming-soon-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  z-index: 9999;
}
.coming-soon-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
