/* ==========================================================================
   MyroDeck marketing site — design system
   --------------------------------------------------------------------------
   Palette pulls directly from the brand mark's own layered-sheet icon
   (three offset teal-to-ink flags): ink for dark ground, two teal steps
   for accent/depth, a mint-tinted surface instead of pure white so panels
   read as a material rather than browser-default white.

   Layout motif: the brand mark is three offset, overlapping sheets — so
   card groups here use a genuine stacked/offset treatment (translate +
   rotate, torn corner) rather than the flat equal-shadow card grid.
   Headings are set in Space Grotesk (sturdy, slightly technical) against
   Inter body copy — two clearly distinct families, not a single default.
   ========================================================================== */

:root {
  --ink: #0C2226;
  --ink-soft: #123138;
  --teal-deep: #0F766E;
  --teal: #1F9E8E;
  --teal-bright: #2BC4A8;
  --mint-50: #F3F9F7;
  --mint-100: #E6F3EF;
  --mint-200: #D3E9E2;
  --paper: #FFFFFF;
  --ink-text: #10262A;
  --ink-muted: #4D6B6B;
  --ink-faint: #86A19E;
  --line: #DCE9E4;
  --line-soft: #EAF2EF;
  --gold: #E1A23D;
  --danger: #D2492F;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --max: 1180px;
  --radius-s: 4px;
  --radius-m: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; max-width: 62ch; }
.lede { font-size: 1.15rem; color: var(--ink-muted); max-width: 54ch; }
ul, ol { padding-left: 1.2em; }
:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-mint { background: var(--mint-50); }
.section-ink { background: var(--ink); color: #DCEEEA; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink p { color: #9FC4BE; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--teal-bright);
}
.section-ink .kicker { color: var(--teal-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); }
.btn-accent { background: var(--teal-bright); color: var(--ink); }
.btn-accent:hover { background: #3ED9BB; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--teal-deep); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-text);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--teal-bright); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta a.login-link { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav-burger { display: none; }
.mobile-panel { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-burger {
    display: block; background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }
  .mobile-panel.open {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 28px 20px;
  }
  .mobile-panel a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-weight: 500; }
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--teal-deep); margin-bottom: 18px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-proof { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-muted); }
.hero-proof strong { color: var(--ink); }

.hero-stack { position: relative; height: 420px; }
.stack-card {
  position: absolute; width: 78%; border-radius: var(--radius-m);
  border: 1px solid var(--line); background: #fff;
  box-shadow: 0 24px 48px -20px rgba(12,34,38,.28);
  overflow: hidden;
}
.stack-card img { width: 100%; display: block; }
.stack-card.c1 { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; animation: stackIn .7s ease both; }
.stack-card.c2 { top: 46px; left: 15%; transform: rotate(2deg); z-index: 2; animation: stackIn .7s .12s ease both; }
.stack-card.c3 { top: 110px; left: 24%; transform: rotate(-2deg); z-index: 3; animation: stackIn .7s .24s ease both; }
@keyframes stackIn { from { opacity: 0; transform: translateY(18px) rotate(0deg); } }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-stack { height: 320px; margin-top: 20px; }
}

