:root {
  --wine: #21040a;
  --wine-2: #3a0712;
  --wine-3: #6d1327;
  --rose: #b84a5a;
  --cream: #f4d7b1;
  --ivory: #fff7ed;
  --ink: #160308;
  --muted: rgba(255, 247, 237, 0.72);
  --line: rgba(255, 247, 237, 0.16);
  --panel: rgba(255, 247, 237, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wine);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(33, 4, 10, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.hero-actions,
.trust-strip,
.check-list p,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.brand small,
nav a,
.header-cta,
.eyebrow,
.form-note {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 26px;
}

nav a,
.header-cta {
  font-size: 14px;
}

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 80px) 72px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 2, 5, 0.98) 0%, rgba(33, 4, 10, 0.84) 36%, rgba(33, 4, 10, 0.35) 70%, rgba(18, 2, 5, 0.55) 100%),
    linear-gradient(0deg, var(--wine) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 10vw, 142px);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.14;
  margin-bottom: 12px;
}

.tagline {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 40px);
  font-style: italic;
}

.hero-text,
.section-heading p,
.panel p,
.application-copy p,
.intro-text,
.soft-card p,
.wave-card p,
.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 590px;
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.button.primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.button.ghost {
  color: var(--ivory);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.header-cta:hover,
nav a:hover {
  transform: translateY(-1px);
  transition: transform 180ms ease, background 180ms ease;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
}

.hero-benefits {
  display: grid;
  gap: 10px;
  max-width: 610px;
  margin-top: 26px;
}

.hero-benefits p {
  margin: 0;
  border-left: 3px solid var(--cream);
  padding: 9px 0 9px 14px;
  color: rgba(255, 247, 237, 0.78);
  line-height: 1.45;
}

.hero-benefits strong {
  color: var(--ivory);
}

.section {
  padding: 96px clamp(20px, 6vw, 80px);
}

.intro,
.founder,
.split,
.application {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.intro-grid,
.benefit-grid,
.wave-grid,
.outcome-grid,
.tariff-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-card,
.benefit-card,
.wave-card,
.tariff,
.single-offer,
.panel,
.application-form,
.outcome-grid p {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.soft-card {
  min-height: 210px;
  border-radius: 8px;
  padding: 28px;
}

.intro-text {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 18px;
}

.benefits {
  background:
    linear-gradient(180deg, rgba(255, 247, 237, 0.035), rgba(109, 19, 39, 0.18)),
    var(--wine);
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  min-height: 290px;
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 247, 237, 0.1), rgba(109, 19, 39, 0.24));
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3 {
  color: var(--ivory);
}

.founder {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22, 3, 8, 0.56), rgba(109, 19, 39, 0.28)),
    var(--wine);
}

.founder-portrait {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.founder-portrait img,
.panel-image,
.outcomes-lead img,
.single-offer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-portrait img {
  object-position: center;
}

.founder-copy {
  max-width: 640px;
}

.founder-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.founder-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 760;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--cream);
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.wave-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wave-card {
  min-height: 360px;
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(109, 19, 39, 0.6), rgba(255, 247, 237, 0.06));
}

.wave-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--cream);
  font-weight: 900;
}

.wave-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 247, 237, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

.split {
  background: linear-gradient(180deg, rgba(109, 19, 39, 0.25), rgba(18, 2, 5, 0.22));
}

.panel,
.application-form {
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
}

.panel-image {
  height: 320px;
  margin-top: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-position: center;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  gap: 14px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
  color: var(--ivory);
}

.check-list span {
  color: var(--cream);
  font-weight: 900;
}

.bonus {
  background:
    linear-gradient(180deg, rgba(18, 2, 5, 0.22), rgba(109, 19, 39, 0.22)),
    var(--wine);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bonus-card {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.08);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.bonus-card p {
  color: var(--muted);
  line-height: 1.65;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--cream);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.outcomes {
  background: var(--ink);
}

.outcomes-lead {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
}

.outcomes-lead p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.outcomes-lead img {
  height: 360px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-position: right center;
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid p {
  min-height: 130px;
  margin: 0;
  border-radius: 8px;
  padding: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.tariff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.single-offer {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 0;
  overflow: hidden;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(109, 19, 39, 0.94), rgba(33, 4, 10, 0.86));
}

.offer-copy {
  padding: clamp(30px, 5vw, 54px);
}

.tariff {
  position: relative;
  border-radius: 8px;
  padding: 30px;
}

.tariff.featured {
  background: linear-gradient(180deg, rgba(109, 19, 39, 0.95), rgba(58, 7, 18, 0.88));
  border-color: rgba(244, 215, 177, 0.5);
  transform: translateY(-14px);
}

.tariff strong {
  display: block;
  margin: 18px 0 24px;
  color: var(--cream);
  font-size: 28px;
}

.single-offer strong {
  display: block;
  margin: 14px 0 28px;
  color: var(--cream);
  font-size: 40px;
  line-height: 1;
}

.single-offer h3 {
  margin-bottom: 0;
  font-size: 40px;
}

.single-offer ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  margin: 0 0 30px;
  padding-left: 20px;
  color: rgba(255, 247, 237, 0.76);
  line-height: 1.55;
}

.offer-note {
  max-width: 560px;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: rgba(255, 247, 237, 0.76);
  line-height: 1.6;
}

.single-offer img {
  min-height: 520px;
  object-position: center;
}

.payment-button {
  width: fit-content;
}

.tariff ul {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding-left: 20px;
  color: var(--muted);
}

.tariff .button {
  width: 100%;
}

.badge {
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.badge.dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border: 1px solid var(--line);
}

.application {
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 74, 90, 0.26), transparent 34%),
    linear-gradient(180deg, var(--wine), var(--ink));
}

.application-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ivory);
  padding: 14px 15px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(244, 215, 177, 0.55);
  outline-offset: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  line-height: 1.5;
}

.prepared-message {
  display: none;
  min-height: 140px;
  color: var(--ivory);
}

.prepared-message.is-visible,
.telegram-link.is-visible {
  display: block;
}

.telegram-link {
  display: none;
  text-align: center;
}

.site-footer {
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(18, 2, 5, 0.72), rgba(33, 4, 10, 0.96) 58%, var(--wine) 100%),
      linear-gradient(90deg, rgba(18, 2, 5, 0.7), rgba(18, 2, 5, 0.1));
  }

  .intro,
  .founder,
  .split,
  .application,
  .outcomes-lead,
  .single-offer {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 520px;
  }

  .single-offer img {
    min-height: 420px;
    order: -1;
  }

  .wave-grid,
  .bonus-grid,
  .benefit-grid,
  .outcome-grid,
  .tariff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tariff.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .intro-grid,
  .benefit-grid,
  .bonus-grid,
  .wave-grid,
  .outcome-grid,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 18px;
  }

  .founder-portrait,
  .outcomes-lead img,
  .single-offer img {
    min-height: 360px;
    height: 360px;
  }

  .panel-image {
    height: 240px;
  }

  .single-offer ul {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .payment-button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 14px;
  }
}
