/* ============================================================
   НЕОТОРГ ФОНД — style.css
   Inter шрифт, тёмная тема, оранжевый акцент #F97316
   ============================================================ */

:root {
  --bg:        #05070F;
  --bg-alt:    #0A0E1A;
  --bg-deep:   #030408;
  --bg-card:   rgba(249,115,22,0.04);
  --accent:    #F97316;
  --accent-dim: rgba(249,115,22,0.2);
  --accent-soft: rgba(249,115,22,0.06);
  --text:      #F1F5F9;
  --text-dim:  #8B98B0;
  --text-muted:#586070;
  --border:    1px solid rgba(249,115,22,0.18);
  --border-subtle: 1px solid rgba(255,255,255,0.07);
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Inter', system-ui, monospace; /* Inter везде */
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:88px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
a { color:inherit; text-decoration:none; }

/* ======================================================
   HEADER
====================================================== */
.header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(5,7,15,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  transition: background 0.3s;
}
.header--scrolled { background: rgba(5,7,15,0.94); }

.header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display:inline-flex; align-items:center; }
.logo__img { height:38px; width:auto; display:block; }

.nav { display:flex; gap:36px; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width:100%; }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s ease;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--accent);
  color: #03050A;
  border-color: var(--accent);
}
.btn--solid:hover { background: transparent; color: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(241,245,249,0.25);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding:10px 20px; font-size:12px; }

/* ======================================================
   HERO
====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: var(--border);
}
.hero__canvas {
  position:absolute; inset:0;
  width:100%; height:100%; z-index:0;
}
.hero__grid {
  position:absolute; inset:0; z-index:1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(249,115,22,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
}
.hero__content {
  position:relative; z-index:2;
  text-align:center;
  max-width:1080px;
  padding: 140px 24px 110px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: var(--border);
  padding: 10px 20px;
  margin-bottom: 44px;
  background: rgba(249,115,22,0.05);
}
.hero__tag-cursor {
  width:7px; height:13px;
  background: var(--accent);
  margin-left: 10px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero__title {
  font-size: clamp(18px, 5.5vw, 86px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.accent-line { color: var(--accent); }
.line { display:block; overflow:hidden; }
.line-inner { display:block; }

.hero__subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero__actions {
  display:flex; justify-content:center; gap:16px; flex-wrap:wrap;
}
.hero__scroll {
  position:absolute; bottom:32px; left:50%; z-index:2;
  transform:translateX(-50%);
  font-size:11px; font-weight:500;
  letter-spacing:0.22em;
  color:var(--text-muted);
  text-transform:uppercase;
  animation:float 2.2s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translate(-50%,0)}
  50%{transform:translate(-50%,9px)}
}

/* ======================================================
   STATS BAR
====================================================== */
.stats {
  border-bottom: var(--border);
  background: var(--bg-alt);
}
.stats__inner {
  display:grid; grid-template-columns:repeat(3,1fr);
  border-left: var(--border);
}
.stat {
  padding: 48px 36px;
  border-right: var(--border);
  text-align:center;
}
.stat__value {
  font-size: clamp(36px,5vw,60px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat__value--text {
  font-size: clamp(13px,1.8vw,28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  display:flex; align-items:center; justify-content:center;
  min-height:66px;
}
.stat__label {
  margin-top:10px;
  font-size:12px; font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-dim);
}

/* ======================================================
   SHARED
====================================================== */
.section { padding:130px 0; }
.section-head { margin-bottom:64px; }
.section-head__label {
  font-size:11px; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--accent); margin-bottom:18px;
}
.section-head__title {
  font-size:clamp(16px,3.5vw,52px);
  font-weight:800; line-height:1.15;
  text-transform:uppercase; letter-spacing:-0.015em;
}

/* ======================================================
   STATUS
====================================================== */
.status { background:var(--bg-alt); border-bottom:var(--border); }
.status__cols {
  display:grid; grid-template-columns:1.15fr 1fr;
  gap:80px; align-items:start;
}

.timeline { position:relative; }
.timeline::before {
  content:'';
  position:absolute; left:19px; top:8px; bottom:8px;
  width:1px;
  background:linear-gradient(to bottom,rgba(249,115,22,0.4),rgba(249,115,22,0.06));
}
.timeline__item {
  position:relative; padding:0 0 48px 60px;
}
.timeline__item:last-child { padding-bottom:0; }
.timeline__mark {
  position:absolute; left:0; top:0;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--text-dim);
  border:1px solid rgba(139,152,176,0.3);
  background:var(--bg-alt);
}
.timeline__item.done .timeline__mark { color:#4ADE80; border-color:rgba(74,222,128,0.4); }
.timeline__item.active .timeline__mark {
  color:var(--accent); border-color:var(--accent);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{box-shadow:0 0 10px rgba(249,115,22,0.2)}
  50%{box-shadow:0 0 28px rgba(249,115,22,0.55)}
}
.timeline__title { font-size:clamp(13px,1.4vw,17px); font-weight:600; color:var(--text); }
.timeline__item:not(.active) .timeline__title { color:var(--text-dim); }
.timeline__item.active .timeline__title { color:var(--accent); }
.timeline__meta {
  margin-top:6px; font-size:12px; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted);
}
.timeline__progress {
  margin-top:14px; height:3px; width:100%; max-width:340px;
  background:rgba(249,115,22,0.1);
}
.timeline__progress-bar {
  height:100%; background:var(--accent);
  box-shadow:0 0 12px rgba(249,115,22,0.55);
}
.status__text { border-left:var(--border); padding-left:44px; }
.status__text p {
  color:var(--text-dim); font-size:15px; margin-bottom:18px; max-width:480px;
}
.status__note {
  margin-top:28px; padding:18px 22px;
  border:var(--border); background:var(--accent-soft);
  font-size:14px; font-weight:500; line-height:1.7;
  color:var(--text);
  display:flex; gap:14px; align-items:flex-start;
}
.status__note-dot {
  flex:0 0 auto; width:8px; height:8px; margin-top:8px;
  background:var(--accent); box-shadow:0 0 10px rgba(249,115,22,0.8);
}

