/* ============ FONTS ============ */
@font-face {
  font-family: 'Druk Wide Cyr';
  src: url('fonts/DrukWideCyr-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Soyuz Grotesk';
  src: url('fonts/SoyuzGroteskBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============ TOKENS (per brand guide) ============ */
:root {
  /* Backgrounds */
  --color-bg: #0B0F14;
  --color-bg-alt: #0E1622;
  --color-surface: #1A1F27;
  --color-light-bg: #F4EFE6;

  /* Type */
  --color-text: #FFFFFF;
  --color-text-dim: rgba(255, 255, 255, 0.55);
  --color-text-mute: rgba(255, 255, 255, 0.35);

  /* Accents */
  --color-accent: #FF6B00;
  --color-highlight: #FFC83D;
  --color-data: #1E63F5;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Type families */
  --font-display: 'Druk Wide Cyr', 'Soyuz Grotesk', sans-serif;
  --font-sub: 'Soyuz Grotesk', 'Druk Wide Cyr', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry */
  --radius: 6px;
  --maxw: 1180px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ UTIL ============ */
.accent { color: var(--color-accent); }
.dim    { color: var(--color-text-mute); }

.eyebrow {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 28px;
}

/* ============ LOGO ============ */
.logo {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}
.logo .dot { color: var(--color-accent); }
.logo--sm { font-size: 24px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.nav__links a { transition: color .15s; }
.nav__links a:hover { color: var(--color-text); }
.nav__login {
  color: var(--color-text) !important;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: border-color .15s, color .15s;
}
.nav__login:hover {
  border-color: var(--color-accent);
  color: var(--color-accent) !important;
}

/* ============ HERO ============ */
.hero {
  padding: 48px 0 32px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

/* Brand card (avatar + name + role) — centered */
.brand-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  text-align: left;
}
.brand-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-card__fallback {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.04em;
}
.brand-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.brand-card__role {
  font-size: 14px;
  color: var(--color-text-mute);
  margin-top: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8.5vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 auto 36px;
  max-width: 980px;
}
.hero__accent {
  color: var(--color-data);
}

.hero__sub {
  font-size: 19px;
  color: var(--color-text-dim);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

/* ============ FORM (orange pill) ============ */
.form {
  display: flex;
  gap: 6px;
  max-width: 460px;
  margin: 0 auto 14px;
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  transition: border-color .2s;
}
.form:focus-within { border-color: var(--color-accent); }
.form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
}
.form input::placeholder { color: var(--color-text-mute); }
.form button,
.form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, background .15s;
  white-space: nowrap;
}
.form button:hover,
.form__btn:hover { transform: translateY(-1px); background: #ff7d1f; }

.hero__note {
  font-size: 13px;
  color: var(--color-text-mute);
  margin-bottom: 56px;
}

.hero__counter {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-bottom: 40px;
}
.hero__counter b { color: var(--color-text); font-weight: 700; }

/* Hero photo */
.hero__photo {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1F27 0%, #0E1622 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo--empty {
  position: relative;
}
.hero__photo--empty::after {
  content: 'img/hero.jpg — drop your photo here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-mute);
}

/* ============ STRESS LEVEL ============ */
.stress {
  padding: 40px 0 48px;
}
.stress__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 40px;
}
.stress__bar {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  height: 64px;
  padding: 0 22px;
  background: #000;
  border-radius: 18px;
  margin-bottom: 28px;
  position: relative;
}
.stress__fill {
  height: 12px;
  width: 16%;
  min-width: 92px;
  background: #22c55e;
  border-radius: 999px;
  position: relative;
  box-shadow: 0 0 22px 2px rgba(34, 197, 94, 0.65);
}
.stress__knob {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04120a;
  box-shadow: 0 0 18px 2px rgba(34, 197, 94, 0.8);
}
.stress__label {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 15px;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.02em;
}
.stress__caption {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* ============ STATS ============ */
.stats {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: left;
}
.stat__num {
  font-family: var(--font-sub);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.stat__label {
  font-size: 13px;
  color: var(--color-text-dim);
  letter-spacing: 0.02em;
}

/* ============ SECTION HEAD ============ */
.section__head {
  text-align: center;
  margin-bottom: 80px;
}
.section__head .eyebrow { margin-bottom: 20px; }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ============ PRODUCTS ============ */
.products {
  padding: 64px 0 100px;
}

.products__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.product {
  display: grid;
  grid-template-columns: 220px 1fr 40px;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: padding .25s, background .25s;
  position: relative;
}
.product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,107,0,0.04), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.product:hover { padding-left: 16px; padding-right: 16px; }
.product:hover::before { opacity: 1; }
.product:hover .product__arrow {
  color: var(--color-accent);
  transform: translateX(6px);
}

.product__left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.product__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text-mute);
}
.product__tag {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.product__body h3 {
  font-family: var(--font-sub);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}
.product__sub {
  font-family: var(--font-sub);
  font-size: 0.55em;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: none;
  letter-spacing: 0;
  vertical-align: middle;
  margin-left: 6px;
}
.product__body p {
  color: var(--color-text-dim);
  font-size: 15px;
  max-width: 540px;
}

/* ============ CONTACT ROWS ============ */
.contacts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--color-text);
  transition: padding .2s, background .2s;
  position: relative;
}
.contact-row:hover { padding-left: 20px; }
.contact-row:hover .contact-row__arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}
.contact-row__label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  width: 140px;
  flex-shrink: 0;
}
.contact-row__value {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
}
.contact-row__arrow {
  font-size: 20px;
  color: var(--color-text-mute);
  transition: color .2s, transform .2s;
}
@media (max-width: 560px) {
  .contact-row { flex-wrap: wrap; gap: 6px 16px; }
  .contact-row__label { width: auto; }
}
.product__arrow {
  font-size: 24px;
  color: var(--color-text-mute);
  transition: color .25s, transform .25s;
  justify-self: end;
}

