:root {
  /* Brand from app screenshot */
  --brand:        #5B9CE8;          /* primary blue header */
  --brand-deep:   #3D7FCC;          /* darker shade for hovers */
  --brand-soft:   #E5F0FB;          /* light blue card bg */
  --brand-ink:    #2B5F9E;          /* deep blue for text-on-soft */

  --accent-pink:  #EFE0E4;          /* pinkish lilac card */
  --accent-mauve: #7A4350;          /* dark mauve badge */
  --accent-mauve-soft: #F1E4E6;

  --bg:           #F7F9FC;          /* very light blue-grey page */
  --bg-2:         #FFFFFF;          /* card / surface */
  --bg-3:         #EEF2F8;          /* nested surface */

  --ink:          #1B2230;
  --ink-2:        #3B4456;
  --muted:        #6B7488;
  --muted-2:      #9AA2B5;
  --line:         #E4E9F1;
  --line-2:       #D0D7E3;

  --good:         #4FB07A;
  --warn:         #E0A93F;

  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  --shadow-1: 0 1px 0 rgba(31,46,80,.04), 0 4px 14px -6px rgba(31,46,80,.08);
  --shadow-2: 0 2px 0 rgba(31,46,80,.04), 0 24px 60px -24px rgba(31,46,80,.18);

  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter Tight", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

[data-theme="dark"] {
  --bg:      #11141A;
  --bg-2:    #181C25;
  --bg-3:    #1F2430;
  --ink:     #ECEFF6;
  --ink-2:   #C5CBDA;
  --muted:   #8B93A8;
  --muted-2: #5B6379;
  --line:    #262C39;
  --line-2:  #313747;
  --brand-soft: #1A2A40;
  --accent-pink: #2A1F25;
  --accent-mauve-soft: #2A1E20;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.mono { font-family: var(--font-mono); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px;
  background: var(--brand);
  border-radius: 9px;
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 2px 0 var(--brand-deep), 0 4px 12px rgba(91,156,232,.4);
}
.brand-mark::before, .brand-mark::after {
  content:""; position:absolute;
  background: #fff;
  border-radius: 2px;
  width: 8px; height: 8px;
}
.brand-mark::before { top: 7px; left: 7px;  box-shadow: 8px 0 0 #fff; }
.brand-mark::after  { top: 15px; left: 7px; box-shadow: 8px 0 0 #fff; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-3); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--ink);
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--bg-3); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 2px 0 var(--brand-deep);
}
.btn-primary:hover { background: var(--brand-deep); }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { background: var(--bg-3); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ───────── HERO ───────── */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -10% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(ellipse 80% 100% at 30% 40%, color-mix(in oklab, var(--brand-soft) 80%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80%  at 80% 30%, color-mix(in oklab, var(--accent-mauve-soft) 70%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  padding: 6px 14px;
  background: var(--brand-soft);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 30%, transparent);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
  color: var(--ink);
}
.hero h1 span.line-2 { color: var(--brand); }
.hero h1 span.line-3 { color: var(--accent-mauve); font-style: italic; font-weight: 600; }

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-sub b { color: var(--ink-2); font-weight: 600; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.chips {
  margin-top: 28px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  padding: 7px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.chip .tick {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  display: inline-grid; place-items: center;
  font-size: 9px; font-weight: 800;
}

/* ───────── HERO SHOT ───────── */
.shot-stage {
  position: relative;
  display: grid; place-items: center;
  min-height: 640px;
}
.shot-stage::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
  z-index: 0;
}
.shot-phone {
  width: 320px;
  background: #1B2230;
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.shot-phone:hover { transform: rotate(0deg) translateY(-4px); }
.shot-phone .screen-img {
  width: 100%;
  display: block;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 932 / 2048;
  background: var(--bg-3);
  object-fit: cover;
  object-position: top;
}
.shot-phone .notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000; border-radius: 999px;
  z-index: 5;
}

.shot-orbit {
  position: absolute; z-index: 2;
  pointer-events: none;
}
.shot-orbit .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-1);
  white-space: nowrap;
}
.shot-orbit .pill .dot {
  width: 8px; height: 8px; border-radius: 999px;
}

/* ───────── SECTION ───────── */
section { padding: 110px 0; position: relative; }
section + section { border-top: 1px solid var(--line); }

.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-head .label::before {
  content:""; width: 16px; height: 2px; background: var(--brand); border-radius: 2px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 14px 0 0;
}
.section-head h2 span.accent { color: var(--brand); }
.section-head h2 span.mauve  { color: var(--accent-mauve); font-style: italic; font-weight: 700; }
.section-head p { color: var(--muted); max-width: 380px; margin: 0; font-size: 15.5px; line-height: 1.55; }

/* ───────── MODULES — bento ───────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  grid-auto-rows: 170px;
}
.tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: var(--line-2); }

.tile .tile-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.tile p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.tile-body { margin-top: auto; padding-top: 16px; }

/* tile sizes */
.tile.size-lg { grid-column: span 6; grid-row: span 2; background: var(--accent-pink); border-color: transparent; }
.tile.size-md { grid-column: span 4; grid-row: span 2; }
.tile.size-sm { grid-column: span 3; grid-row: span 1; }

.tile.size-lg .tile-ico { background: rgba(122,67,80,.12); color: var(--accent-mauve); }
.tile.size-lg h3 { font-size: 28px; }

/* recolor variation by index — alternating subtle accents */
.tile.tone-blue { background: var(--brand-soft); border-color: transparent; }
.tile.tone-blue .tile-ico { background: rgba(91,156,232,.20); color: var(--brand-ink); }
.tile.tone-pink { background: var(--accent-pink); border-color: transparent; }
.tile.tone-pink .tile-ico { background: rgba(122,67,80,.14); color: var(--accent-mauve); }

/* visual: icon-only tiles never need extra row space */
.tile.visual-icon { grid-row: span 1 !important; }
.tile.visual-icon .viz-illust {
  width: 100px; height: 100px;
  right: -10px; bottom: -10px;
  opacity: .7;
}

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .tile.size-lg { grid-column: span 6; }
  .tile.size-md { grid-column: span 3; }
  .tile.size-sm { grid-column: span 3; }
}
@media (max-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .tile.size-lg, .tile.size-md, .tile.size-sm { grid-column: span 2; grid-row: span 1; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .shot-stage { min-height: 560px; }
  .section-head { grid-template-columns: 1fr; }
}

/* tile visual: year-in-pixels */
.viz-pixels { display: grid; gap: 3px; width: 100%; }

/* tile visual: bars */
.viz-bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.viz-bars > i { display: block; flex: 1; background: var(--brand); border-radius: 3px 3px 1px 1px; opacity: .9; }
.viz-bars > i.alt { background: var(--accent-mauve); }

/* tile visual: spark */
.viz-spark { height: 60px; width: 100%; }
.viz-spark svg { width: 100%; height: 100%; }

/* tile visual: countdown big number */
.viz-count {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-mauve);
}
.viz-count .num { font-size: 48px; line-height: 0.9; }
.viz-count .lbl { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; }
.tile.size-md .viz-count .num { font-size: 64px; }

/* tile-image: optional uploaded image for any module */
.tile-image {
  margin-top: auto;
  padding-top: 16px;
  display: flex; align-items: flex-end; justify-content: center;
  flex: 1;
  min-height: 0;
}
.tile-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.tile.size-lg .tile-image img { max-height: 240px; }

/* host-image: optional uploaded image for self-host blocks */
.host-image {
  margin: 8px 0 18px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}
.host-image img {
  width: 100%; height: auto; display: block;
  max-height: 280px;
  object-fit: cover;
}

/* tile visual: stacked illustrative dots (for icon-only tiles) */
.viz-illust {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--brand) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.tile.tone-pink .viz-illust { background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--accent-mauve) 14%, transparent), transparent 70%); }