/* ======================================================
   ABOUT
====================================================== */
.about { background:var(--bg); border-bottom:var(--border); }

.about__intro {
  max-width:820px;
  margin-bottom:72px;
  display:flex; flex-direction:column; gap:18px;
}
.about__intro p {
  font-size:15px; line-height:1.8; color:var(--text-dim);
}
.about__intro strong { color:var(--text); font-weight:600; }

.about__cards {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
}
.about__card {
  display:flex; flex-direction:column; gap:22px;
  padding:40px 32px;
  border:var(--border);
  background:var(--bg-card);
  transition:all 0.3s ease;
}
.about__card:hover {
  background:rgba(249,115,22,0.1);
  border-color:var(--accent);
  transform:translateY(-5px);
}
.about__card-top {
  display:flex; justify-content:space-between; align-items:center;
}
.about__card-num {
  font-size:11px; font-weight:600;
  letter-spacing:0.16em; color:var(--accent);
}
.about__card-arrow {
  font-size:20px; color:var(--accent);
  transition:transform 0.3s;
}
.about__card:hover .about__card-arrow { transform:translate(4px,-4px); }
.about__card h3 {
  font-size:clamp(13px,1.4vw,19px); font-weight:700;
  line-height:1.3; text-transform:uppercase;
  letter-spacing:-0.01em;
}
.about__card p {
  color:var(--text-dim); font-size:14px;
  line-height:1.75; margin-top:auto;
}

/* ======================================================
   CONTACT
====================================================== */
.contact { background:var(--bg); }
.contact__box {
  display:grid; grid-template-columns:1fr 1.2fr;
  gap:72px; padding:72px;
  border:1px solid rgba(249,115,22,0.35);
  background:linear-gradient(135deg,rgba(249,115,22,0.04) 0%,rgba(249,115,22,0.01) 100%);
}
.contact__info h2 {
  font-size:clamp(16px,2.5vw,42px); font-weight:800;
  text-transform:uppercase; letter-spacing:-0.02em;
  line-height:1.12; margin:18px 0 20px;
}
.contact__info > p {
  color:var(--text-dim); font-size:14px; line-height:1.8;
  max-width:420px; margin-bottom:32px;
}
.contact__lines { display:flex; flex-direction:column; gap:14px; }
.contact__line {
  display:flex; align-items:baseline; gap:18px;
  font-size:14px;
}
.contact__line span {
  font-size:10px; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--text-muted); min-width:60px;
}
.contact__line a {
  color:var(--text);
  border-bottom:1px solid rgba(249,115,22,0.35);
  padding-bottom:2px; transition:color 0.2s;
}
.contact__line a:hover { color:var(--accent); }
.contact__disclaimer {
  margin-top:28px; padding:14px 18px;
  border-left:2px solid var(--accent);
  background:rgba(249,115,22,0.04);
  font-size:12px; color:var(--text-muted);
  line-height:1.7;
}

