/*
 * YourCover marketing homepage — styles.
 *
 * A faithful rebuild of the design concept (dark theme, blue gradient accent,
 * floating phone mockups) as maintainable, class-based CSS. Unlike the original
 * export — which used fixed multi-column grids and no breakpoints — this is
 * responsive: every grid collapses gracefully down to mobile.
 *
 * Palette and type are lifted verbatim from the source so the look is unchanged.
 */

:root {
  --bg: #08090d;
  --text: #eef1f7;
  --text-bright: #f4f6fb;
  --text-brighter: #f7f9fc;
  --muted: #a6aec1;
  --muted-2: #9aa3b5;
  --muted-3: #8b93a6;
  --nav-link: #aab2c4;
  --accent: #5aa9e8;
  --accent-deep: #2159b0;
  --accent-light: #7fc0f5;
  --grad: linear-gradient(135deg, #5aa9e8, #2159b0);
  --card: #101320;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.16);
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #fff;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

@keyframes ycFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes ycFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes ycPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}

.page {
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 600px at 80% -5%, rgba(74, 144, 226, 0.14), transparent 60%),
    var(--bg);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 9, 13, 0.72);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(42, 105, 200, 0.45);
  flex: none;
}

.brand__mark span {
  width: 13px;
  height: 13px;
  border: 2.5px solid #fff;
  border-radius: 4px;
  transform: rotate(45deg);
  display: block;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

.brand__name b {
  color: var(--accent);
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  color: var(--nav-link);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 11px;
  background: var(--grad);
  box-shadow: 0 6px 18px rgba(42, 105, 200, 0.4);
  font-weight: 600;
}

.nav__toggle {
  display: none;
}

/* Mobile-only cluster (compact Join waitlist + hamburger); hidden on desktop. */
.nav__mobile {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 13px;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.btn--primary {
  color: #fff;
  padding: 15px 28px;
  background: var(--grad);
  box-shadow: 0 10px 30px rgba(42, 105, 200, 0.45);
}

.btn--ghost {
  color: #dfe4ee;
  padding: 15px 24px;
  border: 1px solid var(--border-strong);
  background: transparent;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 40px 60px;
}

.hero__glow-a,
.hero__glow-b {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* glowIntensity default 0.8: opacity 0.6*0.8 = 0.48 */
.hero__glow-a {
  top: 40px;
  left: -120px;
  width: 520px;
  height: 520px;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(74, 144, 226, 0.55), transparent 70%);
  animation: ycPulse 7s ease-in-out infinite;
  opacity: 0.48;
}

/* neonAccent default Purple (#8b5cf6); opacity 0.5*0.8 = 0.40 */
.hero__glow-b {
  top: 120px;
  right: -80px;
  width: 460px;
  height: 460px;
  filter: blur(100px);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
  animation: ycPulse 9s ease-in-out infinite;
  opacity: 0.4;
}

.hero__grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
  color: #c5cdde;
  margin-bottom: 26px;
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--text-brighter);
}

