/* Hello Brands: Amazon Titel-Check
   Designsystem "Der Verhandlungstisch": Navy-Tiefe, Coral-Akzent, Inter, fail-open. */

@font-face {
  font-family: "Inter Variable";
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --navy: #192A46;
  --navy-deep: #0E1A30;
  --navy-mist: #C2CCE0;
  --navy-faded: #93A4C4;
  --navy-wash: #F3F5F9;
  --coral: #EC7E50;
  --coral-ember: #D4633A;
  --coral-glow: #F3A17E;
  --coral-earth: #A94C2C;
  --paper: #F7F9FC;
  --card: #FDFDFE;
  --ink: #0F172A;
  --ink-muted: #64748B;
  --line: #E2E8F0;
  --r-md: 4.8px;
  --r-lg: 6px;
  --r-xl: 8.4px;
  --r-2xl: 10.8px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  font-family: "Inter Variable", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--ink);
  background: var(--paper);
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

/* ---------- Typografie ---------- */

.display {
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fff;
}
.headline {
  font-size: clamp(1.875rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.title { font-size: 1.25rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.025em; }
.kicker {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-earth);
  margin-bottom: 14px;
}
.kicker--glow { color: var(--coral-glow); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: var(--r-lg);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-ember); box-shadow: 0 10px 15px -3px rgba(236, 126, 80, 0.2); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #1D2942; box-shadow: 0 10px 15px -3px rgba(25, 42, 70, 0.2); }
.btn--sm { height: 28px; padding: 0 12px; font-size: 0.875rem; }
.btn--xl { height: 48px; }
.btn__arrow { transition: transform 200ms var(--ease); }
.btn:hover .btn__arrow { transform: translateX(2px); }
.btn[disabled] { cursor: wait; opacity: 0.85; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 26, 48, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.wordmark { display: inline-flex; align-items: center; }
.wordmark__logo { height: 32px; width: auto; filter: brightness(0) invert(1); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: clamp(64px, 9vw, 112px) 0 clamp(56px, 7vw, 80px);
}
.hero__sub { max-width: 42rem; margin-top: 20px; color: var(--navy-mist); font-size: 1.0625rem; }
.hero__trust { margin-top: 12px; font-size: 0.875rem; color: var(--navy-faded); }
.hero__trust--warn { color: var(--coral-glow); }

/* Rotierendes Coral-Wort (reine CSS-Animation, fail-open: erstes Wort sichtbar) */
.rotator { display: inline-grid; }
.rotator span { grid-area: 1 / 1; color: var(--coral); opacity: 0; }
.rotator span:nth-child(1) { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .rotator span { animation: word-cycle 6.6s infinite; }
  .rotator span:nth-child(1) { animation-delay: 0s; }
  .rotator span:nth-child(2) { animation-delay: 2.2s; }
  .rotator span:nth-child(3) { animation-delay: 4.4s; }
}
@keyframes word-cycle {
  0% { opacity: 0; transform: translateY(0.35em); }
  4%, 31% { opacity: 1; transform: none; }
  35%, 100% { opacity: 0; transform: translateY(-0.35em); }
}

/* Formular auf Navy */
.check-form { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.field {
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-lg);
  color: #fff;
  padding: 0 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field:focus, .field:focus-visible {
  outline: none;
  border-color: var(--coral-glow);
  box-shadow: 0 0 0 3px rgba(243, 161, 126, 0.3);
}
.field--mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0.05em; text-transform: uppercase; }
.field--mono::placeholder { color: var(--navy-faded); text-transform: none; }
#asin-input { flex: 2 1 200px; min-width: 170px; }

.select { position: relative; flex: 1.3 1 170px; min-width: 160px; }
.select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  color: #fff;
}
.select__value { display: inline-flex; align-items: center; gap: 8px; overflow: hidden; white-space: nowrap; }
.select__value img, .select__list img { height: 15px; width: 20px; border-radius: 2px; object-fit: cover; flex: none; }
.select__list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 40px rgba(14, 26, 48, 0.35);
  list-style: none;
  padding: 5px;
}
.select__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--ink);
  white-space: nowrap;
}
.select__list li:hover, .select__list li[aria-selected="true"] { background: var(--navy-wash); }

#submit-btn { flex: 1 1 170px; min-width: 160px; }
.check-form__keywords { flex: 1 1 100%; }
.check-form__keywords::placeholder { color: var(--navy-faded); }

/* Fehler auf Navy */
.error-banner {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-xl);
  padding: 14px 16px;
}
.error-banner p { color: #fff; font-weight: 500; }

/* Laden */
.loading { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--navy-mist); }
.spinner {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex: none;
}
.spinner--mist { width: 17px; height: 17px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Stat-Tiles */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-top: clamp(40px, 6vw, 64px); }
.stat-tile {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 16px;
  color: #fff;
}
.stat-tile strong { display: block; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.025em; }
.stat-tile span { font-size: 0.875rem; color: var(--navy-faded); }

/* ---------- Ergebnis (Paper) ---------- */

