:root {
  --ink: #edf7fb;
  --muted: #9ab7c5;
  --soft: #6d8997;
  --navy-950: #020d15;
  --navy-900: #031722;
  --navy-800: #062333;
  --navy-700: #0b3043;
  --navy-600: #123d52;
  --line: rgba(154, 210, 234, 0.2);
  --line-strong: rgba(102, 190, 238, 0.62);
  --blue: #58b7f4;
  --blue-bright: #7acaff;
  --orange: #e68a4f;
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Barlow Condensed", "Trebuchet MS", Arial, sans-serif;
  --mono: "Space Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--blue);
  color: var(--navy-950);
}

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

button {
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

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

.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}

.site-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.utility-bar {
  position: relative;
  z-index: 20;
  height: 34px;
  background: #102f3e;
  border-bottom: 1px solid rgba(151, 206, 229, 0.2);
  color: #9ab8c5;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-inner,
.utility-label,
.utility-meta {
  display: flex;
  align-items: center;
}

.utility-inner {
  height: 100%;
  justify-content: space-between;
}

.utility-label,
.utility-meta {
  margin: 0;
}

.utility-slash {
  margin: 0 8px;
  color: var(--blue);
}

.utility-meta {
  gap: 10px;
  color: #668998;
}

.utility-meta span {
  color: #a6c5d2;
}

.signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #8ce0ff;
  box-shadow: 0 0 0 3px rgba(103, 195, 238, 0.15), 0 0 12px rgba(119, 209, 252, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 70px;
  background: rgba(5, 29, 42, 0.96);
  border-bottom: 1px solid rgba(143, 203, 228, 0.24);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 36px;
}

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

.brand-emblem {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-bright);
}

.brand-emblem svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.brand-emblem .brand-star {
  fill: currentColor;
  stroke: none;
}

.brand-copy {
  display: grid;
  color: #d7ebf3;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.82;
}

.brand-copy strong {
  color: #f6fbfd;
  font-size: 18px;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 4px;
  color: #8eb5c5;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 30px;
}

.site-nav a,
.nav-login {
  display: inline-flex;
  align-items: center;
  color: #a8c8d5;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.site-nav a::after {
  width: 0;
  height: 2px;
  margin-left: 8px;
  background: var(--blue);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover,
.nav-login:hover {
  color: var(--blue-bright);
}

.site-nav a:hover::after {
  width: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.nav-login {
  gap: 6px;
  color: #8faebb;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.nav-login span {
  color: var(--blue);
  font-size: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.button::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.08) 4px);
  content: "";
  opacity: 0.6;
  pointer-events: none;
}

.button span {
  position: relative;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 0;
}

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

.button-small {
  min-height: 46px;
  padding: 0 22px;
  background: var(--blue);
  color: #04121a;
  font-size: 16px;
}

.button-small:hover {
  background: var(--blue-bright);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--blue-bright);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--navy-900);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(102, 190, 238, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 190, 238, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(2, 12, 18, 0.94) 0%, rgba(2, 17, 25, 0.82) 33%, rgba(2, 14, 22, 0.48) 63%, rgba(1, 8, 13, 0.56) 100%), linear-gradient(0deg, rgba(2, 13, 20, 0.98) 0%, transparent 28%, rgba(2, 13, 20, 0.28) 100%), url("assets/SC_14_Wallpaper_1920.jpg");
  background-position: center, center, center;
  background-size: cover;
  filter: saturate(0.84) contrast(1.06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: center;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 72px;
}

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

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--blue);
  box-shadow: 10px 0 0 rgba(88, 183, 244, 0.3), 20px 0 0 rgba(88, 183, 244, 0.13);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  margin-bottom: 26px;
  color: #f3f9fb;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

h1 em {
  color: var(--blue-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 28px;
  color: #d0e2e9;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lede strong {
  color: #f1fbfe;
  font-family: var(--mono);
  font-size: 0.82em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.code-module {
  width: min(100%, 520px);
  margin-bottom: 30px;
  padding: 14px 18px 12px;
  background: rgba(3, 26, 38, 0.74);
  border: 1px solid rgba(101, 193, 240, 0.66);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24), inset 0 0 30px rgba(70, 165, 213, 0.08);
  backdrop-filter: blur(5px);
}

.code-module::before,
.code-module::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: var(--blue-bright);
  content: "";
}

.code-module {
  position: relative;
}

.code-module::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.code-module::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.code-heading,
.code-row,
.record-line,
.record-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.code-heading {
  color: #86aebb;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.code-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9bd6a7;
}

.code-status i,
.record-line strong i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #94e2a2;
  box-shadow: 0 0 8px rgba(148, 226, 162, 0.8);
}

.code-row {
  gap: 18px;
  padding-top: 5px;
}

