:root {
  --navy: #0f151d;
  --navy-2: #17202b;
  --navy-3: #212d3a;
  --orange: #ff7a00;
  --orange-dark: #e96f00;
  --white: #ffffff;
  --canvas: #f6f8fa;
  --soft: #edf1f4;
  --soft-orange: #fff0e3;
  --text: #1d2733;
  --muted: #667085;
  --border: #dde3e9;
  --success: #21a56f;
  --shadow: 0 24px 70px rgba(15, 21, 29, 0.13);
  --shell: min(1180px, calc(100% - 40px));
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family:
    Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

::selection {
  color: var(--navy);
  background: var(--orange);
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--orange);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.55);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 76px;
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(15, 21, 29, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand img {
  object-fit: contain;
}

.brand-word {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
}

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

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 650;
  transition: color 150ms ease;
}

.site-nav a:not(.nav-portal)::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  content: "";
  background: var(--orange);
  transition: right 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.site-nav .nav-portal {
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 11px;
  font-weight: 800;
}

.site-nav .nav-portal:hover,
.site-nav .nav-portal:focus-visible {
  color: var(--navy);
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 144px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 36%),
    var(--navy);
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 150px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -420px;
  right: -180px;
  width: 920px;
  height: 920px;
}

.hero-orbit-two {
  top: -180px;
  right: 50px;
  width: 520px;
  height: 520px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 122, 0, 0.12);
}

.hero h1 {
  max-width: 640px;
  margin: 22px 0 22px;
  font-size: clamp(3.6rem, 6.1vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.hero h1 span,
.section-heading h2 span,
.process-copy h2 span,
.faq-copy h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button-primary {
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.24);
}

.button-primary:hover {
  background: #ff8a1f;
  box-shadow: 0 18px 38px rgba(255, 122, 0, 0.3);
}

.button-ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
}

.release-note {
  margin: 12px 0 0 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.73rem;
  font-weight: 650;
}

.hero-facts {
  display: flex;
  gap: 30px;
  margin-top: 38px;
}

.hero-facts > div {
  display: flex;
  max-width: 210px;
  align-items: center;
  gap: 10px;
}

.hero-facts svg {
  flex: 0 0 29px;
  width: 29px;
  color: var(--orange);
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  padding: 0 0 55px;
}

.showcase-frame {
  position: relative;
  aspect-ratio: 1.55;
  overflow: hidden;
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.35);
}

.showcase-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 180ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.showcase-frame.is-switching > img {
  opacity: 0.45;
  transform: scale(1.025);
}

.showcase-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 19, 0.35), transparent 36%),
    linear-gradient(0deg, rgba(8, 13, 19, 0.86), transparent 48%);
}

.showcase-topline {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(15, 21, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  backdrop-filter: blur(12px);
}

.live-pill i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(33, 165, 111, 0.15);
}

.showcase-caption {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
}

