/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --cyan:    #00F6FF;
  --blue:    #007BFF;
  --purple:  #7861FF;
  --magenta: #FF2DFF;
  --teal:    #00E6C8;
  --bg:      #0D1220;
  --bg2:     #0f1628;
  --bg3:     #111a2e;
  --text:    #e8edf8;
  --text2:   #8ca0c8;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 20% 30%, rgba(0,123,255,.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 70%, rgba(120,97,255,.10) 0%, transparent 60%);
}
.particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  border-radius: 50%; background: var(--cyan);
  opacity: 0; animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .3; }
  100% { transform: translateY(-10vh) translateX(60px); opacity: 0; }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 72px;
  background: rgba(13,18,32,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,246,255,.08);
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.nav-logo-icon::after {
  content: ''; position: absolute; inset: 4px;
  background: var(--bg);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-size: 1.2rem; font-weight: 700; letter-spacing: .12em;
  background: linear-gradient(90deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-logo-sub { font-size: .55rem; letter-spacing: .22em; color: var(--teal); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text2); font-size: .82rem; letter-spacing: .06em; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.btn-nav {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  color: #fff; border: none; padding: .55rem 1.4rem;
  border-radius: 6px; font-family: 'Sora', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  cursor: pointer; transition: opacity .2s, transform .2s; text-transform: uppercase;
}
.btn-nav:hover { opacity: .85; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text2); border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 6vw 80px; overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,246,255,.25); background: rgba(0,246,255,.06);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .72rem; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.3); }
}
.hero-h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1rem; }
.hero-h1 .white { color: #fff; }
.hero-h1 .grad {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 40%, var(--purple) 80%, var(--magenta) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: clamp(.95rem, 2vw, 1.2rem); color: var(--text2); max-width: 600px; line-height: 1.7; margin-bottom: 2.8rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: var(--bg); font-family: 'Sora', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  padding: .85rem 2.2rem; border-radius: 8px; border: none; cursor: pointer;
  text-transform: uppercase; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 24px rgba(0,246,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,246,255,.4); }
.btn-secondary {
  background: transparent; color: var(--text); font-family: 'Sora', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em;
  padding: .82rem 2.2rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; text-transform: uppercase; transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-hex-wrap {
  position: absolute; right: -4vw; top: 50%; transform: translateY(-50%);
  width: 42vw; max-width: 600px; pointer-events: none;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-24px); }
}
.hero-hex-svg { width: 100%; opacity: .55; }

/* ─── TRUST BAR ─── */
.trust-bar {
  position: relative; z-index: 1;
  background: rgba(15,22,40,.7);
  border-top: 1px solid rgba(0,246,255,.08);
  border-bottom: 1px solid rgba(0,246,255,.08);
  padding: 1.6rem 6vw;
}
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-icon { font-size: 1.3rem; }
.trust-text { font-size: .78rem; color: var(--text2); line-height: 1.4; }
.trust-text strong { display: block; color: var(--text); font-weight: 600; font-size: .85rem; }

/* ─── SECTION SHARED ─── */
section { position: relative; z-index: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 6vw; }
.section-label { display: inline-block; font-size: .7rem; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; font-weight: 600; margin-bottom: .8rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.section-desc { font-size: 1rem; color: var(--text2); line-height: 1.75; max-width: 600px; }
.text-grad { background: linear-gradient(90deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── FEATURES ─── */
.features { padding: 100px 0; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-desc { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feat-card {
  background: rgba(15,22,40,.8); border: 1px solid rgba(0,246,255,.1);
  border-radius: 16px; padding: 2rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple)); opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: rgba(0,246,255,.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,246,255,.15), rgba(120,97,255,.15));
  border: 1px solid rgba(0,246,255,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem;
}
.feat-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.feat-sub { font-size: .8rem; color: var(--text2); line-height: 1.6; }
.feat-tag { display: inline-block; margin-top: .8rem; font-size: .65rem; letter-spacing: .12em; color: var(--cyan); text-transform: uppercase; background: rgba(0,246,255,.08); border-radius: 4px; padding: .25rem .6rem; }

/* ─── HOW IT WORKS ─── */
.hiw { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(10,16,34,.8), transparent); }
.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.hiw-steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.2rem; opacity: .6; transition: opacity .3s; cursor: pointer; }
.step.active, .step:hover { opacity: 1; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: #fff;
}
.step.active .step-num { background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 0 20px rgba(0,246,255,.4); }
.step-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.step-text p { font-size: .82rem; color: var(--text2); line-height: 1.6; }
.hiw-visual {
  background: rgba(15,22,40,.9); border: 1px solid rgba(0,246,255,.12);
  border-radius: 24px; padding: 2.5rem; min-height: 320px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.hiw-visual::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(0,246,255,.06) 0%, transparent 70%);
  animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.hiw-hex-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; position: relative; z-index: 1; }