/* ───────── PRIVACY BAND ───────── */
.privacy {
  padding: 56px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.privacy::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 20% 50%, color-mix(in oklab, var(--brand) 30%, transparent), transparent 60%),
              radial-gradient(ellipse 50% 80% at 90% 60%, color-mix(in oklab, var(--accent-mauve) 35%, transparent), transparent 60%);
  pointer-events: none;
}
.privacy-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.privacy-item .n {
  font-size: 12px; font-weight: 600;
  color: color-mix(in oklab, #fff 50%, transparent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.privacy-item .l {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.privacy-item .l span { color: var(--brand); }

/* ───────── SCREENSHOTS GALLERY ───────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.shot-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  text-align: center;
}
.shot-card .shot-frame {
  background: #1B2230;
  border-radius: 22px;
  padding: 6px;
  margin: 0 auto 12px;
  max-width: 220px;
}
.shot-card .shot-frame img {
  width: 100%; display: block; border-radius: 18px;
  aspect-ratio: 932 / 2048;
  object-fit: cover; object-position: top;
  background: var(--bg-3);
}
.shot-card .cap {
  font-weight: 600; font-size: 14px;
  color: var(--ink-2);
}

/* ───────── SELF-HOST ───────── */
.host-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.host-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.host-card.now { background: var(--brand-soft); border-color: transparent; }
.host-card.soon { background: var(--bg-2); border-style: dashed; }
.host-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  white-space: nowrap;
}
.host-card.now .badge {
  background: var(--brand);
  color: #fff;
}
.host-card.now .badge .pulse {
  width: 7px; height: 7px; border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2s infinite;
}
.host-card.soon .badge {
  background: var(--bg-3);
  color: var(--muted);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.host-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.host-card > p { color: var(--ink-2); margin: 0 0 22px; font-size: 15px; line-height: 1.6; }
.host-card.now > p { color: var(--brand-ink); }

.steps {
  list-style: none; margin: 0; padding: 0;
  counter-reset: step;
  display: flex; flex-direction: column; gap: 10px;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(255,255,255,.55);
  border-radius: 10px;
}
.host-card:not(.now) .steps li { background: var(--bg-3); }
.steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.4;
}
.steps code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.host-config {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.soon-art {
  flex: 1;
  display: grid; place-items: center;
  margin-top: 24px;
  padding: 32px;
  background: var(--bg-3);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}
.soon-art svg { display: block; margin: 0 auto 14px; opacity: .55; }

/* ───────── FAQ ───────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 26px 0;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-q .ico {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a {
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 16px; line-height: 1.6;
  max-width: 760px;
}

/* ───────── FOOTER ───────── */
.foot { padding: 96px 0 48px; background: var(--bg); }
.foot-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.foot-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 80%, color-mix(in oklab, var(--brand) 35%, transparent), transparent 60%);
  pointer-events: none;
}
.foot-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  position: relative;
}
.foot-cta h2 span { color: var(--brand); }
.foot-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; }
.foot-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
  font-size: 13px; color: var(--muted);
}
.foot-meta a { color: var(--muted); }
.foot-meta a:hover { color: var(--ink); }

