/* ═══════════════════════════════════════════
   TRAFFIX — Home Hub 2026
   Минималистичный роутер по нишам
   ═══════════════════════════════════════════ */

:root {
  --hub-bg: #fafaf8;
  --hub-bg-alt: #f1f0ed;
  --hub-ink: #0e0e10;
  --hub-ink-2: #1a1a1f;
  --hub-muted: #6b6b73;
  --hub-line: rgba(14, 14, 16, .08);
  --hub-line-2: rgba(14, 14, 16, .04);
  --hub-accent: #ff8c00;
  --hub-accent-soft: #fff3e0;
  --hub-card: #ffffff;
  --hub-shell: 1240px;
  --hub-gutter: clamp(20px, 4vw, 40px);
  --hub-radius: 22px;
  --hub-radius-sm: 14px;
  --hub-ease: cubic-bezier(.2, .7, .25, 1);
}

/* base scoping */
body.home-hub {
  background: var(--hub-bg);
  color: var(--hub-ink);
}

.home-hub .hub-shell {
  max-width: var(--hub-shell);
  margin: 0 auto;
  padding: 0 var(--hub-gutter);
}

/* ═══════════════════════════════════════════
   HERO — компактный, воздушный
   ═══════════════════════════════════════════ */
.hub-hero {
  position: relative;
  padding: clamp(120px, 16vh, 160px) 0 clamp(64px, 8vh, 96px);
  overflow: hidden;
  isolation: isolate;
}

.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(255, 140, 0, .14), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(255, 140, 0, .08), transparent 70%),
    linear-gradient(180deg, var(--hub-bg) 0%, var(--hub-bg-alt) 100%);
}

.hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--hub-line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--hub-line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 75%);
  opacity: .55;
}

.hub-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--hub-line);
  border-radius: 100px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--hub-ink-2);
  letter-spacing: .02em;
  margin-bottom: 28px;
}

.hub-eyebrow .hub-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hub-accent);
  flex: none;
}

.hub-eyebrow .hub-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--hub-accent);
  opacity: 0;
  animation: hubPulse 2s var(--hub-ease) infinite;
}

@keyframes hubPulse {
  0% { transform: scale(.6); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hub-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--hub-ink);
  margin: 0 auto 24px;
  max-width: 22ch;
  text-wrap: balance;
}

.hub-title .accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--hub-ink) 60%, var(--hub-accent) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hub-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.05em;
  height: 3px;
  background: var(--hub-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: hubLine 1s var(--hub-ease) .4s forwards;
}

@keyframes hubLine {
  to { transform: scaleX(1); }
}

.hub-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--hub-muted);
}

.hub-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--hub-ease), box-shadow .25s var(--hub-ease), background .25s var(--hub-ease), border-color .25s var(--hub-ease), color .25s var(--hub-ease);
}

.hub-btn-primary {
  background: var(--hub-ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(14, 14, 16, .18);
}

.hub-btn-primary:hover {
  background: var(--hub-accent);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 140, 0, .35);
}

.hub-btn-ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--hub-ink);
  border-color: var(--hub-line);
  backdrop-filter: blur(8px);
}

.hub-btn-ghost:hover {
  background: #fff;
  border-color: rgba(14, 14, 16, .2);
  transform: translateY(-2px);
}

.hub-btn .arr {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--hub-ease);
}

.hub-btn:hover .arr {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   TRUST — горизонтальный ряд из 4 пунктов
   ═══════════════════════════════════════════ */
.hub-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  min-width: 0;
}

.trust-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--hub-accent-soft), rgba(255, 140, 0, .12));
  color: var(--hub-accent);
}

.trust-item-icon svg {
  width: 19px;
  height: 19px;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-item-text strong {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.012em;
  color: var(--hub-ink);
  line-height: 1.2;
  display: block;
}

.trust-item-text span {
  font-size: 11.5px;
  color: var(--hub-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  display: block;
}

@media (max-width: 820px) {
  .hub-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14px;
    max-width: 520px;
  }
}

@media (max-width: 420px) {
  .trust-item { gap: 10px; }
  .trust-item-icon { width: 36px; height: 36px; border-radius: 10px; }
  .trust-item-icon svg { width: 17px; height: 17px; }
  .trust-item-text strong { font-size: 13px; }
  .trust-item-text span { font-size: 11px; }
}

/* ═══════════════════════════════════════════
   NICHE GRID — главное на странице
   ═══════════════════════════════════════════ */
.hub-niches {
  position: relative;
  padding: clamp(72px, 10vh, 120px) 0;
}

.hub-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.hub-section-head-copy {
  max-width: 640px;
}

.hub-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--hub-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hub-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hub-accent);
}

