@font-face {
  font-family: "Google Sans Flex";
  src: url("assets/fonts/GoogleSansFlex.ttf") format("truetype");
  font-display: swap;
}

:root {
  --font-primary: "Google Sans Flex", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --midnight: #150067;
  --periwinkle: #7496FF;
  --air: #F6F9FF;
  --calm-blue: #3D94FE;
  --ultramarine: #0054FF;
  --ultramarine-deep: #0047D7;
  --skyblue: #98DEFF;
  --mist-start: #FFFFFF;
  --mist-end: #F6F9FF;
  --sky-start: #D0DEFF;
  --sky-end: #E2FFFF;
  --mint: #27FFF8;
  --warning: #F2D29A;
  --issue: #F6B3C8;
  --ink-muted: rgba(21, 0, 103, 0.66);
  --ink-soft: rgba(21, 0, 103, 0.44);
  --line: rgba(21, 0, 103, 0.11);
  --line-strong: rgba(21, 0, 103, 0.18);
  --surface: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 46px rgba(55, 74, 130, 0.14);
  --gradient-air: linear-gradient(135deg, #E5EBFF, #FFFFFF);
  --gradient-mist: linear-gradient(135deg, #FFFFFF, #F6F9FF);
  --gradient-sky: linear-gradient(135deg, #D0DEFF, #E2FFFF);
  --gradient-button: linear-gradient(135deg, var(--ultramarine), var(--ultramarine-deep));
  --radius: 8px;
  --max-width: 1180px;
  --landing-heading-size: clamp(40px, 4.4vw, 62px);
  --landing-heading-line: 1.05;
  --card-title-row: clamp(82px, 5.8vw, 96px);
  --industry-card-title-row: clamp(84px, 5.8vw, 100px);
  --reason-card-title-row: clamp(132px, 8vw, 160px);
  --zone-card-title-row: clamp(82px, 6vw, 104px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--midnight);
  background:
    linear-gradient(180deg, rgba(229, 235, 255, 0.5) 0%, rgba(246, 249, 255, 0) 320px),
    var(--air);
  overflow-x: hidden;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  font-family: var(--font-primary);
  color: var(--midnight);
}

p {
  color: var(--ink-muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: #fff;
  border-bottom: 1px solid rgba(21, 0, 103, 0.08);
  box-shadow: 0 12px 42px rgba(21, 0, 103, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: #fff;
  border-color: rgba(21, 0, 103, 0.12);
  box-shadow: 0 16px 52px rgba(21, 0, 103, 0.12);
}

.site-header-inner {
  width: min(100%, var(--max-width));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--midnight);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 84, 255, 0.14));
}

.brand span {
  font-size: 18px;
}

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

.site-nav a,
.site-nav button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--midnight);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--ultramarine);
  background: rgba(0, 84, 255, 0.06);
}

.nav-contact {
  margin-left: 4px;
  color: #fff !important;
  background: var(--gradient-button) !important;
  box-shadow: 0 12px 26px rgba(0, 84, 255, 0.22);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 18px;
}

.nav-dropdown-toggle {
  gap: 8px;
}

.nav-dropdown-toggle span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 320px;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.22;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0;
  scroll-margin-top: 118px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 70svh;
  margin: 0;
  padding: 112px max(24px, calc((100vw - var(--max-width)) / 2)) 44px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(246, 249, 255, 0), var(--air));
  pointer-events: none;
}

.hero-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(21, 0, 103, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 0, 103, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 76%);
}

.signal-ring {
  display: none;
}

.signal-ring-two {
  display: none;
}

.signal-ring-three {
  display: none;
}

.scan-line {
  display: none;
}

.hero-mark {
  position: absolute;
  right: max(20px, calc((100vw - var(--max-width)) / 2 - 88px));
  bottom: 58px;
  width: min(33vw, 400px);
  opacity: 0.9;
  transform-origin: center;
  filter: drop-shadow(0 5px 10px rgba(47, 107, 255, 0.10));
  animation: shine-breathing-pulse 3.4s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1060px, 100%);
  padding-top: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(21, 0, 103, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--midnight);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 1040px;
  margin-top: 18px;
  font-size: clamp(31px, 3.05vw, 46px);
  line-height: 1.1;
  font-weight: 620;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero h1 span:nth-child(1) {
  animation-delay: 180ms;
}

.hero h1 span:nth-child(2) {
  animation-delay: 920ms;
}

.hero h1 span:nth-child(3) {
  animation-delay: 1660ms;
}

.hero h1 span:nth-child(4) {
  animation-delay: 2420ms;
}

.hero-copy {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(17px, 1.45vw, 20px);
  color: var(--midnight);
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-actions {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: hero-support-slow-arrive 720ms cubic-bezier(0.16, 1, 0.3, 1) 3500ms both;
}

.button,
.btn {
  width: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary,
.btn {
  color: #fff;
  background: var(--gradient-button);
  box-shadow: 0 16px 34px rgba(0, 84, 255, 0.24);
}

.button-secondary {
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 0, 103, 0.12);
}

.button-light {
  color: var(--midnight);
  background: linear-gradient(135deg, #fff, #E2FFFF);
  box-shadow: 0 18px 38px rgba(152, 222, 255, 0.24);
}

.compact-section {
  padding-top: 68px;
}

.definition-section {
  padding-top: 54px;
  padding-bottom: 48px;
}

.definition-copy {
  max-width: 980px;
}

.definition-copy h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 600;
}

.definition-copy .lead-text {
  max-width: 840px;
  margin-top: 24px;
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.22;
}

.definition-copy p:not(.lead-text) {
  max-width: 830px;
  font-size: 19px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-top: 16px;
}

.split-heading h2,
.platform-section h2,
.app-section h2,
.contact h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 600;
}

.solo-heading {
  display: block;
  margin-top: 14px;
}

.solo-heading h2 {
  max-width: 780px;
}

.privacy-section .solo-heading h2 {
  max-width: 920px;
}

.industries-section .solo-heading h2,
.states-section .solo-heading h2 {
  max-width: 720px;
}

.split-heading p,
.section-lead,
.app-section p,
.contact p {
  font-size: 18px;
}

.metrics-row,
.flow-grid,
.state-grid,
.industry-grid,
.privacy-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.metric-card,
.flow-card,
.state-card,
.industry-card,
.zone-card,
.privacy-card,
.privacy-label-card,
.privacy-detail-panel {
  position: relative;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(72, 88, 138, 0.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.motion-ready .metric-card,
.motion-ready .flow-card,
.motion-ready .industry-card,
.motion-ready .zone-card,
.motion-ready .privacy-card,
.motion-ready .privacy-label-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-ready .metric-card::after,
.motion-ready .flow-card::after,
.motion-ready .zone-card::after,
.motion-ready .privacy-card::after,
.motion-ready .privacy-label-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(39, 255, 248, 0.18), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.motion-ready .metric-card:hover,
.motion-ready .flow-card:hover,
.motion-ready .zone-card:hover,
.motion-ready .privacy-card:hover,
.motion-ready .privacy-label-card:hover {
  transform: translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(0, 84, 255, 0.2);
  box-shadow:
    0 22px 52px rgba(47, 107, 255, 0.13),
    0 0 0 1px rgba(47, 107, 255, 0.05);
}

.motion-ready .metric-card:hover::after,
.motion-ready .flow-card:hover::after,
.motion-ready .zone-card:hover::after,
.motion-ready .privacy-card:hover::after,
.motion-ready .privacy-label-card:hover::after {
  opacity: 1;
}

.metric-card {
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
}

.metric-card > *,
.flow-card > *,
.zone-card > *,
.privacy-card > *,
.privacy-label-card > *,
.privacy-detail-panel > * {
  position: relative;
  z-index: 1;
}

.metric-card span,
.flow-number,
.industry-card span {
  color: var(--ultramarine);
  font-size: 13px;
  font-weight: 800;
}

.metric-card h3,
.flow-card h3,
.state-card h3,
.industry-card h3,
.zone-card h3 {
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.08;
}

.metric-card p,
.flow-card p,
.state-card p,
.industry-card p,
.zone-card p,
.privacy-card p,
.privacy-label-card p,
.privacy-detail-panel p {
  margin-top: 10px;
  font-size: 15px;
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(560px, 1.12fr);
  column-gap: clamp(48px, 8vw, 112px);
  align-items: start;
  padding-top: 58px;
}

.flow-section .solo-heading {
  margin-top: 0;
}

.flow-section .solo-heading h2 {
  max-width: 420px;
}

.privacy-section {
  padding-top: 58px;
}

.privacy-glance-section {
  padding-top: 64px;
}

.privacy-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.privacy-heading h2 {
  max-width: 760px;
}

.privacy-heading p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.45;
}

.privacy-label-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.privacy-label-card {
  min-height: 218px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.82)),
    var(--surface);
}

