:root {
  --ink: #10251d;
  --ink-soft: #40554c;
  --forest: #0d2d23;
  --forest-mid: #154333;
  --forest-light: #1f5a45;
  --lime: #c9f451;
  --lime-soft: #e8f9aa;
  --cream: #f3f0e7;
  --paper: #fffdf8;
  --mist: #e3e8e1;
  --line: #ccd5ce;
  --white: #ffffff;
  --gold: #e8b25c;
  --error: #9b3128;
  --success: #1f7151;
  --shadow: 0 24px 70px rgba(8, 35, 27, 0.15);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 40px;
  --shell: min(1180px, calc(100% - 48px));
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
  border-radius: 3px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.35rem, 6vw, 5.65rem);
}

h1 em {
  color: var(--lime);
  font-weight: inherit;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  transform: translateY(-150%);
  color: var(--forest);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(16, 37, 29, 0.13);
  backdrop-filter: blur(15px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--forest);
  transition: transform 180ms ease;
}

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

.header-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 750;
}

.header-contact:hover {
  color: var(--forest);
  background: var(--lime);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 244, 81, 0.16), transparent 25%),
    radial-gradient(circle at 15% 88%, rgba(45, 113, 84, 0.35), transparent 33%),
    var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(201, 244, 81, 0.15);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 76px 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--forest-light);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d5e2dc;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  color: var(--forest);
  background: var(--lime);
}

.button-accent:hover {
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.button-dark:hover {
  color: var(--forest);
  background: var(--lime);
}

.button-large {
  min-height: 60px;
  padding-inline: 28px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.light-link {
  color: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 42px 0 0;
  padding: 0;
  color: #b8ccc3;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.trust-list li {
  position: relative;
  padding-left: 16px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 535px;
  display: grid;
  place-items: center;
  margin: 0;
}

.image-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  aspect-ratio: 0.91;
  overflow: hidden;
  background: #c9c8be;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 48% 48% 28px 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 23, 17, 0.4));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.release-note {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 26px;
  width: min(325px, 86%);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 19px;
  color: var(--forest);
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  line-height: 1.45;
}

.release-note strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 113, 81, 0.12);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(201, 244, 81, 0.22);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--lime);
}

.orbit-one {
  width: 520px;
  height: 520px;
  transform: rotate(26deg);
}

.orbit-one::after {
  top: 56px;
  right: 75px;
}

.orbit-two {
  width: 420px;
  height: 560px;
  transform: rotate(-41deg);
}

.orbit-two::after {
  right: 34px;
  bottom: 106px;
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lime) 0 35%, var(--forest-light) 35% 100%);
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section-intro {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-card {
  position: relative;
  min-height: 300px;
  padding: 30px 28px 34px;
  border-right: 1px solid var(--line);
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--forest-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.featured-card {
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border: 0;
}

.featured-card .card-number {
  color: var(--lime);
}

.featured-card p {
  color: #c8d8d1;
}

.card-line {
  position: absolute;
  right: -45px;
  bottom: -85px;
  width: 205px;
  height: 205px;
  border: 1px solid rgba(201, 244, 81, 0.28);
  border-radius: 50%;
}

.card-line::before,
.card-line::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 244, 81, 0.19);
  border-radius: 50%;
}

.card-line::before {
  inset: 28px;
}

.card-line::after {
  inset: 60px;
  background: var(--lime);
}

.process-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(201, 244, 81, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 244, 81, 0.035) 1px, transparent 1px),
    var(--forest);
  background-size: 54px 54px;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading p:last-child {
  color: #b7cbc2;
  font-size: 1.08rem;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 29px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(201, 244, 81, 0.45);
}

.process-track li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--forest);
  background: var(--lime);
  border: 8px solid var(--forest);
  border-radius: 50%;
  font-size: 0.83rem;
  font-weight: 900;
}

.process-track strong,
.process-track span {
  display: block;
}

.process-track strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.process-track li div span {
  color: #aec4ba;
  font-size: 0.82rem;
  line-height: 1.5;
}

.release-section {
  background: var(--cream);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.release-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #cbc9be;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.release-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(5, 29, 22, 0.53));
}

.release-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 28px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(7, 30, 23, 0.9);
  border-radius: 5px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-copy {
  max-width: 600px;
}

.large-copy {
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.release-facts {
  margin: 34px 0 21px;
  border-top: 1px solid #bfc8c0;
}

.release-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #bfc8c0;
}

.release-facts dt {
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 750;
}

.release-facts dd {
  margin: 0;
  font-size: 0.91rem;
  font-weight: 750;
}

