@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Space+Mono:wght@400;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg-deep:       #060D14;
  --bg-dark:       #0B1C33;
  --bg-card:       #0F2340;
  --border-dark:   rgba(0,217,233,0.12);
  --border-subtle: rgba(255,255,255,0.06);
  --bg-light:      #F4F7FA;
  --bg-white:      #FFFFFF;
  --text-dark:     #0B1C33;
  --text-body:     #3D5A6E;
  --border-light:  rgba(0,168,138,0.15);
  --cyan:          #00D9E9;
  --cyan-hover:    #00B8C8;
  --blue:          #1A4F9C;
  --amber:         #F5A623;
  --white:         #F0F5F8;
  --muted:         #7A9BB0;
  --font-head:     'Sora', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'Space Mono', monospace;
  --max-width:     1200px;
  --nav-height:    72px;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-pill:   50px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body) !important;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-deep);
  overflow-x: hidden;
}

/* ─── SUPPRESS ASTRA ELEMENTS ─── */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }
.site-header,
.ast-mobile-header-wrap,
#masthead,
.main-header-bar,
.ast-above-header,
.ast-below-header { display: none !important; }
.site-footer,
#colophon,
.footer-widget-area,
.site-below-footer-wrap,
.ast-site-footer-wrap { display: none !important; }

/* ─── GRID OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,217,233,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,233,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
section, nav, footer, header { position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p  { font-family: var(--font-body); line-height: 1.75; }
em { font-style: normal; color: var(--cyan); }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── SECTION SYSTEM ─── */
.str-section { padding: 100px 5%; }
.str-section-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }

.str-section--dark  { background: var(--bg-dark); color: var(--white); }
.str-section--deep  { background: var(--bg-deep); color: var(--white); }
.str-section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.str-section--light h2 { color: var(--text-dark); }
.str-section--light h2 em { color: var(--cyan-hover); }
.str-section--light p  { color: var(--text-body); }
.str-section--light .section-tag { color: var(--cyan-hover); }
.str-section--light .section-tag::before { background: var(--cyan-hover); }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cyan);
  flex-shrink: 0;
}
.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 60px;
  color: var(--muted);
}
.str-section--light .section-intro { color: var(--text-body); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg-deep) !important;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,217,233,0.28);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--muted) !important;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--cyan) !important;
  border-color: var(--cyan);
}

.btn-outline-blue {
  display: inline-block;
  background: transparent;
  color: var(--blue) !important;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white) !important;
}

/* ─── CARDS ─── */
.str-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.str-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.str-card--light {
  background: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.str-card--light:hover {
  border-color: rgba(0,168,138,0.35);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE UTILITIES ─── */
@media (max-width: 768px) {
  .str-section { padding: 64px 6%; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
}
