:root {
  color-scheme: dark;
  --bg: #0b0b0f;
  --bg-soft: #111116;
  --surface: #16151c;
  --surface-raised: #1d1a25;
  --surface-deep: #0f0e14;
  --line: rgba(221, 214, 254, 0.16);
  --line-strong: rgba(221, 214, 254, 0.28);
  --text: #f7f3ff;
  --muted: #bcb5c9;
  --quiet: #8f879d;
  --lilac: #9f7aea;
  --lilac-strong: #b992ff;
  --mint: #58d68d;
  --gold: #d0a65f;
  --ink: #050507;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #07070b 0%, #0f0e14 44%, #0b0b0f 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  transform-origin: center;
}

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

a:hover {
  color: var(--lilac-strong);
}

:focus-visible {
  outline: 3px solid rgba(185, 146, 255, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--text);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  background: rgba(6, 6, 10, 0.74);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.landing-page .site-header {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  padding: 4px 8px;
  border: 1px solid rgba(159, 122, 234, 0.38);
  border-radius: 999px;
  color: #dccbff;
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-action,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-action {
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(185, 146, 255, 0.38);
  border-radius: 8px;
  color: #efe7ff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(620px, 78svh, 760px);
  display: grid;
  align-items: center;
  padding: 40px 20px 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.04) contrast(1.02);
  opacity: 0.88;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.72) 0%, rgba(5, 5, 8, 0.42) 34%, rgba(5, 5, 8, 0.06) 64%, rgba(5, 5, 8, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.58) 0%, rgba(5, 5, 8, 0.06) 34%, rgba(5, 5, 8, 0.24) 100%);
}

.hero-shell {
  position: relative;
  width: min(1460px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-bottom: 32px;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.hero-brand span:last-child {
  color: #fff;
}

.hero-brand-image img {
  width: clamp(172px, 12vw, 232px);
  max-width: 62vw;
  height: auto;
}

.hero-mark {
  position: relative;
  width: clamp(42px, 3.5vw, 56px);
  height: clamp(42px, 3.5vw, 56px);
  flex: 0 0 auto;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  left: 1px;
  top: calc(50% - 6px);
  width: calc(100% - 2px);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7b9ff, #9f7aea 58%, #6fe6ae);
  box-shadow: 0 0 26px rgba(185, 146, 255, 0.26);
}

.hero-mark::before {
  transform: rotate(45deg);
}

.hero-mark::after {
  transform: rotate(-45deg);
}

.hero-badge {
  display: flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 12px;
  border: 1px solid rgba(185, 146, 255, 0.72);
  border-radius: 6px;
  background: rgba(159, 122, 234, 0.08);
  color: #d7b9ff;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lilac-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  color: var(--lilac-strong);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  color: #ede8f6;
  font-size: clamp(18px, 1.28vw, 22px);
  line-height: 1.48;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.button {
  position: relative;
  overflow: hidden;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 220ms ease, transform 700ms ease;
}

.hero .button {
  min-height: 80px;
  min-width: 280px;
  font-size: 23px;
  font-weight: 800;
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(55%);
}

.button-primary {
  background: var(--lilac);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .button-primary::after {
  content: "→";
  margin-left: 14px;
  font-size: 30px;
  line-height: 1;
}

.button-primary:hover {
  background: var(--lilac-strong);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(185, 146, 255, 0.2), 0 18px 48px rgba(159, 122, 234, 0.32);
}

.button-secondary {
  border: 1px solid rgba(221, 214, 254, 0.22);
  background: rgba(5, 5, 8, 0.36);
  color: #f5f0ff;
}

.button-secondary:hover {
  border-color: rgba(185, 146, 255, 0.58);
  box-shadow: 0 14px 42px rgba(185, 146, 255, 0.14);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  padding-top: 10px;
  border-top: 0;
}

.hero-facts div {
  position: relative;
  min-width: 0;
  padding-left: 44px;
}

.hero-facts dt {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: #c9c0d4;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.hero-facts div::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 18px;
}

.hero-facts div:nth-child(1)::before {
  content: "♙";
  color: var(--lilac-strong);
}

.hero-facts div:nth-child(2)::before {
  content: "◇";
  color: var(--gold);
}

.hero-facts div:nth-child(3)::before {
  content: "✣";
  color: #82e6b4;
}

.signal-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(221, 214, 254, 0.12);
  box-shadow: var(--shadow-soft);
}

.signal-strip div {
  padding: 18px 20px;
  background: rgba(15, 14, 20, 0.92);
}

.signal-strip strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.signal-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight {
  padding-top: 78px;
}

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

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.module-card p,
.plan-card p,
.trust-grid p,
.contact-section p,
.legal-main p,
.legal-main li {
  color: var(--muted);
}

.module-grid,
.plan-grid,
.trust-grid {
  display: grid;
  gap: 14px;
}

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

.module-card,
.plan-card,
.trust-grid article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.module-card,
.plan-card,
.trust-grid article {
  padding: 24px;
}

.module-card:nth-child(2) .module-icon,
.module-card:nth-child(2) .module-points li::before {
  color: var(--gold);
  border-color: rgba(208, 166, 95, 0.38);
  background: rgba(208, 166, 95, 0.12);
}

.module-card:nth-child(2) .module-points li::before {
  background: var(--gold);
}

.module-card:nth-child(3) .module-icon,
.module-card:nth-child(3) .module-points li::before {
  color: #82e6b4;
  border-color: rgba(88, 214, 141, 0.34);
  background: rgba(88, 214, 141, 0.1);
}

.module-card:nth-child(3) .module-points li::before {
  background: var(--mint);
}

.module-card,
.plan-card,
.trust-grid article,
.contact-panel,
.legal-panel {
  box-shadow: var(--shadow-soft);
}

.module-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(185, 146, 255, 0.32);
  border-radius: 8px;
  background: rgba(159, 122, 234, 0.13);
  color: var(--lilac-strong);
}

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

.module-points {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #e7e0f0;
  font-size: 14px;
}

.module-points li {
  position: relative;
  padding-left: 18px;
}

.module-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lilac-strong);
}