/* form */
.contact__form {
  display:flex; flex-direction:column; gap:14px;
}
.form__row { display:grid; gap:14px; }
.form__row--two { grid-template-columns:1fr 1fr; }
.form__group { display:flex; flex-direction:column; gap:7px; }
.form__label {
  font-size:11px; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--text-muted);
}
.contact__form input,
.contact__form textarea {
  width:100%;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(249,115,22,0.18);
  border-radius:0;
  padding:13px 15px;
  color:var(--text);
  font-family:var(--sans);
  font-size:14px;
  transition:border-color 0.22s, box-shadow 0.22s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color:var(--text-muted); }
.contact__form input:focus,
.contact__form textarea:focus {
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(249,115,22,0.28);
  background:rgba(249,115,22,0.03);
}
.contact__form textarea { resize:vertical; min-height:130px; }
.contact__form .btn { margin-top:6px; width:100%; justify-content:center; }

/* ======================================================
   FOOTER
====================================================== */
.footer {
  background:var(--bg-deep);
  border-top:var(--border);
}
.footer__top {
  display:grid; grid-template-columns:1fr 1.5fr;
  gap:64px;
  padding:72px 0 56px;
  border-bottom:var(--border-subtle);
}
.footer__brand {
  display:flex; flex-direction:column; gap:20px;
}
.footer__logo-link { display:inline-block; }
.footer__logo-img { height:42px; width:auto; }
.footer__brand-desc {
  font-size:13px; color:var(--text-muted);
  line-height:1.75; max-width:280px;
}
.footer__cols {
  display:grid; grid-template-columns:1fr 1fr; gap:40px;
}
.footer__col {
  display:flex; flex-direction:column; gap:14px;
}
.footer__col-title {
  font-size:11px; font-weight:700;
  letter-spacing:0.16em; text-transform:uppercase;
  color:var(--accent); margin-bottom:6px;
}
.footer__link {
  font-size:14px; color:var(--text-dim);
  transition:color 0.2s; line-height:1.4;
}
.footer__link:hover { color:var(--text); }

.footer__bottom {
  padding:28px 0;
  display:flex; flex-direction:column; gap:10px;
}
.footer__copy {
  font-size:13px; font-weight:500; color:var(--text-dim);
}
.footer__disclaimer {
  font-size:12px; color:var(--text-muted);
  max-width:760px; line-height:1.7;
}

/* ======================================================
   REVEAL ANIMATION
====================================================== */
/* reveal управляется GSAP — не скрываем через CSS */

/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:1024px) {
  .contact__box { grid-template-columns:1fr; gap:48px; padding:48px 36px; }
  .footer__top { grid-template-columns:1fr; gap:40px; }
  .footer__cols { grid-template-columns:1fr 1fr; }
}
@media(max-width:960px) {
  .section { padding:90px 0; }
  .status__cols { grid-template-columns:1fr; gap:48px; }
  .status__text { border-left:none; border-top:var(--border); padding-left:0; padding-top:40px; }
  .about__cards { grid-template-columns:1fr; gap:2px; }
  .stats__inner { grid-template-columns:1fr; }
  .stat { border-right:none; border-bottom:var(--border); }
  .stat:last-child { border-bottom:none; }
}
@media(max-width:768px) {
  .hero__title { font-size:clamp(26px,8vw,52px); letter-spacing:-0.01em; }
  .hero__tag { font-size:11px; padding:8px 14px; }
  .hero__subtitle { font-size:15px; }
  .stat__value { font-size:clamp(28px,8vw,48px); }
  .about__card h3 { font-size:16px; }
  .contact__box { grid-template-columns:1fr; gap:36px; padding:36px 24px; }
  .form__row--two { grid-template-columns:1fr; }
}

@media(max-width:680px) {
  .nav { display:none; }
  .hero__title { font-size:clamp(22px,9.5vw,40px); }
  .hero__actions .btn { width:100%; }
  .contact__box { padding:28px 16px; }
  .footer__cols { grid-template-columns:1fr; }
  .footer__top { padding:48px 0 36px; }
  .section-head__title { font-size:clamp(20px,7vw,36px); }
  .about__card { padding:28px 22px; }
  .timeline__title { font-size:14px; }
  .status__text { padding-top:32px; }
}

@media(max-width:400px) {
  .hero__title { font-size:clamp(20px,10vw,32px); }
  .section-head__title { font-size:clamp(18px,8vw,28px); }
  .hero__tag { font-size:10px; letter-spacing:0.1em; }
  .stat { padding:32px 16px; }
  .stat__value { font-size:clamp(24px,10vw,40px); }
}
@media(prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  .hero__tag-cursor,
  .hero__scroll,
  .timeline__item.active .timeline__mark { animation:none; }
}
