@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Crimson+Pro:ital,wght@0,300;1,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:    #07111F;
  --ink-m:  #0D1E33;
  --ink-l:  #142640;
  --cyan:   #00D4C8;
  --cyan-d: #00A89E;
  --amber:  #F0A500;
  --slate:  #8BA3BF;
  --fog:    #C8D8E8;
  --white:  #F0F6FF;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--ink); color: var(--white); overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.1rem 3%;
  background: rgba(7,17,31,.93); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,212,200,.1);
  transition: padding .3s;
}
.logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.logo-gem {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: grid; place-items: center;
  font-weight: 900; font-size: .8rem; color: var(--ink);
}
.logo-text strong { display: block; font-weight: 800; font-size: .95rem; }
.logo-text span { font-size: .62rem; color: var(--cyan); letter-spacing: .14em; text-transform: uppercase; }

.nav-links { display: flex; gap: 1.2rem; list-style: none; flex-wrap: nowrap; }
.logo img { filter: drop-shadow(0 0 0 transparent); }
.nav-links a {
  font-size: .75rem; color: var(--slate); text-decoration: none;
  font-weight: 500; padding: .3rem 0; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--cyan); }

.nav-cta {
  background: var(--cyan); color: var(--ink) !important;
  padding: .5rem 1rem; border-radius: 6px;
  font-weight: 700; font-size: .75rem; text-decoration: none;
  transition: background .2s, transform .15s; white-space: nowrap; flex-shrink: 0;
  display: block !important; visibility: visible !important;
}
.nav-cta:hover { background: var(--cyan-d); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 5% 4rem;
  background: var(--ink-m);
  border-bottom: 1px solid rgba(0,212,200,.1);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,212,200,.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(0,212,200,1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,200,1) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .sec-tag { margin-bottom: .6rem; }
.page-hero h1 { font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1rem; }
.page-hero h1 .c { color: var(--cyan); }
.page-hero h1 .a { color: var(--amber); }
.page-hero p { font-size: 1rem; color: var(--slate); line-height: 1.8; font-weight: 300; max-width: 560px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(0,212,200,.25); border-radius: 100px;
  padding: .3rem .9rem; font-size: .72rem; color: var(--cyan);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem;
}

/* ── SHARED LAYOUT ── */
.section { padding: 5rem 5%; }
.section.alt { background: var(--ink-m); }
.sec-tag { font-size: .7rem; font-weight: 700; color: var(--cyan); letter-spacing: .18em; text-transform: uppercase; margin-bottom: .6rem; }
.sec-title { font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.12; letter-spacing: -.025em; margin-bottom: .9rem; }
.sec-sub { font-size: .975rem; color: var(--slate); line-height: 1.8; font-weight: 300; max-width: 550px; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .sec-sub { margin: 0 auto; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,212,200,.18), transparent); margin: 0 5%; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: rgba(255,255,255,.025); border: 1px solid rgba(0,212,200,.1);
  border-radius: 16px; padding: 2rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg,var(--cyan),var(--amber)); opacity:0; transition:opacity .25s; }
.card:hover { transform: translateY(-5px); border-color: rgba(0,212,200,.3); box-shadow: 0 14px 36px rgba(0,212,200,.1); }
.card:hover::before { opacity: 1; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(0,212,200,.1); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.card h3 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.card p { font-size: .875rem; color: var(--slate); line-height: 1.75; font-weight: 300; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.chip { background: rgba(0,212,200,.06); border: 1px solid rgba(0,212,200,.15); border-radius: 4px; padding: .15rem .55rem; font-size: .68rem; color: var(--cyan); font-weight: 600; letter-spacing: .04em; }
.chip.amber { background: rgba(240,165,0,.06); border-color: rgba(240,165,0,.2); color: var(--amber); }

/* ── BUTTONS ── */
.btn-fill { background: var(--cyan); color: var(--ink); padding: .85rem 1.9rem; border-radius: 8px; font-weight: 800; font-size: .875rem; letter-spacing: .03em; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(0,212,200,.3); }
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,212,200,.5); }
.btn-line { border: 1.5px solid rgba(0,212,200,.35); color: var(--fog); padding: .85rem 1.9rem; border-radius: 8px; font-weight: 600; font-size: .875rem; text-decoration: none; display: inline-block; transition: border-color .2s, color .2s; }
.btn-line:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-amber { background: var(--amber); color: var(--ink); padding: .85rem 1.9rem; border-radius: 8px; font-weight: 800; font-size: .875rem; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(240,165,0,.25); }
.btn-amber:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink-m); border-top: 1px solid rgba(0,212,200,.08);
  padding: 2.5rem 5%;
}
.foot-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.foot-brand { font-weight: 900; font-size: 1.15rem; letter-spacing: -.02em; }
.foot-brand span { color: var(--cyan); }
.foot-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.foot-nav a { font-size: .82rem; color: var(--slate); text-decoration: none; transition: color .2s; }
.foot-nav a:hover { color: var(--cyan); }
.foot-legal { font-size: .73rem; color: rgba(139,163,191,.35); line-height: 1.7; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:700px) {
  nav { padding: .9rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display:flex; flex-direction:column; gap:1rem; position:absolute; top:100%; left:0; right:0; background:var(--ink-m); padding:1.5rem 5%; border-bottom:1px solid rgba(0,212,200,.08); }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 5%; }
  .card-grid { grid-template-columns: 1fr; }
}
