/* ============================================================
   OMP Streak Bot — главная страница
   ============================================================ */

:root {
  color-scheme: dark;

  --bg:            #121212;
  --accent:        #fc436f;
  --surface:       #131416;
  --surface-brd:   #1d1d1f;
  --btn-secondary: #2c2d31;
  --quote-bar:     #3b3c43;
  --divider:       #323337;
  --link:          #3685e2;
  --text:          #ffffff;

  --content:     1201px;
  --pad:         40px;
  --col-gap:     70px;
  --section-gap: 96px;

  --font-ui: 'Unbounded', system-ui, sans-serif;
  /* gg sans (Discord) и NuCore Condensed веб-лицензии не имеют — подставлены
     метрически близкие замены. */
  --font-chat: 'gg sans', 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-num:  'NuCore Condensed', 'Oswald', 'Arial Narrow', sans-serif;
}

/* ---------- Reset ---------- */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  /* Firefox не поддерживает -webkit-user-drag, там работает draggable="false". */
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */

.container {
  width: min(100% - var(--pad) * 2, var(--content));
  margin-inline: auto;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 684fr) minmax(0, 447fr);
  gap: var(--col-gap);
  align-items: start;
}

.section + .section { margin-top: var(--section-gap); }

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

.header { padding-top: 44px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13.7px;
}

.logo__mark {
  width: 26.298px;
  height: 24.019px;
}

.logo__name {
  font-size: 18.962px;
  font-weight: 600;
}

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

.hero { padding-top: 58px; }

.hero__title {
  font-size: clamp(32px, 4.487vw, 57.486px);
  font-weight: 700;
  line-height: 1.114;
}

.hero__title-accent {
  display: block;
  color: var(--accent);
}

.hero__lead {
  margin-top: 32px;
  max-width: 683.734px;
  font-size: 16.013px;
  font-weight: 400;
  line-height: normal;
  opacity: .7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17.7px;
  margin-top: 24px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41.879px;
  padding-inline: 20px;
  border-radius: 8.972px;
  font-family: var(--font-ui);
  font-size: 14.86px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: filter .18s ease, transform .18s ease;
}

.btn:hover  { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }

.btn--primary   { background: var(--accent); }
.btn--secondary { background: var(--btn-secondary); }

.btn--add     { width: 254.649px; }
.btn--support { width: 250.597px; }
.btn--cta     { width: 278px; height: 42px; }

/* ---------- Blockquote (стиль сообщений Discord) ---------- */

.quote {
  display: flex;
  gap: 11.609px;
}

.quote__bar {
  flex: none;
  align-self: stretch;
  width: 3.501px;
  border-radius: 1.751px;
  background: var(--quote-bar);
}

.quote__text {
  max-width: 404.368px;
  font-family: var(--font-chat);
  font-size: 13.526px;
  line-height: 1.25;
  opacity: .7;
}

.quote--sm { gap: 9.08px; }
.quote--sm .quote__bar  { width: 2.709px; border-radius: 1.354px; }
.quote--sm .quote__text { max-width: 382.818px; font-size: 10.464px; }

/* ---------- Карточка «How to Start Using the Bot?» ---------- */

.setup-card {
  display: flex;
  flex-direction: column;
  padding: 11.74px;
  background: var(--surface);
  border: 0.903px solid var(--surface-brd);
  border-radius: 5.417px;
}

.setup-card__title {
  font-family: var(--font-chat);
  font-size: 16.252px;
  font-weight: 800;
  line-height: 1.2;
}

.setup-card .quote { margin-top: 8px; }

.setup-card__shot { margin-top: 9px; }

.setup-card__shot img {
  width: 100%;
  aspect-ratio: 422.682 / 185.029;
  object-fit: cover;
  border-radius: 8.126px;
}

.setup-card__link {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-family: var(--font-chat);
  font-size: 10.464px;
  font-weight: 700;
  color: var(--link);
}