.grad-text {
  background: linear-gradient(135deg, #7fc0f5, #3d7fe0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 34px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-bright);
}

.stat__label {
  font-size: 13.5px;
  color: var(--muted-3);
}

.stat__divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Phone mockup ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-wrap__glow {
  position: absolute;
  inset: -30px;
  border-radius: 44px;
  background: radial-gradient(circle at 50% 40%, rgba(90, 169, 232, 0.22), transparent 70%);
  pointer-events: none;
}

.phone {
  position: relative;
  width: 300px;
  max-width: 78vw;
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(150deg, #20242f, #0c0e14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  animation: ycFloat 6s ease-in-out infinite;
}

.phone img {
  width: 100%;
  display: block;
  border-radius: 32px;
}

.phone--sm {
  width: 262px;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  animation: ycFloatSlow 7s ease-in-out infinite;
}

.phone--sm img {
  border-radius: 29px;
}

/* ---------- Section shells ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 40px;
}

.section--tight {
  padding: 40px 40px 30px;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow--light {
  color: var(--accent);
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-bright);
}

.section-head p {
  font-size: 17px;
  color: var(--muted-2);
  max-width: 560px;
  margin: 14px auto 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  padding: 24px 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}

.step__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #3d7fe0;
  margin-bottom: 14px;
}

.step__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}

.step__body {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted-3);
}

/* ---------- Audiences ---------- */
.audience {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 34px 0;
  scroll-margin-top: 90px;
}

.audience--img-left {
  grid-template-columns: 0.85fr 1.15fr;
}

.audience--img-right {
  grid-template-columns: 1.15fr 0.85fr;
}

.audience__glow {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: radial-gradient(circle at 50% 40%, rgba(90, 169, 232, 0.18), transparent 70%);
}

.audience__glow--purple {
  background: radial-gradient(circle at 50% 40%, rgba(124, 92, 246, 0.16), transparent 70%);
}

.tag {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 100px;
  background: rgba(90, 169, 232, 0.14);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.tag--light {
  background: rgba(255, 255, 255, 0.1);
  color: #dfe6f2;
}

.audience h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text-bright);
}

.audience__body {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 22px;
}

.points {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.point {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15.5px;
  color: #d3d9e4;
}

.point__tick {
  color: var(--accent);
  font-size: 15px;
}

/* ---------- Operators panel ---------- */
.operators {
  padding: 34px 0 10px;
  scroll-margin-top: 90px;
}

.operators__panel {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(135deg, rgba(33, 89, 176, 0.22), rgba(20, 22, 30, 0.6));
  padding: 44px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.operators__panel h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text-brighter);
}

.operators__panel p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #c2cad9;
  max-width: 480px;
  margin: 0;
}

.op-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.op-stat {
  padding: 20px;
  border-radius: 15px;
  background: rgba(8, 9, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.op-stat__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-bright);
  margin-bottom: 5px;
}

.op-stat__body {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted-2);
}

/* ---------- Why / trust ---------- */
.why {
  position: relative;
  padding: 80px 40px;
  margin-top: 30px;
  scroll-margin-top: 80px;
}

.why__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text-bright);
}

.why p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}

.why p:last-child {
  margin-bottom: 0;
}

.why strong {
  color: var(--text);
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust {
  padding: 26px 22px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.trust__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-bright);
  margin-bottom: 7px;
}

.trust__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-2);
}

/* ---------- Pillars ---------- */
.pillars {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 40px 70px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pillar {
  padding: 34px 30px;
  border-radius: 20px;
  background: linear-gradient(160deg, #12141d, #0b0d13);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 38px;
  color: rgba(90, 169, 232, 0.35);
  margin-bottom: 16px;
}

.pillar__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--text-bright);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
}

/* ---------- Waitlist CTA ---------- */
.waitlist {
  position: relative;
  padding: 20px 40px 100px;
  scroll-margin-top: 80px;
}

.waitlist__card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(33, 89, 176, 0.35), rgba(12, 14, 20, 0.8));
  padding: 60px 50px;
  text-align: center;
}

.waitlist__halo {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 100%;
  height: 300px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(90, 169, 232, 0.4), transparent 70%);
  pointer-events: none;
}

.waitlist__inner {
  position: relative;
}

.waitlist h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: var(--text-brighter);
}

.waitlist__sub {
  font-size: 17px;
  color: #c2cad9;
  max-width: 480px;
  margin: 0 auto 30px;
}

.roles {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.role-btn {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--nav-link);
  transition: background 0.15s ease, color 0.15s ease;
}

.role-btn[aria-pressed="true"] {
  background: var(--grad);
  color: #fff;
}