/* ---------- Logo strip ---------- */
.logo-strip { padding: 34px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.logo-strip .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.logo-strip-label { font-size: 13px; color: var(--ink-faint); font-weight: 500; white-space: nowrap; }
.logo-strip-row { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; }
.vertical-pill {
  font-size: 13.5px; font-weight: 600; color: var(--ink-muted);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 20px;
}

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.feature-cell { background: #fff; padding: 30px 28px; }
.feature-cell .icon-mark { width: 38px; height: 38px; margin-bottom: 18px; }
.feature-cell h3 { margin-bottom: 8px; }
.feature-cell p { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 0; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1080px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Offset showcase (screenshots) ---------- */
.showcase { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.showcase.reverse { grid-template-columns: 1.15fr .85fr; }
.showcase.reverse .showcase-art { order: 2; }
.showcase-copy .tag-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.showcase-copy .tag-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-text); }
.showcase-copy .tag-list li::before {
  content: ''; flex-shrink: 0; margin-top: 7px; width: 7px; height: 7px; border-radius: 1px; background: var(--teal-bright); transform: rotate(45deg);
}
.showcase-art { position: relative; }
.showcase-art .frame {
  border-radius: var(--radius-m); border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(12,34,38,.35);
  overflow: hidden; background: #fff;
}
.showcase-art .frame img { width: 100%; }
.showcase-art .corner-chip {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--ink); color: #fff; border-radius: var(--radius-m);
  padding: 14px 18px; box-shadow: 0 16px 30px -14px rgba(12,34,38,.5);
  font-size: 13px; max-width: 200px;
}
.showcase-art .corner-chip strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--teal-bright); }
@media (max-width: 900px) {
  .showcase, .showcase.reverse { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-art { order: 0; }
  .showcase-art .corner-chip { display: none; }
}

/* ---------- Steps (legitimate sequence only) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 8px; border-top: 2px solid var(--ink); }
.step .step-num { font-family: var(--font-display); font-size: 14px; color: var(--teal-deep); font-weight: 600; margin-bottom: 14px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testimonial ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 26px; }
.testimonial-card p.quote { font-size: 15.5px; color: var(--ink-text); margin-bottom: 18px; }
.testimonial-who { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--mint-200); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 14px; }
.testimonial-name { font-size: 13.5px; font-weight: 600; }
.testimonial-role { font-size: 12.5px; color: var(--ink-faint); }
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 28px 24px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--ink); box-shadow: 0 20px 40px -24px rgba(12,34,38,.35); position: relative; }
.price-card.featured::before {
  content: 'Most popular'; position: absolute; top: -13px; left: 24px;
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
}
.price-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.price-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.price-amount span { font-size: 14px; font-weight: 500; color: var(--ink-faint); }
.price-blurb { font-size: 13.5px; color: var(--ink-muted); margin-bottom: 20px; min-height: 38px; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-features li { font-size: 13.5px; color: var(--ink-text); display: flex; gap: 8px; }
.price-features li::before { content: '+'; color: var(--teal-deep); font-weight: 700; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-q .plus { font-size: 20px; color: var(--teal-deep); transition: transform .2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 18px; color: var(--ink-muted); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); border-radius: var(--radius-m); padding: 56px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #9FC4BE; margin-bottom: 0; }
@media (max-width: 700px) { .cta-band { flex-direction: column; text-align: center; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9FC4BE; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }
.footer-brand img { height: 26px; margin-bottom: 14px; }
.footer-brand p { color: #7CA6A0; font-size: 13.5px; max-width: 30ch; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: #9FC4BE; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #6E958F; }
.footer-bottom a { color: #6E958F; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-s);
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink-text); background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--teal-deep); }
.form-note { font-size: 12.5px; color: var(--ink-faint); }
.form-success { background: var(--mint-100); border: 1px solid var(--mint-200); color: var(--teal-deep); padding: 16px 18px; border-radius: var(--radius-s); font-size: 14.5px; font-weight: 500; }
.form-error { background: #FBEAE5; border: 1px solid #F2C6B9; color: var(--danger); padding: 16px 18px; border-radius: var(--radius-s); font-size: 14.5px; }

/* ---------- Contact split ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card { background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: var(--radius-m); padding: 26px; margin-bottom: 16px; }
.contact-info-card h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--ink-muted); margin: 0; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Generic page hero (interior pages) ---------- */
.page-hero { padding: 64px 0 56px; background: var(--mint-50); border-bottom: 1px solid var(--line-soft); }
.page-hero .kicker { margin-bottom: 14px; }
.breadcrumb { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--teal-deep); font-weight: 500; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; background: #fff; transition: transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 20px 34px -22px rgba(12,34,38,.3); }
.blog-card .thumb { aspect-ratio: 16/10; background: var(--mint-100); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px 22px 24px; }
.blog-meta { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.blog-cat { color: var(--teal-deep); font-weight: 600; }
.blog-card h3 { font-size: 17px; margin-bottom: 8px; }
.blog-card p { font-size: 13.5px; color: var(--ink-muted); margin-bottom: 0; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .blog-grid { grid-template-columns: 1fr; } }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span { padding: 9px 15px; border: 1px solid var(--line); border-radius: var(--radius-s); font-size: 13.5px; font-weight: 600; }
.pagination a:hover { border-color: var(--teal-deep); }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Article ---------- */
.article-head { max-width: 740px; margin: 0 auto 30px; text-align: left; }
.article-cover { max-width: 900px; margin: 0 auto 46px; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); }
.article-body { max-width: 700px; margin: 0 auto; font-size: 17px; line-height: 1.75; }
.article-body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.article-body h3 { margin-top: 1.4em; font-size: 1.2rem; }
.article-body p { max-width: none; }
.article-body a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin-bottom: 1.2em; }
.article-body img { border-radius: var(--radius-s); margin: 1.6em 0; }
.article-body blockquote { border-left: 3px solid var(--teal-bright); margin: 1.6em 0; padding-left: 20px; color: var(--ink-muted); font-style: italic; }
.article-meta-bar { max-width: 700px; margin: 0 auto 20px; display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--ink-faint); padding-bottom: 24px; border-bottom: 1px solid var(--line); }