.mini-hex { aspect-ratio: 1; clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.mini-hex.c { background: linear-gradient(135deg,rgba(0,246,255,.25),rgba(0,123,255,.25)); }
.mini-hex.p { background: linear-gradient(135deg,rgba(120,97,255,.25),rgba(255,45,255,.15)); }
.mini-hex.t { background: linear-gradient(135deg,rgba(0,230,200,.2),rgba(0,246,255,.15)); }

/* ─── STATS ─── */
.stats { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 2rem; background: rgba(15,22,40,.6); border: 1px solid rgba(0,246,255,.08); border-radius: 16px; }
.stat-num { font-size: 2.8rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .4rem; }
.stat-label { font-size: .8rem; color: var(--text2); letter-spacing: .06em; }

/* ─── VALUES ─── */
.values { padding: 100px 0; }
.values-header { text-align: center; margin-bottom: 4rem; }
.values-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.value-pill {
  display: flex; align-items: center; gap: .8rem;
  background: rgba(15,22,40,.8); border: 1px solid rgba(0,246,255,.12);
  border-radius: 100px; padding: .8rem 1.6rem; transition: border-color .3s, transform .2s;
}
.value-pill:hover { border-color: var(--cyan); transform: translateY(-3px); }
.value-pill-name { font-size: .85rem; font-weight: 700; color: #fff; }
.value-pill-desc { font-size: .72rem; color: var(--text2); }

/* ─── CONTACT ─── */
.contact-section { padding: 120px 0; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { font-size: .9rem; color: var(--text2); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(15,22,40,.8); border: 1px solid rgba(0,246,255,.1);
  border-radius: 12px; padding: 1rem 1.2rem; text-decoration: none; color: inherit;
  transition: border-color .25s, transform .2s;
}
.contact-detail:hover { border-color: var(--cyan); transform: translateX(4px); }
.contact-detail-icon { width: 38px; height: 38px; flex-shrink: 0; background: linear-gradient(135deg, rgba(0,246,255,.15), rgba(120,97,255,.15)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-detail-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.contact-detail-value { font-size: .85rem; color: var(--text); font-weight: 500; }
.contact-form-box {
  background: rgba(15,22,40,.85); border: 1px solid rgba(0,246,255,.12);
  border-radius: 24px; padding: 2.8rem; position: relative; overflow: hidden;
}
.contact-form-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.form-group label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(8,14,28,.8); border: 1px solid rgba(0,246,255,.14);
  border-radius: 10px; padding: .8rem 1rem; color: var(--text);
  font-family: 'Sora', sans-serif; font-size: .875rem;
  outline: none; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(140,160,200,.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,246,255,.08); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #0f1628; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: .5rem; }
.form-submit .btn-primary { width: 100%; justify-content: center; display: flex; align-items: center; gap: .5rem; }
.form-note { font-size: .72rem; color: var(--text2); text-align: center; margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p { font-size: .85rem; color: var(--text2); }

/* ─── FOOTER ─── */
footer { background: rgba(8,12,22,1); border-top: 1px solid rgba(0,246,255,.08); padding: 60px 6vw 30px; }
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .82rem; color: var(--text2); line-height: 1.7; margin-top: .8rem; }
.footer-col h5 { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .82rem; color: var(--text2); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { max-width: 1120px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }
.footer-tagline { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; background: linear-gradient(90deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── GLOW LINE ─── */
.glow-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent); opacity: .25; }

/* ─── SCROLL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-hex-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
}