.architecture-section {
  padding-top: 70px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 42px minmax(150px, 1fr) 42px minmax(170px, 1.2fr) 42px minmax(150px, 1fr);
  align-items: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.flow-node {
  min-height: 138px;
  display: grid;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft);
  transition: border-color 380ms ease, background 380ms ease, box-shadow 380ms ease, transform 380ms ease;
}

.flow-node span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-node strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.flow-node small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.flow-node-intelligence {
  border-color: rgba(88, 214, 141, 0.4);
  background: rgba(88, 214, 141, 0.07);
}

.flow-node-intelligence span {
  color: #82e6b4;
}

.flow-arrow {
  position: relative;
  height: 1px;
  background: rgba(221, 214, 254, 0.22);
  overflow: hidden;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(185, 146, 255, 0), rgba(185, 146, 255, 0.92), rgba(88, 214, 141, 0.72));
  transform: scaleX(0);
  transform-origin: left;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(221, 214, 254, 0.7);
  border-right: 1px solid rgba(221, 214, 254, 0.7);
  transform: rotate(45deg);
}

.architecture-flow.is-active .flow-node {
  animation: nodePulse 900ms ease both;
}

.architecture-flow.is-active .flow-node:nth-child(1) {
  animation-delay: 80ms;
}

.architecture-flow.is-active .flow-node:nth-child(3) {
  animation-delay: 380ms;
}

.architecture-flow.is-active .flow-node:nth-child(5) {
  animation-delay: 680ms;
}

.architecture-flow.is-active .flow-node:nth-child(7) {
  animation-delay: 980ms;
}

.architecture-flow.is-active .flow-arrow::before {
  animation: flowLine 820ms ease forwards;
}

.architecture-flow.is-active .flow-arrow:nth-child(2)::before {
  animation-delay: 220ms;
}

.architecture-flow.is-active .flow-arrow:nth-child(4)::before {
  animation-delay: 520ms;
}

.architecture-flow.is-active .flow-arrow:nth-child(6)::before {
  animation-delay: 820ms;
}

.architecture-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding-top: 42px;
}

.photo-feature-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 214, 254, 0.2);
  border-radius: 8px;
  background: #08080c;
  box-shadow: var(--shadow);
}

.photo-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #08080c 0%, rgba(8, 8, 12, 0.92) 34%, rgba(8, 8, 12, 0) 78%);
  transform: translateX(0);
  pointer-events: none;
}

.photo-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.2), rgba(5, 5, 8, 0.02) 48%, rgba(5, 5, 8, 0.28));
  pointer-events: none;
}

.photo-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  filter: blur(8px) saturate(0.88);
  transform: scale(1.025);
  transition: filter 900ms ease, transform 900ms ease;
}

.photo-feature-media.is-visible::before {
  animation: photoWipe 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.photo-feature-media.is-visible img {
  filter: blur(0) saturate(1);
  transform: scale(1);
}

.photo-feature-copy {
  padding: 12px 0;
}

.photo-feature-copy p {
  color: var(--muted);
}

.photo-metrics {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.photo-metrics div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.photo-metrics strong {
  color: #fff;
}

.photo-metrics span {
  color: var(--muted);
}

.product-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.018);
}

.proof-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.proof-side {
  display: grid;
  gap: 16px;
}

