:root {
  --bg: #f3f6f5;
  --paper: #ffffff;
  --paper-soft: #eef3f1;
  --ink: #18211f;
  --muted: #5f6c68;
  --line: #d5dfdc;
  --rose: #a64d65;
  --sage: #58766d;
  --tech: #176f79;
  --gold: #a77936;
  --deep: #172725;
  --ai-cyan: #35b9bd;
  --ai-violet: #7565a6;
  --ai-coral: #d56b72;
  --ai-gold: #d0a253;
  --ai-spectrum: linear-gradient(110deg, var(--ai-cyan), var(--ai-violet) 38%, var(--ai-coral) 70%, var(--ai-gold));
  --ai-action: linear-gradient(110deg, #147f8b, #67558f 44%, #a74762);
  --shadow: 0 20px 55px rgba(24, 45, 41, 0.11);
  --content: 1360px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(23, 111, 121, 0.35);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(
      108deg,
      rgba(53, 185, 189, 0.2),
      rgba(117, 101, 166, 0.15) 38%,
      rgba(213, 107, 114, 0.14) 70%,
      rgba(208, 162, 83, 0.16)
    ),
    rgba(247, 250, 249, 0.9);
  box-shadow: 0 8px 28px rgba(30, 53, 52, 0.08);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}

.topbar::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--ai-spectrum);
  content: "";
  opacity: 0.72;
}

.brand,
.nav-links,
.footer-links,
.actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  text-decoration: none;
  font-weight: 780;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) padding-box, var(--ai-spectrum) border-box;
  color: var(--tech);
  font-size: 13px;
  box-shadow: 0 0 22px rgba(53, 185, 189, 0.16);
}

.nav-links {
  gap: 24px;
  color: rgba(24, 33, 31, 0.72);
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--tech);
}

.nav-cta {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-decoration: none;
  font-size: 14px;
  font-weight: 720;
}

.hero,
.section,
.value-section,
.product-process,
.footer {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(340px, 0.93fr);
  gap: 68px;
  align-items: center;
  min-height: 650px;
  padding-block: 52px;
}

.home-hero {
  min-height: min(690px, calc(100svh - 140px));
}

.page-hero {
  min-height: 640px;
}

.compact {
  min-height: 390px;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-eyebrow {
  width: fit-content;
  background: var(--ai-action);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 62px;
  line-height: 1.01;
}

h2 {
  max-width: 900px;
  margin-bottom: 17px;
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary {
  background: var(--ai-action);
  background-size: 180% 100%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(65, 111, 126, 0.22);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.primary:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 34px rgba(117, 101, 166, 0.25);
}

.proof-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  max-width: 650px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.proof-line span {
  display: flex;
  gap: 9px;
  align-items: center;
}

.proof-line b {
  background: var(--ai-action);
  background-clip: text;
  color: transparent;
  font-size: 11px;
  -webkit-background-clip: text;
}

.hero-media {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 1px solid rgba(53, 185, 189, 0.26);
  border-radius: 11px;
  box-shadow: -20px 20px 58px rgba(53, 185, 189, 0.16), 24px -16px 62px rgba(213, 107, 114, 0.14);
  content: "";
}

.hero-media::after {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 5%;
  left: 5%;
  height: 1px;
  background: var(--ai-spectrum);
  box-shadow: 0 0 14px rgba(53, 185, 189, 0.7);
  content: "";
  opacity: 0.7;
  pointer-events: none;
  animation: ai-scan 7s ease-in-out infinite;
}

.hero-media picture,
.hero-media img,
.wide-image {
  display: block;
  width: 100%;
}

.hero-media img,
.wide-image {
  height: auto;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media:not(.landscape) img {
  aspect-ratio: 1;
}

.hero-media img.mission-hero-image {
  object-position: 50% 48%;
}

.hero-media.landscape img {
  aspect-ratio: 1.35;
}

.mini-panel,
.promo {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mini-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 300px;
  padding: 16px 18px;
  backdrop-filter: blur(18px);
}

.mini-panel::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--ai-cyan);
  box-shadow: 0 0 12px rgba(53, 185, 189, 0.8);
  content: "";
  vertical-align: 1px;
  animation: ai-pulse 2.8s ease-in-out infinite;
}

.mini-panel span,
.sample-block span,
.focus-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--tech);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 22px;
}