.privacy-label-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    0 0 0 6px rgba(39, 255, 248, 0.12),
    0 10px 24px rgba(0, 84, 255, 0.12);
}

.privacy-label-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(0, 84, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 84, 255, 0.06);
  color: var(--ultramarine);
  font-size: 12px;
  font-weight: 850;
}

.privacy-label-card h3 {
  margin-top: 28px;
  padding-right: 16px;
  color: var(--midnight);
  font-size: 22px;
  line-height: 1.08;
}

.privacy-label-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.privacy-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(21, 0, 103, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.privacy-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 84, 255, 0.24);
  box-shadow: 0 16px 32px rgba(0, 84, 255, 0.1);
}

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

.privacy-card {
  min-height: 248px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 255, 0.74));
}

.privacy-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--radius);
  color: var(--ultramarine);
  background: rgba(0, 84, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.privacy-card h3 {
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.08;
}

.privacy-hero {
  min-height: 58svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding-top: 148px;
}

.privacy-hero-copy h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 620;
}

.privacy-hero-copy p {
  max-width: 700px;
  margin-top: 24px;
  color: var(--midnight);
  font-size: clamp(18px, 1.6vw, 22px);
}

.privacy-hero-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 255, 255, 0.74));
  box-shadow: var(--shadow);
}

.privacy-hero-panel span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 780;
}

.contact-page-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 88px);
  margin: 0;
  padding: 154px max(24px, calc((100vw - var(--max-width)) / 2)) 72px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgba(246, 249, 255, 0.96) 100%);
}

.contact-page-hero::before {
  display: none;
}

.contact-page-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 0;
  align-items: center;
  text-align: center;
}

.contact-page-copy {
  max-width: 920px;
  margin: 0 auto;
}

.contact-page-copy h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 680;
}

.contact-page-copy p {
  max-width: 790px;
  margin: 24px auto 0;
  color: var(--midnight);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.42;
}

.contact-page-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.contact-page-email {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.contact-page-email span {
  color: rgba(21, 0, 103, 0.66);
  font-size: 15px;
  font-weight: 760;
}

.contact-page-email a {
  color: var(--midnight);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  font-weight: 760;
  text-decoration-color: rgba(0, 84, 255, 0.28);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.contact-page-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 255, 255, 0.72)),
    var(--surface);
  box-shadow: 0 28px 70px rgba(55, 74, 130, 0.18);
}

.contact-page-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ultramarine), var(--mint), var(--skyblue));
}

.contact-panel-top {
  display: grid;
  gap: 9px;
}

.contact-panel-top > span,
.contact-topic-list > span {
  width: fit-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--radius);
  background: rgba(0, 84, 255, 0.07);
  color: var(--ultramarine);
  font-size: 12px;
  font-weight: 850;
}

.contact-panel-top strong {
  margin-top: 6px;
  color: var(--midnight);
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-panel-top p {
  color: var(--midnight);
  font-size: 15px;
  line-height: 1.42;
}

.contact-page-panel .button {
  justify-self: start;
}

.contact-topic-list {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 0, 103, 0.1);
}

.contact-topic-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-topic-list div span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(21, 0, 103, 0.74);
  font-size: 13px;
  font-weight: 760;
}

.contact-page-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(10px, 4vw, 34px);
}

.contact-page-steps article {
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(21, 0, 103, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(55, 74, 130, 0.08);
}

.contact-page-steps span {
  color: var(--ultramarine);
  font-size: 12px;
  font-weight: 880;
}

.contact-page-steps h2 {
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.08;
}

.contact-page-steps p {
  margin-top: 10px;
  color: rgba(21, 0, 103, 0.62);
  font-size: 14px;
  line-height: 1.38;
}

.privacy-page-labels {
  padding-top: 42px;
}

.privacy-detail-section {
  padding-top: 42px;
}

.privacy-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.privacy-detail-panel {
  min-height: 430px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.84)),
    var(--surface);
}

.privacy-detail-panel > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--radius);
  background: rgba(0, 84, 255, 0.07);
  color: var(--ultramarine);
  font-size: 12px;
  font-weight: 850;
}

.privacy-detail-panel h2,
.app-privacy-content h2 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1;
  font-weight: 620;
}

.privacy-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-check-list li {
  position: relative;
  min-height: 36px;
  padding: 7px 0 0 36px;
  color: var(--midnight);
  font-size: 16px;
  line-height: 1.35;
}

.privacy-check-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 84, 255, 0.09);
}

.privacy-check-list li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8px;
  width: 7px;
  height: 11px;
  border-right: 2px solid var(--ultramarine);
  border-bottom: 2px solid var(--ultramarine);
  transform: rotate(45deg);
}

.privacy-use-list li::before {
  background: rgba(39, 255, 248, 0.16);
}

.app-privacy-labels {
  width: 100%;
  max-width: none;
  padding: 70px max(24px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(135deg, rgba(208, 222, 255, 0.56), rgba(226, 255, 255, 0.54)),
    var(--air);
}

.app-privacy-content {
  max-width: 940px;
}

.app-privacy-content p {
  max-width: 850px;
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.48;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.flow-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, var(--periwinkle), var(--mint), var(--skyblue));
  opacity: 0.55;
}

.flow-card {
  position: relative;
  min-height: 230px;
  padding: 20px;
  overflow: hidden;
}

.flow-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient-button);
  box-shadow: 0 10px 24px rgba(0, 84, 255, 0.2);
}

.flow-list {
  grid-column: 2;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}

.flow-list::before {
  display: none;
}

.flow-list .flow-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 6px;
  align-items: center;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.82)),
    var(--surface);
}

.flow-list .flow-number {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 850;
}

.flow-list .flow-card h3 {
  margin-top: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.flow-list .flow-card p {
  grid-column: 2;
  max-width: 650px;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.35;
}

.flow-note {
  grid-column: 2;
  max-width: 760px;
  margin: 32px 0 0;
  text-align: left;
  color: var(--midnight);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 850;
}

.states-section {
  position: relative;
}

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

.state-card {
  min-height: 286px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.state-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}

.state-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.platform-section {
  width: 100%;
  max-width: none;
  padding: 72px max(24px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(135deg, rgba(208, 222, 255, 0.62), rgba(226, 255, 255, 0.58)),
    var(--air);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.platform-section h2 {
  margin-top: 16px;
  max-width: 740px;
}

.section-lead {
  max-width: 640px;
  margin-top: 22px;
}

.admin-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.admin-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(21, 0, 103, 0.14);
}

.admin-list strong {
  font-size: 17px;
}

.admin-list span {
  color: var(--ink-muted);
}

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

.admin-visual::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: 50%;
}

.admin-visual img {
  position: relative;
  z-index: 1;
  width: min(76%, 360px);
  opacity: 0.96;
  transform-origin: center;
  filter: drop-shadow(0 5px 10px rgba(47, 107, 255, 0.10));
  animation: shine-breathing-pulse 3.4s ease-in-out infinite alternate;
}

.admin-panel {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 2;
  width: min(280px, 76%);
  padding: 18px;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.admin-panel span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.admin-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.22;
}

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

.industry-card {
  position: relative;
  min-height: 260px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 255, 248, 0.16), transparent 31%),
    radial-gradient(circle at 84% 4%, rgba(47, 107, 255, 0.14), transparent 28%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  transform: translate(-8px, 8px) rotate(45deg);
  transition:
    opacity 420ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 84, 255, 0.22);
  box-shadow: 0 20px 46px rgba(0, 84, 255, 0.12);
}

.industry-card:hover::after {
  opacity: 0.72;
  transform: translate(2px, -2px) rotate(45deg);
}

.app-section {
  padding-top: 40px;
}

.app-access {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.app-access img {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(21, 0, 103, 0.13);
}

.app-access h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 46px);
}

.app-access p {
  margin-top: 10px;
  max-width: 720px;
}

.contact {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 20px;
  padding: 72px 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 148, 254, 0.38), transparent 34%),
    var(--midnight);
}

.contact-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.contact .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact h2 {
  margin-top: 0;
  color: #fff;
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 720;
}

