
:root
{
  --bg: #06110b;
  --bg-soft: #0a1810;
  --panel: rgba(11, 27, 18, .72);
  --panel-strong: #0d1d14;
  --line: rgba(165, 255, 200, .14);
  --text: #f4fff7;
  --muted: #9eb2a5;
  --accent: #66f39f;
  --accent-2: #72d9ff;
  --telegram: #2aabee;
  --shadow: 0 30px 80px rgba(0,0,0,.45);
}
*
{
  box-sizing: border-box;
}
html
{
  scroll-behavior: smooth;
}
body
{
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
}
a
{
  color: inherit;
}
.page-shell
{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.container
{
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.grid
{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.orb
{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}
.orb--one
{
  top: -170px;
  left: -170px;
  background: #37e37e;
}
.orb--two
{
  top: 80px;
  right: -180px;
  background: #28b8ff;
}
.header
{
  position: relative;
  z-index: 3;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand
{
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand__icon
{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #39bdf5, #228ad0);
  box-shadow: 0 12px 30px rgba(42,171,238,.24);
}
.brand__icon svg
{
  width: 25px;
  fill: #fff;
}
.brand strong,
.brand small
{
  display: block;
}
.brand strong
{
  font-size: 17px;
}
.brand small
{
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header__cta
{
  padding: 13px 18px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.035);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(16px);
  transition: .2s ease;
}
.header__cta:hover
{
  transform: translateY(-2px);
  border-color: rgba(102,243,159,.5);
}
.hero
{
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding: 70px 0 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: center;
}
.eyebrow
{
  width: fit-content;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(102,243,159,.22);
  border-radius: 999px;
  color: #d8ffe6;
  background: rgba(102,243,159,.055);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span
{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}
h1
{
  margin: 24px 0 22px;
  max-width: 720px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 em
{
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__lead
{
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero__actions
{
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.button
{
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 17px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}
.button--primary
{
  color: #052111;
  background: linear-gradient(135deg, #79f9ad, #59e990);
  box-shadow: 0 18px 45px rgba(102,243,159,.22);
}
.button--primary:hover
{
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(102,243,159,.3);
}
.hero__note
{
  color: #84998b;
  font-size: 12px;
}
.trust-row
{
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-row div
{
  min-width: 135px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.trust-row b,
.trust-row span
{
  display: block;
}
.trust-row b
{
  font-size: 18px;
}
.trust-row span
{
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__visual
{
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.phone-glow
{
  position: absolute;
  width: 390px;
  height: 490px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,242,139,.25), rgba(34,171,238,.09) 45%, transparent 70%);
  filter: blur(26px);
}
.phone
{
  position: relative;
  z-index: 2;
  width: 355px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 46px;
  background: linear-gradient(150deg, #1d2a22, #050907);
  box-shadow: 0 40px 100px rgba(0,0,0,.58);
  transform: rotate(2deg);
}
.phone__top
{
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b9c8be;
  font-size: 9px;
}
.phone__notch
{
  width: 95px;
  height: 23px;
  border-radius: 999px;
  background: #020302;
}
.telegram-screen
{
  overflow: hidden;
  min-height: 550px;
  border-radius: 35px;
  background:
    linear-gradient(rgba(0,5,3,.82), rgba(0,5,3,.9)),
    url("../images/pattern.svg") center / 260px repeat;
}
.telegram-screen__header
{
  min-height: 70px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 20px 45px 1fr 30px;
  gap: 10px;
  align-items: center;
  background: rgba(15,24,20,.94);
}
.telegram-screen__header .back,
.telegram-screen__header .dots
{
  color: var(--telegram);
  font-size: 25px;
}
.telegram-screen__header strong,
.telegram-screen__header small
{
  display: block;
}
.telegram-screen__header strong
{
  font-size: 13px;
}
.telegram-screen__header small
{
  margin-top: 4px;
  color: #8ea095;
  font-size: 9px;
}
.avatar,
.channel-card__avatar
{
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #ffc26c, #ff9e4b);
}
.avatar
{
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-weight: 800;
}
.telegram-screen__body
{
  padding: 55px 20px;
}
.channel-card
{
  padding: 27px 22px 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 25px;
  text-align: center;
  background: rgba(22,25,24,.94);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.channel-card__avatar
{
  width: 82px;
  height: 82px;
  margin: auto;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 800;
}
.channel-card h2
{
  margin: 15px 0 5px;
  font-size: 20px;
}
.channel-card > p
{
  margin: 0;
  color: #8b9990;
  font-size: 10px;
}
.channel-card__text
{
  margin-top: 18px;
  display: grid;
  gap: 7px;
  font-size: 10px;
  line-height: 1.4;
}
.channel-card__text span
{
  color: #d8dfda;
}
.join
{
  margin-top: 20px;
  padding: 12px 20px;
  display: inline-flex;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: var(--telegram);
  font-size: 10px;
  font-weight: 800;
}
.floating-card
{
  position: absolute;
  z-index: 4;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(12,25,17,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.floating-card small,
.floating-card b
{
  display: block;
}
.floating-card small
{
  color: var(--muted);
  font-size: 9px;
}
.floating-card b
{
  margin-top: 3px;
  font-size: 12px;
}
.floating-card--top
{
  top: 78px;
  right: -10px;
}
.floating-card--bottom
{
  bottom: 82px;
  left: -20px;
}
.status-dot
{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}
.benefits
{
  position: relative;
  z-index: 2;
  padding: 20px 0 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefits article
{
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.benefits__icon
{
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.benefits h3
{
  margin: 42px 0 12px;
  font-size: 21px;
}
.benefits p
{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.final-cta
{
  position: relative;
  z-index: 2;
  margin-bottom: 90px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(102,243,159,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at right, rgba(102,243,159,.12), transparent 35%),
    rgba(255,255,255,.025);
}
.final-cta span
{
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.final-cta h2
{
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
}
.final-cta p
{
  margin: 0;
  color: var(--muted);
}
.footer
{
  position: relative;
  z-index: 2;
  padding: 34px 0 26px;
  border-top: 1px solid var(--line);
}
.footer__brand strong,
.footer__brand span
{
  display: block;
}
.footer__brand span
{
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}
.footer nav
{
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer nav a
{
  color: #c6d4ca;
  font-size: 12px;
  text-decoration: none;
}
.footer nav a:hover
{
  color: var(--accent);
}
.footer__bottom
{
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #718176;
  font-size: 10px;
}
.legal-page
{
  min-height: 100vh;
}
.legal-main
{
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 30px auto 80px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8,20,13,.78);
  box-shadow: var(--shadow);
}
.legal-main h1
{
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 58px);
}
.legal-main h2
{
  margin-top: 34px;
  font-size: 22px;
}
.legal-main p,
.legal-main li
{
  color: #b5c5ba;
  font-size: 14px;
  line-height: 1.8;
}
.legal-main a
{
  color: var(--accent);
}
.legal-back
{
  margin-top: 30px;
  display: inline-flex;
  text-decoration: none;
}
.cookie-banner
{
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  width: min(420px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9,22,14,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.cookie-banner p
{
  margin: 0 0 14px;
  color: #b8c9bd;
  font-size: 12px;
  line-height: 1.55;
}
.cookie-banner__actions
{
  display: flex;
  gap: 10px;
}
.cookie-banner button
{
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
}
.cookie-banner .accept
{
  background: var(--accent);
  color: #062113;
}
.cookie-banner .reject
{
  background: #17251c;
  color: white;
}
@media (max-width: 900px)
{
  .hero
  {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }
  .hero__copy
  {
    text-align: center;
  }
  .eyebrow
  {
    margin-inline: auto;
  }
  .hero__lead
  {
    margin-inline: auto;
  }
  .hero__actions,
  .trust-row
  {
    justify-content: center;
  }
  .hero__visual
  {
    min-height: 630px;
  }
  .benefits
  {
    grid-template-columns: 1fr;
  }
  .final-cta
  {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px)
{
  .container
  {
    width: min(100% - 24px, 1180px);
  }
  .header
  {
    min-height: 74px;
  }
  .brand small
  {
    display: none;
  }
  .header__cta
  {
    padding: 11px 13px;
    font-size: 11px;
  }
  h1
  {
    font-size: 47px;
  }
  .hero
  {
    padding-top: 34px;
  }
  .hero__lead
  {
    font-size: 15px;
  }
  .hero__actions
  {
    align-items: stretch;
    flex-direction: column;
  }
  .hero__note
  {
    text-align: center;
  }
  .trust-row
  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-row div
  {
    min-width: 0;
    padding: 12px 8px;
  }
  .trust-row b
  {
    font-size: 14px;
  }
  .trust-row span
  {
    font-size: 8px;
  }
  .hero__visual
  {
    min-height: 560px;
  }
  .phone
  {
    width: 310px;
  }
  .telegram-screen
  {
    min-height: 490px;
  }
  .floating-card
  {
    display: none;
  }
  .benefits
  {
    padding-bottom: 60px;
  }
  .final-cta
  {
    margin-bottom: 60px;
    padding: 26px;
  }
  .footer__bottom
  {
    flex-direction: column;
  }
  .legal-main
  {
    padding: 25px;
  }
}
