:root {
  --bg: #11131c;
  --surface: #191c28;
  --surface-2: #202432;
  --text: #f7f7f2;
  --muted: #a7adbd;
  --line: rgba(255, 255, 255, 0.1);
  --green: #a8f94f;
  --green-dark: #6cbb22;
  --orange: #ff9d45;
  --radius-lg: 30px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 38px 38px;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
}

.page-glow--one { top: -220px; right: -140px; background: var(--green); }
.page-glow--two { bottom: -280px; left: -200px; background: #824dff; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 24px;
  overflow: hidden;
  border: 4px solid var(--green);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.brand__mark::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
}

.brand__needle {
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 17px;
  border-radius: 5px;
  background: var(--green);
  transform: rotate(48deg);
  transform-origin: 50% 100%;
}

.brand__name { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; }
.brand--small .brand__mark { width: 30px; height: 19px; border-width: 3px; }
.brand--small .brand__needle { height: 13px; width: 3px; }
.brand--small .brand__name { font-size: 19px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  color: #d7dbc9;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(168, 249, 79, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 70px;
  align-items: center;
  min-height: 660px;
  padding-block: 75px 105px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span { color: var(--green); }

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  color: #11150c;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  box-shadow: 0 14px 40px rgba(168, 249, 79, 0.16);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); background: #b9ff70; }
.button--small { min-height: 40px; padding-inline: 16px; border-radius: 11px; font-size: 14px; }
.hero__note { color: #7f8698; font-size: 13px; }

.meter-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(38, 42, 57, 0.96), rgba(19, 22, 31, 0.98));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.07);
  transform: rotate(1.5deg);
}

.meter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(168, 249, 79, 0.11), transparent 38%);
  pointer-events: none;
}