/* misc */
::selection { background: var(--brand); color: #fff; }
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: var(--bg);
}

@media (max-width: 720px) {
  .privacy-inner { grid-template-columns: 1fr 1fr; }
  .host-grid { grid-template-columns: 1fr; }
  .foot-cta { padding: 40px 28px; grid-template-columns: 1fr; }
  .foot-cta .ctas { justify-content: flex-start; }
}

/* ───────── COOKIE CONSENT BANNER ───────── */
.consent {
  position: fixed;
  left: 24px; right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex; justify-content: center;
  pointer-events: none;
  animation: consentIn .4s cubic-bezier(.25,1.2,.3,1);
}
@keyframes consentIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.consent-inner {
  pointer-events: auto;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  padding: 18px 20px;
  max-width: 720px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  position: relative;
}
.consent-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  padding-right: 12px;
}
.consent-text strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.consent-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.consent-x {
  position: absolute;
  top: 8px; right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--muted-2, var(--muted));
  cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-family: inherit;
  line-height: 1;
  transition: background .15s, color .15s;
}
.consent-x:hover { background: var(--bg-3); color: var(--ink); }
.consent-decline {
  font-size: 13.5px;
  padding: 9px 14px;
}
.consent-accept {
  font-size: 13.5px;
  padding: 9px 16px;
}

@media (max-width: 640px) {
  .consent { left: 12px; right: 12px; bottom: 12px; }
  .consent-inner { grid-template-columns: 1fr; padding: 16px 18px 18px; padding-top: 36px; }
  .consent-actions { justify-content: flex-end; }
}