.setup-card__link:hover { text-decoration: underline; }

.bot-avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 14.4px;
  height: 14.4px;
  overflow: hidden;
  background: #000;
  border-radius: 50%;
}

.bot-avatar img {
  width: 42%;
  height: 70.5%;
}

/* ---------- Стек карточек стрика ----------
   Размеры внутри заданы в cqw, поэтому стек масштабируется целиком. */

.streak-stack {
  container-type: inline-size;
  position: relative;
  width: 100%;
  aspect-ratio: 684 / 184.21;
}

.streak-card {
  position: absolute;
  width: 84.45cqw;
  height: 16.61cqw;
  padding: 2.25cqw 2.35cqw;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--surface-brd);
  border-radius: 1.024cqw;
}

.streak-card--back  { top: 0;        left: 15.39cqw; z-index: 1; }
.streak-card--mid   { top: 5.16cqw;  left: 7.69cqw;  z-index: 2; }
.streak-card--front { top: 10.32cqw; left: 0;        z-index: 3; }

.streak-card--back::after,
.streak-card--mid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: inherit;
}

.streak-card--back::after { opacity: .85; }
.streak-card--mid::after  { opacity: .70; }

.streak-card__title {
  font-family: var(--font-chat);
  font-size: 3.071cqw;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.streak-card .quote {
  margin-top: 1.383cqw;
  gap: 1.697cqw;
}

.streak-card .quote__bar  { width: .512cqw; border-radius: .256cqw; }
.streak-card .quote__text { max-width: 59.12cqw; font-size: 1.978cqw; }

.streak-card__badge {
  position: absolute;
  top: 2.347cqw;
  right: 2.44cqw;
  display: grid;
  place-items: center;
  width: 11.914cqw;
  height: 11.914cqw;
  background: rgba(0, 0, 0, .5);
  border-radius: 2.854cqw;
  font-family: var(--font-num);
  font-size: 5.543cqw;
  line-height: 1;
}

/* ---------- Текстовые блоки секций ---------- */

/* Ширины из макета: именно они задают переносы строк в заголовках и абзацах. */
.feature--daily     { --title-w: 370.689px; --lead-w: 446.749px; }
.feature--commands  { --lead-w: 492.384px; }
.feature--languages { --lead-w: 445px; }

.feature__title {
  max-width: var(--title-w, none);
  font-size: 24.019px;
  font-weight: 700;
  line-height: 1.2;
}

.feature__lead {
  max-width: var(--lead-w, none);
  margin-top: 20px;
  font-size: 17.614px;
  font-weight: 400;
  line-height: normal;
  opacity: .7;
}

/* ---------- Карточка «Список команд» ---------- */

.cmd-card {
  width: 100%;
  max-width: 444px;
  padding-top: 15.41px;
  background: var(--surface);
  border: 1.167px solid var(--surface-brd);
  border-radius: 7.002px;
}

.cmd-card__title {
  margin: 0 0 10.59px 16px;
  font-family: var(--font-chat);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.cmd-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 7px 0 13px;
}

/* Разделитель в макете уже карточки, поэтому не border, а вставка. */
.cmd-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 14.5px;
  left: 13px;
  border-top: 1px solid var(--divider);
}

.cmd { padding-left: 16px; }

.cmd__name,
.cmd__slug {
  display: block;
  font-family: var(--font-chat);
  line-height: 1.2;
}

.cmd__name {
  font-size: 12px;
  font-weight: 700;
  color: #e2e2e4;
}

.cmd__slug {
  margin-top: 8.6px;
  font-size: 10px;
  font-weight: 500;
  color: #bfbfc2;
}

/* ---------- Карточка «Многоязычность» ---------- */

.lang-card {
  position: relative;
  width: 100%;
  max-width: 626px;
  padding: 18.9px 20px 19px;
  background: var(--surface);
  border: 1.432px solid var(--surface-brd);
  border-radius: 8.594px;
}

