/* ═══════════════════════════════════════════════════════
   ORION by Berox — style.css v2.4
   orionbyberox.com — Global Stylesheet
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #03060a;
  --dark:    #070d14;
  --panel:   #0a1220;
  --border:  #0d2030;
  --border2: #142535;
  --cyan:    #00d2ff;
  --green:   #00e596;
  --red:     #ff4560;
  --orange:  #ff8c42;
  --yellow:  #f0b429;
  --white:   #dce8f8;
  --gray:    #3d5468;
  --gray2:   #1a2d3d;
  --head:    'Syne', sans-serif;
  --body:    'DM Sans', sans-serif;
  --r:       12px;
  --r2:      16px;
  --r3:      20px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,210,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,210,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--body); }

/* ── LAYOUT ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }
.s { position: relative; z-index: 1; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  background: rgba(3,6,10,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 28px; height: 28px; opacity: .9; }
.nav-logo-t {
  font-family: var(--head); font-size: 18px; font-weight: 800;
  color: var(--cyan); letter-spacing: .04em; line-height: 1;
  text-shadow: 0 0 24px rgba(0,210,255,.3);
}
.nav-logo-s { font-size: 10px; color: var(--gray); letter-spacing: .14em; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--gray);
  padding: 7px 11px; border-radius: 8px; text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-cta {
  background: var(--cyan) !important; color: #001018 !important;
  font-weight: 700 !important; font-family: var(--head) !important;
  letter-spacing: .04em !important;
}
.nav-cta:hover { filter: brightness(1.08) !important; text-decoration: none !important; }
.nav-sign { border: 1px solid var(--border) !important; color: var(--gray) !important; }
.nav-sign:hover { border-color: rgba(0,210,255,.3) !important; color: var(--white) !important; }

/* Hamburger */
.nav-ham {
  display: none; width: 36px; height: 36px; border: none;
  background: rgba(255,255,255,.05); border-radius: 8px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-ham span { width: 18px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all .3s; }
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: rgba(3,6,10,.97); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px); padding: 12px;
  flex-direction: column; gap: 3px;
}
.mob-menu.show { display: flex; }
.mob-menu a {
  font-size: 15px; font-weight: 500; color: var(--white); text-decoration: none;
  padding: 11px 16px; border-radius: 10px; transition: background .2s;
}
.mob-menu a:hover { background: rgba(255,255,255,.05); }
.mob-menu a.active { background: rgba(0,210,255,.08); color: var(--cyan); }
.mob-cta {
  background: var(--cyan) !important; color: #001018 !important;
  font-weight: 700 !important; text-align: center; margin-top: 6px;
  font-family: var(--head) !important;
}

/* ── PAGE BASE ── */
.page-wrap { padding-top: 60px; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,229,150,.08); border: 1px solid rgba(0,229,150,.20);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  color: var(--green); text-transform: uppercase; margin-bottom: 16px;
}
.page-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.page-h1 {
  font-family: var(--head);
  font-size: clamp(26px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 12px;
}
.page-desc { font-size: 16px; color: var(--gray); max-width: 56ch; line-height: 1.7; }

/* ── SECTION LABELS ── */
.s-tag { font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase; margin-bottom: 10px; }
.s-title { font-family: var(--head); font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
.s-desc { font-size: 15px; color: var(--gray); max-width: 52ch; line-height: 1.7; margin-bottom: 40px; }

/* ── CARDS ── */
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 24px;
}

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: #001018;
  font-family: var(--head); font-size: 15px; font-weight: 700;
  letter-spacing: .04em; padding: 13px 26px; border-radius: var(--r);
  text-decoration: none; border: none; transition: all .2s;
  box-shadow: 0 0 24px rgba(0,210,255,.18);
}
.btn-p:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; }

.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--white);
  font-family: var(--head); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--r);
  text-decoration: none; background: transparent; transition: all .2s;
}
.btn-s:hover { border-color: var(--cyan); color: var(--cyan); text-decoration: none; }

.btn-g {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #001510;
  font-family: var(--head); font-size: 15px; font-weight: 700;
  letter-spacing: .04em; padding: 13px 26px; border-radius: var(--r);
  text-decoration: none; border: none; transition: all .2s;
}
.btn-g:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; }

/* ── FORM FIELDS ── */
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 6px;
}
.field label span { font-weight: 400; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--dark); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-size: 14px;
  padding: 11px 13px; outline: none; transition: border .2s; font-family: var(--body);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); }
.field input::placeholder, .field textarea::placeholder { color: var(--gray2); }
.field select { appearance: none; -webkit-appearance: none; }
.field select option { background: #0a1220; color: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px clamp(16px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--gray);
  position: relative; z-index: 1;
}
.site-footer a { color: var(--gray); text-decoration: none; }
.site-footer a:hover { color: var(--cyan); }
.footer-logo { font-family: var(--head); font-size: 15px; font-weight: 800; color: var(--cyan); }

/* ── FADE IN ── */
.fi { opacity: 0; transform: translateY(16px); transition: opacity .55s, transform .55s; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi.d1 { transition-delay: .10s; }
.fi.d2 { transition-delay: .20s; }
.fi.d3 { transition-delay: .30s; }

/* ── MOBILE ── */
@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .site-footer { justify-content: center; text-align: center; }
}
@media(max-width: 480px) {
  .page-hero { padding: 48px 0 32px; }
}
