:root {
  color-scheme: light;
  --navy-950: #03172f;
  --navy-900: #062650;
  --navy-800: #093868;
  --navy-700: #0e4a7f;
  --teal-600: #009daa;
  --teal-500: #08b7bf;
  --cyan-400: #21ced2;
  --ink: #0a2444;
  --muted: #50677f;
  --line: #dce9f2;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --shadow: 0 24px 70px rgba(4, 37, 76, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #fbfdff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--navy-950);
  color: #fff;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(8, 183, 191, 0.42);
  outline-offset: 3px;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.page-glow--one {
  top: -210px;
  right: -230px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(21, 203, 207, 0.16), transparent 68%);
}

.page-glow--two {
  top: 450px;
  left: -320px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 86, 147, 0.1), transparent 70%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: var(--shell);
  min-height: 108px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(12, 61, 102, 0.1);
}

.brand {
  display: block;
  flex: 0 1 auto;
  max-width: min(330px, 42vw);
  text-decoration: none;
}

.brand__logo {
  width: clamp(255px, 24vw, 330px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-700);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.launch-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(8, 183, 191, 0.12);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 11px;
  font-size: 0.92rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--navy-800), #075c82 60%, #008b9b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(4, 65, 109, 0.23);
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(4, 65, 109, 0.3);
}

.button--primary svg {
  width: 20px;
  height: 20px;
}

.button--secondary {
  border-color: #bfd3e1;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-800);
}

.button--secondary:hover {
  border-color: var(--teal-500);
  background: #fff;
}

.button--light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 13px 30px rgba(0, 14, 36, 0.2);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  padding-block: 70px 84px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-600);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 7px;
  font-size: 0.68rem;
}

.hero h1,
.section-heading h2,
.preaccess h2,
.request-dialog h2 {
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3rem, 4.05vw, 4.15rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  background: linear-gradient(115deg, #007f9a 5%, #09bac1 70%);
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #3e5974;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #46627c;
  font-size: 0.86rem;
  list-style: none;
}

.hero__assurances li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__assurances svg {
  width: 18px;
  height: 18px;
  color: var(--teal-600);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(40, 141, 169, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 29%, rgba(241, 251, 253, 0.78) 30% 56%, rgba(236, 247, 251, 0.55) 57% 100%),
    linear-gradient(145deg, #f8fdff, #eef8fb);
  box-shadow: 0 35px 100px rgba(6, 55, 93, 0.14), inset 0 0 80px rgba(6, 172, 185, 0.06);
}

.hero-visual::before {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(0, 157, 170, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-visual__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(19, 133, 160, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 133, 160, 0.11) 1px, transparent 1px);
  background-size: 31px 31px;
  mask-image: radial-gradient(circle, #000 0, transparent 72%);
}

.visual-orbit {
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(0, 146, 165, 0.27);
  border-radius: 50%;
}

.visual-orbit--inner {
  inset: 30%;
  border-style: solid;
  border-color: rgba(0, 146, 165, 0.14);
}

.context-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 44%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(0, 168, 181, 0.36);
  border-radius: 50%;
  background: linear-gradient(150deg, #fff, #eefbfc);
  box-shadow: 0 18px 55px rgba(0, 81, 112, 0.16), inset 0 0 0 8px rgba(255, 255, 255, 0.72);
  text-align: center;
}

.context-core__eyebrow {
  margin-bottom: 8px;
  color: var(--teal-600);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.context-core strong {
  color: var(--navy-900);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.13;
}

.context-core__meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: #54738b;
  font-size: 0.56rem;
}

.context-core__meta svg {
  width: 12px;
  height: 12px;
  color: var(--teal-600);
}

.visual-node {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 86px;
  transform: translate(-50%, -50%);
  align-items: center;
  flex-direction: column;
  gap: 7px;
  color: #31536e;
  font-size: 0.7rem;
  font-weight: 750;
  text-align: center;
}

.visual-node__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #cde7ec;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  color: #008eaa;
  box-shadow: 0 10px 25px rgba(6, 70, 104, 0.13);
}

.visual-node__icon svg {
  width: 25px;
  height: 25px;
}

.visual-node--one { top: 16%; left: 50%; }
.visual-node--two { top: 32%; left: 85%; }
.visual-node--three { top: 69%; left: 82%; }
.visual-node--four { top: 85%; left: 50%; }
.visual-node--five { top: 69%; left: 18%; }
.visual-node--six { top: 32%; left: 15%; }

.process {
  padding-block: 84px 88px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 750px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.preaccess h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-steps {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-width: 0;
  padding: 0 11px;
  text-align: center;
}

.process-steps li:not(:last-child)::after {
  position: absolute;
  top: 48px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 1px;
  background: linear-gradient(90deg, #77dce0, #8db8cf);
  content: "";
}

.process-steps__number {
  display: block;
  margin-bottom: 10px;
  color: #81a0b3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-steps__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  margin-inline: auto;
  place-items: center;
  border: 1px solid #d2e6ee;
  border-radius: 17px;
  background: #fff;
  color: var(--teal-600);
  box-shadow: 0 9px 23px rgba(4, 62, 96, 0.09);
}

.process-steps__icon svg {
  width: 26px;
  height: 26px;
}

.process-steps strong {
  display: block;
  margin-top: 14px;
  color: #294b66;
  font-size: 0.83rem;
  line-height: 1.3;
}

.value-section {
  padding-block: 92px 106px;
}

.value-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  position: relative;
  display: flex;
  min-height: 270px;
  padding: 30px;
  align-items: flex-start;
  flex-direction: column;
  gap: 26px;
  overflow: hidden;
  border: 1px solid #dceaf1;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 44px rgba(5, 48, 81, 0.07);
}

.value-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 190, 196, 0.12), transparent 70%);
  content: "";
}