.lang-card__title {
  font-family: var(--font-chat);
  font-size: 18.41px;
  font-weight: 800;
  line-height: 1.2;
}

.lang-card__desc {
  margin-top: 10px;
  font-family: var(--font-chat);
  font-size: 12.27px;
  line-height: 1.2;
  color: #dcdcdf;
}

.quote--lang {
  align-items: flex-start;
  gap: 10px;
  margin-top: 6.3px;
}

.quote--lang .quote__bar {
  align-self: flex-start;
  width: 4px;
  height: 19px;
  border-radius: 2px;
}

.quote--lang .quote__text {
  max-width: none;
  padding-top: 2px;
  font-size: 12.27px;
  color: #9d9ea5;
  opacity: 1;
}

.select {
  display: flex;
  align-items: center;
  width: 418px;
  max-width: 100%;
  height: 42px;
  margin-top: 12px;
  padding-left: 14px;
  border: 0.7px solid #313135;
  border-radius: 9px;
  font-family: var(--font-chat);
  font-size: 15px;
  font-weight: 500;
  color: #dcdcdf;
}

.select + .select { margin-top: 7px; }

.select--placeholder { color: #96979e; }

/* Полоса у нижнего края — отдельный слой макета, уже своего родителя. */
.lang-card__strip {
  position: absolute;
  top: 96.24%;
  left: 0;
  width: 91.693%;
  height: 3.286%;
  overflow: hidden;
  border-radius: 3.5px;
}

.lang-card__strip img {
  position: absolute;
  top: -4086.83%;
  left: -9.89%;
  width: 113.22%;
  height: 4327.78%;
  max-width: none;
}

/* ---------- CTA ---------- */

.cta {
  padding-bottom: 98px;
  text-align: center;
}

/* ============================================================
   Адаптив
   ============================================================ */

@media (max-width: 1120px) {
  :root {
    --pad: 32px;
    --col-gap: 44px;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 24px;
    --section-gap: 72px;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero { padding-top: 44px; }

  /* В одну колонку строка стала бы слишком длинной для чтения. */
  .hero__lead { max-width: 620px; }
  .feature { --title-w: none; --lead-w: 620px; }

  /* Не растягиваем блоки сверх размеров из макета. */
  .setup-card   { max-width: 447px; }
  .streak-stack { max-width: 684px; }
}

@media (max-width: 700px) {
  :root { --section-gap: 60px; }

  /* Стек вырождается в одну карточку — задние слои декоративные. */
  .streak-stack {
    container-type: normal;
    position: static;
    aspect-ratio: auto;
  }

  .streak-card--back,
  .streak-card--mid { display: none; }

  /* relative, а не static: счётчик позиционируется относительно карточки */
  .streak-card--front {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 15px 100px 18px 16px;
    border-radius: 7px;
  }

  .streak-card--front .streak-card__title {
    font-size: 17px;
    white-space: normal;
  }

  .streak-card--front .quote { margin-top: 10px; gap: 11.6px; }
  .streak-card--front .quote__bar  { width: 3.5px; border-radius: 1.75px; }
  .streak-card--front .quote__text { max-width: none; font-size: 12.5px; }

  .streak-card__badge {
    top: 16px;
    right: 16px;
    width: 68px;
    height: 68px;
    border-radius: 17px;
    font-size: 32px;
  }

  .btn--add,
  .btn--support,
  .btn--cta { width: 100%; }

  .cta { padding-bottom: 72px; }
}

/* ---------- Language controls ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.locale-picker {
  position: relative;
  display: block;
}

.locale-picker::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #a9a9af;
  border-bottom: 1.5px solid #a9a9af;
  transform: translateY(-68%) rotate(45deg);
}

.locale-picker__select {
  width: 100%;
  min-width: 0;
  border: 1px solid #313135;
  background: #191a1d;
  color: #dcdcdf;
  font-family: var(--font-chat);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.locale-picker__select:hover,
.locale-picker__select:focus-visible {
  border-color: #4a4b51;
  background: #1d1e22;
}

.locale-picker--header {
  width: min(230px, 42vw);
}

.locale-picker--header .locale-picker__select {
  height: 41.879px;
  padding: 0 38px 0 13px;
  border-radius: 8.972px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
}

.locale-picker--card {
  width: 418px;
  max-width: 100%;
  margin-top: 12px;
}

.locale-picker--card .locale-picker__select {
  height: 42px;
  padding: 0 42px 0 14px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .header__inner {
    align-items: flex-start;
  }

  .logo__name {
    display: none;
  }

  .locale-picker--header {
    width: min(245px, calc(100vw - 92px));
  }
}

/* ============================================================
   Visual polish — сохраняет исходный дизайн и геометрию
   ============================================================ */

:root {
  --surface-raised: #17181b;
  --surface-hover: #1b1c20;
  --accent-soft: rgba(252, 67, 111, .17);
  --accent-glow: rgba(252, 67, 111, .28);
  --card-shadow: 0 22px 70px rgba(0, 0, 0, .24);
  --card-shadow-hover: 0 28px 80px rgba(0, 0, 0, .34);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 7%, rgba(252, 67, 111, .09), transparent 28rem),
    radial-gradient(circle at 88% 42%, rgba(54, 133, 226, .055), transparent 31rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

::selection {
  color: #fff;
  background: rgba(252, 67, 111, .62);
}

.header {
  position: relative;
  z-index: 10;
}

.logo,
.btn,
.setup-card__link,
.locale-picker__select {
  -webkit-tap-highlight-color: transparent;
}

.logo__mark {
  filter: drop-shadow(0 0 11px rgba(252, 67, 111, .24));
}

.logo__name {
  letter-spacing: -.025em;
}

.hero__title {
  max-width: 720px;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero__title-accent {
  width: fit-content;
  color: transparent;
  background: linear-gradient(105deg, #ff4d78 0%, #ff7597 54%, #fc436f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 10px 26px rgba(252, 67, 111, .12));
}

.hero__lead,
.feature__lead {
  color: rgba(255, 255, 255, .72);
  opacity: 1;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transition:
    transform .2s ease,
    filter .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .16), transparent 75%);
  transform: translateX(-45%);
  transition: opacity .2s ease, transform .45s ease;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, #fc436f, #ed315e);
  box-shadow: 0 12px 34px rgba(252, 67, 111, .22);
}

.btn--primary:hover {
  box-shadow: 0 16px 42px rgba(252, 67, 111, .32);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, .055);
  background: linear-gradient(180deg, #303136, #292a2e);
}

.setup-card,
.cmd-card,
.lang-card,
.streak-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 43%),
    var(--surface);
  border-color: rgba(255, 255, 255, .065);
  box-shadow: var(--card-shadow);
}

.setup-card,
.cmd-card,
.lang-card {
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease;
}

.setup-card:hover,
.cmd-card:hover,
.lang-card:hover {
  border-color: rgba(255, 255, 255, .11);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.setup-card {
  padding: 13px;
  border-radius: 9px;
}

.setup-card__shot {
  overflow: hidden;
  border-radius: 8.126px;
  background: #0e0f11;
}

.setup-card__shot img {
  transition: transform .35s ease, filter .35s ease;
}

.setup-card:hover .setup-card__shot img {
  transform: scale(1.015);
  filter: brightness(1.035);
}

.setup-card__link {
  width: fit-content;
  transition: color .18s ease, transform .18s ease;
}

.setup-card__link:hover {
  color: #67a9f5;
  text-decoration: none;
  transform: translateX(2px);
}

.streak-stack {
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, .22));
}