.wl-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.wl-form__email {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border-radius: 13px;
  border: 1px solid var(--border-strong);
  background: rgba(8, 9, 13, 0.6);
  color: var(--text-bright);
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.wl-form__email:focus {
  border-color: var(--accent);
}

.wl-form__submit {
  padding: 16px 30px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 10px 30px rgba(42, 105, 200, 0.45);
}

.wl-form__submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* Honeypot — kept out of the visual + tab order but not display:none (some bots
   skip display:none fields). */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.wl-success {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 14px;
  background: rgba(90, 169, 232, 0.15);
  border: 1px solid rgba(90, 169, 232, 0.4);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.wl-success__tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wl-error {
  margin-top: 14px;
  color: #ffb4b4;
  font-size: 14.5px;
  min-height: 1.2em;
}

[hidden] {
  display: none !important;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 40px;
}

.footer__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer__brand .brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.footer__brand .brand__mark span {
  width: 11px;
  height: 11px;
  border-width: 2.5px;
  border-radius: 3px;
}

.footer__brand .brand__name {
  font-size: 17px;
}

.footer__tag {
  font-size: 14px;
  color: #6f778a;
}

.footer__links {
  display: flex;
  gap: 26px;
}

.footer__links a {
  color: var(--muted-3);
  text-decoration: none;
  font-size: 14px;
}

.footer__links a:hover {
  color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__media {
    order: -1;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .audience--img-left,
  .audience--img-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .audience__media {
    order: -1;
  }
  .operators__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }
  .pillars__grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .nav {
    flex-wrap: wrap;
    padding: 16px 20px;
  }
  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 8px;
  }
  .nav__links.is-open {
    display: flex;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
  }
  /* Show the Join waitlist + hamburger cluster, pinned to the right of the bar. */
  .nav__mobile {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav__cta--sm {
    padding: 9px 15px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(42, 105, 200, 0.35);
  }
  .hero {
    padding: 60px 20px 40px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero__sub {
    font-size: 17px;
  }
  .section,
  .section--tight {
    padding: 44px 20px;
  }
  .why {
    padding: 56px 20px;
  }
  .pillars {
    padding: 30px 20px 56px;
  }
  .waitlist {
    padding: 20px 20px 72px;
  }
  .waitlist__card {
    padding: 44px 26px;
  }
  .section-head h2,
  .waitlist h2,
  .why h2 {
    font-size: 30px;
  }
  .audience h3,
  .operators__panel h3 {
    font-size: 26px;
  }
  .footer {
    padding: 36px 20px;
  }
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .trust-grid,
  .op-stats {
    grid-template-columns: 1fr;
  }
  .stats {
    gap: 20px;
  }
  .stat__divider {
    display: none;
  }
}

/* ---------- Cookie consent bar ---------- */
/* Discreet glass card echoing the nav — same blur/border/radius language, the
   brand mark, and the site's gradient primary button. The explicit [hidden]
   rule is needed because the author display:flex would otherwise beat the UA
   [hidden] default. */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(660px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px 13px 15px;
  font-family: var(--font-body);
  background: rgba(12, 14, 22, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-bar[hidden] {
  display: none;
}

/* Small brand mark — the rotated square from .brand__mark, at nav-cta scale. */
.cookie-bar__mark {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(42, 105, 200, 0.45);
}

.cookie-bar__mark span {
  width: 11px;
  height: 11px;
  border: 2.5px solid #fff;
  border-radius: 3.5px;
  transform: rotate(45deg);
  display: block;
}

.cookie-bar__text {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.cookie-bar__actions {
  display: flex;
  flex: none;
  gap: 8px;
}

.cookie-bar__btn {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-bar__btn--ghost {
  background: transparent;
  color: var(--nav-link);
  border-color: var(--border-strong);
}

.cookie-bar__btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.cookie-bar__btn--accept {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42, 105, 200, 0.4);
}

.cookie-bar__btn--accept:hover {
  filter: brightness(1.06);
}

@media (max-width: 560px) {
  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: none;
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 15px;
  }
  .cookie-bar__text {
    flex: 1 1 auto;
  }
  .cookie-bar__actions {
    flex: 1 1 100%;
    justify-content: flex-end;
  }
}