.price-line strong {
  color: var(--gold);
  font-size: 28px;
}

.price-line span,
.hero-note {
  color: var(--muted);
  font-size: 14px;
}

.hero-note {
  max-width: 620px;
  margin: 15px 0 0;
}

.section,
.value-section,
.product-process {
  padding-block: 88px;
}

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

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.process-section {
  padding-top: 76px;
}

.process-shell {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(107, 205, 208, 0.22);
  border-radius: 7px;
  background-color: #101d20;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 0.7px, transparent 1.2px),
    radial-gradient(circle, rgba(107, 205, 208, 0.46) 0 0.8px, transparent 1.35px),
    radial-gradient(circle, rgba(213, 186, 233, 0.36) 0 0.65px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 232, 187, 0.32) 0 0.75px, transparent 1.3px);
  background-position: 13px 17px, 47px 61px, 89px 23px, 31px 97px;
  background-size: 97px 83px, 151px 127px, 211px 167px, 263px 193px;
  box-shadow: 0 24px 68px rgba(13, 39, 42, 0.2), 0 0 48px rgba(53, 185, 189, 0.08);
  color: #fff;
}

.process-shell::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ai-spectrum);
  content: "";
}

.process-shell::after {
  position: absolute;
  z-index: 0;
  inset: 2px 0 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(111, 221, 224, 0.84) 0 0.9px, transparent 1.65px),
    radial-gradient(circle, rgba(222, 190, 240, 0.72) 0 1.1px, transparent 1.8px);
  background-position: 29px 41px, 113px 73px, 67px 131px;
  background-size: 223px 181px, 281px 239px, 337px 277px;
  content: "";
  opacity: 0.24;
  pointer-events: none;
  animation: star-field-twinkle 5.8s ease-in-out infinite alternate;
}

.flow-map,
.flow-console {
  z-index: 1;
}

.flow-shell {
  padding: 22px 22px 0;
}

.flow-map {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-areas:
    "context transits ai teaser"
    "birth calculation ai pdf";
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(155px, auto));
  gap: 54px 70px;
  min-height: 430px;
  padding: 32px;
}

.flow-connections {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.flow-connections path {
  fill: none;
  stroke-width: 2;
  opacity: 0.28;
  transition: opacity 220ms ease, stroke-width 220ms ease;
  vector-effect: non-scaling-stroke;
}

.flow-connections path[data-tone="context"] { stroke: url("#flow-context-gradient"); }
.flow-connections path[data-tone="calculation"] { stroke: url("#flow-calc-gradient"); }
.flow-connections path[data-tone="output"] { stroke: url("#flow-output-gradient"); }

.flow-connections path.is-active,
.flow-connections path.is-complete {
  opacity: 0.94;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 5px rgba(107, 205, 208, 0.56));
}

.flow-packet {
  fill: #fff;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(107, 205, 208, 0.95));
}

.flow-node {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  min-height: 118px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  background: rgba(12, 32, 35, 0.9);
  box-shadow: 0 14px 30px rgba(1, 13, 15, 0.19);
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.flow-node:hover,
.flow-node:focus-visible {
  border-color: rgba(107, 205, 208, 0.64);
  transform: translateY(-2px);
}

.flow-node span,
.flow-node strong,
.flow-node small {
  display: block;
  letter-spacing: 0;
}

.flow-node span {
  margin-bottom: 9px;
  color: var(--tech);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.flow-node strong {
  font-size: 17px;
  line-height: 1.2;
}

.flow-node small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.35;
}

.flow-context { grid-area: context; }
.flow-birth { grid-area: birth; }
.flow-calculation { grid-area: calculation; }
.flow-transits { grid-area: transits; }
.flow-ai { grid-area: ai; }
.flow-teaser { grid-area: teaser; }
.flow-pdf { grid-area: pdf; }

.flow-ai {
  min-height: 170px;
  border-color: rgba(117, 101, 166, 0.62);
  background: linear-gradient(145deg, rgba(53, 185, 189, 0.14), rgba(117, 101, 166, 0.22), rgba(213, 107, 114, 0.12));
  box-shadow: 0 18px 44px rgba(2, 14, 16, 0.3), 0 0 34px rgba(117, 101, 166, 0.13);
}

.flow-node.is-active {
  border-color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(145deg, rgba(53, 185, 189, 0.22), rgba(117, 101, 166, 0.24), rgba(213, 107, 114, 0.14));
  box-shadow: 0 18px 38px rgba(2, 14, 16, 0.3), 0 0 24px rgba(107, 205, 208, 0.22);
  transform: translateY(-2px);
}

.flow-node.is-complete::after {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ai-cyan);
  box-shadow: 0 0 9px rgba(107, 205, 208, 0.82);
  content: "";
}