.inline-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.small-note {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.company-section {
  background: var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.company-grid > div:first-child {
  position: sticky;
  top: 130px;
}

.company-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-facts div {
  min-height: 155px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts .wide-fact {
  grid-column: 1 / -1;
  min-height: 132px;
}

.company-facts dt {
  margin-bottom: 26px;
  color: var(--forest-light);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.27rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-band {
  padding-block: 75px;
  color: var(--white);
  background: var(--forest-light);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-inner h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
}

.site-footer {
  color: #c6d4ce;
  background: #071e17;
}

.footer-top {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 27px;
  font-size: 0.84rem;
  font-weight: 650;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 32px;
  padding-block: 28px 34px;
  color: #91a69d;
  font-size: 0.72rem;
  line-height: 1.55;
}

.footer-legal p {
  margin-bottom: 0;
}

/* Legal and information pages */
.legal-hero {
  padding-block: 84px 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 244, 81, 0.15), transparent 30%),
    var(--forest);
}

.legal-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #c5d6ce;
  font-size: 1.08rem;
}

.legal-section {
  padding-block: 78px 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(55px, 9vw, 130px);
}

.legal-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.legal-nav strong {
  display: block;
  margin-bottom: 15px;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-nav ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
}

.legal-nav a:hover {
  color: var(--forest);
}

.legal-content {
  min-width: 0;
}

.legal-content > p:first-child,
.legal-content .updated {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.legal-content section {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:first-of-type {
  padding-top: 16px;
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #33483f;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.2em;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  color: #155a40;
  font-weight: 700;
}

.legal-callout {
  margin: 18px 0 8px;
  padding: 22px 24px;
  background: #ecf5d6;
  border-left: 5px solid var(--forest-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-callout.warning {
  background: #fff0ca;
  border-left-color: #9a6410;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-block: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-table-wrap:focus-visible {
  outline: 3px solid var(--forest-light);
  outline-offset: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  min-width: 150px;
  padding: 14px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  color: var(--white);
  background: var(--forest);
  font-weight: 750;
}

.contact-card {
  margin-top: 24px;
  padding: 26px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.contact-card p {
  color: #d1ded8;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--lime);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-block: 28px;
}

.status-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card strong {
  margin-bottom: 5px;
}

.status-card span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.status-label {
  display: inline-flex !important;
  width: max-content;
  margin-bottom: 14px;
  padding: 4px 9px;
  color: var(--forest) !important;
  background: var(--lime);
  border-radius: 99px;
  font-size: 0.65rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-label.blocked {
  color: #6f210f !important;
  background: #ffd1ae;
}

.error-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}

.error-page h1 {
  margin-bottom: 18px;
}

.error-page p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--ink-soft);
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 40px;
  }

  .release-note {
    right: -4px;
  }

  .principle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .principle-card:nth-child(2) {
    border-right: 0;
  }

  .principle-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-legal {
    grid-template-columns: 1fr 1.4fr;
  }

  .footer-legal p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  :root {
    --shell: min(100% - 36px, 740px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-block: 12px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding-block: 7px 13px;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 70px 90px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .image-frame {
    width: min(88%, 500px);
  }

  .split-heading,
  .release-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
  }

  .company-grid > div:first-child {
    position: static;
  }

  .process-track {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    margin-inline: auto;
    gap: 0;
  }

  .process-track::before {
    top: 24px;
    bottom: 24px;
    left: 29px;
    width: 1px;
    height: auto;
  }

  .process-track li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    align-items: start;
    padding-bottom: 28px;
    text-align: left;
  }

  .process-number {
    margin-bottom: 0;
  }

  .process-track li div {
    padding-top: 7px;
  }

  .release-image {
    width: min(100%, 610px);
  }

  .release-copy {
    max-width: none;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 32px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-nav a {
    padding-right: 14px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 125px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-contact {
    min-height: 40px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .hero-grid {
    padding-top: 56px;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 425px;
  }

  .image-frame {
    width: 92%;
    border-width: 7px;
    border-radius: 44% 44% 20px 20px;
  }

  .release-note {
    right: 0;
    bottom: 2px;
  }

  .orbit-one {
    width: 400px;
    height: 400px;
  }

  .orbit-two {
    width: 320px;
    height: 430px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .principle-grid,
  .company-facts,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 245px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .card-number {
    margin-bottom: 40px;
  }

  .company-facts .wide-fact {
    grid-column: 1;
  }

  .contact-band {
    padding-block: 58px;
  }

  .button-large {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-legal p:last-child {
    grid-column: 1;
  }

  .legal-hero {
    padding-block: 64px 58px;
  }

  .legal-section {
    padding-block: 55px 90px;
  }

  .legal-nav ul {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    padding-block: 31px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-nav,
  .button,
  .contact-band {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .legal-hero {
    padding: 0 0 24px;
    color: #000;
    background: #fff;
  }

  .legal-hero p:last-child,
  .legal-content p,
  .legal-content li {
    color: #000;
  }

  .legal-section {
    padding: 0;
  }

  .legal-layout {
    display: block;
  }
}
