:root {
  color-scheme: light;
  --bg: #f0eee9;
  --bg-elevated: #f6f4ef;
  --surface: #e7e3db;
  --surface-strong: #ddd8ce;
  --surface-contrast: #fffdf8;
  --border: #d2cdc2;
  --border-strong: #b8b2a7;
  --text: #14171f;
  --text-muted: #3c4353;
  --text-subtle: #697182;
  --blue: #002fa7;
  --blue-deep: #00257f;
  --blue-hover: #1a45b8;
  --blue-soft: #dde5ff;
  --blue-surface: #eef3ff;
  --success: #14532d;
  --success-surface: #e8f5ea;
  --danger: #7a1f1f;
  --danger-surface: #fceaea;
  --warning: #7a4a12;
  --warning-surface: #fff3df;
  --shadow-soft: 0 20px 60px rgba(20, 23, 31, 0.06);
  --shadow-strong: 0 32px 90px rgba(20, 23, 31, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --header-height: 84px;
  --shell: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-elevated);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: var(--blue-soft);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(0, 47, 167, 0.36);
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section--soft {
  background: var(--bg);
}

.section--surface {
  background: var(--surface);
}

.section--ink {
  background: #151925;
  color: #f8f7f4;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 640px;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(246, 244, 239, 0.88);
  border-bottom: 1px solid rgba(184, 178, 167, 0.45);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-lockup__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-lockup__meta {
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-subtle);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link:focus-visible,
.button:focus-visible,
.button--ghost:focus-visible,
.button--menu:focus-visible,
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.footer-link:focus-visible,
.legal-nav a:focus-visible,
.toc a:focus-visible {
  outline: 2px solid rgba(0, 47, 167, 0.36);
  outline-offset: 3px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button,
.button--ghost,
.button--menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 48px;
  border: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease,
    border-color 160ms ease, box-shadow 160ms ease;
}

.button {
  padding: 0.95rem 1.35rem;
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 47, 167, 0.18);
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(145deg, var(--blue-hover), var(--blue));
}

.button--ghost {
  padding: 0.95rem 1.25rem;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(184, 178, 167, 0.95);
  font-weight: 700;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(0, 47, 167, 0.28);
  background: rgba(221, 229, 255, 0.36);
}

.button--menu {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(184, 178, 167, 0.95);
  color: var(--text);
}

.header-cta {
  flex-shrink: 0;
}

.button__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(221, 229, 255, 0.72), transparent 36%),
    linear-gradient(180deg, #faf8f3 0%, var(--bg-elevated) 48%, var(--bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 47, 167, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 47, 167, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 90%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 3rem;
  align-items: center;
}

.hero__copy {
  max-width: 680px;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero__copy p {
  margin: 1.4rem 0 0;
  max-width: 640px;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 2.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(184, 178, 167, 0.75);
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill__dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__halo,
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__halo {
  background:
    radial-gradient(circle at 70% 24%, rgba(0, 47, 167, 0.18), transparent 22%),
    radial-gradient(circle at 20% 76%, rgba(0, 47, 167, 0.12), transparent 26%);
  filter: blur(8px);
}

.hero__mesh::before,
.hero__mesh::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 47, 167, 0.14);
}

.hero__mesh::before {
  inset: 2rem 3rem auto auto;
  width: 280px;
  height: 280px;
}

.hero__mesh::after {
  inset: auto auto 3rem 1rem;
  width: 220px;
  height: 220px;
}

.product-frame {
  position: absolute;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(184, 178, 167, 0.9);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.product-frame img {
  width: 100%;
  height: auto;
}

.product-frame--main {
  right: 0;
  top: 2rem;
  width: min(100%, 470px);
}

.product-frame--detail {
  left: 0;
  bottom: 2rem;
  width: min(74%, 330px);
  z-index: 2;
}

.product-frame__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1rem 1.15rem;
  border-top: 1px solid rgba(210, 205, 194, 0.65);
  background: rgba(246, 244, 239, 0.88);
}

.meta-chip {
  padding: 0.42rem 0.62rem;
  background: var(--blue-surface);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement-band {
  padding: 4.5rem 0;
}

.statement-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 2rem;
  align-items: end;
}

.statement-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.statement-band p {
  margin: 0;
  color: rgba(248, 247, 244, 0.72);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.number-card,
.trust-card,
.legal-card,
.toc {
  border: 1px solid rgba(184, 178, 167, 0.88);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.65rem;
}

.card__index {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card h3,
.number-card h3,
.trust-card h3,
.legal-card h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.28rem;
  line-height: 1.2;
}

.card p,
.number-card p,
.trust-card p,
.legal-card p,
.lede,
.metric p,
.form-note {
  margin: 0;
  color: var(--text-muted);
}

.problem-grid,
.product-story,
.process-grid,
.contact-grid,
.legal-layout {
  display: grid;
  gap: 2rem;
}

.problem-grid,
.product-story,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lede {
  font-size: 1.1rem;
}

.quote-block {
  padding: 1.35rem 1.45rem;
  border-left: 4px solid var(--blue);
  background: rgba(238, 243, 255, 0.66);
  color: var(--text);
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.feature-list li::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 0.28rem;
  background:
    linear-gradient(135deg, rgba(0, 47, 167, 0.18), rgba(0, 47, 167, 0.6)),
    var(--blue);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.24rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric {
  padding: 1rem 1.1rem;
  background: rgba(238, 243, 255, 0.58);
  border: 1px solid rgba(183, 199, 255, 0.8);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.media-panel {
  border: 1px solid rgba(184, 178, 167, 0.88);
  background: var(--surface-contrast);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.media-panel__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(210, 205, 194, 0.65);
  background: rgba(240, 238, 233, 0.72);
  color: var(--text-muted);
  font-size: 0.94rem;
}

.trust-card {
  padding: 1.5rem;
}

.trust-card__kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.number-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.76);
}

.number-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  background:
    radial-gradient(circle at top right, rgba(221, 229, 255, 0.42), transparent 32%),
    linear-gradient(145deg, #0d172f 0%, #10234d 100%);
  color: #f8f7f4;
  border: 1px solid rgba(28, 41, 74, 0.4);
  box-shadow: var(--shadow-strong);
}

.cta-panel p {
  max-width: 700px;
  color: rgba(248, 247, 244, 0.76);
}

.contact-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ece8df 100%);
}