.flow-console {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(6, 22, 24, 0.8);
}

.flow-console-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.flow-console-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ai-cyan);
  box-shadow: 0 0 9px rgba(107, 205, 208, 0.72);
}

.flow-console > strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 650;
}

.flow-replay {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font: 22px/1 inherit;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.flow-replay:hover,
.flow-replay:focus-visible {
  border-color: var(--ai-cyan);
  background: rgba(53, 185, 189, 0.13);
  transform: rotate(-28deg);
}

html:not(.js) .flow-connections,
html:not(.js) .flow-console {
  display: none;
}

html:not(.js) .flow-map {
  grid-template-areas:
    "context"
    "birth"
    "calculation"
    "transits"
    "ai"
    "teaser"
    "pdf";
  grid-template-columns: minmax(0, 680px);
  grid-template-rows: repeat(7, auto);
  justify-content: center;
  gap: 18px;
  min-height: 0;
}

html:not(.js) .flow-node,
html:not(.js) .flow-ai {
  min-height: 102px;
}

.comparison-band {
  padding: 82px max(28px, calc((100vw - var(--content) + 56px) / 2));
  position: relative;
  overflow: hidden;
  background-color: #191a22;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 0.7px, transparent 1.2px),
    radial-gradient(circle, rgba(216, 172, 199, 0.4) 0 0.8px, transparent 1.3px),
    radial-gradient(circle, rgba(126, 190, 207, 0.34) 0 0.65px, transparent 1.2px),
    radial-gradient(circle, rgba(232, 204, 151, 0.3) 0 0.75px, transparent 1.3px);
  background-position: 17px 29px, 71px 43px, 113px 89px, 37px 137px;
  background-size: 101px 89px, 157px 131px, 227px 179px, 277px 211px;
  color: #fff;
}

.comparison-band::after {
  position: absolute;
  z-index: 0;
  inset: 2px 0 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(226, 178, 207, 0.76) 0 0.95px, transparent 1.65px),
    radial-gradient(circle, rgba(147, 201, 219, 0.7) 0 1.05px, transparent 1.75px);
  background-position: 41px 53px, 127px 97px, 83px 151px;
  background-size: 239px 191px, 307px 251px, 353px 293px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  animation: star-field-twinkle 6.4s ease-in-out infinite alternate-reverse;
}

.comparison-band > * {
  position: relative;
  z-index: 1;
}

.comparison-band::before,
.product-process::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ai-spectrum);
  content: "";
}

.comparison-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.comparison-band .eyebrow {
  color: #81c0c4;
}

.comparison-table {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.comparison-row span {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 500;
}

.comparison-row strong {
  font-weight: 690;
}

.comparison-labels {
  color: #81c0c4;
  font-size: 12px;
  text-transform: uppercase;
}

.cards {
  display: grid;
  gap: 14px;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three,
.cards.five,
.cards.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
}

.card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ai-spectrum);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.card p,
.footer p,
.legal p,
.faq p {
  color: var(--muted);
}

.link-card {
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 111, 121, 0.46);
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(53, 112, 119, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.two-col,
.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.teaser-sample {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sample-block {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.sample-block:last-child {
  border-bottom: 0;
}

.sample-block p {
  margin: 0;
  color: var(--muted);
}

.sample-data {
  border-left: 4px solid var(--tech);
  background: linear-gradient(100deg, rgba(53, 185, 189, 0.09), rgba(117, 101, 166, 0.05), rgba(255, 255, 255, 0.4));
}

.sample-output {
  border-left: 4px solid var(--rose);
}

.wide-image {
  aspect-ratio: 1.55;
}

.value-section {
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--content) + 56px) / 2));
  background-color: #e9f0ee;
  background-image: linear-gradient(120deg, rgba(53, 185, 189, 0.08), rgba(255, 255, 255, 0.42) 46%, rgba(213, 107, 114, 0.07));
}

