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

:root {
  --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;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Google Sans Flex", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  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;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), var(--max-width));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 12px 8px 20px;
  background: rgba(246, 249, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(21, 0, 103, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(21, 0, 103, 0.08);
  box-shadow: 0 18px 54px rgba(21, 0, 103, 0.12);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: translate(18px, 2px);
}

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

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

.site-nav a,
.nav-dropdown-toggle {
  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,
.nav-dropdown-toggle: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% + 4px);
  right: 0;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(21, 0, 103, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

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

.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: 96px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 70svh;
  margin: 0;
  padding: 110px max(24px, calc((100vw - var(--max-width)) / 2)) 40px;
  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: min(4vh, 34px);
}

.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: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(10px);
  animation: hero-line-slow-arrive 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: opacity, transform, filter;
}

.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: rgba(21, 0, 103, 0.72);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(8px);
  animation: hero-support-slow-arrive 760ms cubic-bezier(0.16, 1, 0.3, 1) 3240ms both;
}

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

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

.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 {
  margin-top: 10px;
  font-size: 15px;
}

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

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

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

.privacy-card {
  min-height: 248px;
  padding: 20px;
  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;
}

.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 {
  max-width: 780px;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.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 {
  max-width: 940px;
  margin: 36px auto 0;
  text-align: center;
  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);
  backdrop-filter: blur(16px);
}

.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: 100%;
  max-width: none;
  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;
}

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

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

/* 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(230px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.zone-card {
  padding: 20px;
}

.zone-card h3 {
  color: var(--midnight);
}

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

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

.state-card.reveal-ready {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  filter: blur(10px);
  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),
    filter 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);
  filter: blur(0);
  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);
  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);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-support-slow-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid.flow-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .site-header {
    height: 58px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    transform: translate(8px, 1px);
  }

  .brand span {
    margin-left: 10px;
    font-size: 15px;
  }

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

  .site-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(21, 0, 103, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    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,
  .nav-dropdown-toggle {
    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: 96px;
    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;
  }

  .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: 94px;
    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 {
    grid-template-columns: 1fr;
  }

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

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

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

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