:root {
  --ink: #0a0a0a;
  --paper: #f4f2ec;
  --white: #fff;
  --lime: #ccff00;
  --blue: #144ce8;
  --line: rgba(10, 10, 10, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  height: 92px;
  padding: 0 5vw;
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.09em;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: inline-block;
  padding: 0.21em 0.3em 0.23em 0.28em;
  color: #fff;
  background: var(--ink);
  border-radius: 0.3em;
}
.brand-name { color: var(--ink); }
.brand-footer .brand-mark {
  color: var(--ink);
  background: #fff;
}
.brand-footer .brand-name { color: #fff; }
.desktop-nav { display: flex; gap: 38px; font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--ink); transition: .25s; }
.desktop-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 22px; border: 1px solid var(--ink); padding: 11px 15px 11px 20px; border-radius: 99px; font-size: 13px; font-weight: 700; transition: .25s; }
.header-cta:hover { color: white; background: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #000; margin: 6px; transition: .25s; }

.hero {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  padding: 160px 5vw 55px;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 4vw;
  background: var(--lime);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; width: 800px; height: 800px; border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%; left: -390px; top: 105px;
}
.hero-orbit { position: absolute; border: 1px solid rgba(0,0,0,.1); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 500px; height: 500px; right: -230px; top: -220px; }
.orbit-two { width: 230px; height: 230px; right: -50px; bottom: -90px; }
.hero-content { z-index: 2; padding-top: 15px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.hero h1 { margin: 25px 0 24px; font-size: clamp(54px, 6.3vw, 104px); line-height: .94; letter-spacing: -6px; font-weight: 800; }
.hero h1 span { font-weight: 400; font-style: italic; }
.hero-copy { max-width: 570px; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 34px; }
.button { min-height: 56px; padding: 0 24px; border: 0; border-radius: 4px; display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.button-dark { color: white; background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid; padding: 8px 0; }
.text-link span { margin-left: 10px; }
.hero-card {
  z-index: 2; width: min(34vw, 480px); aspect-ratio: .8; justify-self: center;
  padding: 26px; color: white; background: var(--blue); border-radius: 5px;
  transform: rotate(5deg); box-shadow: 24px 24px 0 rgba(0,0,0,.09);
  transition: transform .35s;
}
.hero-card:hover { transform: rotate(1deg) scale(1.02); }
.card-top { display: flex; justify-content: space-between; font-size: 8px; font-weight: 800; letter-spacing: 1px; }
.card-visual { height: 73%; position: relative; display: grid; place-items: center; }
.signal { display: flex; align-items: center; gap: 12px; }
.signal span { display: block; width: 24px; background: var(--lime); border-radius: 20px; transform: skew(-7deg); }
.signal span:nth-child(1) { height: 65px; }.signal span:nth-child(2) { height: 160px; }.signal span:nth-child(3) { height: 110px; }.signal span:nth-child(4) { height: 48px; }
.smile { position: absolute; right: 2%; bottom: 20%; font-size: 65px; color: var(--lime); transform: rotate(30deg); }
.spark { position: absolute; top: 18%; left: 10%; color: var(--lime); font-size: 38px; }
.card-bottom { display: flex; justify-content: space-between; align-items: end; font-size: 28px; line-height: .9; font-weight: 800; }
.mini-tag { font-size: 8px; line-height: 1.25; text-align: right; letter-spacing: 1px; }
.hero-footer { position: absolute; left: 5vw; right: 5vw; bottom: 30px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.scroll-note b { margin-left: 12px; }

section:not(.hero) { padding: 120px 7vw; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; margin-top: 65px; }
.intro h2, .process h2, .contact h2 { margin: 0; font-size: clamp(42px, 5vw, 78px); line-height: 1.04; letter-spacing: -4px; }
h2 em { font-weight: 400; }
.intro-text { padding-top: 10px; }
.intro-text p { font-size: 16px; line-height: 1.7; margin: 0 0 20px; }
.intro-text a { display: inline-flex; gap: 45px; border-bottom: 1px solid; padding: 9px 0; margin-top: 10px; font-size: 13px; font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 100px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { min-height: 205px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { font-size: 56px; letter-spacing: -4px; }
.stat span { font-size: 12px; line-height: 1.5; font-weight: 600; }
.stat.accent { background: var(--lime); }

.services { color: white; background: var(--ink); display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; }
.section-kicker.light { color: rgba(255,255,255,.6); }
.section-heading h2 { font-size: clamp(54px, 6vw, 90px); line-height: .9; letter-spacing: -5px; margin: 70px 0 35px; }
.section-heading h2 span { color: var(--lime); font-weight: 400; font-style: italic; }
.section-heading p { max-width: 380px; color: #aaa; font-size: 15px; line-height: 1.6; }
.service-list { margin-top: 25px; }
.service-row { min-height: 128px; display: grid; grid-template-columns: 55px 1fr 45px; align-items: center; border-top: 1px solid #333; transition: padding .25s, background .25s; }
.service-row:last-child { border-bottom: 1px solid #333; }
.service-row:hover { padding-left: 18px; background: #121212; }
.service-number { font-size: 10px; color: #777; }
.service-row h3 { margin: 0 0 9px; font-size: 28px; letter-spacing: -1px; }
.service-row p { margin: 0; color: #888; font-size: 12px; }
.service-icon { width: 38px; height: 38px; border: 1px solid #444; display: grid; place-items: center; border-radius: 50%; transition: .2s; }
.service-row:hover .service-icon { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.process-title { display: flex; align-items: end; justify-content: space-between; margin: 65px 0 75px; }
.process-title p { width: 310px; line-height: 1.7; font-size: 14px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid article { min-height: 365px; padding: 25px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.process-grid article > span { font-size: 10px; font-weight: 700; }
.process-symbol { font-size: 65px; height: 155px; display: grid; place-items: center; transition: transform .3s; }
.process-grid article:hover .process-symbol { transform: rotate(12deg) scale(1.1); }
.process-grid article:nth-child(3) { background: var(--lime); }
.process-grid h3 { margin: 12px 0; font-size: 21px; }
.process-grid p { color: #595959; font-size: 12px; line-height: 1.6; margin: 0; }

.telegram { min-height: 720px; padding-bottom: 0 !important; color: white; background: var(--blue); display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; overflow: hidden; }
.tg-content { padding-bottom: 100px; align-self: center; }
.tg-content h2 { font-size: clamp(45px, 5vw, 74px); line-height: .98; letter-spacing: -4px; margin: 55px 0 30px; }
.tg-content h2 span { color: var(--lime); font-weight: 400; font-style: italic; }
.tg-content p { max-width: 490px; color: rgba(255,255,255,.72); line-height: 1.7; font-size: 14px; margin-bottom: 34px; }
.phone { width: min(370px, 85%); height: 675px; margin: 40px auto -85px; padding: 12px; background: #111; border: 2px solid #777; border-radius: 48px; box-shadow: 0 20px 70px rgba(0,0,0,.35); transform: rotate(3deg); }
.phone-notch { position: absolute; z-index: 2; width: 110px; height: 24px; margin-left: 116px; background: #111; border-radius: 0 0 16px 16px; }
.phone-screen { height: 100%; border-radius: 37px; overflow: hidden; color: #111; background: #d9e6ee; }
.tg-head { height: 85px; padding: 24px 14px 10px; color: white; background: #1d81bd; display: flex; align-items: center; gap: 10px; }
.tg-head b { font-size: 22px; }.tg-head > span { flex: 1; display: flex; flex-direction: column; }.tg-head small { font-size: 9px; opacity: .8; }
.avatar { width: 38px; height: 38px; color: #fff; background: var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 800; letter-spacing: -1px; }
.post { background: white; width: 90%; margin: 18px auto; border-radius: 12px; padding: 8px; font-size: 11px; }
.post-art { height: 330px; padding: 30px 22px; color: white; background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.post-art span { color: var(--lime); font-size: 35px; font-weight: 800; line-height: .95; letter-spacing: -2px; }
.post-art small { letter-spacing: 2px; }
.post p { line-height: 1.55; }.post > small { line-height: 1.5; color: #555; }
.views { color: #999; font-size: 9px; margin-top: 12px; display: flex; justify-content: space-between; }

.contact { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; background: var(--lime); }
.contact h2 { margin: 55px 0 30px; }
.contact-copy p { max-width: 530px; line-height: 1.7; font-size: 14px; }
.direct-tg {
  display: inline-flex;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, .45);
  font-size: 13px;
  font-weight: 700;
}
.contact-form { padding-top: 45px; }
.contact-form label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 23px; }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(0,0,0,.4); border-radius: 0; outline: 0; resize: none; background: transparent; font-size: 15px; text-transform: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: black; border-bottom-width: 2px; }
.contact-form .button { width: 100%; margin-top: 10px; }
.form-status { font-size: 12px; min-height: 18px; }

footer { padding: 75px 7vw 25px; color: white; background: var(--ink); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; }
footer > p { margin: 0; color: #999; font-size: 13px; line-height: 1.7; }
.footer-links { justify-self: end; display: flex; flex-direction: column; gap: 15px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { grid-column: 1 / -1; margin-top: 65px; padding-top: 22px; border-top: 1px solid #333; display: flex; justify-content: space-between; color: #777; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.mobile-menu { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) and (min-width: 901px) {
  .site-header { padding-inline: 4vw; }
  .desktop-nav { gap: 20px; }
  .header-cta { gap: 10px; padding-left: 14px; }
  .hero { grid-template-columns: 1.18fr .82fr; gap: 2vw; padding-inline: 4vw; }
  .hero h1 { font-size: 62px; letter-spacing: -4px; }
  .hero-card { width: 310px; }
  .hero-footer { left: 4vw; right: 4vw; }
  .card-bottom { font-size: 22px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; z-index: 31; }
  .menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 30; padding: 130px 8vw; background: var(--lime); flex-direction: column; gap: 25px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 38px; font-weight: 800; letter-spacing: -2px; }
  .hero { height: auto; min-height: 950px; grid-template-columns: 1fr; padding-top: 145px; }
  .hero h1 { letter-spacing: -4px; }
  .hero-card { width: min(390px, 78vw); }
  .hero-footer { display: none; }
  .intro-grid, .services, .telegram, .contact { grid-template-columns: 1fr; }
  .intro-text { max-width: 600px; }
  .services { gap: 60px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .phone { margin-top: 0; }
}

@media (max-width: 600px) {
  .site-header { height: 75px; padding: 0 20px; }
  .brand { font-size: 28px; gap: 5px; }
  .hero { min-height: 850px; padding: 120px 20px 65px; }
  .hero h1 { font-size: 53px; letter-spacing: -3.5px; }
  .hero-copy { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-card { padding: 20px; width: 76vw; }
  .signal span { width: 18px; }.signal span:nth-child(2) { height: 115px; }
  .card-bottom { font-size: 20px; }
  section:not(.hero) { padding: 85px 20px; }
  .intro-grid { margin-top: 45px; }
  .intro h2, .process h2, .contact h2 { font-size: 44px; letter-spacing: -3px; }
  .stats { grid-template-columns: 1fr; margin-top: 65px; }
  .stat { min-height: 150px; }
  .services { padding-top: 85px !important; }
  .section-heading h2 { margin-top: 45px; font-size: 58px; }
  .service-row { grid-template-columns: 38px 1fr 38px; min-height: 120px; }
  .service-row h3 { font-size: 22px; }
  .service-row p { max-width: 215px; }
  .process-title { align-items: flex-start; flex-direction: column; gap: 22px; margin: 45px 0; }
  .process-title p { width: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 280px; }
  .process-symbol { height: 100px; }
  .telegram { padding-bottom: 0 !important; }
  .tg-content { padding-bottom: 20px; }
  .tg-content h2 { font-size: 46px; letter-spacing: -3px; }
  .phone { height: 610px; width: 310px; }
  .phone-notch { margin-left: 87px; }
  .post-art { height: 285px; }
  .post-art span { font-size: 31px; }
  .contact { gap: 15px; }
  footer { grid-template-columns: 1fr; gap: 30px; padding: 60px 20px 25px; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 10px; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
