:root {
  --ink: #f7f1e6;
  --muted: #c8bfae;
  --gold: #d6ad64;
  --gold-soft: rgba(214, 173, 100, 0.16);
  --navy: #061119;
  --navy-2: #0b1823;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(11, 24, 35, 0.78);
  --paper: #f6f1e8;
  --paper-ink: #17212a;
  --paper-muted: #5a6470;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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: 20px clamp(18px, 4vw, 56px);
  background: rgba(6, 17, 25, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(214, 173, 100, 0.58);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  color: var(--ink);
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 650;
  text-align: right;
}

.header-contact a:last-child {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 17, 25, 0.98) 0%, rgba(6, 17, 25, 0.9) 33%, rgba(6, 17, 25, 0.34) 72%, rgba(6, 17, 25, 0.72) 100%),
    linear-gradient(0deg, rgba(6, 17, 25, 0.92) 0%, rgba(6, 17, 25, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  padding-top: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 860px;
  font-size: clamp(2.35rem, 5.1vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 750;
}

.hero-contact a {
  border-bottom: 1px solid rgba(214, 173, 100, 0.7);
  padding-bottom: 6px;
}

.profit-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 7vw, 84px);
  display: grid;
  gap: 4px;
  width: min(260px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(214, 173, 100, 0.38);
  background: rgba(6, 17, 25, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.profit-number {
  color: var(--gold);
  font-size: 4rem;
  font-weight: 850;
  line-height: 0.9;
}

.profit-text {
  font-size: 1.25rem;
  font-weight: 800;
}

.profit-note {
  color: var(--muted);
}

.section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  background: var(--paper);
  color: var(--paper-ink);
}

.intro-copy {
  color: var(--paper-muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.benefit-card {
  min-height: 310px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--navy-2);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 850;
}

.benefit-card p,
.step p {
  color: var(--muted);
  line-height: 1.62;
}

.dark-band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(214, 173, 100, 0.12), transparent 32%),
    #07131c;
}

.dark-band .section-heading {
  max-width: 780px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--gold);
  border: 1px solid rgba(214, 173, 100, 0.42);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(38px, 8vw, 108px);
  background: var(--paper);
  color: var(--paper-ink);
}

.detail-list {
  display: grid;
  border-top: 1px solid rgba(23, 33, 42, 0.15);
}

.detail-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 33, 42, 0.15);
}

.detail-list strong {
  color: var(--paper-ink);
}

.detail-list span {
  color: var(--paper-muted);
  line-height: 1.55;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-links {
  display: grid;
  gap: 12px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 800;
  text-align: right;
}

.contact-links a:last-child {
  color: var(--gold);
}

@media (max-width: 980px) {
  .intro-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .contact-section {
    display: grid;
    align-items: start;
  }

  .contact-links {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .header-contact {
    display: grid;
    justify-items: end;
    gap: 6px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 940px;
    align-items: start;
    padding-top: 124px;
  }

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

  .hero-content {
    width: 74vw;
    max-width: 74vw;
    padding-top: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 17, 25, 0.96) 0%, rgba(6, 17, 25, 0.76) 44%, rgba(6, 17, 25, 0.92) 100%),
      linear-gradient(90deg, rgba(6, 17, 25, 0.96) 0%, rgba(6, 17, 25, 0.74) 58%, rgba(6, 17, 25, 0.08) 100%);
  }

  h1 {
    font-size: clamp(1.78rem, 7.7vw, 2.55rem);
  }

  .hero-contact {
    display: grid;
    gap: 12px;
  }

  .profit-panel {
    left: 18px;
    right: auto;
    bottom: 34px;
  }

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

  .benefit-card {
    min-height: 250px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 90px;
    line-height: 1.1;
  }

  .header-contact {
    max-width: 190px;
  }

  .header-contact a,
  .hero-contact a,
  .contact-links a {
    overflow-wrap: anywhere;
  }
}