.contact p {
  max-width: 610px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact .button,
.contact .btn {
  margin-top: 34px;
}

.site-footer {
  width: 100%;
  padding: 34px 24px;
  border-top: 1px solid rgba(21, 0, 103, 0.09);
  background: #fff;
}

.site-footer-inner {
  width: min(100%, var(--max-width));
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--midnight);
  font-size: 17px;
  font-weight: 780;
  text-decoration: none;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.42;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a,
.footer-links button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--midnight);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  border-color: rgba(0, 84, 255, 0.14);
  background: rgba(0, 84, 255, 0.05);
  color: var(--ultramarine);
}

.contact-modal-root {
  position: relative;
  z-index: 2000;
}

.contact-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact-modal-shell.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 0, 103, 0.72), rgba(0, 84, 255, 0.38)),
    rgba(6, 8, 28, 0.46);
}

.contact-dialog {
  position: relative;
  width: min(980px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  overflow: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.95)),
    var(--air);
  box-shadow:
    0 34px 92px rgba(9, 9, 40, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ultramarine), var(--mint), var(--skyblue));
}

.contact-modal-shell.is-open .contact-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-dialog.is-success {
  width: min(680px, calc(100% - 24px));
}

.contact-modal-open {
  overflow: hidden;
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--midnight);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.contact-close:hover {
  background: #fff;
  border-color: rgba(0, 84, 255, 0.22);
  transform: translateY(-1px);
}

.contact-close span {
  font-size: 28px;
  line-height: 1;
}

.contact-dialog-copy {
  max-width: 740px;
  padding-right: 32px;
}

.contact-dialog h2 {
  margin-top: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  font-weight: 620;
}

.contact-dialog-copy p {
  margin-top: 14px;
  font-size: 17px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: 22px;
}

.contact-form[hidden] {
  display: none;
}

.contact-form-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form > .contact-field:nth-of-type(3),
.contact-email-card,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-field {
  display: grid;
  gap: 8px;
  color: var(--midnight);
  font-size: 13px;
  font-weight: 780;
  opacity: 0;
  transform: translateY(12px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-field:nth-child(1) {
  animation-delay: 80ms;
}

.contact-field:nth-child(2) {
  animation-delay: 130ms;
}

.contact-form > .contact-field:nth-of-type(1) {
  animation-delay: 180ms;
}

.contact-form > .contact-field:nth-of-type(2) {
  animation-delay: 230ms;
}

.contact-form > .contact-field:nth-of-type(3) {
  animation-delay: 280ms;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 0, 103, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--midnight);
  font: inherit;
  font-size: 15px;
  font-weight: 540;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-field textarea {
  min-height: 104px;
  height: 104px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(0, 84, 255, 0.62);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 84, 255, 0.1);
}

.contact-email-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  margin-top: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  opacity: 0;
  transform: translateY(12px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) 330ms both;
}

.contact-email-card span {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 690;
}

.contact-email-card strong {
  grid-column: 1;
  color: rgba(21, 0, 103, 0.74);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 720;
  line-height: 1.05;
  word-break: break-word;
}

.contact-email-card button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(21, 0, 103, 0.12);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(0, 84, 255, 0.82);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.contact-submit {
  justify-self: center;
  min-width: 190px;
  opacity: 0;
  transform: translateY(12px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) 380ms both;
}

.contact-submit:disabled,
.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-status {
  min-height: 18px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
  text-align: center;
}

