/* Brand tokens */
:root {
  --ax-blue:      #1847CC;
  --ax-blue-hover:#2B5CEF;
  --ax-blue-dark: #0D2E9E;
  --ax-navy:      #08101F;
  --ax-cloud:     #F4F7FF;
  --ax-mist:      #E2EAFF;
  --ax-slate:     #5C6F9E;
  --ax-slate-l:   #8496B8;
  --ax-border:    rgba(24, 71, 204, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ax-cloud);
  color: var(--ax-slate);
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ax-navy);
  overflow: hidden;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(8, 16, 31, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(24, 71, 204, 0.45);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(180, 200, 255, 0.8);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ax-blue);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-h1 .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(100, 150, 255, 0.55);
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(180, 200, 240, 0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: var(--ax-blue);
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-primary:hover {
  background: var(--ax-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24, 71, 204, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.35);
  animation: fade-drop 2s ease-in-out infinite;
}

@keyframes fade-drop {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  40%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

/* ---- IDENTITY STRIP ---- */
.identity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-bottom: 0.5px solid var(--ax-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: var(--ax-blue);
}

.strip-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ax-slate);
}

/* ---- STATEMENT SECTION ---- */
.statement-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ax-blue);
  margin-bottom: 1.5rem;
}

.statement-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.025em;
  color: var(--ax-navy);
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 700px;
}

.statement-h2 .accent { color: var(--ax-blue); }

.statement-body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ax-slate);
  line-height: 1.8;
  max-width: 580px;
}

/* ---- PILLARS GRID ---- */
.pillars-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem 7rem;
}

.pillars-grid-wrap {
  border: 0.5px solid var(--ax-border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5px;
  background: var(--ax-border);
}

.pillar-cell {
  background: #fff;
  padding: 2.25rem 2rem;
  transition: background 0.2s ease;
}

.pillar-cell:hover { background: var(--ax-cloud); }

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--ax-mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-cell h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ax-navy);
  margin-bottom: 0.65rem;
}

.pillar-cell p {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--ax-slate);
  line-height: 1.65;
}

/* ---- MORE IS COMING PANEL ---- */
.horizon-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem 7rem;
}

.horizon-panel {
  position: relative;
  background: var(--ax-navy);
  border-radius: 20px;
  padding: 5.5rem;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(24, 71, 204, 0.22);
  filter: blur(60px);
  pointer-events: none;
}

.orb-tr { width: 320px; height: 320px; top: -80px; right: -80px; }
.orb-bl { width: 280px; height: 280px; bottom: -70px; left: -60px; }

.horizon-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(180, 200, 255, 0.5);
  margin-bottom: 1.25rem;
}

.horizon-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.horizon-body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(180, 200, 240, 0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.horizon-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.h-dot {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.35s ease, background 0.35s ease;
}

.h-dot.on {
  width: 22px;
  background: var(--ax-blue-hover);
}

/* ---- CONTACT FORM ---- */
.contact-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.contact-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.025em;
  color: var(--ax-navy);
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ax-slate);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ax-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--ax-navy);
  background: var(--ax-cloud);
  border: 0.5px solid rgba(24, 71, 204, 0.2);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6F9E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ax-blue);
  box-shadow: 0 0 0 3px rgba(24, 71, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-note {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--ax-slate-l);
}

#form-success {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

#form-success h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--ax-navy);
  margin-bottom: 0.75rem;
}

#form-success p {
  font-family: 'Outfit', sans-serif;
  color: var(--ax-slate);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
footer {
  border-top: 0.5px solid var(--ax-border);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--ax-slate);
}

/* ---- FADE IN ON SCROLL ---- */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fi.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

/* ---- RESPONSIVE ---- */
@media (max-width: 620px) {
  .identity-strip { padding: 1rem 1.25rem; }
  .statement-section { padding: 4rem 1.5rem; }
  .pillars-section { padding: 0 1.5rem 4rem; }
  .horizon-panel { padding: 3rem 2rem; }
  .horizon-section { padding: 0 1.5rem 4rem; }
  .contact-section { padding: 4rem 1.5rem; }
  footer { padding: 1.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}
