@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

:root {
  --bg: #07090c;
  --bg2: #0d1117;
  --bg3: #111820;
  --teal: #00e5b4;
  --teal-dim: #00b88d;
  --orange: #f97316;
  --text: #d8dde5;
  --text-dim: #7a8699;
  --text-bright: #eef1f5;
  --border: rgba(255,255,255,0.07);
  --border-teal: rgba(0,229,180,0.25);
  --mono: 'IBM Plex Mono', monospace;
  --display: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', sans-serif;
}

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

.topo-bg { position: fixed; inset: 0; z-index: 0; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3Cstyle%3Epath%7Bfill:none;stroke:%2300e5b4;stroke-width:1%7D%3C/style%3E%3C/defs%3E%3Cpath d='M0,400 Q200,200 400,400 T800,400'/%3E%3Cpath d='M0,350 Q200,150 400,350 T800,350'/%3E%3Cpath d='M0,300 Q200,100 400,300 T800,300'/%3E%3Cpath d='M0,450 Q200,250 400,450 T800,450'/%3E%3Cpath d='M0,500 Q200,300 400,500 T800,500'/%3E%3Cpath d='M0,250 Q200,50 400,250 T800,250'/%3E%3Cpath d='M0,550 Q200,350 400,550 T800,550'/%3E%3Cpath d='M0,200 Q200,0 400,200 T800,200'/%3E%3Cpath d='M0,600 Q200,400 400,600 T800,600'/%3E%3C/svg%3E"); background-size: 800px 800px; pointer-events: none; }
.grid-overlay { position: fixed; inset: 0; z-index: 0; opacity: 0.025; background-image: linear-gradient(var(--teal) 1px, transparent 1px), linear-gradient(90deg, var(--teal) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 72px; background: rgba(7,9,12,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark { width: 34px; height: 34px; background: var(--teal); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-top { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.12em; color: var(--text-bright); }
.nav-logo-sub { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em; color: var(--teal); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; transition: color 0.2s; padding-bottom: 2px; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); border-bottom-color: var(--teal); }
.nav-cta { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--teal); color: var(--bg); padding: 0.55rem 1.3rem; text-decoration: none; font-weight: 500; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--teal-dim); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--text-dim); display: block; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99; background: rgba(7,9,12,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 1.5rem 1.5rem 2rem; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mobile-cta { color: var(--teal); border-bottom: none; margin-top: 1rem; }

/* PAGE HEADER */
.page-header { position: relative; z-index: 1; padding: 10rem 3rem 5rem; border-bottom: 1px solid var(--border); }
.page-header-eyebrow { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.page-header-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--teal); }
.page-header-title { font-family: var(--display); font-size: clamp(3rem, 8vw, 7rem); line-height: 0.92; letter-spacing: 0.02em; color: var(--text-bright); }
.page-header-sub { margin-top: 1.2rem; font-size: 1rem; font-weight: 300; color: var(--text-dim); max-width: 520px; line-height: 1.75; }

/* SECTION */
section { position: relative; z-index: 1; padding: 5rem 3rem; }
.section-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::before { content: ''; display: block; width: 26px; height: 1px; background: var(--teal); }
.section-title { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.95; letter-spacing: 0.02em; color: var(--text-bright); margin-bottom: 1rem; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--teal); color: var(--bg); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 0.9rem 1.8rem; text-decoration: none; transition: background 0.2s, transform 0.15s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--teal-dim); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid var(--border-teal); color: var(--teal); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.9rem 1.8rem; text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s; cursor: pointer; background: none; }
.btn-outline:hover { background: rgba(0,229,180,0.07); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #c45a0e; }

/* DIVIDER */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0.2; margin: 0 3rem; position: relative; z-index: 1; }

/* TICKER */
.ticker-wrap { position: relative; z-index: 1; background: var(--teal); overflow: hidden; height: 42px; display: flex; align-items: center; }
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bg); padding: 0 2.5rem; font-weight: 500; }
.ticker-dot { width: 4px; height: 4px; background: var(--bg); border-radius: 50%; display: inline-block; vertical-align: middle; margin-right: 2.5rem; opacity: 0.35; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #0a1a15 0%, #071510 50%, #0d1117 100%); border-top: 1px solid var(--border-teal); border-bottom: 1px solid var(--border-teal); padding: 5rem 3rem; text-align: center; position: relative; z-index: 1; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,229,180,0.06) 0%, transparent 70%); }
.cta-title { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--text-bright); margin-bottom: 1rem; letter-spacing: 0.02em; position: relative; }
.cta-sub { font-size: 0.95rem; font-weight: 300; color: var(--text-dim); max-width: 440px; margin: 0 auto 2.5rem; position: relative; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
footer { position: relative; z-index: 1; background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 3rem 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.footer-brand-name { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.1em; color: var(--text-bright); margin-bottom: 0.2rem; }
.footer-brand-sub { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; }
.footer-brand-desc { font-size: 0.82rem; font-weight: 300; color: var(--text-dim); line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; color: var(--text-dim); line-height: 2; }
.footer-contact a { color: var(--teal); text-decoration: none; }
.footer-contact a:hover { opacity: 0.7; }
.footer-col-title { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-bright); margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.82rem; font-weight: 300; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--text-dim); }
.footer-tagline { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 3.5rem 1.5rem; }
  .page-header { padding: 8rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .divider { margin: 0 1.5rem; }
  .cta-banner { padding: 3.5rem 1.5rem; }
}
