/* AAKS � Base (reset + typography) */
/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: var(--font-regular);
  line-height: var(--leading-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
.hero,
.site-header,
.trust-bar {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-link-hover);
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

::selection {
  background: rgba(0, 174, 239, 0.2);
  color: var(--color-heading);
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
}

h1,
.h1 {
  font-size: var(--text-h1);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  font-weight: var(--font-bold);
}

h2,
.h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.025em;
}

h3,
.h3 {
  font-size: var(--text-h3);
  font-weight: var(--font-semibold);
}

h4,
.h4 {
  font-size: var(--text-h4);
  font-weight: var(--font-semibold);
}

h5,
.h5 {
  font-size: var(--text-h5);
  font-weight: var(--font-semibold);
}

h6,
.h6 {
  font-size: var(--text-h6);
  font-weight: var(--font-semibold);
  letter-spacing: 0;
}

p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-secondary);
  font-size: var(--text-body);
  max-width: 42rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-body);
}

.text-sm {
  font-size: var(--text-body-sm);
}

.text-caption,
.caption {
  font-family: var(--font-secondary);
  font-size: var(--text-caption);
  font-weight: var(--font-medium);
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  text-transform: none;
}

.overline {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-overline);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.text-inverse {
  color: var(--color-text-inverse);
}

.text-inverse .lead,
.text-inverse p {
  color: var(--color-text-inverse-muted);
}

.text-inverse h1,
.text-inverse h2,
.text-inverse h3,
.text-inverse h4,
.text-inverse .h1,
.text-inverse .h2,
.text-inverse .h3,
.text-inverse .h4 {
  color: var(--color-heading-inverse);
}

/* --------------------------------------------------------------------------
