@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

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

html { scroll-behavior: smooth; }

body {
background: var(--asg-navy-deep);
color: var(--asg-cream);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--asg-gold); color: var(--asg-navy-deep); }

@media (prefers-reduced-motion: reduce) {
* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.aurora-veil {
position: fixed;
inset: 0;
z-index: -1;
background:
radial-gradient(circle at 15% 8%, rgba(62, 111, 217, 0.28), transparent 42%),
radial-gradient(circle at 85% 78%, rgba(242, 199, 68, 0.16), transparent 46%),
var(--asg-navy-deep);
}

.topbar {
position: sticky;
top: 0;
z-index: 40;
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 6vw;
background: rgba(10, 23, 48, 0.72);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--asg-line);
}

.brand {
display: flex;
align-items: center;
gap: 12px;
}

.brand img { width: 40px; height: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-text .name {
font-family: var(--font-display);
font-weight: 700;
letter-spacing: 0.14em;
font-size: 15px;
}

.brand-text .sub {
font-size: 10px;
letter-spacing: 0.24em;
color: var(--asg-cream-dim);
text-transform: uppercase;
}

.nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 500; }

.nav-links a { color: var(--asg-cream-dim); transition: color 0.2s ease; position: relative; }
.nav-links a:hover { color: var(--asg-gold); }

.nav-actions { display: flex; gap: 12px; }

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 11px 22px;
border-radius: 999px;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.03em;
border: 1px solid transparent;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
font-family: var(--font-body);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
background: var(--asg-grad-sky);
color: var(--asg-navy-deep);
box-shadow: 0 10px 26px rgba(242, 199, 68, 0.22);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(242, 199, 68, 0.34); transform: translateY(-1px); }

.btn-ghost {
background: transparent;
border-color: rgba(245, 243, 236, 0.25);
color: var(--asg-cream);
}
.btn-ghost:hover { border-color: var(--asg-gold); color: var(--asg-gold); }

.hero {
position: relative;
padding: 96px 6vw 64px;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 40px;
align-items: center;
}

.hero-eyebrow {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--asg-blue-ice);
margin-bottom: 18px;
}

.hero h1 {
font-family: var(--font-display);
font-size: clamp(38px, 5.4vw, 64px);
font-weight: 700;
line-height: 1.04;
letter-spacing: -0.01em;
}

.hero h1 span {
background: var(--asg-grad-sky);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.hero p.lead {
margin-top: 22px;
max-width: 52ch;
color: var(--asg-cream-dim);
font-size: 17px;
}

.hero-cta { display: flex; gap: 14px; margin-top: 34px; }

.hero-art {
position: relative;
aspect-ratio: 1 / 1;
display: flex;
align-items: center;
justify-content: center;
}

.hero-art .ring {
position: absolute;
border-radius: 50%;
border: 1px solid var(--asg-line);
animation: spin 40s linear infinite;
}
.hero-art .ring.r1 { inset: 6%; }
.hero-art .ring.r2 { inset: 18%; animation-duration: 28s; animation-direction: reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-art img {
width: 62%;
filter: drop-shadow(0 24px 40px rgba(62, 111, 217, 0.35));
animation: float 6s ease-in-out infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.section {
padding: 88px 6vw;
border-top: 1px solid var(--asg-line);
}

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-eyebrow {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--asg-gold);
margin-bottom: 12px;
}

.section-head h2 {
font-family: var(--font-display);
font-size: clamp(28px, 3.4vw, 40px);
font-weight: 700;
}

.section-head p { color: var(--asg-cream-dim); margin-top: 14px; }

.program-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 22px;
}

.program-card {
background: var(--asg-grad-panel);
border: 1px solid var(--asg-line);
border-radius: var(--asg-radius-lg);
padding: 30px 26px;
position: relative;
overflow: hidden;
transition: transform 0.25s ease, border-color 0.25s ease;
}

.program-card:hover { transform: translateY(-6px); border-color: rgba(242, 199, 68, 0.4); }

.program-card .icon-wrap {
width: 52px; height: 52px;
border-radius: 14px;
background: rgba(242, 199, 68, 0.1);
display: flex; align-items: center; justify-content: center;
margin-bottom: 18px;
}
.program-card .icon-wrap svg { width: 30px; height: 30px; }

.program-card h3 {
font-family: var(--font-display);
font-size: 19px;
margin-bottom: 10px;
}

.program-card p { color: var(--asg-cream-dim); font-size: 14.5px; }

.program-card .tag {
display: inline-block;
margin-top: 16px;
font-family: var(--font-mono);
font-size: 10.5px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--asg-blue-ice);
border: 1px solid rgba(111, 168, 220, 0.35);
border-radius: 999px;
padding: 4px 10px;
}

