/* =========================================================
   Montarqen — Cascade Fruit Mechanics & Puzzle Analytics
   Palette: berry crimson, plum, gold, cream
   ========================================================= */

:root {
  --berry: #8c1d3f;
  --berry-dark: #5d0f28;
  --plum: #2b0f1d;
  --gold: #f2a900;
  --gold-soft: #ffd166;
  --lime: #7cb342;
  --cream: #fff8ec;
  --cream-2: #fdeedb;
  --ink: #241019;
  --ink-soft: #5c4650;
  --line: #eadbc8;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(92, 20, 47, .10);
  --shadow-lg: 0 24px 60px rgba(92, 20, 47, .18);
  --maxw: 1160px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--berry); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--plum);
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--berry) 0%, var(--gold) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(140, 29, 63, .28);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: .4px;
  font-weight: 700;
}

.brand__name span { color: var(--berry); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.nav a:hover { background: var(--cream-2); color: var(--berry); }

.nav a.is-active { background: var(--berry); color: #fff; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--berry);
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(242, 169, 0, .35), transparent 60%),
    radial-gradient(700px 420px at 8% 110%, rgba(140, 29, 63, .22), transparent 60%),
    linear-gradient(180deg, #fff8ec 0%, #fdeedb 100%);
  padding: 76px 0 84px;
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--berry);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  box-shadow: var(--shadow);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
  margin: 22px 0 18px;
  color: var(--plum);
  letter-spacing: -.5px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 28px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--berry) 0%, #b8264f 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(140, 29, 63, .3);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(140, 29, 63, .36); }

.btn--ghost {
  background: #fff;
  color: var(--berry);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.btn--ghost:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ff8f1f 100%);
  color: #3a1c00;
  box-shadow: 0 12px 26px rgba(242, 169, 0, .35);
}

.btn--gold:hover { transform: translateY(-2px); }

/* Decorative 6x5 cascade board */

.board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.board__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.cell {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  animation: drop .7s cubic-bezier(.22, 1, .36, 1) both;
}

.cell--hot {
  background: linear-gradient(150deg, #fff3d6, #ffe0a8);
  border-color: var(--gold-soft);
  box-shadow: inset 0 0 0 2px rgba(242, 169, 0, .35);
}

@keyframes drop {
  from { opacity: 0; transform: translateY(-22px) scale(.9); }
  to   { opacity: 1; transform: none; }
}

.board__foot {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

/* ---------- Sections ---------- */

section { padding: 72px 0; }

.section--tint { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }

.section--cream { background: var(--cream-2); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--plum);
  margin: 0 0 14px;
}

h3 {
  font-size: 21px;
  color: var(--berry-dark);
  margin: 34px 0 10px;
}

h4 { font-size: 17.5px; margin: 22px 0 8px; color: var(--plum); }

.section__intro {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0 0 34px;
}

/* ---------- Article ---------- */

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 54px);
  box-shadow: var(--shadow);
}

.article p { max-width: 78ch; }

.article ul, .article ol { max-width: 74ch; padding-left: 22px; }

.article li { margin-bottom: 9px; }

.pull {
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, #fff9ec, #fff);
  padding: 16px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17.5px;
  color: var(--berry-dark);
  margin: 26px 0;
}

.toc {
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 30px;
}

.toc strong { display: block; margin-bottom: 8px; color: var(--plum); }

.toc ol { margin: 0; padding-left: 20px; }

.toc a { color: var(--berry); text-decoration: none; font-weight: 600; }

.toc a:hover { text-decoration: underline; }

/* ---------- Tables ---------- */

.table-scroll { overflow-x: auto; margin: 24px 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  min-width: 520px;
}

th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }

th { background: var(--cream-2); color: var(--plum); font-weight: 700; }

tbody tr:nth-child(even) { background: #fffdf8; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: var(--cream-2);
  margin-bottom: 14px;
}

.card h3 { margin: 0 0 8px; font-size: 19px; }

.card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

.card__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(124, 179, 66, .16);
  color: #3f6b17;
}

.badge--gold { background: rgba(242, 169, 0, .18); color: #8a5f00; }

.badge--berry { background: rgba(140, 29, 63, .12); color: var(--berry); }

/* ---------- Pricing / shop ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.plan {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.plan--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.plan--featured::after {
  content: "Most requested";
  position: absolute;
  top: -13px;
  right: 22px;
  background: var(--gold);
  color: #3a1c00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--berry);
  margin: 10px 0 4px;
}

.plan__price small { font-size: 15px; color: var(--ink-soft); font-family: var(--font); }

.plan ul { list-style: none; padding: 0; margin: 18px 0 24px; }

.plan li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(124, 179, 66, .2);
  box-shadow: inset 0 0 0 4px var(--lime);
}

.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- Forms ---------- */

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.6vw, 44px);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.field { display: flex; flex-direction: column; gap: 7px; }

.field--full { grid-column: 1 / -1; }

label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--plum);
}

label .req { color: var(--berry); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}

textarea { min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 169, 0, .18);
}

.hint { font-size: 13.5px; color: var(--ink-soft); }

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--berry); }

