:root {
  --ink: #0b3135;
  --ink-soft: #36555a;
  --teal-950: #03272d;
  --teal-900: #06343a;
  --teal-800: #0a4b50;
  --mint: #a7ead6;
  --mint-strong: #6bd0b7;
  --mint-pale: #e5f7ef;
  --coral: #f17e63;
  --coral-dark: #c34d3c;
  --coral-pale: #fff0e8;
  --sand: #f3eee5;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(7, 53, 58, 0.12);
  --shadow: 0 24px 70px rgba(4, 45, 50, 0.12);
  --shadow-soft: 0 12px 40px rgba(4, 45, 50, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  padding: 13px 18px;
  color: var(--white);
  background: var(--teal-950);
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(251, 250, 246, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(4, 45, 50, 0.07);
  backdrop-filter: blur(18px);
}

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

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 9px 22px rgba(4, 45, 50, 0.18);
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 6px;
  color: #668084;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #38565a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--coral);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

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

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--teal-900);
  box-shadow: 0 11px 24px rgba(4, 51, 57, 0.2);
}

.button-primary:hover {
  background: var(--teal-800);
  box-shadow: 0 14px 30px rgba(4, 51, 57, 0.25);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(5, 55, 60, 0.14);
  box-shadow: 0 10px 25px rgba(4, 45, 50, 0.06);
}

.button-large {
  min-height: 54px;
  padding: 0 25px;
}

.store-button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}

.store-button > svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-button > span {
  display: grid;
  gap: 3px;
}

.store-button small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 14px;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-nav nav {
  position: absolute;
  right: 0;
  top: 58px;
  width: min(300px, calc(100vw - 32px));
  padding: 12px;
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav nav a:hover {
  background: var(--mint-pale);
}

.hero {
  position: relative;
  min-height: 770px;
  padding: 152px 0 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 55, 60, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 55, 60, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #fbfaf6 10%, #f6f2e9 55%, #eef7f1 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(251, 250, 246, 0.95));
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.28;
}

.hero-glow-coral {
  left: -270px;
  top: 260px;
  background: radial-gradient(circle, var(--coral), transparent 68%);
}

.hero-glow-mint {
  right: -220px;
  top: 40px;
  background: radial-gradient(circle, var(--mint-strong), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

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

.hero h1,
.section-heading h2,
.roles-heading h2,
.safety-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Avenir Next", Inter, sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  flex-wrap: wrap;
}

.pilot-note {
  margin: 21px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #60787b;
  font-size: 12px;
  font-weight: 600;
}

.pilot-note > span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-icon-wrap {
  position: relative;
  z-index: 2;
  width: min(440px, 88%);
  aspect-ratio: 1;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 38%;
  box-shadow: 0 40px 90px rgba(3, 42, 47, 0.21), inset 0 1px 1px var(--white);
  transform: rotate(2deg);
}

.hero-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34%;
  box-shadow: 0 18px 45px rgba(2, 28, 32, 0.3);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(9, 76, 81, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--coral);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(4, 45, 50, 0.25);
}

.orbit-one {
  width: 540px;
  height: 310px;
}

.orbit-one::before {
  top: 27px;
  left: 90px;
}

.orbit-one::after {
  right: 64px;
  bottom: 50px;
  background: var(--mint-strong);
}

.orbit-two {
  width: 430px;
  height: 570px;
  transform: rotate(55deg);
}

.orbit-two::before {
  top: 110px;
  right: 24px;
}

.orbit-two::after {
  left: 36px;
  bottom: 135px;
  background: var(--mint-strong);
}

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.89);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(4, 45, 50, 0.16);
  backdrop-filter: blur(16px);
}

.float-card-top {
  right: -10px;
  top: 78px;
}

.float-card-bottom {
  left: -15px;
  bottom: 85px;
}

.float-card > span:last-child {
  display: grid;
  gap: 4px;
}

.float-card small {
  color: #708689;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card strong {
  font-size: 13px;
}

.float-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.float-icon.mint {
  color: var(--teal-800);
  background: var(--mint-pale);
}

.float-icon.coral {
  color: var(--coral-dark);
  background: var(--coral-pale);
}

.float-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 12px;
  max-width: 270px;
  display: flex;
  gap: 13px;
  color: #61797c;
  font-size: 12px;
  line-height: 1.5;
}

.hero-caption span {
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
}

.hero-caption p {
  margin: 0;
}

.trust-section {
  position: relative;
  z-index: 3;
  padding: 68px 0 88px;
  background: var(--paper);
}

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

.section-heading.compact .eyebrow {
  margin-bottom: 6px;
}

.section-heading.compact h2 {
  max-width: 570px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 150px;
  padding: 30px 30px 18px 0;
  border-right: 1px solid var(--line);
}