.streak-card {
  transition: transform .28s ease, border-color .28s ease;
}

.streak-stack:hover .streak-card--back {
  transform: translate(3px, -2px);
}

.streak-stack:hover .streak-card--mid {
  transform: translate(1px, -1px);
}

.streak-stack:hover .streak-card--front {
  border-color: rgba(252, 67, 111, .17);
  transform: translateY(-2px);
}

.streak-card__badge {
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    0 11px 28px rgba(0, 0, 0, .24);
  text-shadow: 0 4px 18px rgba(255, 255, 255, .11);
}

.feature__title {
  letter-spacing: -.035em;
  text-wrap: balance;
}

.cmd-card,
.lang-card {
  overflow: hidden;
}

.cmd-card::after,
.lang-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 67, 111, .07), transparent 68%);
}

.cmd-card {
  position: relative;
}

.cmd-card::after {
  top: -85px;
  right: -65px;
}

.lang-card::after {
  top: -75px;
  right: -40px;
}

.cmd-row {
  column-gap: 6px;
}

.cmd {
  padding-right: 10px;
}

.cmd__slug {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  background: rgba(255, 255, 255, .035);
  color: #cdced3;
  overflow-wrap: anywhere;
}

.locale-picker__select {
  border-color: rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, #1d1e22, #191a1d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

.locale-picker__select:hover,
.locale-picker__select:focus-visible {
  border-color: rgba(252, 67, 111, .36);
  background: #1e1f23;
  box-shadow: 0 0 0 3px rgba(252, 67, 111, .065);
}

.locale-picker--header .locale-picker__select:hover {
  transform: translateY(-1px);
}

.lang-card__strip {
  filter: saturate(1.08) brightness(1.06);
}

.cta {
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 34px;
  width: min(560px, 80vw);
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(252, 67, 111, .12), transparent 68%);
  transform: translateX(-50%);
  filter: blur(10px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__text,
  .setup-card,
  .streak-stack,
  .feature__text,
  .cmd-card,
  .lang-card {
    animation: page-enter .62s cubic-bezier(.2, .72, .25, 1) backwards;
  }

  .setup-card { animation-delay: .06s; }
  .streak-stack { animation-delay: .08s; }
  .feature__text { animation-delay: .10s; }
  .cmd-card { animation-delay: .12s; }
  .lang-card { animation-delay: .14s; }

  @keyframes page-enter {
    from {
      opacity: 0;
      transform: translateY(11px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 700px) {
  body {
    background:
      radial-gradient(circle at 15% 4%, rgba(252, 67, 111, .085), transparent 21rem),
      var(--bg);
  }

  body::before {
    opacity: .16;
    background-size: 34px 34px;
  }

  .header {
    padding-top: 28px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__title {
    letter-spacing: -.035em;
  }

  .hero__actions {
    gap: 11px;
  }

  .setup-card,
  .cmd-card,
  .lang-card {
    box-shadow: 0 18px 48px rgba(0, 0, 0, .21);
  }

  .setup-card:hover,
  .cmd-card:hover,
  .lang-card:hover,
  .streak-stack:hover .streak-card--front {
    transform: none;
  }

  .cmd-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .cmd-row .cmd + .cmd {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .055);
  }

  .cmd {
    padding-inline: 16px;
  }

  .cmd__slug {
    margin-top: 7px;
  }
}


/* SEO guide promo and footer */
.guide-promo {
  padding-top: 54px;
  padding-bottom: 28px;
}

.guide-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(252, 67, 111, .12), transparent 26rem),
    linear-gradient(145deg, rgba(31, 31, 35, .96), rgba(22, 22, 25, .98));
  box-shadow: 0 24px 62px rgba(0, 0, 0, .23), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.guide-promo__content { max-width: 780px; }
.guide-promo__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fc436f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.guide-promo__title { margin: 0 0 12px; }
.guide-promo__lead { margin: 0; max-width: 760px; }
.guide-promo__link { flex: 0 0 auto; white-space: nowrap; }

.site-footer {
  padding: 36px 0 54px;
  border-top: 1px solid rgba(255,255,255,.055);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__brand img { width: 34px; height: 34px; }
.site-footer__brand strong { display: block; font-size: 13px; }
.site-footer__brand p { margin: 4px 0 0; color: #8f9098; font-size: 11px; line-height: 1.5; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__links a { color: #a8a9b0; font-size: 11px; text-decoration: none; transition: color .18s ease; }
.site-footer__links a:hover { color: #fff; }

/* Guide pages */
.guide-page { min-height: 100vh; }
.guide-header { padding: 28px 0 18px; }
.guide-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.guide-header__back { color: #b8b9c0; font-size: 12px; text-decoration: none; }
.guide-header__back:hover { color: #fff; }
.guide-hero { padding: 56px 0 34px; }
.guide-hero__inner { max-width: 940px; }
.guide-hero__eyebrow { color: #fc436f; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.guide-hero h1 { margin: 16px 0 18px; max-width: 980px; font-size: clamp(36px, 7vw, 76px); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.guide-hero__lead { max-width: 820px; margin: 0; color: #a9aab1; font-size: clamp(16px, 2vw, 21px); line-height: 1.65; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.guide-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.075); border-radius: 999px; background: rgba(255,255,255,.025); color: #9c9da5; font-size: 11px; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 48px; align-items: start; padding-bottom: 84px; }
.guide-article { min-width: 0; }
.guide-article h2 { margin: 54px 0 16px; font-size: clamp(26px, 4vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
.guide-article h3 { margin: 30px 0 10px; font-size: 18px; line-height: 1.35; }
.guide-article p, .guide-article li { color: #b4b5bc; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.78; }
.guide-article strong { color: #f2f2f4; }
.guide-article a { color: #ff7897; }
.guide-article ul, .guide-article ol { padding-left: 22px; }
.guide-article li + li { margin-top: 8px; }
.guide-note { margin: 30px 0; padding: 24px 26px; border: 1px solid rgba(252,67,111,.15); border-radius: 16px; background: rgba(252,67,111,.055); }
.guide-note p { margin: 0; }
.guide-plan { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 22px 0; }
.guide-plan__item { padding: 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.025); }
.guide-plan__item b { display:block; margin-bottom:6px; color:#f4f4f6; font-size:13px; }
.guide-plan__item p { margin:0; font-size:14px; line-height:1.55; }
.guide-toc { position: sticky; top: 28px; padding: 20px; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; background: rgba(25,25,28,.82); backdrop-filter: blur(14px); }
.guide-toc strong { display:block; margin-bottom:12px; font-size:12px; }
.guide-toc a { display:block; padding:7px 0; color:#96979f; font-size:11px; line-height:1.45; text-decoration:none; }
.guide-toc a:hover { color:#fff; }
.guide-cta { margin-top: 52px; padding: 30px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: linear-gradient(145deg, rgba(252,67,111,.105), rgba(28,28,31,.96)); }
.guide-cta h2 { margin-top: 0; }
.guide-cta__actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.faq-list { display:grid; gap:12px; }
.faq-item { padding: 20px 22px; border: 1px solid rgba(255,255,255,.07); border-radius:14px; background:rgba(255,255,255,.02); }
.faq-item h3 { margin:0 0 8px; font-size:15px; }
.faq-item p { margin:0; font-size:14px; }

@media (max-width: 860px) {
  .guide-promo__inner { align-items: flex-start; flex-direction: column; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; order: -1; }
  .guide-plan { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .guide-promo__inner { padding: 26px 22px; }
  .guide-promo__link { width: 100%; text-align: center; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__links { gap: 14px; }
  .guide-header__inner { align-items:flex-start; }
  .guide-hero { padding-top: 38px; }
  .guide-hero h1 { font-size: clamp(34px, 12vw, 56px); }
  .guide-article p, .guide-article li { font-size:15px; }
}