.hub-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--hub-ink);
  margin: 0 0 14px;
}

.hub-section-head p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--hub-muted);
  margin: 0;
}

.hub-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--hub-muted);
  padding: 8px 14px;
  border: 1px solid var(--hub-line);
  border-radius: 100px;
  background: #fff;
}

.hub-counter b {
  color: var(--hub-ink);
  font-weight: 700;
}

/* bento grid */
.hub-niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hub-niche-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  min-height: 360px;
  border-radius: var(--hub-radius);
  background: var(--hub-card);
  border: 1px solid var(--hub-line);
  text-decoration: none;
  color: var(--hub-ink);
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--hub-ease), box-shadow .4s var(--hub-ease), border-color .4s var(--hub-ease);
}

.hub-niche-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 100% 0%, rgba(255, 140, 0, .12), transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--hub-ease);
}

.hub-niche-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14, 14, 16, .12);
  border-color: rgba(255, 140, 0, .35);
}

.hub-niche-card:hover::before {
  opacity: 1;
}

.hub-niche-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hub-niche-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--hub-muted);
  letter-spacing: .1em;
}

.hub-niche-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--hub-accent-soft);
  color: var(--hub-accent);
  transition: transform .4s var(--hub-ease), background .4s var(--hub-ease);
}

.hub-niche-card:hover .hub-niche-icon {
  transform: rotate(-6deg) scale(1.05);
  background: var(--hub-accent);
  color: #fff;
}

.hub-niche-icon svg {
  width: 28px;
  height: 28px;
}

.hub-niche-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--hub-ink);
  margin: 0 0 16px;
}

.hub-niche-marks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hub-niche-marks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--hub-muted);
}

.hub-niche-marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--hub-accent);
}

.hub-niche-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--hub-ink);
  padding-top: 20px;
  border-top: 1px solid var(--hub-line);
}

.hub-niche-cta .arr {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--hub-ease);
}

.hub-niche-card:hover .hub-niche-cta {
  color: var(--hub-accent);
}

.hub-niche-card:hover .hub-niche-cta .arr {
  transform: translateX(4px);
}

/* "your niche" — full-width CTA */
.hub-niche-card-new {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  min-height: auto;
  background: var(--hub-ink);
  color: #fff;
  border-color: var(--hub-ink);
  gap: 24px;
}

.hub-niche-card-new::before {
  background: radial-gradient(circle at 100% 50%, rgba(255, 140, 0, .35), transparent 55%);
  opacity: 1;
}

.hub-niche-card-new:hover {
  background: #1d1d22;
  border-color: var(--hub-accent);
  box-shadow: 0 24px 60px rgba(14, 14, 16, .35);
}

.hub-niche-card-new .hub-niche-new-body {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.hub-niche-card-new .hub-niche-icon {
  background: rgba(255, 140, 0, .18);
  color: var(--hub-accent);
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.hub-niche-card-new:hover .hub-niche-icon {
  background: var(--hub-accent);
  color: #fff;
}

.hub-niche-card-new h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 6px;
}

.hub-niche-card-new p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .65);
  margin: 0;
  max-width: 520px;
}

.hub-niche-card-new .hub-niche-cta {
  border-top: 0;
  padding-top: 0;
  color: #fff;
  flex-shrink: 0;
  background: var(--hub-accent);
  padding: 14px 22px;
  border-radius: 100px;
  transition: background .25s var(--hub-ease), transform .25s var(--hub-ease);
}

.hub-niche-card-new:hover .hub-niche-cta {
  background: #fff;
  color: var(--hub-ink);
  transform: translateX(0);
}

.hub-niche-card-new:hover .hub-niche-cta .arr {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .hub-niche-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-niche-card-new {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hub-niche-grid {
    grid-template-columns: 1fr;
  }
  .hub-niche-card {
    min-height: 300px;
    padding: 26px;
  }
  .hub-niche-card-new {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px;
  }
  .hub-niche-card-new .hub-niche-new-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hub-niche-card-new .hub-niche-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   PROOF — реальное агентство
   ═══════════════════════════════════════════ */
.hub-proof {
  position: relative;
  padding: clamp(72px, 10vh, 120px) 0;
  background: #fff;
  border-top: 1px solid var(--hub-line);
  border-bottom: 1px solid var(--hub-line);
}

.hub-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hub-proof-copy .hub-h2 {
  margin-bottom: 18px;
}

.hub-proof-copy p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--hub-muted);
  margin: 0 0 32px;
  max-width: 520px;
}

.hub-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hub-line);
  border-left: 1px solid var(--hub-line);
}