.contact-success {
  min-height: 360px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  animation: contact-success-enter 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-success-animation {
  position: relative;
  width: 124px;
  height: 124px;
  display: inline-grid;
  place-items: center;
}

.contact-success-ring {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 2px solid rgba(39, 255, 248, 0.62);
  animation: success-ring-pop 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.contact-success-ring::before,
.contact-success-ring::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(0, 84, 255, 0.22);
  border-radius: 50%;
  animation: success-ripple 900ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
}

.contact-success-ring::after {
  inset: -25px;
  border-color: rgba(39, 255, 248, 0.22);
  animation-delay: 260ms;
}

.contact-success-mark {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-button);
  box-shadow: 0 20px 42px rgba(0, 84, 255, 0.24);
  transform: scale(0.72);
  animation: success-mark-pop 520ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.contact-success-mark::after {
  content: "";
  width: 18px;
  height: 30px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  opacity: 0;
  transform: translateY(-3px) rotate(45deg) scale(0.72);
  animation: success-check-in 320ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.contact-success-spark {
  position: absolute;
  z-index: 0;
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: var(--mint);
  opacity: 0;
  transform-origin: center bottom;
  animation: success-spark 680ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

.spark-one {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.spark-two {
  top: 22px;
  right: 9px;
  background: var(--skyblue);
  transform: rotate(52deg);
  animation-delay: 360ms;
}

.spark-three {
  bottom: 14px;
  right: 17px;
  background: var(--periwinkle);
  transform: rotate(118deg);
  animation-delay: 430ms;
}

.spark-four {
  bottom: 20px;
  left: 12px;
  background: var(--skyblue);
  transform: rotate(-120deg);
  animation-delay: 390ms;
}

.contact-success h3 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 620;
  opacity: 0;
  transform: translateY(10px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) 540ms both;
}

.contact-success p {
  color: var(--ink-muted);
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) 620ms both;
}

.contact-success .button {
  opacity: 0;
  transform: translateY(10px);
  animation: contact-field-arrive 420ms cubic-bezier(0.16, 1, 0.3, 1) 700ms both;
}

.contact-success[hidden] {
  display: none;
}

@keyframes contact-field-arrive {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-success-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes success-ring-pop {
  from {
    opacity: 0;
    transform: scale(0.66);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes success-ripple {
  from {
    opacity: 0.72;
    transform: scale(0.62);
  }
  to {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes success-mark-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  68% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes success-check-in {
  from {
    opacity: 0;
    transform: translateY(-3px) rotate(45deg) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translateY(-3px) rotate(45deg) scale(1);
  }
}

@keyframes success-spark {
  0% {
    opacity: 0;
    scale: 0.2 0.4;
  }
  42% {
    opacity: 1;
    scale: 1 1;
  }
  100% {
    opacity: 0;
    scale: 0.3 0.3;
  }
}

/* Compatibility for the existing industry pages */
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1;
  font-weight: 620;
}

.hero-content p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 19px;
}

.ring-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ring {
  position: absolute;
  border: 1px solid rgba(116, 150, 255, 0.24);
  border-radius: 50%;
  opacity: 0.42;
}

.ring-1 {
  width: min(48vw, 520px);
  aspect-ratio: 1;
  top: 14%;
  left: -8%;
  background: linear-gradient(135deg, rgba(208, 222, 255, 0.42), rgba(226, 255, 255, 0.18));
}

.ring-2 {
  width: min(54vw, 640px);
  aspect-ratio: 1;
  right: -10%;
  bottom: -18%;
}

.ring-3 {
  width: min(28vw, 360px);
  aspect-ratio: 1;
  top: 34%;
  left: 58%;
  border-color: rgba(39, 255, 248, 0.22);
}

.about-content {
  max-width: 820px;
  display: grid;
  gap: 18px;
}

.about-content h3 {
  font-size: 24px;
}

.about-content ul {
  padding-left: 20px;
  color: var(--ink-muted);
}

.about-content li {
  margin-bottom: 8px;
  font-size: 17px;
}

.lead-text {
  color: var(--midnight);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.about-content > p:not(.lead-text) {
  color: var(--midnight);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.how-it-works-container {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
}

.hiw-intro h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.hiw-intro p {
  margin-top: 14px;
  font-size: 19px;
}

.hiw-steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(21, 0, 103, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient-button);
  font-weight: 800;
}

.step-content h4 {
  font-size: 20px;
  text-transform: none;
}

.step-content p {
  margin-top: 4px;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: 28px;
}

.zone-card {
  min-width: 0;
  overflow: hidden;
}

.zone-card h3 {
  color: var(--midnight);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.zone-card p {
  overflow-wrap: break-word;
  hyphens: manual;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.metric-card.reveal-ready,
.flow-card.reveal-ready,
.zone-card.reveal-ready,
.privacy-card.reveal-ready,
.privacy-label-card.reveal-ready,
.privacy-detail-panel.reveal-ready,
.app-access.reveal-ready {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.metric-card.reveal-ready.is-visible,
.flow-card.reveal-ready.is-visible,
.zone-card.reveal-ready.is-visible,
.privacy-card.reveal-ready.is-visible,
.privacy-label-card.reveal-ready.is-visible,
.privacy-detail-panel.reveal-ready.is-visible,
.app-access.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .metric-card.reveal-ready.is-visible:hover,
.motion-ready .flow-card.reveal-ready.is-visible:hover,
.motion-ready .zone-card.reveal-ready.is-visible:hover,
.motion-ready .privacy-card.reveal-ready.is-visible:hover,
.motion-ready .privacy-label-card.reveal-ready.is-visible:hover {
  transform: translateY(-4px) scale(1) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.state-card.reveal-ready {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  clip-path: inset(7% 0 0 0 round 8px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.state-card.reveal-ready img {
  opacity: 0;
  transform: scale(0.965);
  filter: drop-shadow(0 5px 10px rgba(47, 107, 255, 0.08));
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.state-card.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round 8px);
  box-shadow: 0 18px 42px rgba(72, 88, 138, 0.09);
}

.state-card.reveal-ready.is-visible img {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 8px 16px rgba(47, 107, 255, 0.14));
}

.industry-card.reveal-ready {
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms ease,
    box-shadow 420ms ease,
    background 420ms ease;
}

.industry-card.reveal-ready.is-visible {
  transform: translateY(0) scale(1);
  border-color: rgba(47, 107, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 20px 48px rgba(47, 107, 255, 0.10),
    0 0 0 1px rgba(47, 107, 255, 0.03);
  animation: industry-pressable-glow 3.2s ease-in-out infinite alternate;
}

.industry-card.reveal-ready.is-visible::before {
  opacity: 1;
}

.industry-card.reveal-ready.is-visible::after {
  opacity: 0.42;
  transform: translate(0, 0) rotate(45deg);
}

.industry-card.reveal-ready.is-visible:hover {
  transform: translateY(-4px) scale(1) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(0, 84, 255, 0.24);
  box-shadow:
    0 24px 58px rgba(47, 107, 255, 0.16),
    0 0 0 1px rgba(47, 107, 255, 0.12);
  transition-delay: 0ms;
}

.industry-card.reveal-ready.is-visible:hover::after {
  opacity: 0.78;
  transform: translate(2px, -2px) rotate(45deg);
}

.state-card:nth-child(1) { transition-delay: 0ms; }
.state-card:nth-child(1) img { transition-delay: 90ms; }
.state-card:nth-child(2) { transition-delay: 80ms; }
.state-card:nth-child(2) img { transition-delay: 170ms; }
.state-card:nth-child(3) { transition-delay: 160ms; }
.state-card:nth-child(3) img { transition-delay: 250ms; }
.state-card:nth-child(4) { transition-delay: 240ms; }
.state-card:nth-child(4) img { transition-delay: 330ms; }
.state-card:nth-child(5) { transition-delay: 320ms; }
.state-card:nth-child(5) img { transition-delay: 410ms; }

.industry-card:nth-child(1) { transition-delay: 0ms; }
.industry-card:nth-child(2) { transition-delay: 70ms; }
.industry-card:nth-child(3) { transition-delay: 140ms; }
.industry-card:nth-child(4) { transition-delay: 210ms; }

@keyframes industry-pressable-glow {
  from {
    box-shadow:
      0 18px 42px rgba(47, 107, 255, 0.08),
      0 0 0 1px rgba(47, 107, 255, 0.03);
  }
  to {
    box-shadow:
      0 24px 58px rgba(47, 107, 255, 0.15),
      0 0 0 1px rgba(47, 107, 255, 0.12);
  }
}

@keyframes hero-line-slow-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-support-slow-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shine-breathing-pulse {
  from {
    transform: scale(0.985);
    opacity: 0.96;
    filter: drop-shadow(0 5px 10px rgba(47, 107, 255, 0.10));
  }
  to {
    transform: scale(1.035);
    opacity: 1;
    filter: drop-shadow(0 8px 16px rgba(47, 107, 255, 0.18));
  }
}

@media (max-width: 1080px) {
  .state-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-grid,
  .industry-grid,
  .privacy-grid,
  .privacy-label-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-hero,
  .privacy-detail-grid,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-page-layout,
  .contact-page-steps {
    grid-template-columns: 1fr;
  }

  .privacy-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .contact-page-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .contact-page-hero::before {
    top: 88px;
    width: min(58vw, 360px);
  }

  .privacy-hero-panel,
  .contact-page-panel {
    max-width: 560px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .flow-grid.flow-list {
    max-width: 780px;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .flow-grid::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 74px;
    padding: 0 14px;
  }

  .flow-section {
    display: block;
  }

  .flow-section .solo-heading h2 {
    max-width: 780px;
  }

  .flow-note {
    max-width: 940px;
    margin: 36px auto 0;
    text-align: center;
  }

  .site-header-inner {
    width: 100%;
  }

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

  .brand span {
    font-size: 16px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(21, 0, 103, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a,
  .site-nav button {
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 4px;
    padding: 4px 0 4px 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 285px;
  }

  .hero-inner {
    padding-top: 8px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.1;
  }

  .hero-copy {
    max-width: 560px;
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.42;
  }

  .hero-mark {
    left: 50%;
    right: auto;
    bottom: 28px;
    width: 250px;
    max-width: none;
    opacity: 0.12;
    translate: -50% 0;
  }

  .signal-ring {
    left: 50%;
    right: auto;
    bottom: 8px;
    width: 430px;
    translate: -50% 0;
  }

  .split-heading,
  .platform-layout,
  .how-it-works-container,
  .app-access {
    grid-template-columns: 1fr;
  }

  .privacy-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .flow-list .flow-card {
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 16px;
    padding: 16px;
  }

  .flow-list .flow-number {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .platform-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .app-access .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(calc(100% - 28px), var(--max-width));
    padding: 48px 0;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 112px;
    padding-bottom: 270px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.4vw, 34px);
  }

  .hero-mark {
    left: 50%;
    right: auto;
    bottom: 26px;
    width: 230px;
    opacity: 0.12;
    translate: -50% 0;
  }

  .definition-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .definition-copy .lead-text {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.28;
  }

  .flow-grid,
  .state-grid,
  .industry-grid,
  .privacy-grid,
  .privacy-label-grid {
    grid-template-columns: 1fr;
  }

  .privacy-hero,
  .contact-page-hero {
    padding-top: 112px;
  }

  .privacy-hero-copy h1,
  .contact-page-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .contact-page-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-page-panel {
    padding: 20px;
  }

  .contact-page-steps {
    gap: 10px;
  }

  .contact-page-steps article {
    min-height: 0;
    padding: 16px;
  }

  .privacy-label-card {
    min-height: 0;
  }

  .privacy-detail-panel {
    min-height: 0;
    padding: 20px;
  }

  .app-privacy-labels {
    padding: 52px 16px;
  }

  .site-footer {
    padding: 28px 16px;
  }

  .footer-links {
    display: grid;
    justify-content: stretch;
  }

  .footer-links a,
  .footer-links button {
    justify-content: flex-start;
  }

  .flow-list .flow-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-list .flow-number {
    grid-row: auto;
  }

  .flow-list .flow-card p {
    grid-column: auto;
  }

  .flow-note {
    max-width: 940px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 22px;
  }

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

  .state-card img {
    width: 132px;
    height: 132px;
  }

  .button,
  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 8px;
  }

  .contact-modal-shell {
    padding: 6px;
    place-items: center;
  }

  .contact-dialog {
    width: 100%;
    max-height: calc(100svh - 12px);
    padding: 18px 14px;
  }

  .contact-dialog-copy {
    padding-right: 40px;
  }

  .contact-dialog h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .contact-dialog-copy p {
    margin-top: 8px;
    font-size: 15px;
  }

  .contact-form {
    gap: 9px;
    margin-top: 14px;
  }

  .contact-field {
    gap: 5px;
    font-size: 12px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .contact-field textarea {
    min-height: 76px;
    height: 76px;
  }

  .contact-form,
  .contact-form-grid,
  .contact-email-card {
    grid-template-columns: 1fr;
  }

  .contact-form-grid,
  .contact-form > .contact-field,
  .contact-email-card,
  .contact-submit {
    grid-column: 1;
  }

  .contact-email-card button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .contact-email-card {
    gap: 4px 10px;
    padding: 9px 10px;
  }

  .contact-email-card strong {
    font-size: 15px;
  }

  .contact-submit {
    min-width: 180px;
  }

  .admin-visual {
    min-height: 340px;
  }

  .app-access {
    padding: 18px;
  }
}

/* Landing page refresh */
body {
  background: #F3F4F7;
}

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

.site-header {
  height: 100px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 46px rgba(21, 0, 103, 0.08);
}

.brand {
  gap: 0;
}

.brand img {
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 10px 18px rgba(0, 84, 255, 0.16));
}

.site-nav {
  gap: 8px;
}

.site-nav a,
.site-nav button {
  min-height: 44px;
  padding: 0 14px;
  font-size: 15px;
}

.nav-contact {
  padding: 0 18px !important;
}

.hero {
  width: 100%;
  max-width: none;
  min-height: 0;
  display: block;
  padding: 40px max(24px, calc((100vw - 1580px) / 2)) 48px;
  background: #FFFFFF;
}

.hero::after,
.hero-field {
  display: none;
}

.hero-inner {
  width: min(1580px, 100%);
  display: grid;
  grid-template-columns: minmax(680px, 0.9fr) minmax(560px, 0.82fr);
  gap: clamp(38px, 3.6vw, 64px);
  align-items: center;
  padding-top: 0;
  margin: 0 auto;
  text-align: left;
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--midnight);
  font-size: clamp(38px, 3.7vw, 50px);
  line-height: 1.08;
  font-weight: 680;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

@media (min-width: 861px) {
  .hero h1 span {
    white-space: nowrap;
  }
}

.hero h1 span + span {
  margin-top: clamp(7px, 0.75vw, 11px);
}

.hero-copy {
  max-width: 780px;
  margin-top: 28px;
  color: var(--midnight);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.42;
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-platform-figure {
  justify-self: end;
  width: clamp(560px, 44vw, 780px);
  aspect-ratio: 1;
  margin: 0 clamp(-96px, -4vw, -36px) 0 0;
  overflow: hidden;
  contain: layout;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.hero-platform-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1.17);
  transform-origin: center;
}

.flow-section,
.environment-section,
.ownership-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 112px max(24px, calc((100vw - var(--max-width)) / 2));
  background: #FFFFFF;
}

.flow-section {
  display: block;
  border-top: 1px solid rgba(21, 0, 103, 0.07);
  text-align: center;
}

.flow-heading {
  max-width: 980px;
  display: grid;
  gap: 10px;
  margin: 0 auto;
  color: var(--midnight);
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 720;
  text-align: center;
}

.flow-heading span {
  display: block;
}

.flow-art-figure {
  display: none;
}

.flow-art-image {
  width: 100%;
  height: auto;
  display: block;
}

.flow-mobile-summary {
  width: min(100%, var(--max-width));
  display: block;
  margin: clamp(52px, 6vw, 84px) auto 0;
}

.flow-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 66px);
  align-items: start;
  margin: 0 auto;
}

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--midnight);
  transition: transform 220ms ease;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(64px, 6vw, 82px);
  right: clamp(-74px, -4vw, -34px);
  width: clamp(44px, 4vw, 80px);
  height: 2px;
  background: rgba(21, 0, 103, 0.16);
}

.motion-ready .flow-step:hover {
  transform: translateY(-5px);
}

.flow-icon {
  width: clamp(132px, 12vw, 164px);
  height: clamp(132px, 12vw, 164px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #F0F4FF;
  box-shadow: inset 0 0 0 1px rgba(116, 150, 255, 0.08);
}

.flow-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: #4E83C2;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step-number {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border-radius: 50%;
  color: #FFFFFF;
  background: var(--midnight);
  font-size: 36px;
  line-height: 1;
  font-weight: 820;
}

.flow-step h3 {
  margin-top: 22px;
  color: var(--midnight);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1;
  font-weight: 780;
  text-transform: uppercase;
}

.flow-step p {
  max-width: 270px;
  margin-top: 16px;
  color: var(--midnight);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.38;
}

.trust-strip {
  width: min(100%, var(--max-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(70px, 7vw, 96px) auto 0;
  color: var(--midnight);
}

.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-left: 1px solid rgba(21, 0, 103, 0.18);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.12;
  font-weight: 780;
  text-align: center;
  white-space: nowrap;
}

.trust-strip span:first-child {
  border-left: 0;
}

.environment-section {
  padding-top: 72px;
  padding-bottom: 128px;
}

.environment-inner {
  width: min(100%, var(--max-width));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(80px, 10vw, 150px);
  align-items: center;
  margin: 0 auto;
}

.environment-copy h2 {
  max-width: 900px;
  color: var(--midnight);
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 680;
  text-wrap: balance;
}

.environment-copy h2 span {
  display: block;
}

.environment-copy h2 span + span {
  margin-top: clamp(14px, 1.4vw, 20px);
}

.environment-body {
  max-width: 780px;
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.environment-body p {
  color: var(--midnight);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.46;
}

.environment-logo {
  justify-self: end;
  width: clamp(420px, 36vw, 560px);
  display: block;
  transform: translateX(28px);
}

.environment-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(0, 84, 255, 0.16));
}

.ownership-section {
  border-top: 1px solid rgba(21, 0, 103, 0.07);
}

.privacy-page-simple {
  min-height: calc(100svh - 100px);
  padding-top: 174px;
}

.ownership-heading {
  width: min(100%, var(--max-width));
  display: block;
  margin: 0 auto;
}

.ownership-heading .section-kicker {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
  color: rgba(21, 0, 103, 0.58);
  font-size: 13px;
}

.ownership-heading h1,
.ownership-heading h2 {
  max-width: 920px;
  margin-top: 0;
  color: var(--midnight);
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 720;
  text-wrap: balance;
}

.ownership-subtitle {
  max-width: 980px;
  display: grid;
  gap: 5px;
  padding-top: 24px;
}

.ownership-subtitle p {
  color: var(--midnight);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.34;
}

.ownership-pillars {
  width: min(100%, var(--max-width));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.6vw, 46px);
  margin: 44px auto 0;
}

.ownership-pillar {
  min-height: clamp(210px, 16vw, 250px);
  padding: clamp(24px, 2vw, 30px);
  display: grid;
  grid-template-rows: var(--card-title-row) auto;
  row-gap: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 242, 0.82)),
    #fff;
  box-shadow: 12px 16px 30px rgba(17, 23, 42, 0.1);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.motion-ready .ownership-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 0, 103, 0.16);
  box-shadow: 16px 22px 42px rgba(17, 23, 42, 0.13);
}

.ownership-pillar h2,
.ownership-pillar h3 {
  position: relative;
  height: 100%;
  padding-bottom: 18px;
  margin: 0;
  min-height: 0;
  color: var(--midnight);
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.14;
  font-weight: 760;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.ownership-pillar p {
  margin-top: 0;
  color: rgba(21, 0, 103, 0.78);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.4;
}

.ownership-pillar h2::after,
.ownership-pillar h3::after {
  content: "";
  width: 112px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  margin-top: 0;
  background: var(--ultramarine);
}

.industries-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 94px max(24px, calc((100vw - var(--max-width)) / 2));
  background: #F3F4F7;
}

.industry-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.industry-card {
  background: #FFFFFF;
}

.industry-card,
.zone-card,
.privacy-card,
.privacy-label-card,
.privacy-detail-panel {
  min-height: 300px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: 2px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, #FFFEFA 0%, #F5F2EA 100%);
  box-shadow:
    14px 0 18px rgba(16, 14, 28, 0.18),
    0 24px 62px rgba(55, 74, 130, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.industry-card::before,
.industry-card::after {
  display: none;
}

.industry-card.reveal-ready.is-visible,
.zone-card.reveal-ready.is-visible,
.privacy-card.reveal-ready.is-visible,
.privacy-label-card.reveal-ready.is-visible,
.privacy-detail-panel.reveal-ready.is-visible {
  border-color: rgba(21, 0, 103, 0.08);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, #FFFEFA 0%, #F5F2EA 100%);
  box-shadow:
    14px 0 18px rgba(16, 14, 28, 0.18),
    0 24px 62px rgba(55, 74, 130, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  animation: none;
}

.industry-card:hover,
.zone-card:hover,
.privacy-card:hover,
.privacy-label-card:hover,
.privacy-detail-panel:hover,
.industry-card.reveal-ready.is-visible:hover,
.zone-card.reveal-ready.is-visible:hover,
.privacy-card.reveal-ready.is-visible:hover,
.privacy-label-card.reveal-ready.is-visible:hover {
  border-color: rgba(21, 0, 103, 0.16);
  box-shadow:
    20px 0 24px rgba(16, 14, 28, 0.2),
    0 32px 78px rgba(55, 74, 130, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.industry-card span,
.privacy-label-card span {
  color: rgba(21, 0, 103, 0.66);
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 0;
  font-size: 13px;
}

.industry-card h3,
.zone-card h3,
.privacy-card h3,
.privacy-label-card h3,
.privacy-detail-panel h2 {
  margin-top: 18px;
  color: var(--midnight);
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1.12;
  font-weight: 820;
}

.zone-card h3 {
  margin-top: 0;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.18;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.zone-card {
  min-height: 286px;
  padding: clamp(24px, 2vw, 30px);
  display: grid;
  grid-template-rows: var(--zone-card-title-row) auto;
  row-gap: clamp(20px, 2vw, 28px);
}

.zone-card p {
  margin: 0;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.4;
  overflow-wrap: break-word;
  hyphens: manual;
}

.industry-card h3::after,
.zone-card h3::after,
.privacy-card h3::after,
.privacy-label-card h3::after {
  content: "";
  width: min(112px, 58%);
  height: 4px;
  display: block;
  margin-top: 0;
  background: var(--ultramarine);
}

.industry-card p,
.zone-card p,
.privacy-card p,
.privacy-label-card p,
.privacy-detail-panel p {
  margin-top: 28px;
  color: rgba(8, 5, 26, 0.8);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.32;
}

.zone-card h3 {
  position: relative;
  height: 100%;
  padding-bottom: 18px;
}

.zone-card h3::after {
  position: absolute;
  left: 0;
  bottom: 0;
}

.zone-card p {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.4;
}

.zones-grid,
.industry-grid {
  gap: clamp(24px, 3.5vw, 42px);
}

.site-footer {
  min-height: 116px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: #FFFFFF;
}

.site-footer-inner {
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
}

.footer-brand {
  gap: 0;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 10px 18px rgba(0, 84, 255, 0.16));
}

.site-footer p {
  max-width: 420px;
  color: var(--midnight);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 650;
}

.footer-links {
  gap: 16px;
}

.footer-links a,
.footer-links button {
  min-height: 44px;
  padding: 0;
  color: var(--midnight);
  font-size: 17px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links button:hover {
  background: transparent;
}

@media (max-width: 1240px) {
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy-panel,
  .hero-platform-figure {
    justify-self: center;
  }

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

  .hero-platform-figure {
    width: min(88vw, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 128px;
  }

  .hero-inner {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy-panel,
  .hero-platform-figure {
    justify-self: center;
  }

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

  .hero-platform-figure {
    width: min(88vw, 620px);
    margin: 0 auto;
  }

  .flow-steps,
  .ownership-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .trust-strip span {
    white-space: normal;
  }

  .environment-inner,
  .ownership-heading,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .environment-logo {
    justify-self: start;
    width: min(62vw, 460px);
    transform: none;
  }

  .ownership-subtitle {
    padding-top: 20px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 82px;
    padding: 0 16px;
  }

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

  .site-nav {
    top: 92px;
  }

  .hero {
    min-height: auto;
    padding: 124px 18px 76px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .hero-copy-panel {
    justify-self: center;
  }

  .hero h1 {
    font-size: clamp(36px, 8.8vw, 52px);
    line-height: 1.06;
    margin: 0 auto;
  }

  .hero h1 span + span {
    margin-top: clamp(5px, 1.8vw, 10px);
  }

  .hero-copy {
    max-width: 620px;
    margin-top: 24px;
    font-size: clamp(17px, 4.5vw, 21px);
  }

  .hero-platform-figure {
    justify-self: center;
    width: min(94vw, 560px);
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .hero-platform-image {
    transform: scale(1.13);
  }

  .flow-section,
  .environment-section,
  .ownership-section,
  .industries-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .flow-art-figure {
    width: min(100%, 720px);
  }

  .flow-mobile-summary {
    width: min(100%, 520px);
    display: block;
    margin: 48px auto 0;
  }

  .flow-mobile-summary .flow-icon {
    width: 112px;
    height: 112px;
  }

  .flow-step::after {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .trust-strip span {
    min-height: 62px;
    border-left: 0;
    border-top: 1px solid rgba(21, 0, 103, 0.14);
    white-space: normal;
  }

  .trust-strip span:first-child {
    border-top: 0;
  }

  .ownership-pillars,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .privacy-page-simple {
    padding-top: 128px;
  }
}

@media (max-width: 640px) {
  .flow-section,
  .environment-section,
  .ownership-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .industries-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ownership-heading h1,
  .ownership-heading h2 {
    font-size: var(--landing-heading-size);
  }

  .ownership-subtitle {
    padding-top: 18px;
  }

  .ownership-subtitle p {
    font-size: 17px;
    line-height: 1.38;
  }

  .ownership-pillars {
    gap: 22px;
    margin-top: 34px;
  }

  .ownership-pillar {
    min-height: auto;
    padding: 28px;
    grid-template-rows: auto;
  }

  .ownership-pillar h2,
  .ownership-pillar h3 {
    height: auto;
    min-height: auto;
    padding-bottom: 24px;
    font-size: 28px;
  }

  .ownership-pillar p {
    margin-top: 22px;
    font-size: 16px;
  }

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

  .flow-icon {
    width: 128px;
    height: 128px;
  }

  .flow-step-number {
    width: 74px;
    height: 74px;
    font-size: 31px;
  }

  .environment-logo {
    width: min(84vw, 380px);
    justify-self: center;
  }

  .footer-links {
    gap: 8px 18px;
  }
}

/* Real-world spaces showcase */
.industries-section {
  background: #FFFFFF;
  padding: clamp(72px, 7vw, 118px) max(18px, calc((100vw - 1600px) / 2)) clamp(78px, 8vw, 132px);
}

.industry-showcase-image {
  width: min(100%, 1500px);
  margin: 0 auto;
}

.industry-showcase-image img {
  width: 100%;
  height: auto;
}

.industry-showcase h2 {
  max-width: 1120px;
  margin: 0 0 clamp(58px, 7vw, 106px);
  color: var(--midnight);
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1.04;
  font-weight: 820;
}

.industry-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 3.2vw, 54px);
  align-items: start;
}

.industry-space-card,
.industry-space-card.reveal-ready.is-visible {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--midnight);
  overflow: visible;
  text-decoration: none;
  animation: none;
}

.industry-space-card::before,
.industry-space-card::after,
.industry-space-card h3::after {
  display: none;
}

.industry-space-card img {
  width: 100%;
  aspect-ratio: 645 / 560;
  display: block;
  border-radius: clamp(18px, 1.5vw, 28px);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 42px rgba(14, 21, 48, 0.11);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.industry-space-card h3 {
  margin: clamp(30px, 3.2vw, 48px) 0 0;
  color: var(--midnight);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.15;
  font-weight: 820;
}

.industry-space-card p {
  max-width: 360px;
  margin: clamp(16px, 1.7vw, 24px) 0 0;
  color: var(--midnight);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.2;
  font-weight: 520;
}

.motion-ready .industry-space-card:hover,
.motion-ready .industry-space-card.reveal-ready.is-visible:hover {
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-4px);
}

.motion-ready .industry-space-card:hover img,
.motion-ready .industry-space-card.reveal-ready.is-visible:hover img {
  transform: translateY(-4px);
  box-shadow: 0 30px 72px rgba(14, 21, 48, 0.17);
}

.industry-space-card.reveal-ready {
  transform: translateY(22px);
}

.industry-space-card.reveal-ready.is-visible {
  transform: none;
}

@media (max-width: 1180px) {
  .industry-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px clamp(28px, 5vw, 58px);
  }

  .industry-space-card p {
    max-width: 430px;
  }
}

@media (max-width: 720px) {
  .industry-showcase-image {
    width: min(100%, 760px);
  }

  .industry-showcase h2 {
    margin-bottom: 42px;
    font-size: clamp(42px, 11vw, 58px);
  }

  .industry-showcase-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .industry-space-card img {
    border-radius: 22px;
  }

  .industry-space-card h3 {
    max-width: 460px;
    margin-top: 26px;
    font-size: clamp(30px, 8vw, 40px);
  }

  .industry-space-card p {
    max-width: 390px;
    margin-top: 14px;
    font-size: clamp(22px, 6vw, 28px);
  }
}

/* Individual industry pages */
.industry-detail-page {
  background: #fff;
}

.industry-detail-page .section {
  width: min(calc(100% - 96px), 1600px);
}

.industry-hero {
  min-height: auto;
  padding-top: clamp(120px, 11vw, 154px);
  padding-bottom: clamp(24px, 4vw, 42px);
}

.industry-hero-compact {
  padding-top: clamp(112px, 10vw, 140px);
}

.industry-hero-copy {
  max-width: 900px;
}

.industry-hero h1 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 680;
  text-wrap: balance;
}

.industry-subtitle {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--midnight);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.34;
  font-weight: 560;
}

.industry-message {
  padding-top: 0;
  padding-bottom: clamp(28px, 3vw, 44px);
}

.industry-copy-block {
  max-width: 900px;
  display: grid;
  gap: 12px;
}

.industry-copy-block p,
.industry-info-section > p,
.industry-info-section > div > p {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.5;
}

.industry-info-section > div > p + p {
  margin-top: 16px;
}

.industry-reason-grid + p,
.industry-card-grid + p,
.industry-reason-grid + .below-grid-heading {
  margin-top: clamp(28px, 3vw, 40px);
}

.below-grid-heading {
  margin-bottom: 14px;
  color: var(--midnight);
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.12;
  font-weight: 760;
}

.industry-info-section > p + p {
  margin-top: 12px;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  margin-top: clamp(28px, 4vw, 42px);
}

.industry-copy-card,
.industry-reason-grid article {
  min-height: 220px;
  padding: clamp(24px, 1.9vw, 30px);
  display: grid;
  grid-template-rows: var(--industry-card-title-row) auto;
  row-gap: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(21, 0, 103, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 242, 0.82)),
    #fff;
  box-shadow: 12px 16px 30px rgba(17, 23, 42, 0.1);
}

.industry-copy-card h2,
.industry-reason-grid h3 {
  position: relative;
  height: 100%;
  padding-bottom: 18px;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  color: var(--midnight);
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.12;
  font-weight: 760;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.industry-copy-card h2::after,
.industry-reason-grid h3::after {
  content: "";
  width: 112px;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  margin: 0;
  background: var(--ultramarine);
}

.industry-copy-card p,
.industry-reason-grid p {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.4;
}

.industry-reason-grid p + p {
  margin-top: 12px;
}

.industry-info-section {
  padding-top: clamp(10px, 2.4vw, 28px);
}

.industry-info-section h2,
.industry-cta h2 {
  max-width: 900px;
  margin: 0;
  color: var(--midnight);
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.08;
  font-weight: 680;
  text-wrap: balance;
}

.industry-info-section h2 + p,
.industry-info-section h2 + .industry-reason-grid,
.industry-info-section h2 + div {
  margin-top: 24px;
}

.industry-points {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 1.35em;
  color: var(--midnight);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.45;
}

.industry-info-with-media,
.industry-comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.industry-info-with-media {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: start;
}

.industry-phone-figure,
.industry-comparison-figure {
  margin: 0;
}

.industry-phone-figure {
  overflow: visible;
  justify-self: center;
  width: min(100%, 360px);
}

.industry-phone-figure img {
  position: static;
  left: auto;
  width: min(100%, 330px);
  max-width: 330px;
  max-height: min(70vh, 720px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: none;
}

.industry-comparison-figure img {
  width: min(100%, 620px);
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(21, 0, 103, 0.12);
  box-shadow: 20px 24px 38px rgba(17, 23, 42, 0.1);
}

.industry-comparison-figure figcaption {
  margin-top: 18px;
  color: var(--midnight);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.18;
  font-weight: 680;
  text-align: center;
}

.industry-reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.industry-reason-grid article {
  min-height: 280px;
  grid-template-rows: var(--reason-card-title-row) auto;
}

.industry-cta {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(32px, 5vw, 58px);
  padding: clamp(54px, 6vw, 78px) 24px;
  background: var(--midnight);
  color: #fff;
  text-align: center;
}

.industry-detail-page .industry-cta {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.industry-cta h2 {
  margin: 0 auto;
  color: #fff;
}

.industry-cta p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 1.8vw, 27px);
  line-height: 1.2;
  font-weight: 560;
}

.industry-cta .button {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .industry-card-grid,
  .industry-reason-grid,
  .industry-info-with-media,
  .industry-comparison-section {
    grid-template-columns: 1fr;
  }

  .industry-copy-card,
  .industry-reason-grid article {
    min-height: 0;
    grid-template-rows: auto;
  }
}

@media (max-width: 640px) {
  .industry-detail-page .section {
    width: min(calc(100% - 28px), 1180px);
  }

  .industry-hero {
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .industry-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.06;
  }

  .industry-subtitle {
    margin-top: 16px;
    font-size: clamp(18px, 5vw, 22px);
  }

  .industry-copy-card,
  .industry-reason-grid article {
    padding: 20px;
  }

  .industry-copy-card h2,
  .industry-reason-grid h3 {
    height: auto;
    min-height: auto;
    padding-bottom: 24px;
    font-size: clamp(21px, 6vw, 25px);
  }

  .industry-info-section h2,
  .industry-cta h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .industry-phone-figure {
    overflow: visible;
    width: min(100%, 300px);
  }

  .industry-phone-figure img {
    width: min(100%, 280px);
    max-width: 280px;
    max-height: 620px;
  }

  .industry-detail-page .industry-cta {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .site-footer {
    min-height: auto;
    padding: 24px 16px;
  }

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

/* Card rhythm polish */
.ownership-pillar,
.industry-card,
.industry-copy-card,
.industry-reason-grid article,
.zone-card,
.privacy-card,
.privacy-label-card,
.privacy-detail-panel {
  display: grid;
  align-items: start;
  align-content: start;
  row-gap: clamp(18px, 1.35vw, 24px);
  padding: clamp(28px, 2vw, 34px);
}

.ownership-pillar {
  min-height: 250px;
  grid-template-rows: var(--industry-card-title-row) auto;
}

.industry-copy-card {
  min-height: 250px;
  grid-template-rows: var(--industry-card-title-row) auto;
}

.industry-reason-grid article {
  min-height: 330px;
  grid-template-rows: var(--reason-card-title-row) auto;
}

.zone-card {
  min-height: 250px;
  grid-template-rows: var(--industry-card-title-row) auto;
}

.industry-card,
.privacy-card,
.privacy-label-card,
.privacy-detail-panel {
  min-height: 250px;
  grid-template-rows: var(--industry-card-title-row) auto;
}

.ownership-pillar h2,
.ownership-pillar h3,
.industry-card h3,
.industry-copy-card h2,
.industry-reason-grid h3,
.zone-card h3,
.privacy-card h3,
.privacy-label-card h3,
.privacy-detail-panel h2 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0 0 18px;
  color: var(--midnight);
  font-size: clamp(22px, 1.45vw, 28px);
  line-height: 1.12;
  font-weight: 780;
  text-wrap: balance;
}

.ownership-pillar h2::after,
.ownership-pillar h3::after,
.industry-card h3::after,
.industry-copy-card h2::after,
.industry-reason-grid h3::after,
.zone-card h3::after,
.privacy-card h3::after,
.privacy-label-card h3::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(112px, 58%);
  height: 4px;
  display: block;
  margin: 0;
  background: var(--midnight);
}

.industry-cta h2 {
  max-width: 980px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 680;
}

.industry-cta p {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.18;
}

.ownership-pillar p,
.industry-card p,
.industry-copy-card p,
.industry-reason-grid p,
.zone-card p,
.privacy-card p,
.privacy-label-card p,
.privacy-detail-panel p {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.38;
}

.industry-reason-grid p + p,
.industry-card p + p,
.zone-card p + p,
.privacy-card p + p,
.privacy-label-card p + p,
.privacy-detail-panel p + p {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .ownership-pillar,
  .industry-card,
  .industry-copy-card,
  .industry-reason-grid article,
  .zone-card,
  .privacy-card,
  .privacy-label-card,
  .privacy-detail-panel {
    min-height: 0;
    grid-template-rows: auto;
  }

  .ownership-pillar h2,
  .ownership-pillar h3,
  .industry-card h3,
  .industry-copy-card h2,
  .industry-reason-grid h3,
  .zone-card h3,
  .privacy-card h3,
  .privacy-label-card h3,
  .privacy-detail-panel h2 {
    height: auto;
    padding-bottom: 18px;
    font-size: clamp(20px, 5.6vw, 24px);
  }

  .ownership-pillar p,
  .industry-card p,
  .industry-copy-card p,
  .industry-reason-grid p,
  .zone-card p,
  .privacy-card p,
  .privacy-label-card p,
  .privacy-detail-panel p {
    font-size: clamp(15px, 4.2vw, 17px);
  }

  .industry-cta h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .industry-cta p {
    font-size: clamp(21px, 5.5vw, 26px);
  }
}

/* June 10 consistency pass */
.hero-inner {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.86fr);
  gap: clamp(52px, 6vw, 104px);
}

.hero h1 {
  max-width: 632px;
  font-size: clamp(27px, 2.56vw, 38px);
  line-height: 1.1;
}

.hero-platform-figure {
  width: clamp(624px, 48vw, 912px);
  margin-top: 38px;
  margin-right: 0;
}

.environment-logo .shine-zone-active-gif {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transform: scale(1.08);
  transform-origin: center;
}

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

.flow-art-figure {
  width: min(100%, 1180px);
  display: block;
  margin: 0 auto;
}

.flow-art-image {
  width: 100%;
  height: auto;
  display: block;
}

.flow-mobile-summary {
  display: none;
}

.environment-copy h2 span + span {
  margin-top: clamp(22px, 2.1vw, 34px);
}

.industry-showcase-image {
  width: min(100%, 1540px);
}

.privacy-intro-section,
.privacy-visibility-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(84px, 8vw, 132px) max(48px, calc((100vw - 1900px) / 2));
  background: #FFFFFF;
}

.privacy-page-simple {
  padding-left: max(48px, calc((100vw - 1900px) / 2));
  padding-right: max(48px, calc((100vw - 1900px) / 2));
}

.privacy-intro-section {
  padding-top: clamp(150px, 13vw, 190px);
}

.privacy-intro-inner,
.privacy-visibility-inner {
  width: min(100%, 1900px);
  margin: 0 auto;
}

.privacy-page-simple .ownership-heading,
.privacy-page-simple .ownership-pillars {
  width: min(100%, 1900px);
}

.privacy-intro-inner {
  display: block;
}

.privacy-intro-inner h1,
.privacy-visibility-inner h2 {
  max-width: 940px;
  margin: 0;
  color: var(--midnight);
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 680;
  text-wrap: balance;
}

.privacy-intro-copy {
  max-width: 900px;
  display: grid;
  gap: 16px;
  padding-top: 24px;
}

.privacy-intro-copy p {
  color: var(--midnight);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
}

.privacy-intro-copy p:first-child {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.22;
  font-weight: 760;
}

.privacy-visibility-section {
  border-top: 1px solid rgba(21, 0, 103, 0.07);
}

.privacy-visibility-chart {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 0;
  margin-top: clamp(44px, 5vw, 72px);
  border: 0;
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 242, 0.82)),
    #fff;
  box-shadow: 12px 16px 30px rgba(17, 23, 42, 0.1);
  overflow: hidden;
}

.privacy-visibility-inner .privacy-detail-grid {
  margin-top: clamp(44px, 5vw, 72px);
}

.privacy-visibility-chart::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  z-index: 1;
  width: 2px;
  background: rgba(21, 0, 103, 0.16);
  opacity: 0.9;
  transform: translateX(-50%);
}

.privacy-visibility-chart article {
  position: relative;
  z-index: 2;
  min-height: 400px;
  padding: clamp(30px, 3vw, 44px);
  background: transparent;
  box-shadow: none;
}

.privacy-visibility-chart article + article {
  border-left: 0;
}

.privacy-visibility-chart h3 {
  position: relative;
  min-height: calc(1.12em + 18px);
  margin: 0;
  padding-bottom: 18px;
  color: var(--midnight);
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.12;
  font-weight: 780;
}

.privacy-visibility-chart h3::after {
  content: "";
  width: min(112px, 58%);
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  background: var(--midnight);
}

.privacy-visibility-chart ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.privacy-visibility-chart li {
  position: relative;
  padding-left: 0;
  color: var(--midnight);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.38;
}

.privacy-visibility-chart li::before {
  display: none;
}

.privacy-page-simple {
  min-height: 0;
  padding-top: clamp(84px, 8vw, 132px);
}

.privacy-policy-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(84px, 8vw, 132px) max(24px, calc((100vw - 1180px) / 2));
  background: #FFFFFF;
  border-top: 1px solid rgba(21, 0, 103, 0.07);
}

.privacy-policy-document {
  width: min(100%, 980px);
  display: grid;
  gap: clamp(34px, 4vw, 56px);
  margin: 0 auto;
}

.privacy-policy-document article {
  padding-bottom: clamp(34px, 4vw, 56px);
  border-bottom: 1px solid rgba(21, 0, 103, 0.1);
}

.privacy-policy-document article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-policy-document h2 {
  margin: 0;
  color: var(--midnight);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.08;
  font-weight: 760;
  text-wrap: balance;
}

.privacy-policy-document h3 {
  margin: 28px 0 0;
  color: var(--midnight);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.22;
  font-weight: 760;
}

.privacy-policy-document p,
.privacy-policy-document li {
  color: rgba(21, 0, 103, 0.78);
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.55;
}

.privacy-policy-document p {
  margin-top: 16px;
}

.privacy-policy-document ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.privacy-policy-document .policy-bullet-list {
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

.privacy-policy-document .policy-bullet-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.policy-bullet-marker {
  color: var(--accent-blue);
  font-weight: 800;
  line-height: 1.55;
}

@media (max-width: 1380px) and (min-width: 1081px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(456px, 0.77fr);
    gap: clamp(42px, 4.8vw, 72px);
  }

  .hero h1 {
    font-size: clamp(26px, 2.24vw, 31px);
    max-width: 520px;
  }

  .hero-copy {
    max-width: 610px;
    font-size: clamp(17px, 1.28vw, 19px);
  }

  .hero-platform-figure {
    width: clamp(492px, 42vw, 624px);
    margin-top: 34px;
  }
}

@media (max-width: 1080px) {
  .hero-inner {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy-panel,
  .hero-platform-figure {
    justify-self: center;
  }

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

  .hero-platform-figure {
    width: min(88vw, 520px);
    margin: 0 auto;
  }

  .flow-art-figure {
    width: min(100%, 940px);
  }

  .privacy-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .privacy-intro-copy {
    max-width: 780px;
    padding-top: 20px;
  }

  .privacy-visibility-chart {
    grid-template-columns: 1fr;
  }

  .privacy-visibility-chart::before {
    display: none;
  }

  .privacy-visibility-chart article {
    min-height: 0;
  }

  .privacy-visibility-chart article + article {
    border-top: 2px solid rgba(21, 0, 103, 0.16);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: clamp(27px, 6.4vw, 38px);
  }

  .hero-platform-figure {
    width: min(94vw, 672px);
  }

  .flow-art-figure {
    width: min(100%, 720px);
  }

  .privacy-intro-section {
    padding-top: 128px;
  }

}

@media (max-width: 640px) {
  .flow-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .flow-art-figure {
    width: calc(100vw - 24px);
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .privacy-intro-section,
  .privacy-visibility-section,
  .privacy-page-simple {
    padding-left: 18px;
    padding-right: 18px;
  }

  .privacy-intro-inner h1,
  .privacy-visibility-inner h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .privacy-visibility-chart article {
    min-height: 0;
    padding: 28px;
  }

  .privacy-visibility-chart ul {
    gap: 20px;
    margin-top: 28px;
  }

  .privacy-visibility-chart li {
    font-size: clamp(20px, 6vw, 28px);
  }
}

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

/* Support page */
.support-page-hero {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(150px, 13vw, 190px) max(24px, calc((100vw - var(--max-width)) / 2)) clamp(76px, 8vw, 108px);
  background: #fff;
}

.support-page-inner,
.support-contact-inner {
  width: 100%;
  margin: 0 auto;
}

.support-page-copy {
  max-width: 780px;
}

.support-page-copy h1,
.support-contact-inner h2 {
  color: var(--midnight);
  font-size: var(--landing-heading-size);
  line-height: var(--landing-heading-line);
  font-weight: 780;
}

.support-page-copy p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.35;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(44px, 5vw, 72px);
}

.support-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 2.8vw, 40px);
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 242, 0.82)),
    #fff;
  box-shadow: 14px 18px 34px rgba(17, 23, 42, 0.11);
}

