@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400&family=DM+Sans:wght@400;500&display=swap');

:root {
  --ax-black: #0a0a0a;
  --ax-white: #ffffff;
  --ax-text-primary: #1a1a1a;
  --ax-text-secondary: #5F5E5A;
  --ax-text-tertiary: #888780;
  --ax-bg-primary: #ffffff;
  --ax-bg-secondary: #E8E8E8;
  --ax-border: rgba(0,0,0,0.12);
  --ax-cta: #185FA5;
  --ax-badge-bg: #E6F1FB;
  --ax-badge-color: #0C447C;
  --ax-featured-border: #378ADD;
  --ax-font-brand: 'Space Grotesk', system-ui, sans-serif;
  --ax-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--ax-bg-primary);
  color: var(--ax-text-primary);
  font-family: var(--ax-font-body);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 16px;
  border-bottom: 0.5px solid var(--ax-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ax-black);
}

.header-logo img {
  height: 32px;
  width: auto;
}

.header-wordmark {
  font-family: var(--ax-font-brand);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ax-black);
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  font-family: var(--ax-font-brand);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ax-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: var(--ax-black);
}

footer {
  background-color: var(--ax-black);
  margin-top: 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-wordmark {
  font-family: var(--ax-font-brand);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ax-white);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--ax-white);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copyright {
  font-size: 12px;
  color: var(--ax-white);
  opacity: 0.25;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  max-width: 640px;
  padding: 4rem 0 3rem;
}

.hero-label {
  font-family: var(--ax-font-brand);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ax-text-tertiary);
  margin-bottom: 1rem;
}

.hero-description {
  font-family: var(--ax-font-body);
  font-size: 22px;
  line-height: 1.45;
  color: var(--ax-text-primary);
}

.hero-title {
  font-family: var(--ax-font-brand);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ax-text-primary);
  margin-bottom: 1rem;
}

.hero-body {
  font-family: var(--ax-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ax-text-secondary);
}

.section {
  max-width: 640px;
  padding: 2rem 0;
  border-bottom: 0.5px solid var(--ax-border);
}

.section:last-child {
  border-bottom: none;
}

.section-label {
  font-family: var(--ax-font-brand);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ax-text-tertiary);
  margin-bottom: 1rem;
}

.section-body {
  font-family: var(--ax-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ax-text-primary);
}

.section-body p {
  margin-bottom: 1rem;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.bullet-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-family: var(--ax-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ax-text-primary);
}

.bullet-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ax-text-secondary);
}

.disclosure-box {
  background-color: var(--ax-bg-secondary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: var(--ax-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ax-text-primary);
}

@keyframes ax-wm-in {
  from {
    opacity: 0;
    letter-spacing: 0.32em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.18em;
  }
}

@keyframes ax-oct-draw {
  from {
    stroke-dashoffset: 320;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ax-dot-appear {
  0%, 72% {
    opacity: 0;
    r: 3;
  }
  76% {
    opacity: 1;
    r: 3;
  }
  84% {
    opacity: 1;
    r: 7;
  }
  100% {
    opacity: 1;
    r: 3;
  }
}

@keyframes ax-ring-pulse {
  0%, 72% {
    opacity: 0;
    r: 3;
  }
  76% {
    opacity: 0.35;
    r: 4;
  }
  100% {
    opacity: 0;
    r: 14;
  }
}

.ax-wm-anim {
  animation: ax-wm-in 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ax-oct-anim {
  animation: ax-oct-draw 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ax-dot-anim {
  animation: ax-dot-appear 3.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ax-ring-anim {
  animation: ax-ring-pulse 3.6s cubic-bezier(0, 0, 0.2, 1) forwards;
}
