@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/unbounded-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #0b1825;
  --muted: #66707a;
  --paper: #f5f1e9;
  --white: #fffdf9;
  --gold: #e5a73c;
  --gold-bright: #f2bd5c;
  --gold-soft: #f6dfb2;
  --blue: #cddae7;
  --cream: #eee2ce;
  --line: rgba(11, 24, 37, .13);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --shadow: 0 28px 80px rgba(20, 30, 42, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}
.ambient-one { width: 420px; height: 420px; top: -220px; right: -100px; background: rgba(229,167,60,.22); }
.ambient-two { width: 300px; height: 300px; top: 620px; left: -190px; background: rgba(74,96,120,.16); }

.site-header, .section-shell, .site-footer {
  width: min(1240px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font: 700 24px/1 "Unbounded", sans-serif; letter-spacing: -.05em; }
.brand-mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--white); }
.brand-emblem { overflow: hidden; border: 1px solid rgba(11,24,37,.12); box-shadow: 0 6px 18px rgba(11,24,37,.08); }
.brand-emblem img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: 70px; }
.desktop-nav a { color: #34423e; font-size: 14px; font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: #000; }
.button {
  min-height: 58px;
  padding: 0 27px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 800 15px/1 "Manrope", sans-serif;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 21px; fill: currentColor; }
.button-primary { background: var(--gold-bright); color: var(--ink); box-shadow: 0 13px 28px rgba(194, 132, 27, .22); }
.button-primary:hover { background: #f6c875; box-shadow: 0 18px 32px rgba(194, 132, 27, .3); }
.button-dark { background: var(--ink); color: var(--white); }
.button-small { min-height: 46px; border-radius: 14px; padding: 0 20px; font-size: 13px; }
.button-full { width: 100%; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--ink); padding: 14px 12px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 82px 18px auto;
  z-index: 19;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}
.mobile-menu:not([hidden]) { display: grid; gap: 20px; }
.mobile-menu > a:not(.button) { font-weight: 700; }

.hero {
  min-height: 690px;
  padding: 70px 72px;
  border-radius: var(--radius-xl);
  background: var(--white);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 50px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: #52615d; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--gold); }
.hero h1, .section-heading h2, .pricing h2, .final-cta h2 {
  margin: 22px 0 24px;
  font: 700 clamp(48px, 5.1vw, 76px)/1.04 "Unbounded", sans-serif;
  letter-spacing: -.065em;
}
.hero h1 em { color: #728077; font-style: normal; }
.hero-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin: 34px 0 42px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; }
.text-link span { font-size: 20px; }
.hero-proof { display: flex; align-items: stretch; gap: 22px; }
.proof-item { display: grid; gap: 3px; }
.proof-item strong { font-size: 17px; }
.proof-item span { color: #83908c; font-size: 11px; }
.proof-separator { width: 1px; background: var(--line); }

.hero-visual { position: relative; min-height: 530px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f8d58d, var(--gold));
  box-shadow: inset 0 -50px 90px rgba(104, 61, 6, .16);
}
.signal { position: absolute; width: 470px; height: 470px; border: 1px solid rgba(13,23,21,.13); border-radius: 50%; }
.signal-two { width: 540px; height: 540px; opacity: .55; }
.orbit { position: absolute; width: 490px; height: 300px; border: 1px dashed rgba(13,23,21,.2); border-radius: 50%; transform: rotate(-23deg); }
.orbit-two { width: 360px; height: 510px; transform: rotate(52deg); }
.orbit-dot { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--ink); left: 14%; top: 10%; box-shadow: 0 0 0 7px rgba(255,255,255,.5); }
.visual-card {
  position: relative;
  z-index: 3;
  width: 275px;
  min-height: 440px;
  padding: 24px 20px 20px;
  border: 7px solid #111b19;
  border-radius: 40px;
  background: #f9fbf6;
  box-shadow: 0 36px 65px rgba(19,36,31,.28);
  transform: rotate(3deg);
}
.visual-card-top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 800; }
.mini-brand { display: flex; gap: 6px; align-items: center; }
.mini-brand i { width: 12px; height: 12px; border-radius: 4px; background: var(--ink); }
.status-pill { padding: 6px 8px; border-radius: 999px; color: #744b0d; background: var(--gold-soft); }
.connection { display: grid; justify-items: center; padding: 52px 0 43px; }
.power-button { width: 112px; height: 112px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-bright); box-shadow: 0 16px 35px rgba(190,126,23,.3); }
.power-button span { width: 45px; height: 55px; border: 6px solid var(--ink); border-top-color: transparent; border-radius: 0 0 50px 50px; position: relative; }
.power-button span::before { content: ""; position: absolute; width: 6px; height: 35px; top: -16px; left: 13px; border-radius: 4px; background: var(--ink); }
.connection-label { margin-top: 24px; font-size: 17px; font-weight: 800; }
.connection-time { margin-top: 5px; color: #81908b; font-size: 12px; }
.server-row { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 13px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.server-flag { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 800; }
.server-row div:nth-child(2) { display: grid; }
.server-row small { color: #89948f; font-size: 8px; }
.server-row strong { margin-top: 2px; font-size: 11px; }
.latency { font-size: 9px; color: #63716d; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: 0 16px 38px rgba(26,48,40,.16); backdrop-filter: blur(10px); }
.floating-card > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--ink); color: var(--gold-bright); font-weight: 800; }
.floating-card div { display: grid; }
.floating-card strong { font-size: 12px; }
.floating-card small { color: #81908b; font-size: 8px; }
.speed-card { top: 105px; right: -5px; }
.privacy-card { left: -15px; bottom: 80px; }

.trust-strip { padding: 34px 8px 80px; display: flex; justify-content: space-between; align-items: center; }
.trust-strip p { color: #687671; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.platforms { display: flex; align-items: center; gap: 30px; color: #6f7881; }
.platforms span { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.platforms img { width: 20px; height: 20px; object-fit: contain; opacity: .9; }

.benefits, .how, .faq { padding: 95px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 45px; }
.section-heading h2, .pricing h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(38px, 4.2vw, 61px); }
.section-heading > p { max-width: 380px; margin: 0 0 5px; color: var(--muted); line-height: 1.65; }
.section-heading a { text-decoration: underline; }
.benefit-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
.benefit-card { min-height: 340px; padding: 32px; border-radius: var(--radius-lg); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.benefit-card-wide { grid-column: span 2; flex-direction: row; justify-content: space-between; gap: 30px; }
.benefit-card h3 { max-width: 500px; margin: 45px 0 16px; font: 700 27px/1.18 "Unbounded", sans-serif; letter-spacing: -.04em; }
.benefit-card p { max-width: 490px; margin: 0; font-size: 14px; line-height: 1.65; opacity: .72; }
.card-number { position: absolute; top: 28px; right: 30px; font-size: 11px; font-weight: 800; opacity: .55; }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid currentColor; border-radius: 17px; font-size: 25px; }
.card-dark { color: var(--white); background: var(--ink); }
.card-lime { background: var(--gold-soft); }
.card-cream { background: var(--cream); }
.card-blue { background: var(--blue); }
.speed-chart { width: 230px; min-width: 230px; height: 170px; padding: 25px; align-self: end; display: flex; align-items: end; gap: 8px; border-radius: 24px; background: rgba(255,255,255,.07); transform: rotate(-3deg); }
.speed-chart span { flex: 1; border-radius: 5px 5px 2px 2px; background: var(--gold-bright); }
.chat-preview { width: 280px; min-width: 280px; align-self: center; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.42); transform: rotate(2deg); }
.chat-bubble { width: fit-content; max-width: 90%; margin: 10px 0; padding: 11px 13px; border-radius: 14px; background: var(--white); font-size: 10px; box-shadow: 0 6px 16px rgba(36,69,109,.08); }
.chat-out { margin-left: auto; color: var(--white); background: var(--ink); }
.typing { display: flex; gap: 4px; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #87938f; }
.card-blue .text-link { margin-top: 24px; }

.centered { display: grid; justify-items: center; text-align: center; }
.centered > p { max-width: 560px; margin: 20px auto 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { min-height: 410px; padding: 24px 28px 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.57); }
.step-number { color: #84918c; font-size: 11px; font-weight: 800; }
.step-visual { height: 210px; margin: 5px 0 15px; display: grid; place-items: center; }
.telegram-plane { width: 112px; height: 112px; display: grid; place-items: center; border-radius: 38px; background: var(--blue); font-size: 55px; transform: rotate(-5deg); }
.device-phone { width: 90px; height: 150px; border: 6px solid var(--ink); border-radius: 25px; background: var(--white); box-shadow: 15px 16px 0 var(--cream); }
.device-check { position: absolute; width: 48px; height: 48px; margin: 72px 0 0 85px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-bright); font-weight: 900; }
.connect-ring { width: 135px; height: 135px; display: grid; place-items: center; border: 3px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 18px rgba(229,167,60,.19), 0 0 0 36px rgba(229,167,60,.08); }
.connect-ring i { width: 54px; height: 54px; border-radius: 18px; background: var(--ink); }
.step h3 { margin: 0 0 10px; font: 700 20px/1.2 "Unbounded", sans-serif; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.how-action { display: flex; justify-content: center; margin-top: 35px; }

.pricing {
  margin-top: 80px;
  margin-bottom: 90px;
  padding: 75px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr .76fr;
  gap: 100px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.pricing::after { content: ""; position: absolute; width: 460px; height: 460px; right: -170px; bottom: -280px; border: 1px solid rgba(229,167,60,.3); border-radius: 50%; box-shadow: 0 0 0 70px rgba(229,167,60,.05), 0 0 0 140px rgba(229,167,60,.03); }
.eyebrow-light { color: #aeb8b4; }
.pricing p { max-width: 550px; color: #aeb8b4; line-height: 1.65; }
.pricing ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 25px; margin: 32px 0 0; padding: 0; list-style: none; font-size: 13px; font-weight: 700; }
.pricing li span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; border-radius: 50%; color: var(--ink); background: var(--gold-bright); font-size: 11px; }
.price-card { position: relative; z-index: 2; padding: 30px; border-radius: 30px; color: var(--ink); background: var(--gold-bright); transform: rotate(1deg); }
.price-card-top { display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.popular { padding: 7px 10px; border-radius: 999px; color: var(--white); background: var(--ink); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.price { display: flex; align-items: start; gap: 8px; margin: 38px 0 10px; }
.price strong { font: 700 78px/.8 "Unbounded", sans-serif; letter-spacing: -.08em; }
.price > span { font-size: 22px; font-weight: 800; }
.price small { display: block; margin-top: 10px; color: #73501b; font-size: 10px; }
.price-card p { min-height: 45px; color: #60441a; font-size: 12px; }
.price-note { display: block; margin-top: 14px; text-align: center; color: #6b4c1d; font-size: 9px; }

.brand-story {
  padding: 25px 0 95px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 85px;
}
.emblem-card {
  max-width: 430px;
  padding: 25px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.emblem-card img { display: block; width: 100%; border-radius: 28px; }
.brand-story-copy h2 {
  margin: 22px 0 24px;
  font: 700 clamp(38px, 4.2vw, 61px)/1.06 "Unbounded", sans-serif;
  letter-spacing: -.065em;
}
.brand-story-copy p { max-width: 610px; margin: 0; color: var(--muted); line-height: 1.75; }

.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 25px 4px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: var(--white); font-size: 21px; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -5px 0 25px; color: var(--muted); line-height: 1.7; }

.final-cta {
  margin-top: 80px;
  padding: 65px 70px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: #172b3e;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 80px;
}
.final-cta h2 { margin-top: 18px; }
.final-cta p { margin: 0 0 25px; color: #c6cfcc; line-height: 1.65; }
.site-footer { min-height: 180px; padding: 70px 5px 40px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: start; gap: 45px; color: #5f6c68; font-size: 12px; }
.brand-light { color: var(--ink); }
.footer-links { display: flex; gap: 25px; }
.copyright { white-space: nowrap; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; margin-left: 20px; }
  .hero { padding: 60px 45px; grid-template-columns: 1fr .8fr; }
  .hero h1 { font-size: 51px; }
  .hero-visual { transform: scale(.82); margin: -40px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card-wide { grid-column: span 2; }
  .pricing { gap: 50px; padding: 60px; }
}

@media (max-width: 780px) {
  .site-header, .section-shell, .site-footer { width: min(100% - 28px, 620px); }
  .site-header { height: 78px; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: block; }
  .hero { padding: 42px 24px 20px; grid-template-columns: 1fr; border-radius: 30px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof { gap: 12px; justify-content: space-between; }
  .proof-item strong { font-size: 14px; }
  .proof-item span { font-size: 9px; }
  .hero-visual { min-height: 500px; transform: scale(.82); margin: -20px -70px -25px; }
  .trust-strip { padding: 30px 0 55px; align-items: start; flex-direction: column; gap: 20px; }
  .platforms { width: 100%; gap: 13px; flex-wrap: wrap; }
  .platforms span { padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,.7); font-size: 11px; }
  .benefits, .how, .faq { padding: 60px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .section-heading h2, .pricing h2, .final-cta h2 { font-size: 37px; }
  .section-heading > p { max-width: 100%; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card-wide { grid-column: auto; min-height: 320px; flex-direction: column; }
  .benefit-card h3 { margin-top: 35px; font-size: 24px; }
  .speed-chart, .chat-preview { width: 100%; min-width: 0; height: 130px; margin-top: 25px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 380px; }
  .pricing { margin-top: 50px; margin-bottom: 60px; padding: 45px 22px 25px; grid-template-columns: 1fr; gap: 40px; border-radius: 30px; }
  .pricing ul { grid-template-columns: 1fr; }
  .price-card { padding: 25px; }
  .price strong { font-size: 68px; }
  .brand-story { padding: 10px 0 60px; grid-template-columns: 1fr; gap: 45px; }
  .emblem-card { max-width: 310px; justify-self: center; padding: 17px; border-radius: 30px; }
  .emblem-card img { border-radius: 20px; }
  .brand-story-copy h2 { font-size: 37px; }
  .final-cta { margin-top: 50px; padding: 45px 25px; grid-template-columns: 1fr; gap: 35px; border-radius: 30px; }
  .site-footer { padding-top: 50px; grid-template-columns: 1fr 1fr; gap: 25px; }
  .site-footer > p { display: none; }
  .footer-links { justify-self: end; flex-direction: column; align-items: end; gap: 12px; }
  .copyright { align-self: end; }
}

@media (prefers-reduced-motion: no-preference) {
  .visual-card { animation: float 5s ease-in-out infinite; }
  .speed-card { animation: float-small 4.2s ease-in-out infinite; }
  .privacy-card { animation: float-small 4.8s ease-in-out infinite reverse; }
  @keyframes float { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
  @keyframes float-small { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}