.value-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bdcbc6;
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid #bdcbc6;
}

.value-list li > span {
  color: var(--tech);
  font-size: 12px;
  font-weight: 780;
}

.value-list h3,
.value-list p {
  margin-bottom: 0;
}

.value-list p {
  max-width: 800px;
  color: var(--muted);
}

.product-list {
  border-top: 1px solid var(--line);
}

.product-row {
  position: relative;
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 10px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.product-row::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ai-action);
  content: "";
  transition: width 220ms ease;
}

.product-row > div > span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 760;
}

.product-row h3 {
  margin: 5px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.product-row p {
  margin: 0;
  color: var(--muted);
}

.product-row > b {
  color: var(--tech);
  font-size: 30px;
  transition: transform 160ms ease;
}

.product-row:hover > b {
  transform: translateX(5px);
}

.product-row:hover::before {
  width: 100%;
}

.product-process {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-inline: max(28px, calc((100vw - var(--content) + 56px) / 2));
  background-color: #181a21;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.46) 0 0.7px, transparent 1.2px),
    radial-gradient(circle, rgba(211, 169, 197, 0.38) 0 0.8px, transparent 1.3px),
    radial-gradient(circle, rgba(124, 185, 204, 0.32) 0 0.65px, transparent 1.2px),
    radial-gradient(circle, rgba(231, 205, 158, 0.28) 0 0.75px, transparent 1.3px);
  background-position: 23px 37px, 79px 59px, 131px 101px, 53px 149px;
  background-size: 103px 91px, 163px 137px, 229px 181px, 283px 223px;
  color: #fff;
}

.product-process::after {
  position: absolute;
  z-index: 0;
  inset: 2px 0 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(222, 177, 205, 0.74) 0 0.95px, transparent 1.65px),
    radial-gradient(circle, rgba(143, 198, 217, 0.68) 0 1.05px, transparent 1.75px);
  background-position: 47px 67px, 139px 109px, 91px 163px;
  background-size: 241px 197px, 313px 257px, 359px 299px;
  content: "";
  opacity: 0.21;
  pointer-events: none;
  animation: star-field-twinkle 6.8s ease-in-out infinite alternate;
}

.product-process > * {
  position: relative;
  z-index: 1;
}

.product-process .eyebrow {
  color: #81c0c4;
}

.product-process .section-intro,
.tech-steps p {
  color: rgba(255, 255, 255, 0.68);
}

.tech-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.tech-steps article {
  min-height: 230px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(16, 35, 36, 0.96), rgba(21, 35, 39, 0.96));
}

.tech-steps article > span {
  display: block;
  margin-bottom: 30px;
  color: #81c0c4;
  font-size: 12px;
  font-weight: 780;
}

.example-band blockquote {
  max-width: 1050px;
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--rose);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.3;
}

.compact-value li {
  align-items: center;
}

.compact-value h3 {
  font-size: 18px;
}

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

.focus-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 13px 15px;
  border-left: 3px solid var(--sage);
  background: rgba(255, 255, 255, 0.78);
}

.band {
  padding: 78px max(28px, calc((100vw - var(--content) + 56px) / 2));
  background: var(--deep);
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps div {
  min-height: 185px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
}

.steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  font-weight: 800;
}

.steps p,
.band p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-strip {
  width: min(calc(100% - 56px), calc(var(--content) - 56px));
  margin: 18px auto 82px;
  padding: 42px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  background: var(--ai-spectrum);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: 0 22px 58px rgba(93, 83, 132, 0.2);
  animation: ai-spectrum-shift 12s ease-in-out infinite alternate;
}

.cta-strip::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.cta-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-strip .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cta-strip .primary {
  background: #fff;
  color: #6f527f;
  box-shadow: 0 10px 28px rgba(29, 24, 42, 0.16);
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
}

