/* Luxury Dark Editorial Glassmorphism — visual only */

:root {
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --bg: #070707;
  --bg-elevated: #111111;
  --bg-muted: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4efe7;
  --text-heading: #f4efe7;
  --text-muted: #d9d3ca;
  --text-soft: #aaa39a;
  --accent: #f18b2b;
  --accent-hover: #ff9a3d;
  --accent-dim: #e77721;
  --accent-glow: rgba(231, 119, 33, 0.35);
  --accent-subtle: rgba(231, 119, 33, 0.14);
  --accent-gradient: linear-gradient(135deg, #e77721 0%, #f18b2b 48%, #ff9a3d 100%);
  --taupe: #1a1a1a;
  --taupe-deep: #111111;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 26px;
  --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(231, 119, 33, 0.06);
  --shadow-glow: 0 0 60px rgba(231, 119, 33, 0.15);
  --about-warm-top: #111111;
  --about-warm-mid: #1a1a1a;
  --about-warm-deep: #070707;
}

/* === Global atmosphere === */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 85% -10%, rgba(231, 119, 33, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 90% 60% at 10% 100%, rgba(241, 139, 43, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #070707 0%, #111111 42%, #1a1a1a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 72% 18%, rgba(255, 154, 61, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 15% 55%, rgba(231, 119, 33, 0.06) 0%, transparent 50%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
}

.grain {
  opacity: 0.06;
  mix-blend-mode: overlay;
}

a {
  color: var(--accent-hover);
}

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

/* === Typography — см. typography.css === */
.section__title {
  color: var(--text-heading);
}

p,
a,
button,
li,
input,
textarea,
label,
.logo,
.logo__muted,
.nav,
.nav a,
.direction-card,
.direction-card p,
.support__card,
.support__card p,
.platform-fit__card,
.platform-fit__card p,
.platform-fit__lead,
.platform-fit__perks,
.platform-fit__perks li,
.faq,
.faq__answer,
.section__subtitle,
.hero__lead,
.link-arrow,
.eyebrow,
.footer,
.tariff,
.tariff__desc,
.tariff__list,
.tariffs,
.review-card,
.reviews-stack-scroller,
.btn,
.btn--primary,
.btn--outline {
  font-family: var(--font-sans);
}

.section__title {
  color: var(--text-heading);
}

/* === Header === */
.header {
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.logo {
  color: var(--text-heading);
}

.logo:hover {
  color: var(--accent-hover);
}

.nav a {
  color: var(--text-muted);
}

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

.burger {
  border-color: var(--border-strong);
}

.burger span {
  background: var(--text-heading);
}

@media (max-width: 900px) {
  .nav {
    background: rgba(17, 17, 17, 0.96);
    border-bottom-color: var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
  }
}

/* === Buttons === */
.btn--primary {
  background: var(--accent-gradient);
  color: #070707;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-card), 0 0 32px rgba(231, 119, 33, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f18b2b 0%, #ff9a3d 100%);
  color: #070707;
  box-shadow: var(--shadow-soft), 0 0 48px rgba(255, 154, 61, 0.35);
}

.btn--outline {
  color: var(--text-heading);
  border-color: var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--outline:hover {
  border-color: rgba(255, 154, 61, 0.45);
  color: var(--accent-hover);
  background: var(--accent-subtle);
}

.link-arrow,
.eyebrow {
  color: var(--text-soft);
}

.link-arrow:hover {
  color: var(--accent-hover);
}

.eyebrow {
  color: var(--accent-dim);
  letter-spacing: 0.18em;
}

/* Hero atmosphere — hero-visual.css */

/* === Sections base === */
.section--dark {
  background: var(--bg-elevated);
  border-block-color: var(--glass-border);
}

/* === Platform fit === */
.section--platform-fit {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(231, 119, 33, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #111111 0%, #070707 55%, #1a1a1a 100%);
  border-block-color: var(--glass-border);
}

.platform-fit__glow--1 {
  background: radial-gradient(ellipse at center, rgba(231, 119, 33, 0.22) 0%, transparent 72%);
}

.platform-fit__glow--2 {
  background: radial-gradient(ellipse at center, rgba(255, 154, 61, 0.12) 0%, transparent 70%);
}

.platform-fit__glow--3 {
  background: radial-gradient(ellipse at center, rgba(241, 139, 43, 0.1) 0%, transparent 68%);
}

.platform-fit__shade--tl {
  background:
    radial-gradient(ellipse 65% 55% at 0% 0%, rgba(0, 0, 0, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 35%, rgba(231, 119, 33, 0.06) 0%, transparent 65%);
}

.platform-fit__shade--br {
  background: radial-gradient(ellipse 70% 60% at 100% 100%, rgba(231, 119, 33, 0.08) 0%, transparent 55%);
}

.platform-fit__beam {
  background: linear-gradient(
    128deg,
    transparent 0%,
    rgba(255, 154, 61, 0.04) 38%,
    rgba(231, 119, 33, 0.08) 58%,
    transparent 100%
  );
}

.section--platform-fit .platform-fit__head .section__title,
.section--platform-fit .platform-fit__lead,
.section--platform-fit .platform-fit__audience-label {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.section--platform-fit .platform-fit__card,
.section--platform-fit .platform-fit__perks-bar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.15);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section--platform-fit .platform-fit__card::after {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 52%);
}

.section--platform-fit .platform-fit__card:hover,
.section--platform-fit .platform-fit__perks-bar:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft), var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section--platform-fit .platform-fit__card-icon {
  color: var(--accent-hover);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.section--platform-fit .platform-fit__card-title {
  color: var(--text-heading);
}

.section--platform-fit .platform-fit__card p,
.section--platform-fit .platform-fit__perks li {
  color: var(--text-muted);
}

.section--platform-fit .platform-fit__perks li::before {
  background: var(--accent-hover);
  box-shadow: 0 0 0 3px rgba(231, 119, 33, 0.2);
}

/* === Directions === */
.section--directions {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(231, 119, 33, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #070707 0%, #111111 50%, #1a1a1a 100%);
  border-block-color: var(--glass-border);
}

.directions__mesh-fallback {
  background:
    radial-gradient(ellipse 80% 70% at 20% 30%, rgba(231, 119, 33, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 25%, rgba(255, 154, 61, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 65% 55% at 60% 85%, rgba(17, 17, 17, 0.9) 0%, transparent 58%),
    linear-gradient(155deg, #070707 0%, #111111 40%, #1a1a1a 100%);
}

.directions__mesh-veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, transparent 22%, transparent 78%, rgba(7, 7, 7, 0.55) 100%),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.25) 100%);
}

.section--directions .section__title,
.section--directions .section__subtitle {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.section--directions .directions-scroll {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section--directions .directions-scroll.is-scrollable::before {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border);
}

.section--directions .directions-scroll__list {
  scrollbar-color: var(--accent-dim) rgba(255, 255, 255, 0.08);
}

.section--directions .directions-scroll__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border);
}

.section--directions .directions-scroll__list::-webkit-scrollbar-thumb {
  background: var(--accent-gradient);
  border-color: rgba(255, 255, 255, 0.15);
}

.section--directions .directions-scroll__gradient--top {
  background: linear-gradient(to bottom, rgba(7, 7, 7, 0.92) 0%, transparent 100%);
}

.section--directions .directions-scroll__gradient--bottom {
  background: linear-gradient(to top, rgba(17, 17, 17, 0.92) 0%, transparent 100%);
}

.section--directions .direction-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section--directions .direction-card::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.section--directions .direction-card--entrance.is-inview:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.section--directions .direction-card--wide {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.06) 55%,
    rgba(231, 119, 33, 0.08) 100%
  );
  border-color: rgba(255, 154, 61, 0.2);
}

/* === Support === */
.section--support {
  background:
    radial-gradient(ellipse 90% 70% at 20% 15%, rgba(231, 119, 33, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 85% 85%, rgba(255, 154, 61, 0.1) 0%, transparent 48%),
    linear-gradient(165deg, #070707 0%, #111111 35%, #1a1a1a 70%, #070707 100%);
  border-block-color: var(--glass-border);
}

.support__orb--1,
.support__orb--2,
.support__orb--3,
.support__orb--4,
.support__orb--5 {
  background: rgba(231, 119, 33, 0.35);
}

.support__sphere--sharp {
  background: radial-gradient(
    circle at 28% 24%,
    rgba(255, 154, 61, 0.85) 0%,
    rgba(241, 139, 43, 0.65) 35%,
    rgba(231, 119, 33, 0.45) 70%,
    rgba(17, 17, 17, 0.9) 100%
  );
}

.support__sphere--blur {
  background: radial-gradient(circle, rgba(255, 154, 61, 0.45) 0%, rgba(231, 119, 33, 0.15) 72%);
}

.section--support .support__card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section--support .support__card::before {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, transparent 45%);
}

.section--support .support__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.section--support .support__num {
  color: var(--accent-hover);
}

/* === Tariffs & FAQ sections === */
.section--tight {
  background: transparent;
}

.section--tight .section__title,
.section--tight .section__subtitle {
  color: var(--text-heading);
}

.tariffs {
  background: var(--bg-elevated);
}

.tariff {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.tariff--featured {
  border-color: rgba(255, 154, 61, 0.35);
  box-shadow: var(--shadow-glow);
}

.tariff__badge {
  background: var(--accent-gradient);
  color: #070707;
}

.tariffs-feed.is-scrollable::before {
  background: rgba(255, 255, 255, 0.06);
}

.tariffs-feed::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.tariffs-feed::-webkit-scrollbar-thumb {
  background: var(--accent-gradient);
}

.tariffs-feed__fade--left {
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.tariffs-feed__fade--right {
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.tariff-slide img {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-card);
}

/* === Reviews === */
.section--dark#reviews,
#reviews.section--dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(231, 119, 33, 0.08) 0%, transparent 55%),
    var(--bg-elevated);
}

.review-card img {
  background: #111111;
  border-color: var(--glass-border);
  box-shadow: var(--shadow-card);
}

/* === Curator === */
#curator.section {
  background:
    radial-gradient(ellipse 55% 45% at 30% 50%, rgba(231, 119, 33, 0.08) 0%, transparent 55%),
    var(--bg);
}

.curator {
  background: transparent;
}

.curator .section__title {
  color: var(--text-heading);
}

.curator__photo-inner {
  background: transparent;
  border: none;
  box-shadow: none;
}


/* === FAQ === */
.faq__item {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq__item summary {
  color: var(--text-heading);
}

.faq__item summary::after {
  color: var(--accent-hover);
}

.faq__item[open] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 154, 61, 0.22);
}

/* === CTA === */
.cta-final {
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(231, 119, 33, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-elevated) 0%, #070707 100%);
  border-top-color: var(--glass-border);
}

.cta-final__glow--1 {
  background: rgba(231, 119, 33, 0.2);
}

.cta-final__glow--2 {
  background: rgba(255, 154, 61, 0.12);
}

.cta-channel {
  color: var(--text-heading);
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-card);
}

.cta-channel:hover {
  border-color: rgba(255, 154, 61, 0.35);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

/* === Contacts / curator block if present === */
#contacts .section__title,
#contacts .section__subtitle {
  color: var(--text-heading);
}

/* === Footer === */
.footer {
  background: #070707;
  border-top-color: var(--glass-border);
}

.footer__copy {
  color: var(--text-soft);
}

/* === Reveal (visual only) === */
.reveal {
  opacity: 0;
}

.reveal.is-visible {
  opacity: 1;
}
