* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background: linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
}

a,
a:visited {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

.maxwell-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: var(--maxwell-opacity);
}

.maxwell-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 420px at 28% 42%, var(--maxwell-glow), transparent 72%);
  mask-image: linear-gradient(to bottom, transparent 0 12%, black 20% 70%, transparent 82% 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0 12%, black 20% 70%, transparent 82% 100%);
}

.maxwell-bg .gate {
  position: absolute;
  left: 34%;
  top: 22%;
  height: 42%;
  width: 2px;
  background: var(--maxwell-gate);
}

.maxwell-bg .line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: var(--maxwell-line);
  transform-origin: right center;
}

.maxwell-bg .pass {
  top: 58%;
  left: 8%;
  width: 55%;
  transform: none;
  transform-origin: left center;
  background: var(--maxwell-pass);
}

.maxwell-bg .hit-1 { top: 31%; left: 8%; width: 26%; transform: rotate(11deg); }
.maxwell-bg .hit-2 { top: 43%; left: 8%; width: 26%; transform: rotate(5deg); }

.maxwell-bg .reflect-1 {
  top: 31%;
  left: 22%;
  width: 12%;
  transform: rotate(-24deg);
  transform-origin: right center;
  background: var(--maxwell-reflect);
}

.maxwell-bg .reflect-2 {
  top: 43%;
  left: 20%;
  width: 14%;
  transform: rotate(-13deg);
  transform-origin: right center;
  background: var(--maxwell-reflect);
}

.maxwell-bg .hit-dot {
  position: absolute;
  left: calc(34% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--maxwell-hit);
  box-shadow: 0 0 8px var(--maxwell-hit-shadow);
}

.maxwell-bg .d1 { top: 31%; }
.maxwell-bg .d2 { top: 43%; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-3);
  backdrop-filter: blur(10px);
}

.nav {
  height: 74px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
}

.brand:hover { text-decoration: none; }

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  filter: var(--logo-filter);
  background: var(--logo-bg);
  border: 1px solid var(--logo-border);
  padding: 6px;
}

.nav-links {
  display: inline-flex;
  gap: 26px;
  justify-self: center;
  font-size: 13px;
}

.nav-links a {
  color: var(--nav-link);
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--nav-link-hover); text-decoration: none; }
.nav-dropdown {
  position: relative;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.nav-top {
  display: inline-flex;
  align-items: center;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  display: none;
  z-index: 30;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: #0f121a;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  white-space: nowrap;
  color: #e8ebf2;
}
.dropdown-menu a:hover {
  background: #1b2130;
  color: #ffffff;
  text-decoration: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-actions {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-white,
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.btn-dark {
  border-color: var(--border-strong);
  color: var(--btn-secondary-text);
  background: var(--surface-1);
}

main { padding-bottom: 70px; }

.hero {
  padding-top: 98px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  color: var(--eyebrow-text);
  border: 1px solid var(--accent-soft);
  background: var(--eyebrow-bg);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1 {
  margin: 22px auto 16px;
  max-width: 980px;
  font-size: clamp(42px, 8.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-align: center;
  text-wrap: balance;
}

.hero .sub-strong {
  color: var(--heading-dim);
  display: block;
  text-align: center;
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

.hero-ctas {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof {
  margin: 30px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.proof-item {
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-1);
  color: var(--proof-text);
  font-size: 12px;
  padding: 8px 10px;
  text-align: center;
}

section {
  padding-top: 86px;
}

.section-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-sub {
  margin: 0 auto 30px;
  text-align: center;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
  padding: 22px;
  overflow: hidden;
  min-height: 200px;
}

.card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--maxwell-glow), transparent 66%);
  filter: blur(3px);
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 36%, rgba(59, 130, 246, 0.06) 56%, transparent 66%);
  transform: translateX(-45%);
  transition: transform .65s ease;
  pointer-events: none;
}

.card:hover::after { transform: translateX(25%); }

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface-1);
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.sub-card p + p {
  margin-top: 12px;
}

.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.compare-group {
  margin-bottom: 52px;
}

.compare-card-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent);
}

.compare-category-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 16px;
}

