:root {
  --ink: #121216;
  --ink-soft: #36363f;
  --forest: #17171d;
  --paper: #f3f0eb;
  --paper-bright: #fffdf9;
  --signal: #f05a3f;
  --signal-bright: #ff8067;
  --sage: #e8e2dc;
  --line: rgba(18, 18, 22, 0.18);
  --line-dark: rgba(255, 255, 255, 0.2);
  --muted: #696871;
  --shadow: 0 28px 90px rgba(18, 18, 22, 0.16);
  --radius-sm: 0.35rem;
  --radius-md: 1.1rem;
  --shell: min(1180px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(16, 24, 22, 0.05) 50%, transparent calc(50% + 0.5px)),
    var(--paper);
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, dl, dd { margin-top: 0; }

h1, h2, h3 {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

:focus-visible {
  outline: 3px solid var(--signal-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.65rem 0.9rem;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: max-content;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0.28rem;
  text-decoration: none;
  font-family: "Arial Narrow", "Aptos Display", sans-serif;
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.wordmark span:last-child {
  padding: 0.18rem 0.32rem 0.13rem;
  background: var(--signal);
  color: var(--ink);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding-block: 0.5rem;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button { display: none; }

.hero {
  min-height: 690px;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
}

.kicker {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.75rem;
  font-size: clamp(4.7rem, 8vw, 8.5rem);
  font-weight: 950;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2.3rem;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 8px 8px 0 var(--signal); }
.button-primary:hover { box-shadow: 5px 5px 0 var(--signal); }
.button-light { background: var(--paper-bright); color: var(--ink); box-shadow: 8px 8px 0 var(--signal); }

.text-link {
  font-weight: 800;
  text-underline-offset: 0.32rem;
  text-decoration-thickness: 2px;
}

.company-record {
  position: relative;
  min-height: 520px;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 22, 0.24);
  border-radius: var(--radius-md);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.company-record::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -80px;
  width: 250px;
  aspect-ratio: 1;
  border: 54px solid var(--sage);
  border-radius: 50%;
  opacity: 0.9;
}

.record-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-status { display: inline-flex; align-items: center; gap: 0.48rem; color: var(--ink); }
.record-status i { width: 0.55rem; aspect-ratio: 1; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(199, 146, 44, 0.14); }

.record-monogram {
  position: relative;
  z-index: 1;
  margin-block: 2rem auto;
  color: var(--forest);
  font-family: "Arial Black", "Aptos Display", sans-serif;
  font-size: clamp(6.5rem, 12vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.15em;
  line-height: 0.8;
}

.media-frame::before {
  top: -130px;
  right: -115px;
  width: 330px;
  border-width: 1px;
  border-color: rgba(240, 90, 63, 0.3);
  box-shadow: 0 0 0 58px rgba(240, 90, 63, 0.055), 0 0 0 116px rgba(18, 18, 22, 0.035);
}

.play-mark {
  width: clamp(8.5rem, 15vw, 12rem);
  aspect-ratio: 1;
  margin-block: 1.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 18, 22, 0.2);
  border-radius: 50%;
  background: var(--ink);
}

.play-mark span {
  width: 0;
  height: 0;
  margin-left: 0.65rem;
  border-top: 1.65rem solid transparent;
  border-bottom: 1.65rem solid transparent;
  border-left: 2.45rem solid var(--signal);
}

.play-progress {
  position: relative;
  z-index: 1;
  height: 3px;
  margin-bottom: 1.3rem;
  overflow: hidden;
  background: rgba(18, 18, 22, 0.12);
}

.play-progress span {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--signal);
}

.company-record dl { position: relative; z-index: 1; margin-bottom: 0; }
.company-record dl div { display: grid; grid-template-columns: 0.42fr 1fr; gap: 1rem; padding-block: 0.7rem; border-top: 1px solid var(--line); }
.company-record dt { color: var(--muted); font-size: 0.78rem; }
.company-record dd { margin-left: 0; font-size: 0.9rem; font-weight: 800; text-align: right; overflow-wrap: anywhere; }
.company-record dd a { color: var(--forest); text-underline-offset: 0.22rem; }
.record-note { position: relative; z-index: 1; margin: 1.2rem 0 0; color: var(--muted); font-size: 0.78rem; }

.identity-band {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--signal);
  color: var(--ink);
  font-family: monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.company-overview { padding-block: clamp(6.5rem, 12vw, 10.5rem); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 5rem;
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  font-weight: 900;
}

.section-index { margin: 0; color: var(--muted); font-family: monospace; font-size: 0.78rem; }
.section-intro { max-width: 690px; margin-bottom: 0; color: var(--ink-soft); font-size: 1.08rem; }
.company-lines { border-top: 1px solid var(--ink); }

.company-lines article {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.45fr) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}

.line-number { color: var(--signal); font-family: monospace; font-size: 0.78rem; font-weight: 800; }
.company-lines h3 { margin-bottom: 0; font-size: clamp(1.65rem, 2.5vw, 2.4rem); }
.company-lines p { max-width: 590px; margin-bottom: 0; color: var(--muted); }

.trust-panel {
  position: relative;
  min-height: 520px;
  padding: clamp(3rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: 95px 1.1fr 0.72fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest);
  color: white;
}

.trust-panel::after {
  content: "";
  position: absolute;
  top: -34%;
  right: -10%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 128, 103, 0.75);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(255, 128, 103, 0.055), 0 0 0 148px rgba(255, 128, 103, 0.025);
}

.trust-marker { position: relative; z-index: 1; align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid var(--line-dark); }
.trust-marker span { width: 18px; height: 1px; background: var(--signal-bright); }
.trust-copy, .trust-details { position: relative; z-index: 1; }
.kicker-dark { color: #b9c6c2; }
.trust-copy h2 { margin-bottom: 0; font-size: clamp(3.4rem, 6.6vw, 6.7rem); }
.trust-details p { max-width: 460px; margin-bottom: 2rem; color: #d4dedb; font-size: 1.05rem; }
.trust-details a:not(.button) { color: var(--signal-bright); font-weight: 800; }

.contact {
  padding-block: clamp(7rem, 13vw, 11rem);
  display: grid;
  grid-template-columns: 0.9fr 0.75fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.contact h2 { max-width: 700px; margin-bottom: 0; font-size: clamp(3rem, 5.4vw, 5.4rem); }
.contact-action { padding-bottom: 0.4rem; }
.email-display { display: inline-flex; align-items: center; gap: 0.8rem; font-size: clamp(1.25rem, 2.4vw, 2rem); font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 0.35rem; overflow-wrap: anywhere; }
.contact-action p { max-width: 500px; margin: 1.6rem 0 0; color: var(--muted); }

.site-footer {
  min-height: 145px;
  padding-block: 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.footer-links { display: flex; gap: 1.4rem; }
.footer-links a { font-weight: 750; text-underline-offset: 0.25rem; }
.site-footer p { margin: 0; color: var(--muted); }

.inner-page { background: var(--paper-bright); }
.document-shell { width: min(1000px, calc(100% - 2.5rem)); margin-inline: auto; padding-block: clamp(5rem, 11vw, 9rem); }
.document-hero { max-width: 900px; margin-bottom: clamp(5rem, 10vw, 8rem); }
.document-hero h1 { margin-bottom: 1.6rem; font-size: clamp(3.6rem, 7vw, 7rem); }
.document-hero > p:not(.kicker):not(.effective-date) { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.document-hero .button { margin-top: 1.2rem; }
.effective-date { margin-top: 2rem; font-family: monospace; font-size: 0.85rem; }

.support-grid { display: grid; grid-template-columns: 0.46fr 1fr; gap: 3rem; align-items: start; }
.support-grid h2 { position: sticky; top: 2rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.support-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.support-grid li { display: grid; grid-template-columns: 0.35fr 1fr; gap: 1.5rem; padding-block: 1.7rem; border-bottom: 1px solid var(--line); }
.support-grid li span { color: var(--muted); }

.safety-note { margin-top: clamp(5rem, 10vw, 8rem); padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 0.9fr 1fr; gap: 3rem; background: var(--forest); color: white; }
.safety-note h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.7rem); }
.safety-note p { margin-bottom: 0; color: #cbd7d3; }

.policy-copy { max-width: 790px; margin-left: auto; }
.policy-copy section { padding-block: 2rem; border-top: 1px solid var(--line); }
.policy-copy h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.policy-copy p { color: var(--ink-soft); }

.error-page { min-height: 100vh; display: grid; place-items: center; background: var(--forest); color: white; }
.error-panel { width: min(760px, calc(100% - 2.5rem)); }
.error-code { margin: 4rem 0 0.5rem; color: var(--signal-bright); font-family: monospace; font-weight: 800; }
.error-panel h1 { margin-bottom: 1.3rem; font-size: clamp(3.6rem, 9vw, 7rem); }
.error-panel > p:not(.error-code) { color: #cbd7d3; }
.error-panel .button { margin-top: 1.5rem; }

@media (max-width: 880px) {
  :root { --shell: min(100% - 1.5rem, 720px); }
  .site-header { min-height: 74px; }
  .menu-button { display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.55rem 0; border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 800; }
  .menu-mark { position: relative; width: 18px; height: 12px; border-top: 2px solid; border-bottom: 2px solid; }
  .menu-button[aria-expanded="true"] .menu-mark { border-bottom-color: transparent; transform: rotate(45deg); }
  .primary-nav { grid-column: 1 / -1; display: none; padding: 1rem 0 1.4rem; gap: 1.2rem; border-top: 1px solid var(--line); }
  .primary-nav[data-open="true"] { display: flex; }
  .hero { min-height: 0; padding-block: 5rem 6rem; grid-template-columns: 1fr; gap: 4rem; }
  .hero h1 { font-size: clamp(4rem, 15vw, 7rem); }
  .company-record { width: min(100%, 560px); min-height: 490px; }
  .section-heading, .trust-panel, .contact, .support-grid, .safety-note { grid-template-columns: 1fr; }
  .section-heading { gap: 1.5rem; }
  .company-lines article { grid-template-columns: 50px 0.55fr 1fr; gap: 1.4rem; }
  .trust-panel { min-height: 610px; align-content: end; }
  .trust-marker { width: 100%; height: 1px; flex-direction: row; border-left: 0; border-top: 1px solid var(--line-dark); }
  .trust-panel::after { width: 70%; right: -22%; }
  .contact { align-items: start; }
  .site-footer { grid-template-columns: 1fr; gap: 1.3rem; }
  .support-grid h2 { position: static; }
  .policy-copy { margin-left: 0; }
}

@media (max-width: 580px) {
  .primary-nav[data-open="true"] { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(2.8rem, 11.5vw, 3.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .record-topline { align-items: flex-start; flex-direction: column; }
  .company-record dl div { grid-template-columns: 1fr; gap: 0.15rem; }
  .company-record dd { text-align: left; }
  .identity-band { justify-content: flex-start; padding-inline: 1.25rem; }
  .company-lines article { grid-template-columns: 38px 1fr; }
  .company-lines article p { grid-column: 2; }
  .trust-panel { width: 100%; border-radius: 0; }
  .support-grid li { grid-template-columns: 1fr; gap: 0.4rem; }
  .footer-links { flex-wrap: wrap; }
}

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

@media print {
  .site-header, .site-footer, .menu-button { display: none !important; }
  body { background: white; color: black; font-size: 11pt; }
  .document-shell { width: 100%; padding: 0; }
  .document-hero { margin-bottom: 2rem; }
  a { color: black; }
}