/* ============ BANNER ============ */
.banner {
  width: 100%;
  line-height: 0;
  background: var(--color-bg);
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Capped-height banner — keeps following content visible on load */
.banner--short {
  height: 56vh;
  max-height: 620px;
}
.banner--short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .banner--short { height: 42vh; }
}

/* ============ STORY ============ */
.story {
  padding: 80px 0 120px;
  text-align: center;
}
.story .eyebrow { margin-bottom: 32px; }
.story__quote {
  font-family: var(--font-sub);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 40px;
}
.story__link {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 4px;
  transition: opacity .15s;
}
.story__link:hover { opacity: 0.7; }

/* ============ FOOTER ============ */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__copy {
  font-size: 12px;
  color: var(--color-text-mute);
  letter-spacing: 0.02em;
}
.footer__links {
  display: flex;
  gap: 24px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.footer__links a { transition: color .15s; }
.footer__links a:hover { color: var(--color-accent); }

/* ============ NAV ACTIVE STATE ============ */
.nav__links a.is-active { color: var(--color-text); }

/* ============ CONTAINER NARROW ============ */
.container--narrow { max-width: 880px; }

/* ============ PROMPTS PAGE ============ */
.prompts-page { padding: 80px 0 120px; }

.ppage__head { margin-bottom: 56px; }
.ppage__title {
  font-family: var(--font-sub);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ppage__sub {
  font-size: 17px;
  color: var(--color-text-dim);
  max-width: 620px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.ppage__rule {
  width: 64px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ============ TG CTA (Operator Blue) ============ */
.tg-cta {
  padding: 36px 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-data);
  border-radius: 12px;
  margin-bottom: 80px;
  box-shadow: 0 0 0 4px rgba(30, 99, 245, 0.08);
}
.tg-cta__desc {
  font-size: 20px;
  line-height: 1.45;
  color: var(--color-text);
  max-width: 720px;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.tg-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--color-data);
  color: #FFFFFF;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 0 0 0 rgba(30, 99, 245, 0);
}
.tg-cta__btn:hover {
  background: #2a73ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px -8px rgba(30, 99, 245, 0.6);
}
.tg-cta__icon {
  font-size: 14px;
  opacity: 0.9;
}
.tg-cta__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--color-text-mute);
}

/* ============ TABS ============ */
.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  background: transparent;
  border: none;
  padding: 14px 4px;
  margin: 0 16px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dim);
  cursor: pointer;
  position: relative;
  transition: color .15s;
  white-space: nowrap;
}
.tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.tab:hover { color: var(--color-text); }
.tab.is-active { color: var(--color-text); }
.tab.is-active::after { transform: scaleX(1); }

/* ============ PANELS ============ */
.panel { display: none; }
.panel.is-active { display: block; }

.panel__title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 12px;
}
.panel__desc {
  color: var(--color-text-dim);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 720px;
  line-height: 1.55;
}

/* ============ SUBTABS ============ */
.subtabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
}
.subtab {
  background: transparent;
  border: none;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dim);
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.subtab:hover { color: var(--color-text); }
.subtab.is-active {
  background: var(--color-accent);
  color: #0B0F14;
}

/* ============ PROMPT BLOCK ============ */
.prompt {
  display: none;
  position: relative;
  background: var(--color-bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  overflow: hidden;
}
.prompt.is-active { display: block; }
.prompt pre {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text);
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
}
.prompt__copy {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--color-surface);
  border: 1px solid var(--border);
  color: var(--color-text-dim);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: color .15s, border-color .15s;
}
.prompt__copy:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ============ LOCKED PROMPTS (members only) ============ */
.prompt.is-locked pre {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}
.prompt.is-locked .prompt__copy { display: none; }
.prompt__lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(11, 15, 20, 0.35);
  cursor: pointer;
  text-decoration: none;
}
.prompt__lock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0B0F14;
}
.prompt__lock-text {
  font-family: var(--font-sub);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.prompt__lock-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ============ PROMPTS RESPONSIVE ============ */
@media (max-width: 720px) {
  .prompts-page { padding: 48px 0 80px; }
  .cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }
  .btn--accent { justify-content: center; }
  .tab { font-size: 14px; margin-right: 8px; }
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .product { grid-template-columns: 140px 1fr 24px; gap: 24px; padding: 32px 0; }
  .product__num { font-size: 28px; }
}

@media (max-width: 640px) {
  .nav__inner { height: 60px; }
  .nav__links { gap: 20px; font-size: 11px; letter-spacing: 0.1em; }
  .nav__links a { white-space: nowrap; }
  .nav__login, .nav__hide-mobile { display: none; }

  .hero { padding: 32px 0 64px; }
  .hero__title {
    font-size: clamp(28px, 9.2vw, 52px);
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    max-width: 100%;
    text-wrap: balance;
  }
  .hero__sub { font-size: 16px; }
  .brand-card { margin-bottom: 40px; }
  .hero__photo { border-radius: 12px; }

  .stats { padding: 48px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stat { text-align: center; }

  .products, .story { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }

  .product {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .product__arrow { display: none; }
  .product:hover { padding-left: 0; padding-right: 0; }

  .footer__inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer__left { flex-direction: column; gap: 12px; align-items: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
}