summary {
  min-height: 54px;
  padding: 17px 20px;
  cursor: pointer;
  font-weight: 740;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.promo {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 16px;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(24, 33, 31, 0.08);
}

.legal {
  display: grid;
  gap: 20px;
  max-width: 980px;
  margin-left: max(0px, calc((100vw - var(--content)) / 2));
}

.legal article {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  font-family: inherit;
  font-size: 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 560px;
  margin: 7px 0 0;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 38px;
  }

  .nav-links {
    gap: 14px;
  }

  .flow-map {
    gap: 36px 42px;
    padding-inline: 18px;
  }
}

@media (max-width: 820px) {
  .hero,
  .two-col,
  .cta-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 680px;
  }

  .nav-links {
    display: none;
  }

  .flow-map {
    grid-template-areas:
      "context"
      "birth"
      "calculation"
      "transits"
      "ai"
      "teaser"
      "pdf";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(7, auto);
    gap: 42px;
    min-height: 0;
    padding: 28px 18px;
  }

  .flow-connections path {
    opacity: 0.62;
    stroke-width: 2.4;
  }

  .flow-connections path[data-tone="context"] {
    stroke: url("#flow-context-gradient-mobile");
  }

  .flow-connections path[data-tone="calculation"] {
    stroke: url("#flow-calc-gradient-mobile");
  }

  .flow-connections path[data-tone="output"] {
    stroke: url("#flow-output-gradient-mobile");
  }

  .flow-connections path.is-active,
  .flow-connections path.is-complete {
    opacity: 1;
    stroke-width: 3;
  }

  .flow-node,
  .flow-ai {
    min-height: 102px;
  }

  .cards.three,
  .cards.five,
  .cards.six,
  .tech-steps,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .topbar {
    min-height: 62px;
    padding-inline: 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero,
  .section,
  .value-section,
  .product-process,
  .footer {
    padding-inline: 16px;
  }

  .home-hero {
    min-height: calc(100svh - 150px);
    align-content: center;
    padding-block: 26px 34px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
  }

  .lead,
  .section-intro {
    font-size: 17px;
  }

  .actions {
    align-items: stretch;
    margin-top: 22px;
  }

  .actions .button {
    width: 100%;
  }

  .proof-line {
    margin-top: 22px;
    padding-top: 16px;
  }

  .proof-line span:nth-child(n + 3) {
    display: none;
  }

  .home-hero .hero-media {
    display: none;
  }

  .page-hero {
    padding-top: 32px;
  }

  .section,
  .value-section,
  .product-process {
    padding-block: 62px;
  }

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

  .flow-shell {
    padding: 14px 0 0;
  }

  .flow-console {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
    padding-inline: 16px;
  }

  .flow-console-label {
    display: none;
  }

  .comparison-band,
  .band {
    padding: 62px 16px;
  }

  .comparison-row {
    gap: 14px;
    font-size: 14px;
  }

  .cards.two,
  .cards.three,
  .cards.five,
  .cards.six,
  .tech-steps,
  .steps,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .tech-steps article,
  .steps div,
  .focus-grid article {
    min-height: auto;
  }

  .tech-steps article > span {
    margin-bottom: 18px;
  }

  .mini-panel {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .price-line {
    flex-wrap: wrap;
  }

  .example-band blockquote {
    padding-left: 18px;
    font-size: 24px;
  }

  .value-list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .product-row {
    min-height: 116px;
  }

  .product-row h3 {
    font-size: 24px;
  }

  .cta-strip {
    width: calc(100% - 32px);
    margin-bottom: 58px;
    padding: 28px 22px;
  }

  .footer {
    flex-direction: column;
  }

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

  .js .mobile-cta:not([hidden]) {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: block;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(24, 33, 31, 0.12);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--ai-action);
    color: #fff;
    text-decoration: none;
    font-weight: 760;
  }
}

.js .ai-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes ai-scan {
  0%, 100% {
    top: 12%;
    opacity: 0.28;
  }
  50% {
    top: 86%;
    opacity: 0.78;
  }
}

@keyframes ai-pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ai-spectrum-shift {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes star-field-twinkle {
  0% {
    opacity: 0.18;
  }
  42% {
    opacity: 0.62;
  }
  70% {
    opacity: 0.31;
  }
  100% {
    opacity: 0.74;
  }
}

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

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

  .js .ai-reveal {
    opacity: 1;
    transform: none;
  }
}