.results { background: var(--paper); padding: clamp(56px, 8vw, 96px) 0; }
.results .headline { color: var(--navy); margin-bottom: 32px; }

.results__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 880px) {
  .results__grid { grid-template-columns: 320px 1fr; align-items: start; }
}

/* Produkt-Podest: das einzige inszenierte Objekt */
.podium { position: relative; }
.podium__stage {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(14, 26, 48, 0.6);
}
.podium__stage::before {
  content: "";
  position: absolute;
  inset: auto 15% -22px 15%;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(236, 126, 80, 0.35), transparent 70%);
  z-index: -1;
}
.podium__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.podium__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  background: var(--navy-wash);
  border-radius: var(--r-xl);
  color: var(--ink-muted);
  font-size: 0.875rem;
}
.podium__brand { margin-top: 16px; font-weight: 600; letter-spacing: -0.025em; color: var(--navy); }
.podium__meta { margin-top: 4px; font-size: 0.875rem; color: var(--ink-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.podium__link { display: inline-block; margin-top: 12px; font-size: 0.875rem; color: var(--coral-earth); text-decoration: none; font-weight: 500; }
.podium__link:hover { color: var(--coral-ember); text-decoration: underline; }

/* Karten */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 16px;
  transition: box-shadow 200ms var(--ease);
}
.card:hover { box-shadow: 0 4px 6px -1px rgba(14, 26, 48, 0.08); }
.card:last-child { margin-bottom: 0; }

.card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.card__label { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.card--suggest .card__label { color: var(--coral-earth); }
.card__count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--navy-wash);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: var(--r-md);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.card__count--over { background: var(--coral); color: #fff; }

.card__text { line-height: 1.625; word-break: break-word; color: var(--ink); }
.card__text .overflow-mark { background: rgba(236, 126, 80, 0.18); color: var(--coral-earth); border-radius: 2px; box-shadow: 0 1px 0 var(--coral); }

.card__edit {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--ink);
  background: var(--card);
  resize: none;
  overflow: hidden;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.card__edit:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(236, 126, 80, 0.15); }

.card__bar { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; margin-top: 12px; }
.card__bar-fill { height: 100%; background: var(--navy); transition: width 300ms var(--ease), background-color 300ms var(--ease); }
.card__bar-fill--over { background: var(--coral); }

.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
/* Auch nach Flex-Umbruch (lange Begründung) bleibt der Button rechtsbündig */
.card__foot .card__copy-btn { margin-left: auto; }
.card__rationale { font-size: 0.875rem; color: var(--ink-muted); max-width: 32rem; }
.card__rationale::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--coral); border-radius: 1.5px; margin-right: 8px; vertical-align: 2px; }

/* Analyse */
.analysis { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
@media (min-width: 880px) { .analysis { grid-template-columns: 1fr 1fr; } }
.analysis__col { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(20px, 3vw, 32px); }
.analysis__col .title { color: var(--navy); }
.analysis__hint { font-size: 0.875rem; color: var(--ink-muted); margin: 6px 0 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 14px 0 8px;
}
#user-keywords-block .chips { margin-bottom: 4px; }
.chip em { font-style: normal; font-weight: 400; color: var(--coral-earth); margin-left: 5px; font-size: 0.8125rem; }
.chip--dropped em { color: var(--ink-muted); }
.chip {
  font-size: 0.875rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--navy-wash);
  color: var(--navy);
  font-weight: 500;
}
.chip--dropped { background: transparent; border: 1px solid var(--line); color: var(--ink-muted); text-decoration: line-through; font-weight: 400; }

.bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: baseline; font-size: 0.9375rem; color: var(--ink); }
.bullets__count {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  flex: none;
  padding: 2px 8px;
  border-radius: var(--r-md);
  background: var(--navy-wash);
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.bullets__count--fit { background: var(--navy); color: #fff; }
.bullets__empty { color: var(--ink-muted); font-size: 0.9375rem; }

/* Ergebnis-Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: rise 500ms var(--ease) both; }
  .reveal:nth-child(2) { animation-delay: 60ms; }
  .reveal:nth-child(3) { animation-delay: 120ms; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- So funktioniert es (Wash) ---------- */

.how { background: var(--navy-wash); padding: clamp(56px, 8vw, 96px) 0; }
.how .headline { color: var(--navy); margin-bottom: 40px; }

/* Ein Panel, drei gleichwertige Spalten mit Hairline-Trennern: eine
   komponierte Fläche statt einzelner Kacheln. */
.process {
  background: linear-gradient(170deg, #22355a 0%, var(--navy) 45%, var(--navy-deep) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.process__steps { display: grid; grid-template-columns: 1fr; }
.process__step {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.process__step:first-child { border-top: none; }
.process__num {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--coral-glow);
}
.process__step .title { color: #fff; margin: 10px 0 8px; }
.process__step p { color: var(--navy-mist); font-size: 0.9375rem; }

/* Motivzone: in allen Spalten gleich hoch, unten bündig */
.process__motif {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 150px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 20px;
}
.process__step p + .process__motif { margin-top: 24px; }

.process__foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--navy-mist);
  font-size: 0.9375rem;
}
.process__foot-stat {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

@media (min-width: 880px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__step { border-top: none; border-left: 1px solid rgba(255, 255, 255, 0.1); }
  .process__step:first-child { border-left: none; }
}

/* Abstrakte Motive */
.mock-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.07em;
  color: #fff;
}
.mock-input__caret { width: 2px; height: 1.1em; background: var(--coral); margin-left: 3px; }
@media (prefers-reduced-motion: no-preference) {
  .mock-input__caret { animation: caret-blink 1.1s steps(1) infinite; }
}
@keyframes caret-blink { 50% { opacity: 0; } }
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--navy-mist);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
}
.mock-pill__flag { width: 18px; height: 13px; border-radius: 2px; background: linear-gradient(180deg, #26282b 33%, #d92b2b 33% 66%, #f0c53f 66%); }

.mock-bars { display: flex; align-items: flex-end; gap: 14px; height: 110px; }
.mock-bars span {
  width: 30px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
}
.mock-bars span:nth-child(1) { height: 38%; }
.mock-bars span:nth-child(2) { height: 60%; }
.mock-bars span:nth-child(3) { height: 100%; }
.mock-bars span:nth-child(4) { height: 52%; }
.mock-bars span.is-coral { background: linear-gradient(180deg, var(--coral-glow), var(--coral-ember)); }

.mock-slider { position: relative; width: 82%; height: 5px; background: rgba(255, 255, 255, 0.18); border-radius: 999px; }
.mock-slider:nth-of-type(1) .mock-slider__knob { left: 34%; }
.mock-slider:nth-of-type(2) .mock-slider__knob { left: 68%; }
.mock-slider__knob {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--coral);
}

/* ---------- CTA-Band (Navy) ---------- */

.cta-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band .headline { color: #fff; }
.cta-band__sub { max-width: 34rem; color: var(--navy-mist); margin: 14px 0 0; }
.cta-band__grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); }
@media (min-width: 880px) { .cta-band__grid { grid-template-columns: 1fr 1.1fr; align-items: start; } }

/* Angebots-Formular auf Navy */
.offer {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dropzone {
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  color: var(--navy-mist);
  cursor: pointer;
  transition: border-color 200ms var(--ease), background-color 200ms var(--ease);
}
.dropzone:hover, .dropzone:focus-visible, .dropzone.dragover {
  border-color: var(--coral-glow);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}
.dropzone__idle svg { color: var(--coral-glow); margin-bottom: 8px; }
.dropzone__idle p { margin: 0; }
.dropzone__idle strong { color: #fff; font-weight: 500; }
.dropzone__hint { font-size: 0.875rem; color: var(--navy-faded); margin-top: 4px !important; }
.dropzone__file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-weight: 500;
  word-break: break-all;
  text-align: left;
}
.dropzone__remove {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-md);
  color: var(--navy-mist);
  font-family: inherit;
  font-size: 0.8125rem;
  padding: 4px 10px;
  cursor: pointer;
  flex: none;
}
.dropzone__remove:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.offer__marketplaces { border: none; }
.offer__marketplaces legend { color: var(--navy-mist); font-size: 0.875rem; margin-bottom: 10px; padding: 0; }
.segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented button {
  height: 40px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-lg);
  color: var(--navy-mist);
  font-family: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
}
.segmented button:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.segmented button[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); color: #fff; }

.offer__email { width: 100%; }
.offer__email::placeholder { color: var(--navy-faded); }
.offer__submit { width: 100%; }
.offer__note { font-size: 0.8125rem; color: var(--navy-faded); text-align: center; }
.offer__error { color: var(--coral-glow); font-size: 0.9375rem; font-weight: 500; text-align: center; }

.offer--success { align-items: center; text-align: center; padding: clamp(36px, 5vw, 56px) 28px; }
.offer__check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer--success .title { color: #fff; }
.offer__success-text { color: var(--navy-mist); max-width: 26rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: clamp(40px, 6vw, 56px) 0 32px; }

.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; } }

.site-footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
.site-footer__brand p { color: var(--navy-mist); font-size: 0.875rem; margin-top: 16px; max-width: 24rem; }
.site-footer__brand .site-footer__legal { color: var(--navy-faded); }

.site-footer__group { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 12px; }
.site-footer nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer nav a { color: var(--navy-mist); font-size: 0.875rem; text-decoration: none; transition: color 200ms var(--ease); }
.site-footer nav a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 720px) { .site-footer__bottom { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.site-footer__copyright { color: var(--navy-faded); font-size: 0.8125rem; }

.newsletter { display: flex; gap: 8px; }
.newsletter .field { width: 240px; max-width: 60vw; }
.newsletter .field::placeholder { color: var(--navy-faded); }
.newsletter__btn { width: 48px; padding: 0; flex: none; }
.newsletter__note { font-size: 0.8125rem; color: var(--navy-faded); margin-top: 8px; }
.newsletter__note a { color: var(--navy-mist); }
.newsletter__note--success { color: var(--coral-glow); }
@media (min-width: 720px) { .site-footer__newsletter { text-align: right; } }
