:root {
  --ink: #f5f8ff;
  --muted: #a9b8cf;
  --quiet: #718198;
  --night: #03060c;
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #091725;
  --navy-800: #0b1c2d;
  --cyan: #40e8ff;
  --cyan-soft: #a6f6ff;
  --blue: #238cff;
  --gold: #f6b84a;
  --gold-soft: #ffe0a2;
  --green: #40efae;
  --line: rgba(146, 191, 234, 0.17);
  --line-strong: rgba(64, 232, 255, 0.34);
  --panel: rgba(9, 23, 39, 0.76);
  --panel-solid: #0a1726;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  --radius: 28px;
  --radius-small: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--night);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -5%, rgba(23, 126, 207, 0.19), transparent 34rem),
    var(--night);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: #001018;
  background: var(--cyan);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 128px 0;
}

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

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

.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 {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(152, 196, 236, 0.12);
  background: rgba(3, 8, 15, 0.76);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

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

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(64, 232, 255, 0.32);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(64, 232, 255, 0.12), rgba(246, 184, 74, 0.08));
  box-shadow: inset 0 0 28px rgba(35, 140, 255, 0.08), 0 0 24px rgba(64, 232, 255, 0.08);
}

.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark svg path:nth-child(2) {
  stroke: var(--gold);
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--quiet);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.primary-nav a {
  position: relative;
  color: #c5d2e4;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #fff;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: #021018 !important;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), #85f4ff);
  box-shadow: 0 8px 28px rgba(64, 232, 255, 0.17);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--cyan), #91f6ff);
  box-shadow: 0 14px 38px rgba(64, 232, 255, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(64, 232, 255, 0.3);
}

.button-ghost {
  color: #e8f2ff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(64, 232, 255, 0.06);
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.fit-layout h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.9vw, 4.4rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading h2 span,
.contact-copy h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan-soft), var(--cyan), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero {
  position: relative;
  min-height: 960px;
  padding: 168px 0 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(2, 6, 12, 0.38), rgba(2, 6, 12, 0.93)),
    radial-gradient(circle at 76% 34%, rgba(32, 126, 218, 0.2), transparent 30rem),
    #03070e;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 12, 0.93));
  content: "";
  pointer-events: none;
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(64, 232, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 232, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 150px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(64, 232, 255, 0.16);
  box-shadow: inset 0 0 100px rgba(64, 232, 255, 0.05), 0 0 90px rgba(35, 140, 255, 0.06);
}

.hero-glow-two {
  top: 300px;
  right: -35px;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(246, 184, 74, 0.17);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

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

.hero-role {
  margin: 0 0 18px;
  color: #cad8e9;
  font-size: 1rem;
  font-weight: 750;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  margin-top: 0.11em;
  color: transparent;
  background: linear-gradient(92deg, var(--cyan-soft), var(--cyan) 44%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: #b4c3d6;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.68;
}

.hero-lede strong {
  color: #f8fbff;
  font-weight: 760;
}

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

.hero-proof {
  display: grid;
  max-width: 700px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 26px;
}

.hero-proof > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.hero-proof span {
  color: var(--quiet);
  font-size: 0.8rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 18px 16px 20px;
}

.visual-frame {
  position: relative;
  height: 676px;
  overflow: hidden;
  border: 1px solid rgba(64, 232, 255, 0.27);
  border-radius: 170px 24px 170px 24px;
  background: var(--navy-900);
  box-shadow: var(--shadow), 0 0 0 9px rgba(64, 232, 255, 0.025), 0 0 70px rgba(35, 140, 255, 0.13);
}

.visual-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 14, 0.04), transparent 44%, rgba(3, 7, 14, 0.11));
  content: "";
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 64%;
}

.visual-scanline {
  position: absolute;
  z-index: 3;
  right: 12%;
  left: 12%;
  top: 0;
  height: 1px;
  opacity: 0.65;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
  animation: scan 7s linear infinite;
}

