:root {
  --asu-maroon: #8c1d40;
  --asu-gold: #ffc627;
  --ink: #1e1e1e;
  --muted: #5a5550;
  --paper: #fffaf1;
  --white: #ffffff;
  --sky: #e9f5f8;
  --line: #ded6cb;
  --focus: #005ea8;
  --max: 1920px;
  --page-gutter: clamp(40px, 4vw, 72px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: var(--asu-maroon); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner, .section-inner, .footer-inner {
  width: min(100% - (var(--page-gutter) * 2), var(--max));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: .65rem 0;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
}
.brand img {
  height: auto;
  max-height: 64px;
  width: auto;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}
.site-nav a {
  border-radius: 6px;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  padding: .55rem .65rem;
  text-decoration: none;
}
.site-nav a:hover { background: #f2ece3; }
.site-nav .language-link { color: var(--asu-maroon); margin-left: auto; }
.hero {
  background: linear-gradient(180deg, #fffaf1 0%, #f4efe4 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 3.5rem;
}
.eyebrow {
  color: var(--asu-maroon);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 .55rem;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.18; margin: 0 0 1rem; }
h1 { color: var(--asu-maroon); font-size: clamp(2.1rem, 7vw, 4.2rem); }
h2 { color: var(--asu-maroon); font-size: clamp(1.65rem, 5vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1.25rem; }
.lead { font-size: clamp(1.05rem, 3vw, 1.3rem); max-width: 58ch; }
.hero-image {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
}
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.trust-list {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-list li {
  border-left: 3px solid var(--asu-gold);
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
  padding: .45rem .75rem;
}
.trust-list li + li { margin-top: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.button {
  align-items: center;
  border: 2px solid var(--asu-maroon);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  overflow-wrap: anywhere;
  padding: .8rem 1.15rem;
  text-align: center;
  text-decoration: none;
}
.button-primary { background: var(--asu-maroon); color: var(--white); }
.button-primary:hover { background: #64132d; }
.button-secondary { background: var(--white); color: var(--asu-maroon); }
.button-secondary:hover { background: #fff1b8; }
.content-section { padding: 4rem 0; }
.content-section:nth-of-type(even) { background: var(--white); }
.content-section:is(#qualify, #expect, #compensation, #privacy, #faq) {
  border-top: 1px solid var(--line);
}
.content-section:is(#qualify, #expect, #compensation, #privacy, #faq) h2::after {
  background: var(--asu-gold);
  content: "";
  display: block;
  height: 3px;
  margin-top: .65rem;
  width: 3rem;
}
.section-text { max-width: 76ch; }
.info-grid { display: grid; gap: 1.5rem; margin-top: 1.75rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}
.content-section:nth-of-type(even) .info-card { background: var(--paper); }
ul { margin: .75rem 0 1.25rem; padding-left: 1.35rem; }
li + li { margin-top: .55rem; }
.cta-band { background: var(--sky); border-block: 1px solid #c9e2e8; padding: 3.5rem 0; }
.faq-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
}
.faq-list summary { cursor: pointer; font-weight: 800; overflow-wrap: anywhere; }
.faq-list details p { margin: 1rem 0 .25rem; }
.site-footer { background: #231f20; color: var(--white); padding: 3rem 0; }
.site-footer a { color: var(--asu-gold); }
.footer-grid { display: grid; gap: 2rem; }
.footer-title { color: var(--asu-gold); font-weight: 800; margin-bottom: .25rem; }
.small { color: #f5ead6; font-size: .95rem; }
@media (min-width: 900px) {
  .trust-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .hero-image {
    align-self: center;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .header-inner { align-items: center; flex-direction: row; justify-content: space-between; }
  .site-nav { justify-content: flex-end; }
  .hero-grid {
    align-items: center;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    min-height: 560px;
    padding: 3rem 0 3.5rem;
  }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 899px) {
  :root { --page-gutter: clamp(28px, 4vw, 40px); }

  .header-inner > *,
  .hero-grid > *,
  .info-card { min-width: 0; }
  .site-nav { width: 100%; }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 520px) {
  .site-nav .language-link { margin-left: 0; }
  .button { width: 100%; }
}

@media (max-width: 430px) {
  :root { --page-gutter: clamp(16px, 5vw, 20px); }
  .content-section { padding: 3.25rem 0; }
  .brand img { max-height: 56px; }
  .hero-grid { padding: 2.25rem 0 3rem; }
  .info-card { padding: 1.25rem; }
  .cta-band { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
