:root {
  --accent: #E76F51;
  --accent-dark: #C4553B;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #1C1A17;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #BEB7AB;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
button { cursor: pointer; font: inherit; border: none; background: none; padding: 0; color: inherit; }
h1, h2, h3, p { margin: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.btn-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font: 600 15px/1 'Space Grotesk', sans-serif;
  padding: 16px 34px;
  border-radius: 999px;
  text-align: center;
}

.eyebrow-sg { font: 600 11px/1 'Space Grotesk', sans-serif; letter-spacing: .22em; color: #857E71; }
.eyebrow-plex { font: 600 11px/1 'IBM Plex Sans', sans-serif; letter-spacing: .24em; color: #857E71; }

.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex: none;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1C1A17;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; transform: translateY(-2px); }
.brand-name {
  font: 500 21px/1 Raleway, sans-serif;
  letter-spacing: .06em;
  color: #F2EDE4;
}
.brand-one { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link { font: 500 14px/1 'Space Grotesk', sans-serif; color: #BEB7AB; }
.nav-link:hover { color: #F2EDE4; }
.nav-link.is-current { color: var(--accent); }
.nav-cta { font-size: 13.5px; padding: 11px 22px; }

.nav-burger { display: none; flex-direction: column; gap: 4px; }
.nav-burger span { width: 20px; height: 2px; background: #C9C2B6; border-radius: 1px; }

/* ---------- hero ---------- */

.hero { background: #251F1A; position: relative; overflow: hidden; }
.hero-inner {
  padding-top: 96px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font: 700 52px/1.16 'Space Grotesk', sans-serif;
  color: #ffffff;
  letter-spacing: -.02em;
}
.hero-copy p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .92);
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; margin-top: 34px; }
.btn-hero-primary { padding: 17px 34px; box-shadow: 0 10px 24px rgba(0, 0, 0, .4); }
.btn-hero-secondary { color: #fff; border: 1px solid rgba(255, 255, 255, .55); }
.btn-hero-secondary:hover { color: #fff; }

.hero-art { display: flex; justify-content: flex-end; }
.hero-illustration { display: block; width: 540px; max-width: 100%; filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .5)); }

/* ---------- trust bar ---------- */

.trust { padding: 44px 0 36px; text-align: center; }
.trust-label {
  font: 600 12px/1 'IBM Plex Sans', sans-serif;
  letter-spacing: .16em;
  color: #857E71;
  text-transform: uppercase;
}
.trust-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 64px;
  margin-top: 26px;
  filter: grayscale(1);
  opacity: .7;
}
.trust-logo { display: inline-flex; align-items: center; gap: 8px; }
.tl-shape { background: #8F887C; }
.tl-circle { width: 20px; height: 20px; border-radius: 50%; }
.tl-diamond { width: 18px; height: 18px; transform: rotate(45deg); }
.tl-triangle {
  width: 0; height: 0; background: none;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 19px solid #8F887C;
}
.tl-square { width: 20px; height: 20px; border-radius: 6px; }
.tl-pill { width: 22px; height: 14px; border-radius: 7px; }
.tl-bar { height: 10px; border-radius: 5px; background: #6E675C; }

/* ---------- stats ---------- */

.stats { padding: 84px 0 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font: 700 42px/1.1 'Space Grotesk', sans-serif; color: #F2EDE4; }
.stat-label { margin-top: 8px; font-size: 14.5px; line-height: 1.5; color: #A39C8F; }

/* ---------- mission ---------- */

.mission { padding: 126px 0 128px; }
.mission-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.mission-quote {
  margin-top: 28px;
  font: 500 33px/1.55 'Playfair Display', serif;
  color: #E8E1D4;
}

/* ---------- solutions ---------- */

.solutions { background: #1F1B18; padding: 72px 0 88px; }
.solutions-head { text-align: center; }
.solutions-head h2 { margin-top: 16px; font: 600 34px/1.25 'Space Grotesk', sans-serif; color: #F2EDE4; }
.solutions-head p { margin: 18px auto 0; max-width: 640px; font-size: 15.5px; line-height: 1.75; color: #BEB7AB; }

.viewers-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px;
  background: #2A2420;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  font-size: 13px;
  color: #A39C8F;
}

.card {
  background: #2A2420;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(231, 111, 81, .12);
  display: inline-flex; align-items: center; justify-content: center;
}

.solutions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.solution-card { border-radius: 12px; padding: 38px 40px; }
.solution-card h3 { margin-top: 22px; font: 600 22px/1.3 'Space Grotesk', sans-serif; color: #F2EDE4; }
.solution-tagline { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--accent); }
.solution-card p { margin-top: 16px; font-size: 14.5px; line-height: 1.75; color: #BEB7AB; }
.solution-list-label {
  margin-top: 22px;
  font: 600 11.5px/1 'Space Grotesk', sans-serif;
  letter-spacing: .14em;
  color: #F2EDE4;
}
.solution-list { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.solution-list span { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 1.5; color: #BEB7AB; }
.solution-cta { margin-top: 24px; font-size: 14px; padding: 14px 28px; }

.solution-card-tele { display: flex; flex-direction: column; align-items: flex-start; }
.tele-title-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tele-title-row h3 { margin-top: 0; }
.badge-soon {
  background: var(--accent);
  color: #fff;
  font: 600 10.5px/1 'Space Grotesk', sans-serif;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
}
.countdown-wrap {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  width: 100%;
}
.countdown {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 20px;
  font-variant-numeric: tabular-nums;
  padding: 10px 0 4px;
}
.cd-unit { text-align: center; min-width: 64px; }
.cd-num { font: 500 44px/1 'Space Grotesk', sans-serif; color: #F2EDE4; }
.cd-label {
  margin-top: 10px;
  font: 600 9.5px/1 'IBM Plex Sans', sans-serif;
  letter-spacing: .18em;
  color: #857E71;
}
.cd-colon { font: 300 34px/1 'Space Grotesk', sans-serif; color: #3E3831; margin-top: 5px; }

/* ---------- features ---------- */

.features { padding: 104px 0 56px; }
.features-head { text-align: center; }
.features-head h2 { font: 600 34px/1.25 Archivo, sans-serif; color: #F2EDE4; }
.features-head p { margin: 18px auto 0; max-width: 620px; font-size: 15.5px; line-height: 1.75; color: #C9C2B6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.feature-card { padding: 34px 32px; }
.feature-card-a { border-radius: 8px; }
.feature-card-b { border-radius: 10px; box-shadow: 0 16px 38px rgba(0, 0, 0, .6); }
.feature-card-c { border-radius: 12px; }
.feature-card h3 { margin-top: 20px; font: 600 18px/1.35 Archivo, sans-serif; color: #F2EDE4; }
.feature-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.75; color: #C9C2B6; }

/* ---------- plain note ---------- */

.plain-note { padding: 64px 0 96px; }
.plain-note p {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 21px;
  line-height: 1.65;
  color: #BEB7AB;
  text-align: center;
}

/* ---------- funded ---------- */

.funded { padding: 150px 0; text-align: center; }
.funded-name { margin-top: 34px; }
.funded-name a {
  font: 400 30px/1.3 'Space Grotesk', sans-serif;
  color: #F2EDE4;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  padding-bottom: 3px;
}
.funded-name a:hover { color: #F2EDE4; border-bottom-color: rgba(255, 255, 255, .5); }

/* ---------- testimonials ---------- */

.testimonials { padding: 64px 0 72px; }
.testimonials h2 { text-align: center; font: 600 34px/1.25 'Space Grotesk', sans-serif; color: #F2EDE4; }

.carousel { display: flex; align-items: center; justify-content: center; gap: 36px; margin-top: 44px; }
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2A2420;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.testimonial-card {
  max-width: 640px;
  background: #2A2420;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  padding: 40px 48px;
  text-align: center;
}
.stars { font: 400 17px/1 sans-serif; color: #FFB400; letter-spacing: 3px; }
.testimonial-quote { margin-top: 20px; font-size: 16.5px; line-height: 1.8; color: #C9C2B6; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(231, 111, 81, .16);
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 14px/1 'Space Grotesk', sans-serif;
  color: var(--accent);
}
.author-meta { text-align: left; }
.author-name { display: block; font: 600 14.5px/1.3 'Space Grotesk', sans-serif; color: #F2EDE4; }
.author-role { display: block; font-size: 12.5px; line-height: 1.4; color: #8F887C; }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.carousel-dots span { width: 8px; height: 8px; border-radius: 4px; background: #453F37; transition: all .25s; }
.carousel-dots span.is-active { width: 24px; background: var(--accent); }

/* ---------- newsletter ---------- */

.newsletter { background: #251F1A; padding: 88px 0; }
.newsletter-inner { text-align: center; }
.newsletter h2 { font: 600 30px/1.3 'Space Grotesk', sans-serif; color: #ffffff; }
.newsletter-inner > p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, .9); }

.newsletter-form { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.newsletter-form input {
  width: 380px;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font: 400 15px/1.4 'IBM Plex Sans', sans-serif;
  color: #2E2A24;
  background: #F5F1E8;
  outline: none;
}
.btn-rect {
  background: var(--accent);
  color: #fff;
  font: 600 15px/1 'Space Grotesk', sans-serif;
  padding: 16px 32px;
  border-radius: 8px;
}

.newsletter-consent {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 560px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
  text-align: left;
}
.newsletter-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-visual {
  width: 16px; height: 16px;
  background: #F5F1E8;
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  margin-top: 1px;
}
.newsletter-consent input:not(:checked) + .checkbox-visual svg { visibility: hidden; }

/* ---------- seo text ---------- */

.seo-text { padding: 36px 0 20px; }
.seo-text p { font-size: 11px; line-height: 1.8; color: #55504A; }

/* ---------- footer ---------- */

.footer { background: #131110; padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  max-width: 1080px;
}
.brand-name-sm { font-size: 18px; color: #ffffff; }
.footer-about .brand { transform: none; }
.footer-about p { margin-top: 18px; font-size: 14px; line-height: 1.75; color: rgba(255, 255, 255, .62); max-width: 300px; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.social {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 13px/1 'Space Grotesk', sans-serif;
  color: rgba(255, 255, 255, .7);
}
.social:hover { color: #fff; border-color: rgba(255, 255, 255, .5); }
.social-play { font: 400 10px/1 sans-serif; }

.footer-col-title {
  font: 600 13px/1 'Space Grotesk', sans-serif;
  letter-spacing: .06em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  line-height: 2.3;
  color: rgba(255, 255, 255, .62);
}
.footer-col a:hover { color: rgba(255, 255, 255, .9); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-bottom .container {
  max-width: 1080px;
  padding-top: 22px;
  padding-bottom: 22px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .45);
}

/* ---------- chat widget ---------- */

.chat-widget {
  position: fixed;
  right: 24px; bottom: 96px;
  width: 320px;
  background: #2A2420;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
  overflow: hidden;
  z-index: 91;
}
.chat-header { background: #131110; padding: 16px 20px; }
.chat-header-title { font: 600 15px/1.3 'Space Grotesk', sans-serif; color: #ffffff; }
.chat-header-sub { font-size: 12px; line-height: 1.4; color: rgba(255, 255, 255, .85); }
.chat-body { padding: 18px 20px 22px; }
.chat-bubble {
  background: #35302A;
  border-radius: 12px 12px 12px 3px;
  padding: 12px 14px;
  max-width: 230px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #C9C2B6;
}
.chat-time { margin: 6px 0 0 2px; font-size: 10.5px; line-height: 1; color: #7A7268; }

.chat-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(231, 111, 81, .4);
  display: flex; align-items: center; justify-content: center;
  z-index: 91;
}

.back-to-top {
  position: fixed;
  right: 96px; bottom: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #2A2420;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .45);
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
}

/* ---------- exit modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 8, 6, .68);
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 560px;
  max-width: calc(100vw - 32px);
  margin: 104px auto 40px;
  background: #2A2420;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(10, 12, 24, .45);
  padding: 44px 44px 32px;
  animation: pop-in .3s ease-out;
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: -13px; right: -15px;
  font: 300 21px/1 'IBM Plex Sans', sans-serif;
  color: #6B655B;
}
.modal-title { text-align: center; font: 700 27px/1.3 'Space Grotesk', sans-serif; color: #F2EDE4; }
.modal-body {
  margin: 16px auto 0;
  max-width: 420px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.7;
  color: #BEB7AB;
}

.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.tier {
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 18px 6px;
  text-align: center;
}
.tier-price { display: block; font: 600 20px/1 'Space Grotesk', sans-serif; color: #F2EDE4; }
.tier-period { display: block; margin-top: 6px; font-size: 11px; line-height: 1; color: #857E71; }
.tier.is-selected {
  border: 2px solid var(--accent);
  padding: 17px 6px;
  background: rgba(231, 111, 81, .12);
  box-shadow: 0 8px 20px rgba(231, 111, 81, .16);
}
.tier.is-selected .tier-price { color: var(--accent); }
.tier-tag {
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font: 600 8.5px/1 'Space Grotesk', sans-serif;
  letter-spacing: .1em;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.one-time-wrap { text-align: center; margin-top: 16px; }
.one-time { font-size: 12px; line-height: 1; color: #857E71; text-decoration: underline; }

.social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: #A39C8F;
}
.social-proof .dot-live { width: 7px; height: 7px; }

.modal-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  font: 700 16.5px/1 'Space Grotesk', sans-serif;
  letter-spacing: .04em;
  text-align: center;
  padding: 19px 0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(231, 111, 81, .38);
}
.modal-decline {
  display: block;
  margin: 18px auto 0;
  font-size: 11.5px;
  line-height: 1;
  color: #6B655B;
}

/* ---------- persistent access banner ---------- */

.access-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  background: var(--accent);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  cursor: pointer;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .3);
}
.access-banner[hidden] { display: none; }
.access-banner > span:first-child { font: 600 16px/1 'Space Grotesk', sans-serif; color: #ffffff; }
.access-banner-chevron {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .6);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- consent preferences dialog ---------- */

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.consent-overlay[hidden] { display: none; }

.consent {
  position: relative;
  width: 860px;
  max-width: 100%;
  height: 92vh;
  display: flex;
  flex-direction: column;
  background: #F5F1E8;
  color: #2E2A24;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
  animation: pop-in .3s ease-out;
}
.consent-x {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  font: 300 20px/1 'IBM Plex Sans', sans-serif;
  color: #8A8271;
  cursor: pointer;
  padding: 6px;
}
.consent-x:hover { color: #2E2A24; }

.consent-head { padding: 26px 34px 0; border-bottom: 1px solid #E2DCCE; }
.consent-title { font: 700 24px/1.3 'Space Grotesk', sans-serif; color: #2E2A24; }
.consent-tabs { display: flex; gap: 26px; margin-top: 14px; }
.consent-tabs span { padding: 0 2px 10px; font: 600 13px/1 'IBM Plex Sans', sans-serif; color: #8A8271; cursor: pointer; }
.consent-tabs span.is-active { color: #2E2A24; box-shadow: inset 0 -2px 0 var(--accent); }
.consent-sub { margin: 14px 0 16px; font-size: 12.5px; line-height: 1.7; color: #6B6455; }

.consent-cols { display: flex; justify-content: flex-end; gap: 10px; padding: 12px 34px 0; }
.consent-cols span {
  width: 70px;
  font: 600 9.5px/1.3 'IBM Plex Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A8271;
  text-align: center;
}

.consent-list { overflow-y: auto; flex: 1; padding: 4px 34px; }
.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid #E9E4D7;
  cursor: pointer;
}
.consent-row:last-child { border-bottom: none; }
.consent-row-text { flex: 1; min-width: 0; }
.consent-row-title { font: 600 14.5px/1.4 'IBM Plex Sans', sans-serif; color: #2E2A24; }
.consent-row-desc { margin-top: 3px; font-size: 12.5px; line-height: 1.55; color: #8A8271; }
.consent-pairs { display: flex; align-items: center; gap: 10px; flex: none; }
.consent-pair { width: 70px; display: flex; justify-content: center; }
.consent-pairs .consent-always { width: 150px; text-align: center; font-size: 12px; font-weight: 600; color: #8A8271; }

.consent-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-switch {
  flex: none;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #C9C2B0;
  position: relative;
  transition: background .2s;
}
.consent-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: left .2s;
  cursor: pointer;
}
.consent-row input:checked + .consent-switch { background: var(--accent); }
.consent-row input:checked + .consent-switch .consent-knob { left: 23px; }

.consent-foot { padding: 18px 34px 20px; border-top: 1px solid #E2DCCE; text-align: center; }
.consent-accept {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font: 700 16px/1 'Space Grotesk', sans-serif;
  letter-spacing: .03em;
  padding: 18px 0;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(231, 111, 81, .35);
}
.consent-meta { margin-top: 14px; font-size: 10.5px; line-height: 1.5; color: #B5AD9A; }
.consent-confirm { display: inline; font: 400 10.5px/1.5 'IBM Plex Sans', sans-serif; color: #B5AD9A; }
.consent-confirm:hover { text-decoration: underline; }

.consent-mandatory {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 310;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: #FFFDF8;
  color: #2E2A24;
  border-radius: 12px;
  padding: 26px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  text-align: center;
  animation: pop-in .25s ease-out;
}
.consent-mandatory[hidden] { display: none; }
.consent-mandatory-title { font: 700 17px/1.3 'Space Grotesk', sans-serif; }
.consent-mandatory p { margin-top: 10px; font-size: 13px; line-height: 1.6; color: #6B6455; }
.consent-mandatory-ok {
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  font: 700 13px/1 'Space Grotesk', sans-serif;
  letter-spacing: .04em;
  padding: 13px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(231, 111, 81, .35);
}

/* ---------- mobile ---------- */

@media (max-width: 860px) {
  .nav-inner { height: 60px; }
  .nav-burger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: #1C1A17;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 20px 26px;
  }
  .nav-links.is-open { display: flex; }
  .brand-name { font-size: 17px; }

  .hero-inner { grid-template-columns: 1fr; gap: 26px; padding-top: 44px; padding-bottom: 44px; }
  .hero-copy h1 { font-size: 33px; line-height: 1.2; }
  .hero-copy p { margin-top: 16px; font-size: 14.5px; line-height: 1.7; }
  .hero-ctas { flex-direction: column; margin-top: 24px; }
  .hero-ctas .btn-pill { width: 100%; }
  .hero-art { height: 180px; border-radius: 14px; overflow: hidden; justify-content: flex-start; }
  .hero-illustration { width: 440px; max-width: none; margin: -10px 0 0 -36px; filter: none; }

  .trust-logos { flex-wrap: wrap; gap: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mission { padding: 80px 0; }
  .mission-quote { font-size: 25px; }
  .solutions-grid, .features-grid { grid-template-columns: 1fr; }
  .funded { padding: 90px 0; }

  .carousel { gap: 12px; }
  .testimonial-card { padding: 32px 24px; }

  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .chat-widget { right: 16px; width: calc(100vw - 32px); max-width: 320px; }
  .modal { padding: 34px 22px 26px; margin-top: 60px; }
  .modal-close { right: 2px; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
}