.value-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #007c9d, #0cc3bd);
  color: #fff;
  box-shadow: 0 12px 27px rgba(0, 138, 160, 0.25);
}

.value-card__icon svg {
  width: 27px;
  height: 27px;
}

.value-card__label {
  margin: 0 0 6px;
  color: var(--teal-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.value-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.32rem;
  line-height: 1.2;
}

.value-card p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.preaccess {
  display: grid;
  width: min(1220px, calc(100% - 40px));
  margin-bottom: 70px;
  padding: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 85px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 20%, rgba(13, 211, 207, 0.2), transparent 34%),
    linear-gradient(135deg, #031a39, #064370 62%, #056b7d);
  box-shadow: 0 28px 80px rgba(3, 36, 73, 0.23);
  color: #fff;
}

.preaccess .eyebrow {
  color: #53e1dc;
}

.preaccess h2 {
  color: #fff;
}

.preaccess__intro > p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px 0 28px;
  color: #d3e3ed;
  font-size: 1.05rem;
}

.access-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 50px rgba(0, 17, 42, 0.27);
  color: var(--ink);
}

.access-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.access-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: #e8f8fa;
  color: var(--teal-600);
}

.access-card__icon svg {
  width: 24px;
  height: 24px;
}

.access-card__eyebrow {
  margin: 0;
  color: #718799;
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-card h3 {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.access-card > p {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.access-form label {
  display: block;
  margin-bottom: 7px;
  color: #2c4d68;
  font-size: 0.8rem;
  font-weight: 750;
}

.access-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.access-form input,
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbdce7;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.access-form input {
  min-width: 0;
  height: 48px;
  padding: 0 13px;
}

.access-form input:focus,
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(8, 183, 191, 0.12);
}

.access-form__row button {
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 11px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 720;
}

.access-form__status {
  min-height: 1.4em;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.access-form__status--error {
  color: #a32d35;
  font-weight: 650;
}

.site-footer {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  padding: 24px 0 38px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
  color: #61788c;
  font-size: 0.82rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand img {
  width: 82px;
  max-height: 38px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--navy-700);
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-600);
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.request-dialog {
  width: min(1260px, calc(100% - 40px));
  max-height: min(900px, calc(100dvh - 40px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 35px 110px rgba(0, 17, 41, 0.38);
}

.request-dialog::backdrop {
  background: rgba(2, 20, 41, 0.72);
  backdrop-filter: blur(7px);
}

.request-dialog__layout {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
}

.request-dialog__aside {
  position: relative;
  padding: 58px 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(22, 214, 207, 0.2), transparent 43%),
    linear-gradient(145deg, var(--navy-950), #075476);
  color: #fff;
}

.request-dialog__aside::after {
  position: absolute;
  right: -80px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(94, 230, 228, 0.22);
  border-radius: 50%;
  content: "";
}

.request-dialog__badge {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(83, 225, 220, 0.35);
  border-radius: 999px;
  background: rgba(0, 167, 176, 0.12);
  color: #66e5df;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-dialog h2 {
  max-width: 12.5em;
  margin: 26px 0 16px;
  font-size: clamp(1.95rem, 2.55vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  overflow-wrap: break-word;
  hyphens: auto;
}

.request-dialog__product-name {
  white-space: nowrap;
  hyphens: none;
}

.request-dialog__aside > p {
  margin: 0;
  color: #caddE8;
}

.request-dialog__aside ul {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 15px;
  color: #dbeaf1;
  font-size: 0.9rem;
  list-style: none;
}

.request-dialog__aside li {
  position: relative;
  padding-left: 25px;
}

.request-dialog__aside li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(33, 206, 210, 0.12);
  content: "";
}

.request-dialog__form-wrap {
  position: relative;
  display: grid;
  padding: 54px 48px 44px;
  align-content: center;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d7e4ec;
  border-radius: 11px;
  background: #fff;
  color: #49627a;
}

.dialog-close:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.dialog-close svg {
  width: 19px;
  height: 19px;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.request-form[hidden],
.request-success[hidden] {
  display: none;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #294862;
  font-size: 0.82rem;
  font-weight: 720;
}

.form-field label span {
  color: #718698;
  font-weight: 500;
}

.form-field input {
  height: 49px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.access-form input::placeholder {
  color: #8a9dad;
}

.form-field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #526b80;
  font-size: 0.78rem;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--teal-600);
}

.privacy-check a {
  color: var(--navy-700);
  font-weight: 700;
}

.request-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.request-form__status {
  margin: 0;
  color: #a32d35;
  font-size: 0.82rem;
  font-weight: 630;
}

.request-success {
  max-width: 480px;
  margin: auto;
  text-align: center;
}

.request-success__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 22px;
  background: #e9f9f7;
  color: var(--teal-600);
}

.request-success__icon svg {
  width: 34px;
  height: 34px;
}

.request-success h3 {
  margin: 5px 0 12px;
  color: var(--navy-900);
  font-size: 1.8rem;
}

.request-success > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 35px;
  }

  .request-dialog {
    width: min(780px, calc(100% - 32px));
  }

  .request-dialog__layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .request-dialog__aside {
    padding: 34px 42px 32px;
  }

  .request-dialog h2 {
    max-width: 17em;
    margin: 18px 0 11px;
    font-size: clamp(1.95rem, 4vw, 2.3rem);
  }

  .request-dialog__aside ul {
    display: none;
  }

  .request-dialog__form-wrap {
    padding: 50px 42px 38px;
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 38px;
  }

  .process-steps li:nth-child(4)::after {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header {
    min-height: 94px;
  }

  .launch-status {
    display: none;
  }

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

  .hero h1 {
    max-width: 650px;
  }

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

  .value-grid,
  .preaccess {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .preaccess {
    width: min(100% - 28px, 680px);
  }


  .request-dialog__aside {
    padding: 35px 32px;
  }


  .request-dialog__form-wrap {
    padding: 48px 30px 34px;
  }
}

@media (max-width: 620px) {
  .brand {
    max-width: min(270px, 70vw);
  }

  .brand__logo {
    width: clamp(220px, 48vw, 270px);
    height: auto;
  }

  .header-actions .button {
    min-height: 41px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.3vw, 2.8rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .context-core {
    width: 47%;
  }

  .context-core__eyebrow,
  .context-core__meta {
    display: none;
  }

  .visual-node {
    min-width: 64px;
    font-size: 0.61rem;
  }

  .visual-node__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .visual-node__icon svg {
    width: 21px;
    height: 21px;
  }

  .process,
  .value-section {
    padding-block: 70px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .process-steps li:nth-child(even)::after {
    display: none;
  }

  .process-steps li:nth-child(4)::after {
    display: none;
  }

  .value-grid {
    gap: 14px;
  }

  .preaccess {
    margin-bottom: 42px;
    padding: 32px 20px;
    border-radius: 23px;
  }

  .access-card {
    padding: 22px 18px;
  }

  .access-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer > p {
    grid-column: 1;
  }

  .site-footer__brand span {
    max-width: 190px;
  }

  .request-dialog {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 19px;
  }

  .request-dialog__aside {
    padding: 30px 23px;
  }

  .request-dialog h2 {
    margin-top: 17px;
    font-size: clamp(1.3rem, 6.2vw, 1.8rem);
    text-wrap: pretty;
  }

  .request-dialog__aside > p {
    font-size: 0.9rem;
  }

  .request-dialog__form-wrap {
    padding: 48px 21px 27px;
  }

  .request-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .request-form__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header-actions .button {
    display: none;
  }
}


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