.code-row strong {
  color: #f3fbfe;
  font-family: var(--mono);
  font-size: clamp(19px, 2.3vw, 27px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.copy-button {
  flex: 0 0 auto;
  min-width: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(102, 190, 238, 0.45);
  background: rgba(88, 183, 244, 0.1);
  color: var(--blue-bright);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  transition: background 180ms ease, color 180ms ease;
}

.copy-button:hover,
.copy-button.is-copied {
  background: var(--blue);
  color: var(--navy-950);
}

.copy-feedback {
  min-height: 14px;
  margin: 8px 0 0;
  color: #7e9caa;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.button-primary {
  min-width: 190px;
  background: var(--blue);
  color: #04141e;
}

.button-primary:hover {
  background: var(--blue-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #b0d2de;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link span {
  color: var(--blue);
  font-size: 16px;
}

.text-link:hover {
  gap: 16px;
  color: var(--blue-bright);
}

.section {
  position: relative;
}

.opportunity {
  padding: 122px 0 130px;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(137, 199, 223, 0.16);
}

.opportunity::before,
.profile-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(116, 191, 225, 0.035) 1px, transparent 1px), linear-gradient(rgba(116, 191, 225, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 80%);
  pointer-events: none;
}

.opportunity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.77fr) minmax(0, 1.23fr);
  gap: 100px;
}

.section-kicker {
  margin-bottom: 30px;
  color: #79bfdc;
}

h2 {
  margin-bottom: 0;
  color: #f0f8fa;
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

h2 span {
  color: var(--blue);
}

.opportunity-copy {
  padding-top: 8px;
}

.section-intro {
  max-width: 590px;
  margin-bottom: 40px;
  color: #b0c9d3;
  font-size: 21px;
  line-height: 1.32;
}

.benefit-heading {
  margin: 0 0 14px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.benefit-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 148px;
  padding: 22px 20px 21px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-card:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.benefit-card:nth-child(even) {
  padding-left: 28px;
}

.benefit-card-accent h3 {
  color: var(--blue);
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: #e6f4f8;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.benefit-card p {
  max-width: 230px;
  margin: 0;
  color: #83a5b2;
  font-size: 16px;
  line-height: 1.23;
}

.benefit-card p strong {
  color: #c8e9f4;
  font-family: var(--mono);
  font-size: 12px;
}

.profile-section {
  overflow: hidden;
  padding: 120px 0 132px;
  background: var(--navy-900);
}

.profile-glow {
  position: absolute;
  top: 13%;
  right: -10%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(95, 191, 234, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(95, 191, 234, 0.025), 0 0 0 170px rgba(95, 191, 234, 0.018);
  transform: rotate(32deg) scaleX(0.48);
  pointer-events: none;
}

.profile-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.profile-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 390px;
  border: 1px solid rgba(123, 199, 227, 0.34);
  background: rgba(5, 29, 42, 0.72);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.26);
}

.profile-summary {
  position: relative;
  padding: 19px 26px 23px;
  background: rgba(4, 23, 34, 0.82);
  border-right: 1px solid var(--line);
  text-align: center;
}

.record-line {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: #6e929f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-align: left;
}

.record-line strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a6ddb0;
  font-size: 8px;
  font-weight: 400;
}

.avatar-frame {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  margin: 30px auto 17px;
  place-items: center;
}

.avatar-frame::before,
.avatar-frame::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(108, 196, 236, 0.48);
  border-radius: 50%;
  content: "";
}

.avatar-frame::after {
  inset: -16px;
  border-color: rgba(108, 196, 236, 0.16);
  border-left-color: transparent;
  border-right-color: transparent;
  transform: rotate(35deg);
}

.avatar-ring {
  position: absolute;
  inset: -3px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(88, 183, 244, 0.22);
}

.avatar-frame img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-role,
.profile-location {
  margin-bottom: 7px;
  color: #76a0ae;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.profile-summary h3 {
  margin: 0 0 5px;
  color: #f1fafc;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.profile-signature {
  position: absolute;
  right: 26px;
  bottom: 21px;
  left: 26px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #638a97;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.profile-signature span {
  color: var(--blue);
}

.record-panel {
  display: flex;
  flex-direction: column;
  padding: 21px 31px 25px;
}

.record-panel-header {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  color: #94b5c1;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.record-hash {
  color: var(--blue);
  font-size: 13px;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  gap: 0 48px;
  padding: 11px 0 24px;
}

.record-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 105px;
  border-bottom: 1px solid rgba(137, 199, 223, 0.13);
}

.record-field:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.record-field > span {
  margin-bottom: 8px;
  color: #6d99a7;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.record-field strong {
  color: #e8f6f9;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.record-field small {
  margin-top: 7px;
  color: #7596a3;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.03em;
}

.record-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.record-note .text-link {
  margin-left: auto;
  color: var(--blue-bright);
  white-space: nowrap;
}

.faq-section {
  position: relative;
  padding: 112px 0 124px;
  background: var(--navy-800);
  border-top: 1px solid rgba(137, 199, 223, 0.16);
}

