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

:root {
  --bg: #080A08;
  --bg-elevated: #101210;
  --text: #F2EDE4;
  --accent: #C4A05A;
  --accent-dim: rgba(196, 160, 90, 0.45);
  --burgundy: #7A2A38;
  --burgundy-deep: #521822;
  --muted: #9A9186;
  --card: #121410;
  --line: rgba(196, 160, 90, 0.22);
  --line-faint: rgba(196, 160, 90, 0.1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1180px;
  --header-h: 4.25rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.bg-atmo {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-atmo__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(122, 42, 56, 0.14) 0%, rgba(196, 160, 90, 0.06) 35%, transparent 62%);
  opacity: 0;
}

.bg-atmo__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--line-faint) 1px, transparent 1px),
    linear-gradient(var(--line-faint) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(8, 10, 8, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-faint);
  opacity: 0;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.site-header__logo em {
  font-style: normal;
  color: var(--accent);
}

.site-header__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.site-header__cta:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--text);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 42% 58%;
  padding-top: var(--header-h);
}

.hero__panel {
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero__panel--text {
  border-right: 1px solid var(--line-faint);
  background: linear-gradient(165deg, rgba(16, 18, 16, 0.6) 0%, transparent 55%);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(2rem, 4.5vh, 3rem) clamp(1.75rem, 4vw, 3rem);
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
  min-height: calc(100svh - var(--header-h) - clamp(3.5rem, 8vh, 5.5rem));
  padding: clamp(0.75rem, 2vh, 1.5rem) 0;
}

.hero__eyebrow {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  opacity: 0;
}

.hero__rule {
  width: 3.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: clamp(1.15rem, 2.5vh, 1.65rem);
  opacity: 0;
  transform-origin: left;
  transform: scaleX(0);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  opacity: 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
  opacity: 0;
  max-width: 30rem;
}

.hero__actions {
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  opacity: 0;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 1.05rem 2.1rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  border: 1px solid var(--accent-dim);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.hero__btn:hover {
  filter: brightness(1.1);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.hero__legal {
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.6;
  color: var(--text);
  padding: clamp(1rem, 2vh, 1.2rem) clamp(1rem, 2vw, 1.25rem);
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(122, 42, 56, 0.18) 0%, rgba(122, 42, 56, 0.04) 100%);
  opacity: 0;
  margin-top: auto;
}

.hero__legal em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.hero__panel--visual {
  position: relative;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-content: stretch;
  min-height: calc(100svh - var(--header-h));
  background: var(--bg-elevated);
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(8, 10, 8, 0.92);
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  backdrop-filter: blur(8px);
  opacity: 0;
  max-width: min(18rem, calc(100% - 2.5rem));
}

.hero__btn-wrap {
  display: none;
  opacity: 0;
}

.hero__btn--float {
  opacity: 0;
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  border-top: 1px solid var(--line-faint);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  max-width: 36rem;
}

.section-head--center {
  max-width: none;
  text-align: center;
}

.section-head--center .section__title {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.section-head__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.section__lead {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
}

.control-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
}

.control-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background: var(--bg-elevated);
  opacity: 0;
  transform: translateY(18px);
}

.control-item__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(196, 160, 90, 0.25);
  flex-shrink: 0;
}

.control-item__text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  padding-top: 0.2rem;
}

.step-wrap {
  position: relative;
}

.step-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step-track__line {
  position: absolute;
  top: 0.45rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

.step-item {
  position: relative;
  padding: 0 1rem 0 0;
  opacity: 0;
  transform: translateY(16px);
}

.step-item:last-child { padding-right: 0; }

.step-item__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--burgundy);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--accent-dim);
  margin-bottom: 1.15rem;
}

.step-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.step-item__text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 14rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-faint);
  border: 1px solid var(--line-faint);
}

.benefit-card {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  background: var(--bg-elevated);
  opacity: 0;
  transform: translateY(16px);
}

.benefit-card::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--accent));
  margin-bottom: 1rem;
}

.benefit-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.benefit-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.section--cta {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(122, 42, 56, 0.06) 100%);
}

.cta {
  position: relative;
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(16, 18, 16, 0.65);
  opacity: 0;
  transform: translateY(24px);
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.6;
}

.cta::before {
  top: 0.65rem;
  left: 0.65rem;
  border-width: 1px 0 0 1px;
}

.cta::after {
  bottom: 0.65rem;
  right: 0.65rem;
  border-width: 0 1px 1px 0;
}

.cta__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.cta__text {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.35rem;
  line-height: 1.6;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.cta__btn {
  display: inline-flex;
  padding: 0.95rem 2.1rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid var(--accent-dim);
  transition: filter 0.25s, transform 0.2s;
}

.cta__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__panel--text {
    order: 2;
    border-right: none;
    border-top: 1px solid var(--line-faint);
    min-height: auto;
    padding: 2.25rem 1.25rem 2.75rem;
  }

  .hero__panel--visual {
    order: 1;
    min-height: 70svh;
    height: 70svh;
    max-height: 70svh;
  }

  .hero__content {
    max-width: none;
    min-height: auto;
    justify-content: flex-start;
    padding: 0;
  }

  .hero__legal {
    margin-top: 1.25rem;
  }

  .step-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .step-wrap .step-track__line { display: none; }

  .step-item { padding: 0; }
}

@media (max-width: 768px) {
  html,
  body {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

  .hero__panel--visual {
    flex-shrink: 0;
    position: relative;
    height: 70svh;
    min-height: 70svh;
    max-height: 70svh;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
  }

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

  .hero__actions {
    display: none;
  }

  .hero__btn-wrap {
    display: flex;
    position: absolute;
    bottom: clamp(0.85rem, 3vw, 1.25rem);
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 3;
    padding: 0 1rem;
    pointer-events: none;
  }

  .hero__btn-wrap .hero__btn {
    pointer-events: auto;
    width: min(100%, 20rem);
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .hero-chip {
    top: 0.85rem;
    left: 0.85rem;
    bottom: auto;
    max-width: calc(100% - 1.75rem);
  }

  .hero__panel--text {
    flex-shrink: 0;
    height: auto;
    padding: 1.5rem 1.15rem 2rem;
  }

  .hero__content {
    min-height: auto;
    max-width: none;
    justify-content: flex-start;
    padding: 0;
  }

  .hero__legal {
    margin-top: 1.25rem;
  }

  .hero__title {
    font-size: clamp(1.75rem, 5.5vw, 2.1rem);
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
    max-width: none;
  }

  .control-list { grid-template-columns: 1fr; }

  .step-track { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }
}