.proof-primary img {
  aspect-ratio: 16 / 10.5;
}

.proof-side img {
  aspect-ratio: 16 / 9;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.proof-showcase figure {
  transform-style: preserve-3d;
  perspective: 900px;
}

.proof-showcase figure:hover img {
  transform: translateY(-5px) rotateX(1.3deg) rotateY(-1.4deg);
  border-color: rgba(185, 146, 255, 0.48);
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.48), 0 0 34px rgba(159, 122, 234, 0.12);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.plan-card {
  display: grid;
  align-content: start;
  min-height: 320px;
}

.plan-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: #e8e1ef;
  font-size: 14px;
}

.plan-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold);
}

.plan-link {
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: end;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid rgba(185, 146, 255, 0.38);
  border-radius: 8px;
  color: var(--lilac-strong);
  font-weight: 900;
}

.plan-link-primary {
  background: var(--lilac);
  color: #fff;
}

.plan-featured {
  border-color: rgba(185, 146, 255, 0.58);
  background: #21192e;
}

.module-card,
.plan-card,
.trust-grid article,
.readiness-panel > div {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.module-card:hover,
.plan-card:hover,
.trust-grid article:hover,
.readiness-panel > div:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 146, 255, 0.34);
  background: rgba(255, 255, 255, 0.048);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
}

.motion-ready .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    filter 700ms ease var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@keyframes flowLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes nodePulse {
  0% {
    transform: translateY(8px);
    border-color: rgba(221, 214, 254, 0.14);
    box-shadow: var(--shadow-soft);
  }
  45% {
    transform: translateY(-3px);
    border-color: rgba(185, 146, 255, 0.54);
    box-shadow: 0 22px 68px rgba(159, 122, 234, 0.18);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes photoWipe {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(105%);
  }
}

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

.readiness-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.readiness-panel > div {
  position: relative;
  padding: 20px 20px 20px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-deep);
}

.readiness-panel strong {
  display: block;
  color: #fff;
}

.readiness-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.status-dot {
  position: absolute;
  left: 20px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-ready {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(88, 214, 141, 0.12);
}

.status-pending {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(208, 166, 95, 0.13);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(159, 122, 234, 0.055);
}

.contact-media {
  height: 100%;
  min-height: 260px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.86;
}

.contact-copy {
  padding: 38px 44px;
}

.contact-copy small {
  display: block;
  margin-top: 16px;
  color: var(--quiet);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-logo {
  width: 142px;
  height: auto;
}

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

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.legal-main h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.legal-panel {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-panel h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .module-grid,
  .plan-grid,
  .trust-grid,
  .readiness-panel,
  .architecture-flow,
  .photo-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    min-height: clamp(660px, 84svh, 760px);
  }

  .hero-shell {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: 1fr;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.78) 48%, rgba(5, 5, 8, 0.24) 100%),
      linear-gradient(0deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.24) 48%, rgba(5, 5, 8, 0.62) 100%);
  }

  .signal-strip,
  .proof-showcase {
    grid-template-columns: 1fr;
  }

  .photo-feature {
    gap: 24px;
  }

  .signal-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .flow-arrow {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .flow-arrow::before {
    background: linear-gradient(180deg, rgba(185, 146, 255, 0), rgba(185, 146, 255, 0.92), rgba(88, 214, 141, 0.72));
    transform: scaleY(0);
    transform-origin: top;
  }

  .flow-arrow::after {
    right: -5px;
    top: auto;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .architecture-flow.is-active .flow-arrow::before {
    animation-name: flowLineVertical;
  }

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .brand img {
    width: 126px;
  }

  .header-action {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 660px;
    align-items: center;
    padding: 24px 16px 34px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-brand {
    gap: 10px;
    margin-bottom: 24px;
    font-size: 22px;
  }

  .hero-brand img {
    width: 150px;
    max-width: 64vw;
    height: auto;
  }

  .hero-mark {
    width: 30px;
    height: 30px;
  }

  .hero-badge {
    min-height: 32px;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero .button {
    min-height: 52px;
    min-width: 0;
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-facts div {
    min-width: 120px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .hero-facts div {
    padding-left: 34px;
  }

  .hero-facts dt {
    font-size: 13px;
  }

  .hero-facts dd {
    font-size: 12px;
  }

  .section,
  .site-footer,
  .legal-main {
    width: calc(100% - 28px);
  }

  .section {
    padding: 70px 0;
  }

  .site-footer {
    display: grid;
  }

  .contact-copy {
    padding: 28px 22px;
  }

  .photo-metrics div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

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

  .motion-ready .reveal,
  .photo-feature-media img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .photo-feature-media::before {
    display: none;
  }
}

@keyframes flowLineVertical {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