.support-card h2 {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--midnight);
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.08;
  font-weight: 780;
  white-space: nowrap;
}

.support-card h2::after {
  content: "";
  width: 112px;
  height: 4px;
  display: block;
  margin-top: 0;
  background: var(--midnight);
}

.support-card p {
  max-width: 300px;
  margin-top: 34px;
  color: rgba(17, 22, 42, 0.82);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.38;
}

.support-contact-band {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(70px, 7vw, 96px) max(24px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 78% 16%, rgba(39, 255, 248, 0.18), transparent 36%),
    linear-gradient(135deg, #150067 0%, #2437A9 100%);
}

.support-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.support-contact-inner h2,
.support-contact-inner p {
  color: #fff;
}

.support-contact-inner h2 {
  max-width: 520px;
}

.support-contact-inner p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.36;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.support-email-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #fff;
  font-size: 16px;
  font-weight: 760;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 940px) {
  .support-card-grid {
    grid-template-columns: 1fr;
  }

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

  .support-card h2 {
    min-height: 74px;
  }

  .support-contact-inner {
    grid-template-columns: 1fr;
  }

  .support-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .support-page-hero,
  .support-contact-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .support-page-hero {
    padding-top: 132px;
  }

  .support-page-copy h1,
  .support-contact-inner h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .support-page-copy p,
  .support-contact-inner p {
    font-size: 19px;
  }

  .support-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