/* ---------- Legal ---------- */
.legal-body { max-width: 760px; }
.legal-body h2 { margin-top: 1.8em; font-size: 1.3rem; }
.legal-body p, .legal-body li { color: var(--ink-muted); font-size: 15px; }
.legal-body p { max-width: none; }
.legal-updated { font-size: 13px; color: var(--ink-faint); margin-bottom: 40px; }
.legal-toc { background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: var(--radius-m); padding: 22px 26px; margin-bottom: 40px; max-width: 500px; }
.legal-toc h4 { font-size: 13px; margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding-left: 18px; font-size: 13.5px; }
.legal-toc a { color: var(--teal-deep); }

/* ---------- 404 / empty ---------- */
.empty-block { text-align: center; padding: 60px 0; }

/* ---------- Cookie consent (assets/js/cookie-consent.js) ---------- */
.cc-banner {
  position: fixed; left: 20px; bottom: 20px; z-index: 300;
  width: min(440px, calc(100vw - 40px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: 0 24px 48px -16px rgba(12,34,38,.35);
  padding: 20px 22px;
  animation: ccIn .3s ease both;
}
@keyframes ccIn { from { opacity: 0; transform: translateY(12px); } }
.cc-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 6px; }
.cc-text { font-size: 13.5px; color: var(--ink-muted); margin: 0 0 16px; max-width: none; }
.cc-text a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; }
.cc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.cc-actions-end { justify-content: flex-end; margin-top: 20px; }
.cc-link { background: none; border: none; padding: 9px 4px; font: 600 13.5px var(--font-body); color: var(--teal-deep); cursor: pointer; text-decoration: underline; }
.cc-overlay { position: fixed; inset: 0; z-index: 400; background: rgba(12,34,38,.55); display: flex; align-items: center; justify-content: center; padding: 20px; }
.cc-dialog { background: #fff; border-radius: var(--radius-m); width: 100%; max-width: 520px; max-height: calc(100vh - 40px); overflow-y: auto; padding: 26px 26px 22px; box-shadow: 0 30px 60px -20px rgba(12,34,38,.5); }
.cc-dialog h2 { font-size: 1.3rem; margin-bottom: 6px; }
.cc-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.cc-row:first-of-type { margin-top: 4px; }
.cc-row-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); cursor: pointer; }
.cc-row p { font-size: 13px; color: var(--ink-muted); margin: 2px 0 0; max-width: 36ch; }
.cc-switch { position: relative; flex-shrink: 0; width: 42px; height: 24px; margin-top: 2px; }
.cc-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; z-index: 1; }
.cc-switch input:disabled { cursor: not-allowed; }
.cc-slider { position: absolute; inset: 0; border-radius: 24px; background: var(--line); transition: background .15s ease; }
.cc-slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(12,34,38,.3); transition: transform .15s ease; }
.cc-switch input:checked + .cc-slider { background: var(--teal-deep); }
.cc-switch input:checked + .cc-slider::after { transform: translateX(18px); }
.cc-switch input:disabled + .cc-slider { opacity: .6; }
.cc-switch input:focus-visible + .cc-slider { outline: 2px solid var(--teal-deep); outline-offset: 2px; }
.footer-bottom .cc-footer-btn { background: none; border: none; padding: 0; font: inherit; color: #6E958F; cursor: pointer; }
.footer-bottom .cc-footer-btn:hover { color: #fff; }
@media (max-width: 560px) {
  .cc-banner { left: 0; right: 0; bottom: 0; width: 100%; border-radius: var(--radius-m) var(--radius-m) 0 0; border-bottom: 0; }
  .cc-actions .btn { flex: 1 1 auto; justify-content: center; }
}