.meter-card__top { display: flex; justify-content: space-between; color: #9ca3b5; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; }
.meter-card__signal { color: var(--green); }

.meter { position: relative; height: 285px; margin-top: 36px; }
.meter__arc { position: absolute; left: 50%; bottom: 10px; width: 330px; height: 165px; border: 28px solid #303544; border-bottom: 0; border-radius: 190px 190px 0 0; transform: translateX(-50%); }
.meter__arc::after { content: ""; position: absolute; inset: -28px; border: 28px solid transparent; border-top-color: var(--green); border-right-color: var(--green); border-radius: inherit; filter: drop-shadow(0 0 12px rgba(168,249,79,0.22)); }

.meter__ticks { position: absolute; z-index: 2; left: 50%; bottom: 10px; width: 360px; height: 180px; transform: translateX(-50%); }
.meter__ticks i { position: absolute; bottom: 0; left: 50%; width: 2px; height: 13px; border-radius: 2px; background: rgba(255,255,255,0.65); transform-origin: 50% 180px; }
.meter__ticks i:nth-child(1) { transform: rotate(-80deg); }
.meter__ticks i:nth-child(2) { transform: rotate(-60deg); }
.meter__ticks i:nth-child(3) { transform: rotate(-40deg); }
.meter__ticks i:nth-child(4) { transform: rotate(-20deg); }
.meter__ticks i:nth-child(5) { transform: rotate(0); }
.meter__ticks i:nth-child(6) { transform: rotate(20deg); }
.meter__ticks i:nth-child(7) { transform: rotate(40deg); }
.meter__ticks i:nth-child(8) { transform: rotate(60deg); }
.meter__ticks i:nth-child(9) { transform: rotate(80deg); }

.meter__needle { position: absolute; z-index: 3; left: calc(50% - 4px); bottom: 10px; width: 8px; height: 152px; border-radius: 8px 8px 2px 2px; background: linear-gradient(var(--orange), #ff6d3c); box-shadow: 0 0 18px rgba(255, 114, 61, 0.35); transform: rotate(48deg); transform-origin: 50% 100%; animation: needle-in 1.2s cubic-bezier(.2,.8,.2,1) both; }
.meter__hub { position: absolute; z-index: 4; left: 50%; bottom: -4px; width: 32px; height: 32px; border: 8px solid var(--surface-2); border-radius: 50%; background: var(--orange); transform: translateX(-50%); }
.meter__label { position: absolute; bottom: -13px; color: #7f8799; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.meter__label--left { left: 8%; }
.meter__label--right { right: 8%; color: var(--green); }

@keyframes needle-in { from { transform: rotate(-70deg); } to { transform: rotate(48deg); } }

.meter-card__result { display: flex; align-items: center; gap: 13px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 10, 15, 0.43); }
.meter-card__check { display: grid; place-items: center; flex: 0 0 38px; height: 38px; color: #151912; border-radius: 50%; background: var(--green); font-weight: 900; }
.meter-card__result strong, .meter-card__result small { display: block; }
.meter-card__result strong { margin-bottom: 4px; font-size: 14px; }
.meter-card__result small { color: #858c9e; }

.section { padding-block: 110px; border-top: 1px solid var(--line); }
.section__heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section__heading h2, .principles h2, .launch h2 { margin-bottom: 0; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -0.05em; }
.section__heading > p { max-width: 420px; margin-bottom: 4px; color: var(--muted); line-height: 1.6; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.category-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(27, 30, 42, 0.75); transition: border-color .2s ease, transform .2s ease; }
.category-card:hover { border-color: rgba(168,249,79,.4); transform: translateY(-3px); }
.category-card--accent { background: linear-gradient(145deg, rgba(168,249,79,.14), rgba(27,30,42,.84)); }
.category-card__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 36px; border-radius: 14px; background: rgba(255,255,255,.06); font-size: 22px; }
.category-card h3 { margin-bottom: 9px; font-size: 20px; letter-spacing: -.025em; }
.category-card p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }

.principles { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-block: 110px; border-top: 1px solid var(--line); }
.principles__list { margin: 0; padding: 0; list-style: none; }
.principles__list li { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.principles__list li:last-child { border-bottom: 1px solid var(--line); }
.principles__list li > span { color: var(--green); font-size: 12px; font-weight: 800; }
.principles__list strong { display: block; margin-bottom: 8px; font-size: 20px; }
.principles__list p { margin: 0; color: var(--muted); line-height: 1.6; }

.launch { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-block: 20px 100px; padding: 58px; border: 1px solid rgba(168,249,79,.25); border-radius: var(--radius-lg); background: linear-gradient(110deg, rgba(168,249,79,.13), rgba(168,249,79,.03)); }
.launch > p { margin: 0; color: #c3c8b7; line-height: 1.7; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; padding-block: 32px 45px; border-top: 1px solid var(--line); color: #7f8697; font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer a:hover { color: var(--text); }

.consent { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: min(470px, calc(100% - 44px)); padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(27,30,42,.96); box-shadow: 0 22px 70px rgba(0,0,0,.45); backdrop-filter: blur(16px); }
.consent p { margin-bottom: 14px; color: #c5cad6; font-size: 13px; line-height: 1.55; }
.consent__actions { display: flex; align-items: center; gap: 16px; }
.button-link { padding: 8px 0; color: #aeb4c4; border: 0; background: transparent; font: inherit; font-size: 13px; cursor: pointer; }
.button-link:hover { color: white; }

.privacy { max-width: 820px; min-height: calc(100vh - 190px); padding-block: 75px 120px; }
.privacy h1 { font-size: clamp(42px, 5vw, 68px); }
.privacy h2 { margin-top: 44px; font-size: 25px; letter-spacing: -.03em; }
.privacy p, .privacy li { color: var(--muted); line-height: 1.75; }
.privacy__back { display: inline-block; margin-bottom: 35px; color: var(--green); text-decoration: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 55px; }
  .meter-card { width: min(100%, 580px); margin-inline: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .principles, .launch { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding-block: 22px; }
  .status { padding: 8px 10px; font-size: 11px; }
  .brand__name { font-size: 20px; }
  .hero { min-height: 0; padding-block: 58px 80px; }
  h1 { font-size: 48px; }
  .hero__lead { font-size: 17px; }
  .meter-card { min-height: 395px; padding: 21px; }
  .meter { height: 235px; transform: scale(.78); transform-origin: 50% 40%; }
  .meter-card__result { margin-top: -32px; }
  .section, .principles { padding-block: 80px; }
  .section__heading { display: block; }
  .section__heading > p { margin-top: 18px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 190px; }
  .launch { margin-bottom: 70px; padding: 32px 25px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer .brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