.form-note {
  margin-top: 20px;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.form-status {
  display: none;
  margin-top: 18px;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 600;
}

.form-status.is-ok {
  display: block;
  background: rgba(124, 179, 66, .14);
  border: 1px solid rgba(124, 179, 66, .45);
  color: #38610f;
}

.form-status.is-error {
  display: block;
  background: rgba(140, 29, 63, .08);
  border: 1px solid rgba(140, 29, 63, .35);
  color: var(--berry);
}

/* ---------- Notice ---------- */

.notice {
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  background: linear-gradient(135deg, var(--plum), var(--berry-dark));
  color: #ffeede;
  box-shadow: var(--shadow-lg);
}

.notice h3 { color: var(--gold-soft); margin: 0 0 8px; }

.notice p { margin: 0; color: rgba(255, 238, 222, .88); font-size: 15.5px; }

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

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--berry);
  line-height: 1;
}

.stat__label { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }

/* ---------- FAQ ---------- */

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--plum);
  font-size: 16.5px;
}

details[open] summary { color: var(--berry); margin-bottom: 8px; }

details p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Legal ---------- */

.legal { background: #fff; }

.legal-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow);
  max-width: 900px;
}

.legal-body h2 { font-size: 25px; margin-top: 36px; }

.legal-body h2:first-of-type { margin-top: 0; }

.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 16px; }

.legal-meta {
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: inline-block;
  margin-bottom: 26px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.info-list { list-style: none; padding: 0; margin: 0; }

.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.info-list li:last-child { border-bottom: 0; }

.info-list span.k {
  min-width: 96px;
  font-weight: 700;
  color: var(--plum);
  font-size: 14.5px;
}

.info-list span.v { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--plum);
  color: rgba(255, 238, 222, .78);
  padding: 58px 0 30px;
  font-size: 15px;
}

.site-footer a { color: rgba(255, 238, 222, .78); text-decoration: none; }

.site-footer a:hover { color: var(--gold-soft); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.site-footer h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }

.site-footer li { margin-bottom: 9px; }

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 238, 222, .18);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 238, 222, .6);
}

.disclaimer-strip {
  background: var(--berry-dark);
  color: #ffe6cf;
  font-size: 13.5px;
  text-align: center;
  padding: 11px 24px;
}

/* ---------- Page head ---------- */

.page-head {
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(242, 169, 0, .3), transparent 60%),
    linear-gradient(180deg, #fff8ec, #fdeedb);
  padding: 60px 0 54px;
  border-bottom: 1px solid var(--line);
}

.page-head h1 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 12px; }

.page-head p { max-width: 68ch; color: var(--ink-soft); font-size: 18px; margin: 0; }

.crumbs { font-size: 13.5px; color: var(--ink-soft); }

.crumbs a { color: var(--berry); text-decoration: none; }

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.stack-32 > * + * { margin-top: 32px; }

/* ---------- Responsive ---------- */

@media (max-width: 940px) {
  .hero__grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .site-header__inner { position: relative; }
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .board__grid { gap: 6px; }
  .cell { font-size: 18px; border-radius: 9px; }
}

/* =========================================================
   Game catalogue components (Google Play editorial)
   ========================================================= */

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filters__btn {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: .18s ease;
}

.filters__btn:hover { border-color: var(--gold); color: var(--berry); }
.filters__btn.is-on { background: var(--berry); border-color: var(--berry); color: #fff; }

.games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.game {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.game:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.game__media { position: relative; background: var(--cream-2); }
.game__media img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }

.game__genre {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(43, 15, 29, .82);
  color: #ffe6c9;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}

.game__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.game__title { font-size: 20px; margin: 0 0 6px; color: var(--plum); font-family: var(--font-display); }
.game__dev { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px; }
.game__text { font-size: 15px; color: var(--ink-soft); margin: 0 0 16px; }

.game__specs {
  list-style: none;
  padding: 14px 0 0;
  margin: auto 0 16px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: grid;
  gap: 6px;
}

.game__specs li { display: flex; justify-content: space-between; gap: 12px; }
.game__specs b { color: var(--plum); font-weight: 700; }

.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.stars small { color: var(--ink-soft); font-size: 13px; letter-spacing: 0; margin-left: 6px; }

.game .btn { justify-content: center; font-size: 15px; padding: 12px 20px; }

.shot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.shot-strip img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.figure-note { font-size: 13.5px; color: var(--ink-soft); margin-top: -12px; }

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

@media (max-width: 860px) { .split-media { grid-template-columns: 1fr; } }

/* screenshot-style figures inside articles */
.guide-shot { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); margin: 8px 0 10px; }
.guide-caption { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 22px; }

/* =========================================================
   Cookie consent (Consent Mode v2 ready)
   ========================================================= */
.cc {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 999;
  background: #fff; color: var(--plum);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  padding: 20px 24px;
  animation: cc-in .28s ease both;
}
.cc[hidden] { display: none; }
@keyframes cc-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cc__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.cc__title { display: block; font-size: 15.5px; margin-bottom: 4px; color: var(--plum); }
.cc__body { font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 74ch; margin: 0; }
.cc__link { color: var(--berry); font-weight: 700; }
.cc__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cc__btn {
  font-family: inherit; font-size: 14.5px; font-weight: 800; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap;
}
.cc__btn--ghost { background: transparent; color: var(--plum); }
.cc__btn--ghost:hover { border-color: var(--berry); color: var(--berry); }
.cc__btn--solid { background: var(--berry); color: #fff; border-color: transparent; }
.cc__btn--solid:hover { filter: brightness(1.06); }
@media (max-width: 720px) {
  .cc { left: 8px; right: 8px; bottom: 8px; padding: 18px; }
  .cc__actions { width: 100%; }
  .cc__btn { flex: 1; }
}