.arch {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.1fr 0.9fr;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li { margin: 8px 0; }

.metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric {
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--surface-1);
  padding: 14px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.cta {
  margin-top: 90px;
  border-radius: 22px;
  border: 1px solid var(--accent-soft);
  background: linear-gradient(180deg, var(--eyebrow-bg), var(--surface-2));
  padding: 36px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 66%);
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

article:not(.card) {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 40px;
}

.subpage-hero {
  padding-top: 72px;
}

.subpage-hero h1 {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(36px, 6.5vw, 68px);
}

.subpage-subheadline {
  margin: 14px auto 0;
  max-width: 860px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}
.hero-body {
  margin: 20px auto 0;
  max-width: 680px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.founder-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.founder-bio { flex: 1; }
.founder-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
@media (max-width: 600px) {
  .founder-card { flex-direction: column; align-items: center; }
}

.sub-section {
  padding-top: 56px;
}

.sub-section .section-title {
  margin-bottom: 14px;
}

.subpage-cta .section-title {
  margin-top: 0;
}

.sub-card p:first-child,
.sub-card ul:first-child,
.sub-card ol:first-child,
.sub-card table:first-child {
  margin-top: 0;
}

.sub-feature-grid {
  gap: 14px;
}

.billing-toggle {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 4px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-1);
  display: inline-flex;
  gap: 4px;
}

.billing-option {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.billing-option span {
  color: var(--accent);
  font-weight: 700;
}

.billing-option.is-active {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.billing-option.is-active span {
  color: inherit;
}

.card-link {
  display: block;
  color: var(--text);
  text-decoration: none;
}

.card-link:visited,
.card-link:hover,
.card-link:active {
  color: var(--text);
  text-decoration: none;
}

.card-link .card {
  height: 100%;
}

.card-link .sub-feature-card h3 {
  color: var(--text) !important;
}

.card-link .sub-feature-card p,
.card-link .sub-feature-card li {
  color: var(--muted) !important;
}

.card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.card-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  gap: 20px;
}

.card-testimonial blockquote {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  quotes: none;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border-strong);
  padding-top: 16px;
}

.testimonial-attr strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-attr span {
  font-size: 13px;
  color: var(--muted);
}

.sub-feature-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.sub-card ul,
.sub-card ol {
  padding-left: 20px;
}

.sub-card li {
  margin: 7px 0;
}

.sub-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}

.sub-card th,
.sub-card td {
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  text-align: left;
}

.ai-teams-table td,
.ai-teams-table th {
  transition: background-color .2s ease, color .2s ease;
}

.ai-teams-table .ai-cell-yes {
  background: var(--ai-soft-yes-bg);
  color: var(--ai-soft-yes-text);
}

.ai-teams-table .ai-cell-no {
  background: var(--ai-soft-no-bg);
  color: var(--ai-soft-no-text);
}

.ai-teams-table .ai-cell-neutral {
  background: var(--ai-soft-neutral-bg);
  color: var(--ai-soft-neutral-text);
}

.sub-card blockquote {
  margin: 10px 0;
  padding: 10px 14px;
  border-left: 3px solid var(--accent);
  background: var(--surface-1);
  border-radius: 8px;
}

.sub-card a[href="/roi-calculator/"],
.sub-card a[href="/roi-calculator/"]:visited,
.sub-card a[href="/roi-calculator/"]:hover,
.sub-card a[href="/roi-calculator/"]:active {
  color: var(--text);
}

.llm-version-link,
.llm-version-link:visited {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  opacity: .6;
}

.llm-version-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.sub-card a[href^="https://docs.fairvisor.com"] {
  font-size: 14px;
}

.sub-card a[href^="https://docs.fairvisor.com"]::after {
  content: " ↗";
  font-size: 10px;
  opacity: .7;
}

.roi-calc-grid {
  align-items: start;
}

.roi-card h3 {
  margin-bottom: 14px;
}

.roi-field-label {
  display: block;
  margin: 12px 0 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.roi-input {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--surface-1);
  color: var(--text);
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.roi-input:hover {
  border-color: var(--border-mid);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface-1);
}

