:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #66717f;
  --line: #dfe6ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --orange: #f07b2f;
  --orange-dark: #c95b1a;
  --teal: #0f8b8d;
  --green: #6f9b63;
  --charcoal: #20292d;
  --shadow: 0 18px 50px rgba(20, 30, 35, 0.12);
  --radius: 8px;
  font-family:
    Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC",
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(20, 30, 35, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(20, 30, 35, 0.16);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 750;
  white-space: nowrap;
}

.brand small {
  font-size: 11px;
  line-height: 1.1;
  color: currentColor;
  opacity: 0.72;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  color: currentColor;
  opacity: 0.88;
  transition:
    background 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(240, 123, 47, 0.12);
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  padding: 10px;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(720px, 82vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px clamp(20px, 5vw, 80px) 72px;
  background: #2b302f;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -3;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 20, 0.38);
  z-index: -2;
}

.hero-content {
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd1a5;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 8vw, 86px);
  line-height: 1.04;
  font-weight: 820;
}

.hero h1 span {
  display: inline-block;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(240, 123, 47, 0.34);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-dark);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.notice-band {
  width: min(1120px, calc(100% - 40px));
  margin: -36px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.notice-band div {
  padding: 24px;
}

.notice-band div + div {
  border-left: 1px solid var(--line);
}

.notice-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.notice-band span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - 1120px) / 2));
  background: #eff4f1;
  border-block: 1px solid rgba(15, 139, 141, 0.08);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.intro-copy {
  padding-right: clamp(0px, 3vw, 36px);
}

.intro-copy p,
.privacy-copy p,
.status-main p,
.contact-note p,
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.intro-copy p + p,
.privacy-copy p + p {
  margin-top: 18px;
}

.fact-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.fact-list div {
  min-height: 122px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.fact-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fact-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fact-list dt {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fact-list dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 760;
}

.cards,
.compliance-grid {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 236px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(32, 41, 45, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 30, 35, 0.06);
}

.card-kicker {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
  font-size: 13px;
}

.card h3,
.status-main h3,
.contact-card h3,
.contact-note h3 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 21px;
  line-height: 1.3;
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.status-main,
.status-steps {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.status-main {
  padding: 34px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 20px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(240, 123, 47, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.status-steps {
  display: grid;
}

.status-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
}

.status-steps div + div {
  border-top: 1px solid var(--line);
}

.status-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.status-steps p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

.privacy {
  display: grid;
  grid-template-columns: 0.78fr minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.privacy .section-heading {
  margin-bottom: 0;
}

.privacy-copy {
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.contact-card,
.contact-note {
  width: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
}

.contact-card li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

.contact-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 118px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.record-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.record-links a {
  color: #ffd1a5;
}

.record-links a:hover,
.record-links a:focus-visible {
  text-decoration: underline;
  outline: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 25;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 44px;
    justify-content: center;
  }

  .hero {
    min-height: 650px;
    padding-top: 110px;
  }

  .hero-scrim {
    background: rgba(11, 18, 20, 0.46);
  }

  .intro-grid,
  .status-panel,
  .privacy,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 610px;
    padding-inline: 20px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .notice-band {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .notice-band div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .section.muted {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .cards.three,
  .compliance-grid,
  .fact-list {
    grid-template-columns: 1fr;
  }

  .fact-list div,
  .fact-list div:nth-child(odd) {
    border-right: 0;
  }

  .fact-list div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .card {
    min-height: 0;
    padding: 22px;
  }

  .status-main,
  .contact-card,
  .contact-note,
  .privacy-copy {
    padding: 22px;
  }

  .contact-card li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