.trust-grid article:not(:first-child) {
  padding-left: 30px;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--coral-dark);
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.trust-grid p {
  max-width: 210px;
  margin: 22px 0 0;
  font-weight: 600;
  line-height: 1.55;
}

.features-section {
  background: #f2f5ef;
}

.section-heading.centered {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

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

.section-heading h2,
.roles-heading h2,
.safety-copy h2,
.cta-panel h2 {
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.08;
}

.section-heading.centered > p:last-child,
.roles-heading > p,
.safety-copy > p,
.cta-panel > div > p {
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 53, 58, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(4, 45, 50, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 53, 58, 0.17);
  box-shadow: var(--shadow-soft);
}

.feature-card-highlight {
  color: var(--white);
  background: var(--teal-900);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(3, 42, 47, 0.16);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--mint-pale);
  border-radius: 15px;
}

.feature-card-highlight .feature-icon {
  color: var(--teal-950);
  background: var(--mint);
}

.feature-icon.danger {
  color: var(--coral-dark);
  background: var(--coral-pale);
}

.feature-icon svg,
.role-icon svg,
.data-boundary svg,
.warning-note svg,
.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-kicker {
  margin: 32px 0 10px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card-highlight .card-kicker {
  color: var(--mint);
}

.feature-card h3 {
  margin: 0;
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.feature-card > p:not(.card-kicker) {
  margin: 15px 0 0;
  color: #587075;
  line-height: 1.65;
}

.feature-card-highlight > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card > a {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 25px;
  color: var(--teal-800);
  border-top: 1px solid rgba(7, 53, 58, 0.1);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.feature-card-highlight > a {
  color: var(--mint);
  border-color: rgba(255, 255, 255, 0.15);
}

.roles-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(106, 208, 183, 0.17), transparent 28%),
    linear-gradient(135deg, #03272d, #063b40);
}

.roles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
}

.roles-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 75px;
}

.roles-heading {
  align-self: center;
}

.roles-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.button-mint {
  margin-top: 32px;
  color: var(--teal-950);
  background: var(--mint);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.role-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.role-card-accent {
  background: #e3f4ec;
}

.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.role-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--mint-pale);
  border-radius: 15px;
}

.role-card-accent .role-icon {
  color: var(--coral-dark);
  background: var(--coral-pale);
}

.role-number {
  color: #819698;
  font-size: 11px;
  font-weight: 800;
}

.role-card h3 {
  margin: 34px 0 0;
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 29px;
}

.role-card > p {
  margin: 16px 0 0;
  color: #557075;
  line-height: 1.7;
}

.role-card ul {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 700;
}

.role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}

.role-card > a {
  min-height: 46px;
  margin-top: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--teal-800);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.data-boundary {
  grid-column: 1 / -1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  text-align: center;
}

.data-boundary svg {
  width: 18px;
  flex: 0 0 auto;
}

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

.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 75px;
}

.safety-help-card {
  background:
    radial-gradient(circle at 100% 0, rgba(167, 234, 214, 0.18), transparent 36%),
    linear-gradient(145deg, #062f35, #0c4650);
  border: 9px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
}

.safety-help-icon {
  align-items: center;
  background: rgba(167, 234, 214, 0.13);
  border: 1px solid rgba(167, 234, 214, 0.24);
  border-radius: 18px;
  color: var(--mint);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 30px;
  width: 58px;
}

.safety-help-icon svg {
  fill: none;
  height: 29px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 29px;
}

.safety-help-card h3 {
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 14px 0 16px;
  max-width: 560px;
}

.safety-help-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.safety-help-card ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.safety-help-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: grid;
  gap: 6px;
  padding: 17px 0;
}

.safety-help-card li strong {
  color: var(--mint);
  font-size: 12px;
}

