/* FindFields — shared styles */

:root {
  --bg: #0a0a0b;
  --bg-elev: #121214;
  --surface: #18181b;
  --border: #27272a;
  --text: #fafafa;
  --text-dim: #a1a1aa;
  --text-faint: #71717a;
  /* Accent = colore dell'app FindFields: blu di sistema Apple (variante dark #0A84FF) */
  --accent: #0a84ff;
  --accent-dim: #0070e0;
  --accent-ink: #ffffff;
  --confirmed: #34c759;
  --proposed: #ff9f0a;
  --max-width: 760px;
  --radius: 14px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Helvetica, Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  /* Feel nativo su telefono: niente flash al tap, niente bounce orizzontale */
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  color: var(--accent-dim);
}

/* ---------- Landing (index) ---------- */

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at 50% 35%,
    rgba(10, 132, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.landing__content {
  position: relative;
  z-index: 1;
  animation: rise 0.7s ease both;
}

.landing__logo {
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.landing__logo span {
  color: var(--accent);
}

.landing__subtitle {
  margin-top: 1rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 400;
}

.landing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.landing__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.5);
  animation: pulse 2s infinite;
}

.landing__links {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 1;
}

.landing__links a {
  color: var(--text-faint);
}

.landing__links a:hover {
  color: var(--text);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(10, 132, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 132, 255, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Legal pages ---------- */

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.page__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.page__brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page__brand span {
  color: var(--accent);
}

.page__back {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.page__back:hover {
  color: var(--text);
}

.page h1 {
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page__updated {
  margin-top: 0.6rem;
  margin-bottom: 2.5rem;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.page h2 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.page h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.page p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.page ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.page li {
  color: var(--text-dim);
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.page li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.page strong {
  color: var(--text);
  font-weight: 600;
}

/* Editable placeholders */
.ph {
  display: inline-block;
  padding: 0.05em 0.45em;
  border-radius: 6px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px dashed rgba(10, 132, 255, 0.4);
  color: var(--accent);
  font-size: 0.92em;
  font-weight: 500;
}

.page__footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.page__footer a {
  color: var(--text-faint);
}

.page__footer a:hover {
  color: var(--text);
}

/* ============================================================
   Informative site (index)
   ============================================================ */

:root {
  --site-max: 1120px;
  --accent-soft: rgba(10, 132, 255, 0.12);
  --accent-line: rgba(10, 132, 255, 0.32);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #0a0a0b;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header {
  padding-top: env(safe-area-inset-top);
}
.site-header__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0.85rem max(1.5rem, env(safe-area-inset-right))
    0.85rem max(1.5rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-brand:hover {
  color: var(--text);
}
.site-brand__logo {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.site-brand__name {
  /* Wordmark attaccato: "Find" blu accent, "Fields" testo */
  color: var(--text);
  letter-spacing: -0.03em;
}
.site-brand__name span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.site-nav__links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav__links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--accent-dim);
  color: #ffffff;
}
.btn--ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent-line);
  color: var(--text);
}
.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Layout helpers ---------- */

.section {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section__head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.section__head h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section__head p {
  margin-top: 0.9rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}

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

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    760px circle at 72% 12%,
    rgba(10, 132, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.hero__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.hero__badge .landing__dot {
  margin: 0;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero h1 span {
  color: var(--accent);
}
.hero__sub {
  margin-top: 1.25rem;
  color: var(--text-dim);
  font-size: 1.12rem;
  max-width: 30ch;
}
.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__meta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__visual svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* ---------- Steps / user flow ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.step__icon {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--text-faint);
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.step p {
  color: var(--text-dim);
  font-size: 0.93rem;
}
.step__arrow {
  display: none;
}

/* ---------- Features ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.feature__art {
  border-radius: 12px;
  background: linear-gradient(165deg, #1b1b1f, #131316);
  border: 1px solid var(--border);
  padding: 1.1rem;
  overflow: hidden;
}
.feature__art svg {
  display: block;
  width: 100%;
  height: auto;
}
.feature h3 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature p {
  color: var(--text-dim);
  font-size: 0.96rem;
  margin-top: -0.6rem;
}

/* ---------- Roles split ---------- */

.roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.role {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.role__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.role h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.role ul {
  list-style: none;
}
.role li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--text-dim);
}
.role li svg {
  position: absolute;
  left: 0;
  top: 0.25em;
  color: var(--accent);
}

/* ---------- Roadmap (In arrivo) ---------- */

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.roadmap-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.roadmap-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.roadmap-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.roadmap-card__icon {
  color: var(--accent);
}
.roadmap-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.roadmap-card p {
  color: var(--text-dim);
  font-size: 0.96rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  max-width: var(--site-max);
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}
.cta-band__inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(10, 132, 255, 0.1), var(--bg-elev) 60%);
  padding: 3.25rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.cta-band p {
  color: var(--text-dim);
  margin: 0.9rem auto 1.8rem;
  max-width: 48ch;
}

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

.site-footer {
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 2.5rem max(1.5rem, env(safe-area-inset-right))
    calc(2.5rem + env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
}
.site-footer__links a {
  color: var(--text-faint);
}
.site-footer__links a:hover {
  color: var(--text);
}

/* ---------- Feature list (sezione "In arrivo" su index) ---------- */

.coming__features {
  list-style: none;
  margin: 2.5rem auto;
  max-width: 420px;
  text-align: left;
  display: grid;
  gap: 0.9rem;
}
.coming__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dim);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}
.coming__features li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15em;
}
.coming__features strong {
  color: var(--text);
  font-weight: 600;
}
/* ---------- Form primitives (usati dal portale) ---------- */

.field {
  display: grid;
  gap: 0.45rem;
}
.field__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}
.btn--block {
  width: 100%;
  padding: 0.8rem 1.15rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__visual svg {
    max-width: 280px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav__links,
  .site-nav .btn--ghost {
    display: none;
  }
  .site-nav__toggle {
    display: flex;
  }
  .site-nav[data-open="true"] .site-nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1.25rem;
  }
  .site-nav[data-open="true"] .site-nav__links li {
    border-top: 1px solid var(--border);
  }
  .site-nav[data-open="true"] .site-nav__links a {
    display: block;
    padding: 0.85rem 0;
  }
  .site-header__inner {
    position: relative;
  }
  .features,
  .roles {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 460px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

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

/* ============================================================
   Pagina Chi siamo
   ============================================================ */

/* ---------- Chi siamo: fondatori ---------- */

.about-hero .section__head { margin-bottom: 2.5rem; }

.founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.founder {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.founder__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.founder h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.founder p { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.25rem; }

.about-mission { margin-left: auto; margin-right: auto; margin-top: 2.5rem; }

@media (max-width: 560px) {
  .founders { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  padding: 1rem max(1.25rem, env(safe-area-inset-right))
    calc(1rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  animation: cookie-rise 0.35s ease both;
}
@keyframes cookie-rise { from { transform: translateY(100%); } to { transform: none; } }

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-dim);
}
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.cookie-btn--ghost { background: transparent; color: var(--text); }
.cookie-btn--ghost:hover { border-color: var(--text-faint); }
.cookie-btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.cookie-btn--primary:hover { filter: brightness(1.05); }

@media (max-width: 560px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions .cookie-btn { flex: 1; }
}