.faq-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(116, 191, 225, 0.035) 1px, transparent 1px), linear-gradient(rgba(116, 191, 225, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
  pointer-events: none;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-intro-copy {
  max-width: 280px;
  margin: 28px 0 31px;
  color: #94b3be;
  font-size: 19px;
  line-height: 1.3;
}

.faq-intro .button {
  max-width: 100%;
  padding-inline: 18px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
}

.faq-number {
  padding-top: 3px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.faq-card h3 {
  margin: 0 0 9px;
  color: #e7f6fa;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.faq-card p {
  max-width: 550px;
  margin: 0;
  color: #8eacb8;
  font-size: 17px;
  line-height: 1.3;
}

.faq-card strong {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 0.76em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-footer {
  padding: 57px 0 22px;
  background: #020d15;
  border-top: 1px solid rgba(134, 198, 224, 0.2);
}

.footer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 29px;
  border-bottom: 1px solid var(--line);
}

.brand-footer {
  min-width: auto;
}

.brand-footer .brand-emblem {
  width: 31px;
  height: 31px;
}

.brand-footer .brand-copy {
  font-size: 14px;
}

.brand-footer .brand-copy strong {
  font-size: 15px;
}

.brand-footer .brand-copy span {
  font-size: 10px;
}

.footer-heading > p {
  margin: 0;
  color: #648591;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-heading > p span {
  margin: 0 8px;
  color: var(--blue);
}

.disclaimer-box {
  max-width: 920px;
  padding: 28px 0 31px;
}

.legal-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
  color: #6e8c98;
  font-size: 13px;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  border-top: 1px solid rgba(137, 199, 223, 0.12);
  color: #4e727f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.footer-bottom span:first-child {
  color: #82afbe;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 64px, 1240px);
  }

  .nav-shell {
    gap: 22px;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .nav-actions {
    gap: 14px;
  }

  .nav-login {
    display: none;
  }

  .hero-grid {
    gap: 42px;
  }

  .record-note {
    flex-wrap: wrap;
  }

  .record-note .text-link {
    width: 100%;
    margin-left: 45px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 40px, 620px);
  }

  .utility-meta {
    display: none;
  }

  .site-header {
    height: 64px;
  }

  .nav-shell {
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .brand-emblem {
    width: 32px;
    height: 32px;
  }

  .brand-copy {
    font-size: 15px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 8px 20px 16px;
    background: rgba(4, 26, 38, 0.98);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(137, 199, 223, 0.12);
    font-size: 17px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    width: 12px;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 800px;
  }

  .hero-backdrop {
    background-position: 57%, center, 61% center;
  }

  .hero-grid {
    display: block;
    padding-top: 82px;
    padding-bottom: 84px;
  }

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

  h1 {
    font-size: clamp(56px, 14vw, 88px);
  }

  .hero-lede {
    font-size: 19px;
  }

  .opportunity,
  .profile-section,
  .faq-section {
    padding: 88px 0 94px;
  }

  .opportunity-grid {
    display: block;
  }

  .opportunity-copy {
    padding-top: 55px;
  }

  .profile-heading {
    display: block;
    margin-bottom: 43px;
  }

  .faq-grid {
    display: block;
  }

  .faq-list {
    margin-top: 55px;
  }

  .profile-shell {
    grid-template-columns: 1fr;
  }

  .profile-summary {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .record-panel {
    padding: 20px;
  }

  .record-note .text-link {
    margin-left: 0;
  }

  .site-footer {
    padding-top: 42px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .utility-bar {
    font-size: 8px;
  }

  .utility-slash {
    margin-inline: 5px;
  }

  .hero,
  .hero-grid {
    min-height: 760px;
  }

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

  .hero-lede {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .code-module {
    padding-inline: 13px;
  }

  .code-row {
    gap: 8px;
  }

  .code-row strong {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .copy-button {
    min-width: 64px;
    padding-inline: 8px;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 20px;
  }

  .button-primary {
    width: 100%;
  }

  h2 {
    font-size: 56px;
  }

  .section-intro {
    font-size: 19px;
  }

  .faq-intro-copy {
    font-size: 18px;
  }

  .faq-intro .button {
    width: 100%;
  }

  .benefit-list {
    display: block;
  }

  .benefit-card,
  .benefit-card:nth-child(odd),
  .benefit-card:nth-child(even) {
    min-height: 125px;
    padding: 21px 0;
    border-right: 0;
  }

  .benefit-card h3 {
    font-size: 23px;
  }

  .faq-card {
    grid-template-columns: 29px 1fr;
    gap: 10px;
  }

  .faq-card h3 {
    font-size: 23px;
  }

  .faq-card p {
    font-size: 16px;
  }

  .profile-shell {
    margin-inline: -1px;
  }

  .record-grid {
    display: block;
  }

  .record-field,
  .record-field:nth-last-child(-n + 2) {
    min-height: 90px;
    border-bottom: 1px solid rgba(137, 199, 223, 0.13);
  }

  .record-field:last-child {
    border-bottom: 0;
  }

  .record-field strong {
    font-size: 24px;
  }

  .record-note {
    align-items: flex-start;
  }

  .footer-heading {
    display: block;
  }

  .footer-heading > p {
    margin-top: 22px;
    line-height: 1.6;
  }

  .footer-bottom {
    display: grid;
    gap: 9px;
  }
}

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

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