:root {
  --paper: #EFEEE6;
  --paper-2: #E5E4D8;
  --ink: #1A1A1A;
  --ink-2: #2E2C28;
  --muted: #6B6660;
  --line: #CFCEBE;
  --accent: #2F5D3A;
  --accent-ink: #FBFAF6;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.2,.7,.2,1);
}
body.theme-default { --paper: #F5F1EA; --paper-2: #EDE7DC; --line: #D9D1C2; --accent: #B5452A; }
body.theme-midnight { --paper: #12131A; --paper-2: #1B1D26; --ink: #F2EFE9; --ink-2: #CFCBC2; --muted: #8A8679; --line: #2B2D38; --accent: #E4A15C; --accent-ink: #12131A; }
body.theme-cobalt { --paper: #F2F2EE; --paper-2: #E8E8E2; --line: #D3D3CB; --accent: #2542C1; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.5; letter-spacing: -0.005em; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.eyebrow { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--muted); display: inline-block; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.it { font-style: italic; color: var(--accent); }
header.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in oklab, var(--paper) 82%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s var(--ease); }
header.nav.scrolled { border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1280px; margin: 0 auto; }
.brand { font-family: var(--serif); font-size: 24px; display: flex; align-items: baseline; gap: 2px; }
.brand em { font-style: italic; color: var(--accent); }
.brand .dot { color: var(--accent); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a.n { padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background .2s var(--ease), color .2s var(--ease); }
.nav-links a.n:hover { background: var(--paper-2); }
.nav-links a.n.active { color: var(--accent); }
.cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: 14px; font-weight: 500; transition: transform .2s var(--ease), background .2s var(--ease); cursor: pointer; border: 0; }
.cta:hover { transform: translateY(-1px); background: var(--accent); color: var(--accent-ink); }
.cta.alt { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.cta.alt:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.cta:hover .arrow { transform: translateX(3px); }
.hero { padding: 72px 0 48px; position: relative; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 9vw, 144px); line-height: 0.95; letter-spacing: -0.025em; margin: 24px 0 0; color: var(--ink); }
.hero h1 .it { font-style: italic; color: var(--accent); }
.hero h1 .stroke { -webkit-text-stroke: 1px var(--ink); color: transparent; }
body.theme-midnight .hero h1 .stroke { -webkit-text-stroke-color: var(--ink); }
.hero-sub { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; margin-top: 56px; align-items: end; }
.hero-sub p { font-size: 20px; line-height: 1.45; color: var(--ink-2); max-width: 56ch; text-wrap: pretty; margin: 0; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-meta { display: flex; flex-direction: column; gap: 10px; justify-self: end; text-align: right; }
.hero-meta .row { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-meta .row b { color: var(--ink); font-weight: 500; }
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; margin-top: 80px; }
.marquee-track { display: flex; gap: 48px; padding: 20px 0; white-space: nowrap; animation: marq 40s linear infinite; font-family: var(--serif); font-size: 28px; color: var(--ink-2); }
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
@keyframes marq { to { transform: translateX(-50%); } }
section { padding: 120px 0; }
section.tight { padding: 80px 0; }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 72px; align-items: end; }
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.02em; margin: 16px 0 0; max-width: 14ch; }
.section-head h2 .it { font-style: italic; color: var(--accent); }
.section-head p { font-size: 18px; color: var(--ink-2); max-width: 52ch; margin: 0; text-wrap: pretty; }
.services { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.service { background: var(--paper); padding: 40px 32px 32px; grid-column: span 6; position: relative; transition: background .3s var(--ease); min-height: 320px; display: flex; flex-direction: column; gap: 24px; }
.service > div:first-child { flex: 1; }
.service:hover { background: var(--paper-2); }
.service .num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }
.service h3 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 1.05; letter-spacing: -0.02em; margin: 56px 0 12px; }
.service p { color: var(--ink-2); font-size: 15px; margin: 0; max-width: 36ch; }
.service .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; }
.service .tag { font-family: var(--mono); font-size: 11px; padding: 4px 8px; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line); }
.service:hover .tag { background: var(--paper); }
@media (min-width: 900px) {
  .service:nth-child(1) { grid-column: span 7; }
  .service:nth-child(2) { grid-column: span 5; }
  .service:nth-child(3) { grid-column: span 5; }
  .service:nth-child(4) { grid-column: span 7; }
}
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.why .item { border-bottom: 1px solid var(--line); padding: 40px 32px 40px 0; display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: start; }
.why .item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 48px; }
.why .item:nth-child(even) { padding-left: 48px; }
.why .num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.why h4 { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.015em; }
.why p { color: var(--ink-2); font-size: 15px; margin: 0; max-width: 42ch; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 48px; }
.step .n { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--accent); }
.step h5 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 24px 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--ink-2); font-size: 14px; margin: 0; }
.step .dur { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 12px; display: block; letter-spacing: 0.1em; }
.pricing { background: var(--ink); color: var(--paper); border-radius: 8px; padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
body.theme-midnight .pricing { background: var(--paper-2); }
.pricing h2 { font-family: var(--serif); font-weight: 400; font-size: 56px; line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.pricing h2 .it { font-style: italic; color: var(--accent); }
.pricing .plans { display: grid; gap: 1px; background: color-mix(in oklab, var(--paper) 15%, transparent); border-radius: 4px; overflow: hidden; }
.plan { padding: 20px 24px; background: var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: baseline; }
body.theme-midnight .plan { background: var(--paper-2); }
.plan .n { font-family: var(--serif); font-size: 22px; }
.plan .p { font-family: var(--mono); font-size: 14px; color: color-mix(in oklab, var(--paper) 70%, transparent); }
.plan .d { grid-column: 1 / -1; font-size: 13px; color: color-mix(in oklab, var(--paper) 60%, transparent); }
.contact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.contact h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.025em; margin: 0 0 32px; }
.contact h2 .it { font-style: italic; color: var(--accent); }
.contact-info { font-size: 16px; color: var(--ink-2); }
.contact-info .line { padding: 20px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: baseline; }
.contact-info .line:last-child { border-bottom: 1px solid var(--line); }
.contact-info .line b { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
form.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.field input, .field textarea { background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 8px 0 12px; font-family: var(--sans); font-size: 18px; color: var(--ink); outline: none; transition: border-color .2s var(--ease); resize: none; }
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 100px; }
footer { border-top: 1px solid var(--line); padding: 48px 0 32px; margin-top: 80px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.foot .brand-lg { font-family: var(--serif); font-size: clamp(64px, 10vw, 140px); line-height: 0.9; letter-spacing: -0.03em; }
.foot .brand-lg em { font-style: italic; color: var(--accent); }
.foot h6 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 16px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.foot ul a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.page-hero { padding: 96px 0 56px; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 10vw, 144px); line-height: 0.95; letter-spacing: -0.025em; margin: 16px 0 0; }
.page-hero .lead { font-size: 22px; color: var(--ink-2); max-width: 50ch; text-wrap: pretty; margin: 40px 0 0; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.plan-card { border: 1px solid var(--line); border-radius: 8px; padding: 32px; background: var(--paper-2); position: relative; }
.plan-card.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan-card .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.plan-card.dark .label { color: color-mix(in oklab, var(--paper) 65%, transparent); }
.plan-card .price { font-family: var(--serif); font-weight: 400; font-size: 40px; margin: 16px 0 8px; line-height: 1; }
.plan-card .price small { font-size: 20px; color: var(--muted); font-family: var(--serif); }
.plan-card.dark .price small { color: color-mix(in oklab, var(--paper) 60%, transparent); }
.plan-card .mnd { font-family: var(--mono); font-size: 14px; color: var(--accent); }
.plan-card ul { list-style: none; padding: 24px 0 0; margin: 24px 0 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
.plan-card.dark ul { color: color-mix(in oklab, var(--paper) 80%, transparent); border-top-color: color-mix(in oklab, var(--paper) 20%, transparent); }
.plan-card .badge { position: absolute; top: -12px; right: 20px; background: var(--accent); color: var(--accent-ink); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px; }
.stats { margin-top: 80px; border-top: 1px solid var(--line); padding-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stats .big { font-family: var(--serif); font-size: 72px; color: var(--accent); line-height: 1; }
.stats .lbl { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 16px; letter-spacing: -0.015em; }
.two-col p { color: var(--ink-2); white-space: pre-line; }
.tweaks { position: fixed; right: 20px; bottom: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 16px; z-index: 100; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); min-width: 260px; display: none; font-size: 13px; }
.tweaks.open { display: block; }
.tweaks h6 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 12px; }
.tweaks .row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.tweaks button.sw { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; padding: 0; transition: transform .2s var(--ease); }
.tweaks button.sw:hover { transform: scale(1.1); }
.tweaks button.sw.on { outline: 2px solid var(--ink); outline-offset: 2px; }
.menu-toggle { display: none; }
.hamburger { display: none; background: transparent; border: 0; width: 40px; height: 40px; padding: 0; cursor: pointer; position: relative; -webkit-appearance: none; appearance: none; }
.hamburger span { display: block; position: absolute; left: 10px; right: 10px; height: 2px; background: #1A1A1A; background: var(--ink); transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s var(--ease); }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 24px; }
.menu-toggle:checked + .mobile-menu { display: flex !important; }
body:has(.menu-toggle:checked) .hamburger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body:has(.menu-toggle:checked) .hamburger span:nth-child(2) { opacity: 0; }
body:has(.menu-toggle:checked) .hamburger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
body:has(.menu-toggle:checked) { overflow: hidden; }
.mobile-menu { display: none; position: fixed; inset: 64px 0 0; background: var(--paper); z-index: 40; padding: 32px; flex-direction: column; gap: 4px; animation: mmIn .35s var(--ease); }
.mobile-menu a { font-family: var(--serif); font-size: 40px; line-height: 1.1; letter-spacing: -0.015em; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a.active:not(.cta) { color: var(--accent); font-style: italic; }
.mobile-menu .cta { margin-top: 0; align-self: auto; font-family: var(--serif); font-size: 40px; line-height: 1.1; letter-spacing: -0.015em; padding: 16px 0; border-radius: 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--ink) !important; }
@keyframes mmIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .nav-inner { padding: 16px 28px; }
  .hero { padding: 56px 0 32px; }
  .hero h1 { font-size: clamp(48px, 8vw, 88px); }
  .section-head { gap: 40px; margin-bottom: 48px; }
  .section-head h2 { font-size: clamp(36px, 5.5vw, 56px); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service { grid-column: auto !important; min-height: 280px; padding: 32px 24px 24px; }
  .service h3 { font-size: 32px; margin-top: 40px; }
  .why { grid-template-columns: 1fr 1fr; }
  .why .item { padding: 32px 24px 32px 0; }
  .why .item:nth-child(odd) { padding-right: 32px; }
  .why .item:nth-child(even) { padding-left: 32px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .plan-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing { padding: 48px 40px; gap: 40px; }
  .pricing h2 { font-size: 40px; }
  .foot { gap: 32px; }
  .foot .brand-lg { font-size: clamp(56px, 12vw, 96px); }
  section { padding: 88px 0; }
  section.tight { padding: 64px 0; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-links .n, .nav-links .cta { display: none !important; }
  .hamburger { display: block !important; }
  .brand { font-size: 20px; }
  .hero { padding: 40px 0 24px; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); line-height: 1; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
  .hero-sub p { font-size: 18px; }
  .hero-meta { justify-self: start; text-align: left; }
  .hero-meta .row { justify-content: flex-start; }
  .hero-actions { width: 100%; }
  .hero-actions .cta { flex: 1; justify-content: center; }
  .marquee-track { font-size: 22px; gap: 32px; padding: 16px 0; }
  .marquee-track span { gap: 32px; }
  section { padding: 64px 0; }
  section.tight { padding: 48px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(32px, 7vw, 44px); }
  .services { grid-template-columns: 1fr; }
  .service { min-height: 220px; padding: 28px 22px 22px; }
  .service h3 { font-size: 28px; margin-top: 32px; }
  .service p { font-size: 14px; }
  .why { grid-template-columns: 1fr; border-top: 1px solid var(--line); }
  .why .item { grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 0 !important; border-right: 0 !important; }
  .why h4 { font-size: 22px; }
  .process { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .step .n { font-size: 44px; }
  .step h5 { font-size: 20px; margin: 16px 0 6px; }
  .pricing { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; border-radius: 6px; }
  .pricing h2 { font-size: clamp(28px, 6vw, 36px); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { font-size: clamp(40px, 10vw, 64px); }
  .contact-info .line { grid-template-columns: 100px 1fr; gap: 16px; padding: 16px 0; }
  .field input, .field textarea { font-size: 16px; }
  .plan-card { padding: 28px 22px; }
  .plan-card .price { font-size: 34px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col h3 { font-size: 26px; }
  .page-hero { padding: 56px 0 32px; }
  .page-hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .page-hero .lead { font-size: 18px; margin-top: 28px; }
  .foot { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .foot .brand-lg { font-size: clamp(56px, 16vw, 88px); }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; font-size: 10px; }
  .tweaks { right: 12px; bottom: 12px; min-width: auto; max-width: calc(100vw - 24px); }
}

@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 12px 16px; }
  .hero h1 { font-size: clamp(40px, 13vw, 56px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .cta { width: 100%; }
  .marquee-track { font-size: 18px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 36px); }
  .service h3 { font-size: 24px; }
  .pricing { padding: 28px 20px; }
  .plan .p { font-size: 12px; }
  .contact-info .line { grid-template-columns: 1fr; gap: 4px; }
  .mobile-menu a { font-size: 32px; }
}

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { padding: 32px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--sans); font-weight: 600; font-size: 18px; line-height: 1.3; margin: 0 0 12px; color: var(--ink); }
.faq-item p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 72ch; }
.faq-item p a { color: var(--accent); text-underline-offset: 3px; }
@media (max-width: 768px) {
  .faq-item { padding: 24px 0; }
  .faq-item h3 { font-size: 16px; }
}

@media (hover: none) {
  .cta:hover { transform: none; }
  .tweaks button.sw:hover { transform: none; }
}
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 20px 32px; display: none; align-items: center; justify-content: space-between; gap: 24px; font-size: 14px; animation: cookieIn .4s var(--ease); }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; max-width: 60ch; color: color-mix(in oklab, var(--paper) 80%, transparent); }
.cookie-banner p a { text-decoration: underline; color: var(--paper); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btns button { font-family: var(--sans); font-size: 13px; font-weight: 500; padding: 10px 18px; border-radius: 999px; cursor: pointer; border: 0; transition: transform .2s var(--ease); }
.cookie-btns button:hover { transform: translateY(-1px); }
.cookie-accept { background: var(--accent); color: var(--accent-ink); }
.cookie-decline { background: transparent; color: var(--paper); border: 1px solid color-mix(in oklab, var(--paper) 30%, transparent) !important; }
@keyframes cookieIn { from { transform: translateY(100%); } to { transform: none; } }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 20px; gap: 16px; }
  .cookie-btns { justify-content: stretch; }
  .cookie-btns button { flex: 1; }
}