.badge-strip {
display: flex;
gap: 26px;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 40px;
background: radial-gradient(circle at 50% 0%, rgba(62, 111, 217, 0.14), transparent 60%);
border: 1px solid var(--asg-line);
border-radius: var(--asg-radius-lg);
}

.badge-mini { text-align: center; width: 96px; }
.badge-mini img { width: 62px; margin: 0 auto 10px; }
.badge-mini span { font-size: 11.5px; color: var(--asg-cream-dim); }

.split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.truth-preview {
background: var(--asg-grad-panel);
border: 1px solid var(--asg-line);
border-radius: var(--asg-radius-lg);
padding: 28px;
font-family: var(--font-mono);
}

.truth-preview .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--asg-line); font-size: 13.5px; }
.truth-preview .row:last-child { border-bottom: none; }
.truth-preview .row b { color: var(--asg-gold); }

.access-panel {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.access-card {
background: var(--asg-grad-panel);
border: 1px solid var(--asg-line);
border-radius: var(--asg-radius-lg);
padding: 34px;
}

.access-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.access-card p { color: var(--asg-cream-dim); font-size: 14px; margin-bottom: 22px; }

footer {
padding: 40px 6vw;
border-top: 1px solid var(--asg-line);
display: flex;
justify-content: space-between;
align-items: center;
color: var(--asg-cream-dim);
font-size: 12.5px;
}

.form-shell {
max-width: 420px;
margin: 90px auto;
background: var(--asg-grad-panel);
border: 1px solid var(--asg-line);
border-radius: var(--asg-radius-lg);
padding: 40px;
box-shadow: var(--asg-shadow);
}

.form-shell h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
.form-shell p.hint { color: var(--asg-cream-dim); font-size: 13px; margin-bottom: 26px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; color: var(--asg-cream-dim); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input, .field select {
width: 100%;
padding: 12px 14px;
border-radius: var(--asg-radius-sm);
border: 1px solid rgba(245, 243, 236, 0.18);
background: rgba(10, 23, 48, 0.6);
color: var(--asg-cream);
font-family: var(--font-body);
font-size: 14px;
outline: none;
transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus { border-color: var(--asg-gold); }

.form-msg { font-size: 13px; margin-top: 14px; min-height: 18px; }
.form-msg.error { color: var(--asg-danger); }
.form-msg.ok { color: var(--asg-success); }

.form-switch { margin-top: 20px; font-size: 13px; color: var(--asg-cream-dim); text-align: center; }
.form-switch a { color: var(--asg-gold); font-weight: 600; }

[data-theme="light"] {
--asg-navy-deep: #F5F3EC;
--asg-navy: #ECE8DC;
--asg-navy-soft: #E4DFCF;
--asg-panel: #FFFFFF;
--asg-line: rgba(15, 32, 68, 0.12);
--asg-cream: #14284D;
--asg-cream-dim: rgba(20, 40, 77, 0.62);
--asg-grad-panel: linear-gradient(160deg, #FFFFFF 0%, #F1EEE2 100%);
}

@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; }
.split { grid-template-columns: 1fr; }
.access-panel { grid-template-columns: 1fr; }
.nav-links { display: none; }
}