.hub-facts > div {
  padding: 16px 18px;
  border-right: 1px solid var(--hub-line);
  border-bottom: 1px solid var(--hub-line);
}

.hub-facts dt {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--hub-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hub-facts dd {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--hub-ink);
  letter-spacing: -.005em;
  line-height: 1.3;
}

.hub-facts dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color .25s var(--hub-ease), color .25s var(--hub-ease);
}

.hub-facts dd a:hover {
  color: var(--hub-accent);
  border-bottom-color: var(--hub-accent);
}

.hub-proof-shot {
  position: relative;
  display: block;
  border-radius: var(--hub-radius);
  overflow: hidden;
  border: 1px solid var(--hub-line);
  background: var(--hub-bg-alt);
  box-shadow: 0 30px 70px rgba(14, 14, 16, .12);
  transition: transform .4s var(--hub-ease), box-shadow .4s var(--hub-ease);
}

.hub-proof-shot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(14, 14, 16, .9), rgba(14, 14, 16, 0));
  z-index: 2;
  pointer-events: none;
}

.hub-proof-shot::after {
  content: "● ● ●";
  position: absolute;
  top: 11px;
  left: 16px;
  z-index: 3;
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, .55);
  pointer-events: none;
}

.hub-proof-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hub-proof-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px rgba(14, 14, 16, .18);
}

.hub-proof-shot-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(14, 14, 16, .85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--hub-ease), transform .3s var(--hub-ease);
}

.hub-proof-shot:hover .hub-proof-shot-tag {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .hub-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FORM — компактная, для "своей ниши"
   ═══════════════════════════════════════════ */
.hub-form-section {
  position: relative;
  padding: clamp(72px, 10vh, 120px) 0;
}

.hub-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.hub-form-copy .hub-h2 {
  margin-bottom: 18px;
}

.hub-form-copy p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  color: var(--hub-muted);
  margin: 0 0 32px;
}

.hub-direct-contacts {
  display: grid;
  gap: 12px;
}

.hub-direct-contacts a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius-sm);
  background: #fff;
  text-decoration: none;
  color: var(--hub-ink);
  font-weight: 600;
  font-size: 15px;
  transition: border-color .25s var(--hub-ease), transform .25s var(--hub-ease), box-shadow .25s var(--hub-ease);
}

.hub-direct-contacts a:hover {
  border-color: var(--hub-accent);
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(255, 140, 0, .12);
}

.hub-direct-contacts a span.icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--hub-accent-soft);
  color: var(--hub-accent);
  flex-shrink: 0;
}

.hub-direct-contacts a span.icon svg {
  width: 18px;
  height: 18px;
}

.hub-direct-contacts a span.label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--hub-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.hub-direct-contacts a span.value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--hub-ink);
}

.hub-form {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--hub-radius);
  background: var(--hub-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hub-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 100% 0%, rgba(255, 140, 0, .25), transparent 55%);
}

.hub-form-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-form-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hub-accent);
  box-shadow: 0 0 0 4px rgba(255, 140, 0, .25);
}

.hub-form .fi {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--hub-radius-sm);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  margin-bottom: 12px;
  transition: border-color .25s var(--hub-ease), background .25s var(--hub-ease);
}

.hub-form .fi::placeholder {
  color: rgba(255, 255, 255, .42);
}

.hub-form .fi:focus {
  outline: none;
  border-color: var(--hub-accent);
  background: rgba(255, 255, 255, .1);
}

.hub-form .f-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .65);
}

.hub-form .f-consent input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--hub-accent);
}

.hub-form .f-consent a {
  color: rgba(255, 255, 255, .85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
}

.hub-form .f-consent a:hover {
  color: var(--hub-accent);
  text-decoration-color: var(--hub-accent);
}

.hub-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--hub-accent);
  color: #fff;
  border: 0;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s var(--hub-ease), transform .25s var(--hub-ease), box-shadow .25s var(--hub-ease);
}

.hub-submit:hover {
  background: #ffa530;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 140, 0, .35);
}

.hub-form .f-status {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  min-height: 20px;
}

.hub-form-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}

@media (max-width: 880px) {
  .hub-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   reveal анимации (совместимы с script.js)
   ═══════════════════════════════════════════ */
.home-hub .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--hub-ease), transform .8s var(--hub-ease);
}

.home-hub .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hub .reveal.rd1 { transition-delay: .08s; }
.home-hub .reveal.rd2 { transition-delay: .16s; }
.home-hub .reveal.rd3 { transition-delay: .24s; }
.home-hub .reveal.rd4 { transition-delay: .32s; }