.visual-caption {
  position: absolute;
  z-index: 5;
  right: -6px;
  bottom: 16px;
  display: grid;
  min-width: 310px;
  padding: 17px 22px 17px 48px;
  border: 1px solid rgba(64, 232, 255, 0.26);
  border-radius: 16px;
  background: rgba(4, 13, 23, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.visual-caption .live-dot {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.visual-caption strong {
  font-size: 0.85rem;
}

.visual-caption small {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(5, 14, 24, 0.82);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.34);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.floating-card span {
  color: var(--gold-soft);
  font-size: 1.02rem;
  font-weight: 900;
}

.floating-card-top {
  top: 48px;
  left: -22px;
}

.floating-card-bottom {
  right: -24px;
  bottom: 114px;
}

.credibility-rail {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: 58px;
  padding: 20px;
  color: #899ab2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.credibility-rail i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(246, 184, 74, 0.75);
}

.priority-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 140, 255, 0.13), transparent 32rem),
    linear-gradient(180deg, #050a12, #07111e);
}

.priority-interface {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(4, 12, 22, 0.85);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.03);
  grid-template-columns: 330px minmax(0, 1fr);
}

.goal-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
  background: rgba(5, 14, 25, 0.9);
}

.goal-tab {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 18px;
  padding: 15px 26px;
  color: #95a6bc;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.goal-tab:last-child {
  border-bottom: 0;
}

.goal-tab::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--gold));
  content: "";
  transform: scaleY(0);
  transition: transform 180ms ease;
}

.goal-tab span {
  color: #4d617c;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.goal-tab:hover,
.goal-tab.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(64, 232, 255, 0.09), transparent);
}

.goal-tab.is-active::before {
  transform: scaleY(1);
}

.goal-tab.is-active span {
  color: var(--cyan);
}

.goal-result {
  position: relative;
  min-height: 514px;
  padding: clamp(38px, 5vw, 68px);
  background:
    radial-gradient(circle at 92% 10%, rgba(64, 232, 255, 0.08), transparent 19rem),
    linear-gradient(135deg, rgba(13, 39, 65, 0.52), rgba(4, 12, 22, 0.8));
}

.goal-result::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 150px;
  height: 150px;
  opacity: 0.22;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  border-radius: 0 0 30px 0;
  content: "";
  pointer-events: none;
}

.goal-result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.goal-result-topline span:last-child {
  color: #60748e;
}

.goal-result h3 {
  max-width: 750px;
  margin: 32px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.goal-result > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 10px;
  margin: 38px 0 26px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.system-flow > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
}

.system-flow > div.is-outcome {
  border-color: rgba(246, 184, 74, 0.36);
  background: linear-gradient(145deg, rgba(246, 184, 74, 0.11), rgba(255, 255, 255, 0.025));
}

.system-flow span {
  color: var(--cyan);
  font-size: 0.63rem;
  font-weight: 900;
}

.system-flow strong {
  margin-top: 6px;
  color: #fff;
  font-size: 0.92rem;
}

.system-flow small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 0.65rem;
  line-height: 1.35;
}

.system-flow > i {
  color: var(--gold);
  font-style: normal;
}

.goal-result .goal-note {
  padding-left: 15px;
  color: #8497af;
  border-left: 2px solid var(--gold);
  font-size: 0.82rem;
}

.system-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 50%, rgba(64, 232, 255, 0.09), transparent 28rem),
    #050a12;
}

.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(62px, 8vw, 110px);
  grid-template-columns: minmax(320px, 0.83fr) minmax(0, 1.17fr);
}

.feature-visual {
  position: relative;
  margin: 0;
}

.feature-visual::before {
  position: absolute;
  z-index: 0;
  inset: 8% -7% -5% 12%;
  border: 1px solid rgba(64, 232, 255, 0.2);
  border-radius: 30px;
  content: "";
}

.feature-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: 50% 43%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-visual figcaption {
  position: relative;
  z-index: 2;
  width: calc(100% - 42px);
  margin: -34px auto 0;
  padding: 17px 21px;
  color: #cad8e9;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 15, 26, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  font-size: 0.82rem;
  font-weight: 720;
  text-align: center;
  backdrop-filter: blur(14px);
}