.safety-help-card li span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.safety-map {
  overflow: hidden;
  color: var(--white);
  background: #062f35;
  border: 9px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.map-toolbar,
.map-footer {
  display: flex;
  align-items: center;
  padding: 17px 20px;
}

.map-toolbar {
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.map-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-toolbar strong {
  font-size: 12px;
}

.map-toolbar > span,
.map-footer {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(167, 234, 214, 0.09);
}

.map-stage {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 40%, rgba(105, 209, 182, 0.15), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

.map-stage > img {
  position: absolute;
  inset: 40px 14px auto;
  width: calc(100% - 28px);
  opacity: 0.34;
  filter: sepia(0.2) hue-rotate(105deg) saturate(1.2) brightness(1.45);
}

.map-marker {
  position: absolute;
  z-index: 2;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  background: var(--coral);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(241, 126, 99, 0.18);
}

.map-marker::before,
.map-marker::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(241, 126, 99, 0.55);
  border-radius: 50%;
  animation: markerPulse 2.4s ease-out infinite;
}

.map-marker::after {
  animation-delay: 1.2s;
}

.marker-one {
  right: 18%;
  top: 33%;
}

.marker-two {
  right: 35%;
  top: 52%;
  transform: scale(0.7);
}

.marker-three {
  right: 13%;
  bottom: 23%;
  transform: scale(0.65);
}

.case-popover {
  position: absolute;
  z-index: 4;
  right: 6%;
  top: 43%;
  width: 205px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.case-level {
  display: inline-flex;
  padding: 5px 8px;
  color: #9e3628;
  background: var(--coral-pale);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-popover > strong {
  margin-top: 10px;
  display: block;
  font-size: 13px;
}

.case-popover > p {
  margin: 5px 0 13px;
  color: #708386;
  font-size: 9px;
}

.case-popover > div {
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 8px;
}

.case-popover > div span {
  color: #778b8e;
}

.case-popover > div b {
  color: var(--teal-800);
}

.map-footer {
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-transform: none;
  letter-spacing: 0;
}

.map-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.legend-dot.coral {
  background: var(--coral);
}

.legend-dot.amber {
  background: #eec36b;
}

.legend-dot.mint {
  background: var(--mint);
}

.map-time {
  margin-left: auto;
}

.safety-copy > p {
  margin-left: 0;
}

.safety-steps {
  margin: 30px 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.safety-steps li {
  position: relative;
  min-height: 79px;
  display: flex;
  gap: 15px;
}

.safety-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 38px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.safety-steps li > span {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--mint-pale);
  border: 1px solid rgba(7, 53, 58, 0.1);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.safety-steps p {
  margin: 0;
  display: grid;
  gap: 5px;
  color: #687f82;
  font-size: 13px;
  line-height: 1.5;
}

.safety-steps strong {
  color: var(--ink);
  font-size: 14px;
}

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

.warning-note {
  max-width: 480px;
  margin: 20px 0 0 !important;
  display: flex;
  gap: 10px;
  color: #84645d !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

.warning-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--coral-dark);
}

.services-section {
  background: var(--sand);
}

.service-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.service-heading h2 {
  max-width: 700px;
}

.service-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list > a {
  min-height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 53, 58, 0.09);
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-list > a:hover {
  transform: translateX(5px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.service-icon.coral {
  color: var(--coral-dark);
  background: var(--coral-pale);
}

.service-icon.mint {
  color: var(--teal-800);
  background: var(--mint-pale);
}

.service-icon.teal {
  color: var(--white);
  background: var(--teal-800);
}

.service-icon.sand {
  color: #705d3e;
  background: #f2e5c8;
}

.service-list > a > span:nth-child(2) {
  display: grid;
  gap: 5px;
}

.service-list strong {
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 16px;
}

.service-list small {
  color: #708487;
  font-size: 12px;
}

.service-list b {
  color: var(--coral-dark);
}

.payment-preview {
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(167, 234, 214, 0.16), transparent 30%),
    var(--teal-950);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(3, 42, 47, 0.2);
}

.preview-head,
.preview-recipient,
.preview-breakdown p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-head > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-head img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.preview-head strong {
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 12px;
}

.simulation-badge {
  padding: 7px 10px;
  color: var(--mint);
  background: rgba(167, 234, 214, 0.09);
  border: 1px solid rgba(167, 234, 214, 0.22);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-balance {
  margin-top: 28px;
  padding: 25px 0;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-balance small,
.preview-balance span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.preview-balance strong {
  font-family: "Avenir Next", Inter, sans-serif;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.preview-recipient {
  margin-top: 22px;
  padding: 15px;
  justify-content: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.recipient-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal-950);
  background: var(--mint);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.preview-recipient > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.preview-recipient small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.preview-recipient strong {
  font-size: 12px;
}

.preview-recipient svg {
  width: 17px;
  margin-left: auto;
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
}

.preview-breakdown {
  margin: 20px 0;
}

.preview-breakdown p {
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.preview-breakdown strong {
  color: var(--white);
  font-weight: 600;
}

.preview-confirm {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal-950);
  background: var(--mint);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.preview-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  text-align: center;
}

.payment-disclaimer {
  margin: 26px 0 0;
  padding: 16px 20px;
  color: #765b4c;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(7, 53, 58, 0.08);
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.6;
}

.payment-disclaimer strong {
  color: var(--coral-dark);
  text-transform: uppercase;
}

.final-cta {
  background: var(--paper);
}

.cta-panel {
  position: relative;
  min-height: 520px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 70%, rgba(241, 126, 99, 0.2), transparent 24%),
    radial-gradient(circle at 86% 5%, rgba(167, 234, 214, 0.15), transparent 26%),
    var(--teal-950);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 300px;
  border-radius: 36%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}

.cta-panel h2 {
  max-width: 700px;
}

.cta-panel > div > p {
  margin-left: 0;
  color: rgba(255, 255, 255, 0.66);
}

.cta-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.button-coral {
  color: var(--teal-950);
  background: var(--coral);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.2);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-panel small {
  margin-top: 19px;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.cta-orbit {
  position: absolute;
  z-index: 1;
  left: -60px;
  bottom: -160px;
  width: 500px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: rotate(22deg);
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #021f24;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.45);
}

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

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  text-decoration: none;
}

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

.footer-disclaimer {
  margin: 55px 0 0;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

@keyframes markerPulse {
  0% {
    opacity: 0.7;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.js.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js.reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .float-card-top {
    right: 0;
  }

  .float-card-bottom {
    left: 0;
  }

  .roles-shell,
  .safety-grid {
    gap: 45px;
  }

  .cta-panel {
    padding: 55px;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 86px 0;
  }

  .header-dashboard {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

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

  .hero-copy {
    max-width: 730px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .pilot-note {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(3),
  .trust-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

  .roles-heading {
    max-width: 700px;
  }

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

  .service-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .payment-preview {
    max-width: 620px;
  }

  .cta-panel {
    grid-template-columns: 0.55fr 1.45fr;
    padding: 48px;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(1180px, calc(100% - 30px));
  }

  .section {
    padding: 70px 0;
  }

  .site-header {
    padding: 10px 0;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-actions > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .hero-icon-wrap {
    width: min(335px, 84%);
    padding: 13px;
    border-radius: 35%;
  }

  .orbit-one {
    width: 390px;
    height: 230px;
  }

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

  .float-card {
    min-width: 170px;
    padding: 10px 12px;
  }

  .float-card-top {
    top: 40px;
  }

  .float-card-bottom {
    bottom: 42px;
  }

  .float-icon {
    width: 32px;
    height: 32px;
  }

  .hero-caption {
    display: none;
  }

  .section-heading.compact {
    display: grid;
    align-items: start;
  }

  .trust-grid,
  .feature-grid,
  .role-cards {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:not(:first-child) {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid p {
    max-width: none;
    margin-top: 12px;
  }

  .feature-card {
    min-height: 330px;
  }

  .roles-shell {
    gap: 42px;
  }

  .role-card {
    min-height: 450px;
  }

  .data-boundary {
    align-items: flex-start;
    text-align: left;
  }

  .safety-map {
    border-width: 5px;
  }

  .map-stage {
    min-height: 310px;
  }

  .map-stage > img {
    top: 50px;
  }

  .case-popover {
    right: 4%;
    top: 42%;
    width: 180px;
  }

  .map-footer {
    flex-wrap: wrap;
  }

  .map-time {
    width: 100%;
    margin-left: 0;
  }

  .service-list > a {
    min-height: 92px;
    padding: 15px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-list small {
    font-size: 10px;
  }

  .cta-panel {
    min-height: auto;
    padding: 42px 25px;
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 24px;
  }

  .cta-icon {
    width: 210px;
    margin: 0 auto;
  }

  .cta-panel .eyebrow,
  .cta-actions {
    justify-content: center;
  }

  .cta-actions {
    display: grid;
  }

  .cta-actions .button {
    width: 100%;
  }

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

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

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

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

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 8%, rgba(167, 234, 214, 0.34), transparent 28%),
    var(--paper);
}

.legal-header {
  padding: 16px 0;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.legal-header-inner,
.legal-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-main {
  padding: 90px 0 110px;
}

.legal-shell {
  width: min(820px, calc(100% - 48px));
}

.legal-shell > h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-summary {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.legal-meta {
  margin: 28px 0 0;
  color: #6d7e80;
  font-size: 13px;
  font-weight: 700;
}

.legal-notice {
  margin: 32px 0 56px;
  padding: 18px 20px;
  color: #693b31;
  background: var(--coral-pale);
  border: 1px solid rgba(195, 77, 60, 0.2);
  border-radius: 15px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-contact p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-contact {
  margin-top: 28px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--teal-900);
  border-radius: 20px;
}

.legal-contact p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.legal-contact a {
  color: var(--mint);
}

.legal-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal-950);
  font-size: 13px;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 700px) {
  .legal-main {
    padding: 64px 0 80px;
  }

  .legal-header-inner,
  .legal-footer .shell {
    align-items: flex-start;
  }

  .legal-header .button {
    padding: 0 14px;
    font-size: 12px;
  }

  .legal-section {
    padding: 24px;
  }

  .legal-footer .shell {
    display: grid;
  }
}