.contact-grid {
  align-items: start;
}

.contact-panel,
.footer-card {
  padding: 1.7rem;
  border: 1px solid rgba(184, 178, 167, 0.92);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow-soft);
}

.contact-panel h2,
.footer-card h3 {
  margin: 0 0 0.85rem;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
}

.contact-point {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(210, 205, 194, 0.7);
}

.contact-point:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-point__label {
  color: var(--text-subtle);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-point__value a,
.footer-link,
.legal-copy a,
.toc a {
  color: var(--blue);
}

.footer {
  border-top: 1px solid rgba(184, 178, 167, 0.6);
  background: #ebe6dc;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.5rem 0 2.2rem;
}

.footer__note {
  color: var(--text-subtle);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.footer-link {
  font-size: 0.92rem;
  font-weight: 700;
}

.site-legal-header {
  background: linear-gradient(180deg, #faf8f3 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(184, 178, 167, 0.48);
}

.site-legal-header__body {
  display: grid;
  gap: 1rem 2rem;
  padding: 3.4rem 0 3rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  align-items: end;
}

.site-legal-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.site-legal-header p {
  margin: 1rem 0 0;
  max-width: 760px;
  color: var(--text-muted);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.legal-layout {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 1.25rem;
}

.toc h2,
.toc h3 {
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.toc ol,
.toc ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1rem;
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.6rem;
}

.legal-copy h2 {
  margin: 0 0 0.8rem;
  font-size: 1.65rem;
  line-height: 1.15;
}

.legal-copy h3 {
  margin: 1.35rem 0 0.7rem;
  font-size: 1.1rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--text-muted);
}

.legal-copy ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.legal-copy section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 31, 0.66);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: min(88vh, 940px);
  overflow: auto;
  border: 1px solid rgba(184, 178, 167, 0.96);
  background: var(--surface-contrast);
  box-shadow: var(--shadow-strong);
}

.modal__header,
.modal__body {
  padding: 1.35rem 1.4rem;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(210, 205, 194, 0.84);
  background: rgba(246, 244, 239, 0.8);
}

.modal__header h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.modal__header p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.modal__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 178, 167, 0.9);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 1.4rem;
}

.modal__body {
  background: rgba(240, 238, 233, 0.44);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--text-subtle);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(184, 178, 167, 0.98);
  background: #fff;
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(0, 47, 167, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 47, 167, 0.14);
}

.form-status {
  min-height: 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="loading"] {
  color: var(--warning);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.error-page__panel {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(184, 178, 167, 0.9);
  box-shadow: var(--shadow-strong);
}

.error-page__panel h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.mobile-nav {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: rise-in 600ms ease both;
}

.reveal--delay-1 {
  animation-delay: 90ms;
}

.reveal--delay-2 {
  animation-delay: 170ms;
}

.reveal--delay-3 {
  animation-delay: 250ms;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100vw - 32px, 1120px);
  }

  .hero__inner,
  .statement-band__inner,
  .problem-grid,
  .product-story,
  .contact-grid,
  .site-legal-header__body,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 520px;
  }

  .card-grid--three,
  .card-grid--two,
  .process-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
    --shell: calc(100vw - 24px);
  }

  .section {
    padding: 4.25rem 0;
  }

  .button--menu {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% - 8px);
    display: grid;
    gap: 0.5rem;
    padding: 0.9rem;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(184, 178, 167, 0.95);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .header-nav {
    display: none;
  }

  .mobile-nav .nav-link,
  .mobile-nav .button,
  .mobile-nav .button--ghost {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.15rem, 9.8vw, 3.15rem);
    line-height: 0.98;
    hyphens: auto;
  }

  .hero__visual {
    min-height: 430px;
  }

  .product-frame--main {
    width: 100%;
    top: 0.5rem;
  }

  .product-frame--detail {
    width: min(82%, 280px);
    bottom: 0;
  }

  .card-grid--three,
  .card-grid--two,
  .process-grid,
  .metric-grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button,
  .button-row .button--ghost,
  .button-row a {
    width: 100%;
  }

  .cta-panel,
  .error-page__panel {
    padding: 2rem 1.35rem;
  }

  .modal {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .modal__panel {
    width: min(100vw - 20px, 720px);
    max-height: min(92vh, 940px);
  }

  .contact-point {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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