:root {
  color-scheme: dark;
  --bg: #07100e;
  --panel: #0d1c18;
  --text: #eff8ef;
  --muted: #aebeb5;
  --mint: #8dc9a8;
  --line: rgba(239, 248, 239, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 22%, rgba(141, 201, 168, 0.14), transparent 20rem),
    linear-gradient(140deg, #050807 0%, var(--bg) 58%, #020303 100%);
}

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

h1,
p {
  margin-top: 0;
}

.page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: clamp(12px, 2vh, 20px);
  min-height: 100svh;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(14px, 2.2vh, 24px) 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  font-weight: 850;
}

.topbar span {
  color: rgba(239, 248, 239, 0.58);
  font-size: clamp(0.64rem, 2.4vw, 0.76rem);
}

.hero {
  display: grid;
  align-items: stretch;
  gap: clamp(16px, 3vw, 34px);
}

.copy {
  display: grid;
  align-content: center;
  padding: clamp(18px, 4vw, 40px);
  border-left: 1px solid rgba(141, 201, 168, 0.38);
  background: linear-gradient(180deg, rgba(13, 28, 24, 0.72), rgba(13, 28, 24, 0.18));
}


h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(1.95rem, 8.2vw, 4.2rem);
  font-weight: 870;
  line-height: 1.02;
}

.subline {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: clamp(1.22rem, 5vw, 2.28rem);
  font-weight: 820;
  line-height: 1.06;
}

.main-text {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(0.94rem, 3.35vw, 1.06rem);
  line-height: 1.5;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: min(100%, 294px);
  padding: 0 22px;
  border: 1px solid rgba(255, 218, 88, 0.78);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffe36a 0%, #f4bd23 45%, #c98908 100%);
  color: #090600;
  font-size: clamp(0.98rem, 3.6vw, 1.08rem);
  font-weight: 820;
  box-shadow: 0 16px 42px rgba(244, 189, 35, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.cta-row p {
  max-width: 240px;
  margin: 0;
  color: rgba(239, 248, 239, 0.66);
  font-size: 0.78rem;
  line-height: 1.35;
}

.compliance {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(239, 248, 239, 0.55);
  font-size: 0.71rem;
  line-height: 1.35;
}

.visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 248, 239, 0.08);
  background: #030504;
}

.visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(7, 16, 14, 0.92), transparent);
  content: "";
}

.visual img {
  width: min(100%, 500px);
  height: auto;
  filter: hue-rotate(70deg) saturate(0.52) contrast(1.06) drop-shadow(0 24px 62px rgba(0, 0, 0, 0.58));
}

.info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(239, 248, 239, 0.78);
  font-size: clamp(0.72rem, 2.6vw, 0.84rem);
  font-weight: 760;
}


@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.04fr 0.96fr;
  }
}

@media (max-width: 759px) {
  .page {
    width: min(100% - 24px, 1080px);
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .copy {
    padding: 0;
    border-left: 0;
    background: transparent;
  }

  .visual {
    order: -1;
    max-height: 29svh;
    border: 0;
    background: transparent;
  }

  .visual img {
    width: min(88vw, 340px);
    margin-top: -5%;
  }

  .primary-cta {
    width: 100%;
  }

  .cta-row p {
    max-width: none;
  }
}
