:root {
  color-scheme: light;
  --bg: #f5f8f4;
  --ink: #102019;
  --muted: #5b6b63;
  --line: rgba(16, 32, 25, 0.14);
  --green: #0e7f51;
  --green-dark: #0b5137;
  --gold: #c7922b;
  --blue: #1f5fab;
  --paper: #ffffff;
  --cream: #edf4ee;
  --shadow: 0 24px 70px rgba(20, 38, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(245, 248, 244, 0.83);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #31463d;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  border-radius: 8px;
  padding: 9px 13px;
  background: var(--green);
  color: white;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(92px, 8vw, 112px) clamp(24px, 7vw, 88px) clamp(48px, 7vw, 78px);
  background:
    linear-gradient(120deg, rgba(245, 248, 244, 0.96), rgba(245, 248, 244, 0.75)),
    url("./assets/radar-hero.png");
  background-size: cover;
  background-position: center;
}

.hero__content {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #aee4c8;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.85vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero__lead {
  max-width: 680px;
  color: #273a33;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(15, 122, 79, 0.26);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--secondary,
.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-dark);
}

.microcopy {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.proof-strip div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.proof-strip dt {
  font-size: 1.45rem;
  font-weight: 950;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.product-view {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 450px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.phone__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.signal-card,
.performance-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.signal-card + .signal-card,
.performance-card {
  margin-top: 10px;
}

.signal-card p,
.performance-card span {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-card strong,
.performance-card strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.15;
}

.signal-card span {
  display: block;
  margin-top: 6px;
  color: #31463d;
}

.signal-card--br {
  border-left: 5px solid var(--green);
}

.signal-card--us {
  border-left: 5px solid var(--blue);
}

.signal-card--fii {
  border-left: 5px solid var(--gold);
}

.performance-card {
  background: #10231b;
  color: #f7fbf8;
}

.performance-card span {
  color: rgba(247, 251, 248, 0.74);
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(22px, 7vw, 88px);
}

.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section--proof {
  background: #0f2119;
  color: #f7fbf8;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.proof-panel p {
  color: rgba(247, 251, 248, 0.76);
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.scoreboard div {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.scoreboard span,
.scoreboard small {
  display: block;
  color: rgba(247, 251, 248, 0.73);
}

.scoreboard strong {
  display: block;
  margin: 6px 0 4px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section--compact {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.step {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-dark);
  font-weight: 900;
}

.feature-grid p,
.split p,
.cta-box p,
.faq-list p {
  color: var(--muted);
  font-size: 1rem;
}

.section--contrast {
  background: #10231b;
  color: #f7fbf8;
}

.section--contrast p,
.section--contrast li {
  color: rgba(247, 251, 248, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.comparison {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
}

.comparison__row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 10px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison__row:first-child {
  border-top: 0;
}

.comparison__head {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.section--faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfb;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

.section--cta {
  background: #edf3ee;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-box .hero__actions {
  justify-content: center;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: none;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(20, 38, 31, 0.2);
  backdrop-filter: blur(14px);
}

.sticky-cta .button {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.92rem;
}

footer {
  padding: 28px 22px 86px;
  background: #0b1712;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

footer p {
  margin: 0 auto;
  max-width: 860px;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero,
  .proof-panel,
  .split,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid--four,
  .scoreboard,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .product-view {
    justify-content: stretch;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 20px 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

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

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(90px, 8vw, 112px) clamp(24px, 7vw, 88px) clamp(48px, 7vw, 76px);
  background:
    linear-gradient(120deg, rgba(245, 248, 244, 0.97), rgba(245, 248, 244, 0.78)),
    url("./assets/radar-hero.png");
  background-size: cover;
  background-position: center;
}

.hero__content {
  max-width: 660px;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.2vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 630px;
  color: #273a33;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
}

.hero-proof {
  max-width: 620px;
  margin-top: 22px;
  border: 1px solid rgba(15, 122, 79, 0.2);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 42px rgba(20, 38, 31, 0.08);
}

.hero-proof span,
.hero-proof small {
  display: block;
  color: var(--muted);
}

.hero-proof span {
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.2;
}

.hero-proof small {
  margin-top: 5px;
  font-size: 0.92rem;
}

.telegram-preview {
  max-width: 455px;
  background: #e7f2e9;
}

.telegram-message {
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 32, 25, 0.08);
}

.message-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
}

.message-subtitle {
  margin: 2px 0 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pick {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfb;
}

.pick + .pick,
.message-performance {
  margin-top: 9px;
}

.pick strong,
.pick span,
.message-performance strong,
.message-performance span {
  display: block;
}

.pick strong {
  color: var(--ink);
  font-size: 1.16rem;
}

.pick span {
  margin-top: 3px;
  color: #31463d;
  font-size: 0.95rem;
}

.pick--br {
  border-left: 5px solid var(--green);
}

.pick--us {
  border-left: 5px solid var(--blue);
}

.pick--fii {
  border-left: 5px solid var(--gold);
}

.message-performance {
  border-radius: 8px;
  padding: 13px;
  background: #10231b;
  color: #f7fbf8;
}

.message-performance span {
  margin-top: 4px;
  color: rgba(247, 251, 248, 0.78);
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  }

  .product-view {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero-proof {
    margin-top: 18px;
  }
}