.roi-input:focus-visible {
  outline: 2px solid transparent;
  border-color: var(--accent);
  box-shadow:
    0 0 0 3px var(--accent-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button {
  margin: 0;
}

.roi-metric-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.roi-metric-list .metric {
  text-align: left;
}

.roi-metric-list .metric strong {
  margin-top: 4px;
  font-size: 24px;
}

.roi-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.roi-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.roi-summary-table th,
.roi-summary-table td {
  border: 1px solid var(--border-soft);
  padding: 10px;
  text-align: left;
}

.roi-payback {
  margin: 14px 0 0;
  font-size: 16px;
}

.pricing-tier-card {
  display: flex;
  flex-direction: column;
}

.pricing-tier-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft), 0 16px 38px rgba(15, 23, 42, 0.22);
}

.pricing-tier-body {
  flex: 1;
}

.pricing-tier-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: var(--eyebrow-bg);
  color: var(--eyebrow-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.pricing-tier-price {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.pricing-tier-price-main {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.pricing-tier-price-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.pricing-tier-price-sub.is-hidden {
  display: none;
}

.pricing-tier-cta {
  margin-top: 14px;
}

.pricing-tier-cta .btn {
  width: 100%;
}

.faq-grid {
  gap: 16px;
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
}

h1, h2, h3 { line-height: 1.15; }
h1 { font-size: clamp(34px, 5vw, 54px); margin: 0 0 20px; }
h2 { margin-top: 34px; }

/* Keep homepage hero heading centered after global h1 defaults. */
.hero h1 {
  margin: 22px auto 16px;
}

pre, code { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
pre {
  border: 1px solid var(--border-mid);
  background: var(--code-bg);
  color: var(--code-text);
  border-radius: 12px;
  padding: 14px;
  overflow: auto;
}

footer {
  margin-top: 86px;
  border-top: 1px solid var(--border-soft);
  padding: 26px 0 44px;
  color: var(--footer-text);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--footer-title);
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-meta a { color: var(--footer-text); text-decoration: none; font-size: 13px; }
.footer-social { display: inline-flex; gap: 8px; align-items: center; }
.social-pill { border: 1px solid var(--border-soft); border-radius: 999px; padding: 4px 8px; font-size: 12px; color: var(--footer-text); text-decoration: none; background: var(--surface-1); }
.social-pill:hover { text-decoration: none; }

/* 404 */
.not-found { min-height: 72vh; display: flex; align-items: center; text-align: center; padding: 80px 0; }
.not-found .container { display: flex; flex-direction: column; align-items: center; }
.not-found-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.not-found-title { font-size: clamp(28px, 5vw, 48px); margin-bottom: 10px; }
.not-found-sub { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.not-found-terminal { background: var(--surface-1); border: 1px solid var(--border); border-radius: 10px; padding: 28px 36px; text-align: left; font-family: var(--mono); font-size: 13px; line-height: 2; margin-bottom: 40px; max-width: 520px; width: 100%; overflow-x: auto; }
.not-found-terminal code { display: block; }
.t-dim   { color: var(--muted); }
.t-status { color: #e5534b; font-weight: 600; }
.t-key  { color: var(--fg); }
.t-val  { color: var(--accent); }
.t-muted { color: var(--muted); }
.not-found-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.not-found-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; }
.not-found-links a { color: var(--muted); }
.not-found-links a:hover { color: var(--accent); }

@media (max-width: 1050px) {
  .hero-proof,
  .grid-4,
  .grid-3,
  .arch { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { justify-self: start; margin-left: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(1120px, calc(100% - 24px)); }
  .nav { height: auto; padding: 10px 0; grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { padding-top: 70px; }
  .hero-proof,
  .grid-2,
  .grid-4,
  .grid-3,
  .arch,
  .metrics { grid-template-columns: 1fr; }
  h1 { font-size: clamp(38px, 13vw, 56px); }
  section { padding-top: 62px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
}

.cookie-consent-inner {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  background: var(--surface-3);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  padding: 16px;
}

.cookie-consent h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cookie-consent p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-consent-settings {
  margin-top: 12px;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.cookie-consent-option input {
  margin-top: 3px;
}

.cookie-consent-option small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.cookie-consent-settings-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-consent-manage {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 55;
  border: 1px solid var(--border-mid);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent-inner {
    padding: 14px;
  }

  .cookie-consent h3 {
    font-size: 16px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    width: 100%;
  }

  .cookie-consent-settings-actions .btn {
    width: 100%;
  }

  .cookie-consent-manage {
    left: 12px;
    bottom: 12px;
  }
}