.feature-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
}

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

.feature-copy .lead {
  margin: 30px 0 0;
  color: #d5e0ee;
  font-size: 1.16rem;
}

.signal-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.signal-list li {
  display: grid;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 40px 1fr;
}

.signal-list li > span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signal-list strong {
  color: #fff;
  font-size: 1rem;
}

.signal-list p {
  margin: 3px 0 0;
  color: var(--quiet);
  font-size: 0.87rem;
}

.proof-section {
  background:
    linear-gradient(120deg, rgba(12, 35, 59, 0.48), transparent 58%),
    #07101c;
}

.proof-stage {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: rgba(3, 10, 18, 0.78);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
}

.proof-number-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px);
}

.proof-number-block::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(64, 232, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(64, 232, 255, 0.05);
  content: "";
  pointer-events: none;
}

.proof-number {
  color: transparent;
  background: linear-gradient(100deg, #fff, var(--cyan-soft) 44%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(5.4rem, 11vw, 10.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.proof-number-block h2 {
  max-width: 680px;
  margin: 35px 0 20px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 850;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.proof-number-block > p {
  max-width: 650px;
  color: var(--muted);
}

.proof-promise {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 620px;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(246, 184, 74, 0.25);
  border-radius: 15px;
  background: rgba(246, 184, 74, 0.06);
  grid-template-columns: 30px 1fr;
}

.proof-promise > span {
  height: 32px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
}

.proof-promise p {
  margin: 0;
  color: #e6edf7;
  font-size: 0.92rem;
  font-weight: 650;
}

.proof-image {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.proof-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050d18 0%, transparent 28%), linear-gradient(180deg, transparent 70%, rgba(3, 8, 14, 0.46));
  content: "";
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}

.start-section {
  background:
    radial-gradient(circle at 83% 35%, rgba(246, 184, 74, 0.07), transparent 25rem),
    #040910;
}

.start-options {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.start-card {
  position: relative;
  min-height: 430px;
  padding: clamp(32px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(15, 39, 63, 0.66), rgba(5, 13, 23, 0.86));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.start-card::after {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 190px;
  height: 190px;
  opacity: 0.45;
  border: 1px solid rgba(64, 232, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.start-card.is-accent {
  border-color: rgba(246, 184, 74, 0.31);
  background: linear-gradient(145deg, rgba(53, 37, 14, 0.38), rgba(7, 16, 26, 0.9));
}

.start-card.is-accent::after {
  border-color: rgba(246, 184, 74, 0.3);
}

.card-index {
  color: var(--cyan);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.is-accent .card-index {
  color: var(--gold-soft);
}

.start-card h3 {
  max-width: 470px;
  margin: 28px 0 20px;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1;
}

.start-card p {
  max-width: 550px;
  color: var(--muted);
}

.card-result {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 13px;
  color: #e5faff;
  border: 1px solid rgba(64, 232, 255, 0.2);
  border-radius: 10px;
  background: rgba(64, 232, 255, 0.055);
  font-size: 0.78rem;
  font-weight: 720;
}

.is-accent .card-result {
  color: #ffedc6;
  border-color: rgba(246, 184, 74, 0.24);
  background: rgba(246, 184, 74, 0.06);
}

.process-line {
  display: grid;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 18, 31, 0.72);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-line > div {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-line > div:last-child {
  border-right: 0;
}

.process-line span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 900;
}

.process-line strong,
.process-line small {
  display: block;
}

.process-line strong {
  margin-top: 18px;
  color: #fff;
  font-size: 0.91rem;
}

.process-line small {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.7rem;
  line-height: 1.4;
}

.fit-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #081422;
}

.fit-layout {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.fit-layout h2 {
  font-size: clamp(2.4rem, 5vw, 4.55rem);
}

.fit-copy > p {
  margin-top: 0;
  color: #aebed1;
  font-size: 1.05rem;
}

.fit-tags,
.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.fit-tags span,
.credential-list span {
  padding: 8px 12px;
  color: #c7d7e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  font-weight: 720;
}

.about-section {
  background:
    radial-gradient(circle at 14% 45%, rgba(64, 239, 174, 0.07), transparent 29rem),
    #040a12;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.about-visual {
  position: relative;
  margin: 0;
}

.about-visual::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 68%;
  height: 48%;
  border-top: 1px solid rgba(64, 239, 174, 0.4);
  border-right: 1px solid rgba(64, 239, 174, 0.4);
  border-radius: 0 24px 0 0;
  content: "";
}

.about-visual img {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
  object-position: 50% 60%;
  border: 1px solid rgba(64, 239, 174, 0.23);
  border-radius: 28px 90px 28px 28px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -25px;
  bottom: 30px;
  display: flex;
  max-width: 330px;
  flex-direction: column;
  padding: 17px 20px;
  border: 1px solid rgba(64, 232, 255, 0.26);
  border-radius: 14px;
  background: rgba(4, 13, 22, 0.91);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.about-badge strong {
  color: #fff;
  font-size: 0.84rem;
}

.about-badge span {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.72rem;
}

.about-copy h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.35rem);
}

.about-copy > p {
  color: var(--muted);
}

.about-copy .lead {
  margin-top: 28px;
  color: #d5e0ee;
  font-size: 1.12rem;
}

.credential-list span {
  border-radius: 9px;
}

.about-copy .about-signoff {
  margin-top: 30px;
  padding: 22px 0 22px 22px;
  color: #e7edf5;
  border-left: 2px solid var(--gold);
  font-weight: 650;
}

.contact-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(7, 28, 48, 0.93), rgba(3, 8, 15, 0.98)),
    #06111d;
}

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

.contact-orbit-one {
  top: -320px;
  left: -300px;
  width: 800px;
  height: 800px;
}

.contact-orbit-two {
  right: -220px;
  bottom: -360px;
  width: 680px;
  height: 680px;
  border-style: dashed;
  border-color: rgba(246, 184, 74, 0.13);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 105px);
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
}

.contact-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.contact-copy > p {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-principles {
  display: grid;
  gap: 15px;
  margin-top: 38px;
}

.contact-principles div {
  display: grid;
  gap: 3px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.contact-principles strong {
  color: #fff;
  font-size: 0.89rem;
}

.contact-principles span {
  color: var(--quiet);
  font-size: 0.78rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(4, 12, 22, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.field-row {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #cbd8e8;
  font-size: 0.78rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(155, 190, 225, 0.19);
  border-radius: 11px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form select option {
  color: #06101d;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(64, 232, 255, 0.045);
  box-shadow: 0 0 0 4px rgba(64, 232, 255, 0.08);
}

.form-note {
  margin: -4px 0 0;
  color: var(--quiet);
  font-size: 0.7rem;
  text-align: center;
}

.form-note a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 680;
}

.form-status.is-success {
  color: #caffea;
  border: 1px solid rgba(64, 239, 174, 0.28);
  background: rgba(64, 239, 174, 0.08);
}

.form-status.is-error {
  color: #ffd5d5;
  border: 1px solid rgba(255, 112, 112, 0.28);
  background: rgba(255, 112, 112, 0.08);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--line);
  background: #02050a;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand-footer .brand-copy small {
  text-transform: none;
}

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

.footer-links a {
  color: #9badc4;
  font-size: 0.79rem;
  font-weight: 680;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding-top: 24px;
  color: #617187;
  border-top: 1px solid rgba(155, 190, 225, 0.1);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #9badc4;
  font-weight: 700;
}

.simple-page {
  min-height: 70vh;
  padding: 160px 0 110px;
  background: linear-gradient(180deg, #06111f, #03070d);
}

.prose {
  max-width: 900px;
}

.prose h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.prose h2,
.prose h3 {
  color: #fff;
}

.prose p,
.prose li {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes scan {
  0% { transform: translateY(40px); opacity: 0; }
  12% { opacity: 0.7; }
  82% { opacity: 0.45; }
  100% { transform: translateY(585px); opacity: 0; }
}

@media (max-width: 1080px) {
  .hero-layout {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 5.5rem);
  }

  .visual-frame {
    height: 620px;
  }

  .primary-nav {
    gap: 18px;
  }

  .primary-nav a {
    font-size: 0.81rem;
  }

  .system-flow {
    gap: 6px;
  }

  .system-flow > div {
    padding: 11px;
  }

  .process-line > div {
    padding: 19px;
  }
}

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

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 86px;
    right: 20px;
    left: 20px;
    display: grid;
    visibility: hidden;
    gap: 0;
    padding: 12px;
    opacity: 0;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(4, 12, 21, 0.97);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(18px);
  }

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

  .primary-nav a {
    padding: 15px 13px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 9px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 48px;
  }

  .hero-layout,
  .split-layout,
  .about-layout,
  .contact-layout,
  .fit-layout {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(3.5rem, 10.5vw, 6.2rem);
  }

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

  .visual-frame {
    height: min(850px, 120vw);
  }

  .priority-interface {
    grid-template-columns: 1fr;
  }

  .goal-tabs {
    display: grid;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-auto-columns: minmax(170px, 1fr);
    grid-auto-flow: column;
    scrollbar-width: thin;
  }

  .goal-tab {
    min-height: 68px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    white-space: nowrap;
  }

  .goal-tab::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .goal-tab.is-active::before {
    transform: scaleX(1);
  }

  .goal-result {
    min-height: auto;
  }

  .split-layout {
    gap: 75px;
  }

  .feature-visual {
    width: min(600px, 90%);
    margin-inline: auto;
  }

  .proof-stage {
    grid-template-columns: 1fr;
  }

  .proof-image {
    min-height: 580px;
  }

  .proof-image::after {
    background: linear-gradient(180deg, #050d18 0%, transparent 22%, rgba(3, 8, 14, 0.3));
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line > div:nth-child(3) {
    border-right: 0;
  }

  .process-line > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .fit-layout,
  .contact-layout {
    gap: 52px;
  }

  .about-layout {
    gap: 72px;
  }

  .about-visual {
    width: min(600px, 92%);
    margin-inline: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-role {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.4vw, 5rem);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .hero-proof > div + div {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-visual {
    padding-inline: 0;
  }

  .visual-frame {
    height: 132vw;
    max-height: 710px;
    min-height: 520px;
    border-radius: 95px 20px 95px 20px;
  }

  .floating-card {
    display: none;
  }

  .visual-caption {
    right: 10px;
    bottom: -4px;
    left: 10px;
    min-width: 0;
  }

  .credibility-rail {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .credibility-rail i {
    display: none;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .feature-copy h2,
  .fit-layout h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .goal-result {
    padding: 30px 22px 34px;
  }

  .goal-result h3 {
    margin-top: 24px;
    font-size: 2.1rem;
  }

  .system-flow {
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .system-flow > i {
    display: none;
  }

  .system-flow > div {
    min-height: 104px;
  }

  .feature-visual {
    width: 100%;
  }

  .feature-visual img {
    max-height: 640px;
  }

  .proof-stage {
    border-radius: 24px;
  }

  .proof-number-block {
    padding: 42px 24px;
  }

  .proof-number {
    font-size: clamp(5.1rem, 24vw, 7.4rem);
  }

  .proof-image {
    min-height: 510px;
  }

  .start-options {
    grid-template-columns: 1fr;
  }

  .start-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .process-line > div,
  .process-line > div:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-line > div:nth-child(even) {
    border-right: 0;
  }

  .process-line > div:last-child {
    border-bottom: 0;
  }

  .about-visual {
    width: calc(100% - 10px);
  }

  .about-visual img {
    max-height: 650px;
    border-radius: 24px 70px 24px 24px;
  }

  .about-badge {
    right: -5px;
    bottom: 18px;
    left: 18px;
  }

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

  .contact-form {
    padding: 25px 19px;
    border-radius: 20px;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 390px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .goal-tab {
    padding-inline: 18px;
  }

  .credibility-rail {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line > div,
  .process-line > div:nth-child(3),
  .process-line > div:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-line > div:last-child {
    border-bottom: 0;
  }
}

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