.showcase-caption span {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showcase-caption strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.showcase-caption small {
  display: block;
  max-width: 330px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.45;
}

.service-switcher {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(16px);
}

.service-switcher button {
  display: inline-flex;
  min-width: 85px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px 7px 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-switcher button:hover {
  color: var(--navy);
  background: var(--soft);
}

.service-switcher button.is-active {
  color: var(--navy);
  background: var(--soft-orange);
}

.switcher-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.is-active .switcher-icon {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
}

.switcher-icon svg {
  width: 17px;
  height: 17px;
}

.phone-card {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: -70px;
  width: 178px;
  padding: 13px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-2deg);
  backdrop-filter: blur(18px);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone-top img {
  padding: 5px;
  background: var(--navy);
  border-radius: 8px;
}

.phone-top span {
  flex: 1;
  font-size: 0.56rem;
  font-weight: 800;
}

.phone-top i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.phone-card > p {
  margin: 13px 0 9px;
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.2;
}

.phone-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.phone-services span {
  padding: 7px 1px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 7px;
  text-align: center;
  font-size: 0.47rem;
  font-weight: 800;
}

.phone-services .selected {
  color: var(--navy);
  background: var(--soft-orange);
  box-shadow: inset 0 -2px var(--orange);
}

.phone-route {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 5px 7px;
  align-items: center;
  margin-top: 9px;
  padding: 8px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.phone-route i,
.phone-route b {
  width: 6px;
  height: 6px;
  margin-inline: auto;
  border-radius: 50%;
}

.phone-route i {
  background: var(--success);
}

.phone-route b {
  background: var(--orange);
}

.phone-route span {
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 650;
}

.phone-cta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 8px 9px;
  color: var(--navy);
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.51rem;
  font-weight: 900;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  margin-top: 74px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-bottom div {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.section {
  padding: 112px 0;
}

.services-section {
  background:
    radial-gradient(circle at 5% 20%, rgba(255, 122, 0, 0.07), transparent 20%),
    var(--canvas);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.process-copy h2,
.faq-copy h2 {
  margin: 15px 0 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.8vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(15, 21, 29, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-image {
  position: relative;
  aspect-ratio: 1.55;
  overflow: hidden;
  background: var(--navy);
}

.service-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(15, 21, 29, 0.45), transparent 55%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-image > span {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--orange);
  border-radius: 0 14px 0 0;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-body {
  padding: 24px;
}

.service-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.service-title svg {
  width: 22px;
  color: var(--orange);
}

.service-body > p {
  min-height: 70px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-body li {
  padding: 7px 9px;
  color: var(--text);
  background: var(--soft);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.025) 50%),
    var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 125px;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy > p {
  max-width: 420px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--navy);
  background: var(--orange);
  border-radius: 9px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list > li > span {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  line-height: 1.7;
}

.opportunity-section {
  background: var(--white);
}

.section-heading-center {
  display: block;
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

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

.section-heading-center > p {
  max-width: 560px;
  margin: 20px auto 0;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.opportunity-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  color: var(--text);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.opportunity-card::before {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  content: "";
  border: 34px solid rgba(15, 21, 29, 0.035);
  border-radius: 50%;
}

.opportunity-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.opportunity-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 13px 35px rgba(15, 21, 29, 0.09);
}

.opportunity-icon svg {
  width: 26px;
  height: 26px;
}

.opportunity-card h3 {
  margin: 76px 0 13px;
  color: var(--navy);
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.opportunity-card > p {
  max-width: 310px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.opportunity-card > a {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.opportunity-card > a:hover {
  color: var(--orange-dark);
}

.opportunity-rider {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.opportunity-rider::before {
  border-color: rgba(255, 255, 255, 0.05);
}

.opportunity-rider .opportunity-number,
.opportunity-rider > p {
  color: rgba(255, 255, 255, 0.55);
}

.opportunity-rider .opportunity-icon {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
}

.opportunity-rider h3,
.opportunity-rider > a {
  color: var(--white);
}

.opportunity-shop {
  background: #fff8f1;
  border-color: #ffe1c6;
}

.safety-section {
  padding-top: 40px;
  background: var(--white);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.safety-panel {
  position: relative;
  min-height: 570px;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.safety-panel h2 {
  max-width: 470px;
  margin: 18px 0 20px;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.safety-panel > p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.75;
}

.safety-watermark {
  position: absolute;
  right: -40px;
  bottom: -160px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 31rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.15em;
}

.safety-quote {
  position: absolute;
  right: clamp(38px, 6vw, 72px);
  bottom: 55px;
  left: clamp(38px, 6vw, 72px);
  display: flex;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-quote span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.8;
}

.safety-quote p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.safety-points {
  display: grid;
  padding: 44px clamp(32px, 5vw, 65px);
}

.safety-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.safety-points article:last-child {
  border-bottom: 0;
}

.safety-points article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: var(--soft-orange);
  border-radius: 14px;
}

.safety-points svg {
  width: 24px;
}

.safety-points h3 {
  margin: 1px 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.safety-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.faq-section {
  background: var(--canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 9vw, 130px);
}

.faq-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-copy > p {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--navy);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > p {
  max-width: 650px;
  margin: -6px 60px 28px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 4px;
  content: "";
  background: var(--orange);
}

.final-cta-orbit {
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 640px;
  height: 640px;
  border: 75px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.final-cta-inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.final-cta-inner > div:first-child > span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin: 13px 0 0;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.final-cta-inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.site-footer {
  padding: 72px 0 24px;
  color: var(--white);
  background: #0a0f15;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-bottom: 55px;
}

.footer-brand > p {
  margin: 16px 0 0 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links h3 {
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

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

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

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

  .hero-visual {
    max-width: 780px;
    margin: 10px 0 0 70px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child .service-image {
    aspect-ratio: auto;
  }

  .opportunity-card {
    min-height: 390px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 16px 24px;
    background: rgba(15, 21, 29, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-130%);
    visibility: hidden;
    transition:
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
  }

  .site-nav a:not(.nav-portal)::after {
    display: none;
  }

  .site-nav .nav-portal {
    margin-top: 12px;
    padding: 14px;
    text-align: center;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-visual {
    margin-left: 45px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-copy,
  .faq-copy {
    position: static;
  }

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

  .opportunity-card {
    min-height: 320px;
  }

  .opportunity-card h3 {
    margin-top: 55px;
  }

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

  .safety-panel {
    min-height: 500px;
  }

  .final-cta-inner {
    display: block;
  }

  .final-cta-inner > div:last-child {
    justify-content: start;
    margin-top: 34px;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
    --radius-md: 18px;
  }

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

  .brand-word {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.15rem, 17vw, 4.6rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .hero-facts > div {
    display: block;
    padding: 14px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
  }

  .hero-facts svg {
    width: 24px;
    margin-bottom: 9px;
  }

  .hero-visual {
    margin: 16px 0 0;
    padding-bottom: 100px;
  }

  .showcase-frame {
    aspect-ratio: 0.93;
  }

  .showcase-frame > img {
    object-position: 68% center;
  }

  .showcase-topline {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .showcase-topline > span:last-child {
    display: none;
  }

  .showcase-caption {
    right: 17px;
    bottom: 19px;
    left: 17px;
  }

  .showcase-caption small {
    max-width: 90%;
  }

  .service-switcher {
    right: 0;
    bottom: 30px;
    left: 0;
    justify-content: center;
  }

  .service-switcher button {
    min-width: 0;
    flex: 1;
    padding-inline: 5px;
  }

  .phone-card {
    display: none;
  }

  .hero-bottom {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .faq-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

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

  .service-card:last-child {
    display: block;
    grid-column: auto;
  }

  .service-card:last-child .service-image {
    aspect-ratio: 1.55;
  }

  .service-body > p {
    min-height: 0;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .opportunity-card {
    min-height: 360px;
  }

  .safety-section {
    padding-top: 20px;
  }

  .safety-panel {
    min-height: 550px;
    padding: 36px 26px;
  }

  .safety-panel h2 {
    font-size: 2.7rem;
  }

  .safety-quote {
    right: 26px;
    bottom: 36px;
    left: 26px;
  }

  .safety-points {
    padding: 24px;
  }

  .safety-points article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .safety-points article > span {
    width: 42px;
    height: 42px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 0.92rem;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta h2 {
    font-size: 3.15rem;
  }

  .final-cta-inner > div:last-child,
  .final-cta-inner .button {
    width: 100%;
  }

  .footer-main {
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-links > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    display: block;
    line-height: 1.6;
  }

  .footer-bottom p + p {
    margin-top: 7px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
