:root {
  color-scheme: dark;
  --bg: #020606;
  --bg-elevated: #071211;
  --bg-soft: #0b1b18;
  --surface: rgba(8, 24, 25, 0.78);
  --surface-strong: rgba(12, 35, 35, 0.9);
  --surface-warm: rgba(35, 26, 17, 0.78);
  --line: rgba(126, 234, 211, 0.18);
  --line-strong: rgba(126, 234, 211, 0.42);
  --text: #edffff;
  --muted: #a9c6c5;
  --subtle: #769191;
  --cyan: #73e8f2;
  --green: #7ee6c4;
  --gold: #f4b86b;
  --coral: #ff876d;
  --danger: #ff9b9b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --pointer-near-x: 0px;
  --pointer-near-y: 0px;
  --pointer-far-x: 0px;
  --pointer-far-y: 0px;
  --hero-exit: 0;
  --hero-scale: 1;
  --concept-reveal: 1;
  --concept-calm: 0;
  --concept-scale: 1;
  --concept-y: 0px;
  --flow-enter: 0;
  --flow-y: 0px;
  --radius: 8px;
  --max: 1160px;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background:
    linear-gradient(rgba(126, 234, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
}

body {
  overflow-x: clip;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(2, 6, 6, 0.98), rgba(4, 13, 12, 0.96) 44rem, rgba(9, 18, 15, 0.98)),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.58;
  background:
    linear-gradient(116deg, transparent 0 26%, rgba(126, 234, 211, 0.12) 26.1%, transparent 26.7% 100%),
    linear-gradient(64deg, transparent 0 59%, rgba(255, 135, 109, 0.1) 59.1%, transparent 59.8% 100%),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(244, 184, 107, 0.035) 87px, transparent 88px);
  transform: translate3d(var(--pointer-far-x), var(--pointer-far-y), 0);
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(126, 234, 211, 0.12), transparent 46%),
    linear-gradient(180deg, transparent 0, rgba(255, 135, 109, 0.05) 100%);
}

@keyframes beam-slide {
  0% {
    background-position: -320px 0;
  }
  100% {
    background-position: 320px 0;
  }
}

@keyframes panel-scan {
  0%,
  22% {
    transform: translateX(-125%) skewX(-18deg);
    opacity: 0;
  }
  38% {
    opacity: 0.62;
  }
  62%,
  100% {
    transform: translateX(140%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes stack-breathe {
  0%,
  100% {
    transform: translateZ(0) rotateX(64deg) rotateZ(-18deg) scale(1);
  }
  50% {
    transform: translateZ(50px) rotateX(64deg) rotateZ(-18deg) scale(1.04);
  }
}

@keyframes hero-copy-reveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 26px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-title-reveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, 28px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-sequence-reveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-18px, 18px, 0) rotateX(56deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

@keyframes hero-title-rise {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 112%, 0) rotateX(-54deg);
  }
  54% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

@keyframes hero-lead-line {
  0% {
    opacity: 0;
    filter: blur(8px);
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes orbit-spin {
  0% {
    transform: rotateX(66deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes orbit-spin-reverse {
  0% {
    transform: rotateX(62deg) rotateZ(360deg);
  }
  100% {
    transform: rotateX(62deg) rotateZ(0deg);
  }
}

@keyframes radar-scan {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.56);
  }
  48% {
    opacity: 1;
    transform: scaleX(1);
  }
}

img,
svg {
  max-width: 100%;
  height: auto;
}

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

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

code {
  border: 1px solid rgba(244, 184, 107, 0.34);
  border-radius: 6px;
  color: var(--gold);
  background: rgba(244, 184, 107, 0.1);
  padding: 0.08rem 0.35rem;
}

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

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border-radius: var(--radius);
  background: var(--gold);
  color: #15100a;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.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: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(126, 234, 211, 0.14);
  background: rgba(2, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 74px;
  gap: 1rem;
}

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

.brand__mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.46);
  border-radius: var(--radius);
  color: #071211;
  background:
    linear-gradient(135deg, rgba(4, 18, 19, 0.98), rgba(5, 28, 30, 0.98));
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.18),
    inset 0 -8px 16px rgba(0, 0, 0, 0.24),
    0 12px 26px rgba(0, 0, 0, 0.34);
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(237, 255, 255, 0.08);
}

.brand__mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.32));
}

.brand strong,
.site-footer__brand {
  display: block;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  color: var(--subtle);
  font-size: 0.72rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.92rem;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 0.55rem 0.75rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(126, 234, 211, 0.18);
  color: var(--text);
  background: rgba(126, 234, 211, 0.08);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(10, 29, 29, 0.88);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
}

.nav-toggle__bar::before {
  transform: translateY(-6px);
}

.nav-toggle__bar::after {
  transform: translateY(4px);
}

.story-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 6, 0.18), rgba(2, 6, 6, 0.72)),
    #020606;
}

.story-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.story-stage--sub {
  opacity: 0.56;
  filter: saturate(0.82) brightness(0.72);
}

main,
.site-footer,
.page-hero {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  z-index: 1;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
  background: transparent;
}

.hero__media,
.hero__media picture,
.hero__media img,
.hero__overlay,
.hero__hud {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
  opacity: calc(0.24 * (1 - var(--hero-exit, 0)));
}

.hero__media img {
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.72) contrast(1.18) brightness(0.62);
  mix-blend-mode: screen;
  transform: translate3d(0, calc(var(--scroll-y, 0px) * 0.035), 0) scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.hero__overlay {
  z-index: 2;
  pointer-events: none;
  opacity: calc(1 - var(--hero-exit, 0));
  background:
    linear-gradient(90deg, rgba(2, 6, 6, 0.98) 0%, rgba(3, 13, 12, 0.9) 36%, rgba(3, 13, 12, 0.46) 100%),
    linear-gradient(180deg, rgba(2, 6, 6, 0.1), rgba(2, 6, 6, 0.22) 62%, rgba(2, 6, 6, 0.88) 100%);
}

.hero__hud {
  z-index: 3;
  pointer-events: none;
  perspective: 1500px;
  transform-style: preserve-3d;
  opacity: calc(1 - var(--hero-exit, 0));
}

.hud-plane,
.hud-beam,
.hud-card,
.hud-stack {
  position: absolute;
  display: block;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hud-plane {
  border: 1px solid rgba(126, 234, 211, 0.1);
  background:
    linear-gradient(rgba(126, 234, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 76%, transparent 100%);
}

.hud-plane--floor {
  right: -10%;
  bottom: -28%;
  width: min(90vw, 1120px);
  height: 34rem;
  opacity: 0.56;
  transform:
    translate3d(var(--pointer-near-x), calc((var(--scroll-y, 0px) * -0.055) + var(--pointer-near-y)), 0)
    rotateX(68deg)
    rotateZ(-12deg);
}

.hud-plane--ceiling {
  top: -26%;
  right: -18%;
  width: min(78vw, 920px);
  height: 24rem;
  opacity: 0.22;
  transform:
    translate3d(var(--pointer-far-x), calc((var(--scroll-y, 0px) * 0.035) + var(--pointer-far-y)), -120px)
    rotateX(62deg)
    rotateZ(13deg);
}

.hud-beam {
  height: 2px;
  border-radius: 999px;
  opacity: 0.86;
  background:
    linear-gradient(90deg, transparent, rgba(126, 234, 211, 0.22), var(--cyan), rgba(255, 135, 109, 0.7), transparent);
  background-size: 320px 100%;
  box-shadow: 0 0 22px rgba(115, 232, 242, 0.32);
  animation: beam-slide 8s linear infinite;
}

.hud-beam--a {
  top: 28%;
  right: 5%;
  width: min(48vw, 720px);
  transform:
    translate3d(var(--pointer-near-x), calc((var(--scroll-y, 0px) * -0.12) + var(--pointer-near-y)), 120px)
    rotateZ(-18deg);
}

.hud-beam--b {
  right: 13%;
  bottom: 24%;
  width: min(40vw, 620px);
  animation-duration: 11s;
  transform:
    translate3d(var(--pointer-far-x), calc((var(--scroll-y, 0px) * 0.11) + var(--pointer-far-y)), -60px)
    rotateZ(14deg);
}

.hud-beam--c {
  top: 15%;
  left: 38%;
  width: min(34vw, 460px);
  opacity: 0.54;
  animation-duration: 13s;
  transform:
    translate3d(calc(var(--pointer-far-x) * -1), calc((var(--scroll-y, 0px) * -0.05) + var(--pointer-far-y)), 40px)
    rotateZ(8deg);
}

.hud-card {
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(6, 24, 25, 0.62);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hud-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: panel-scan 7s cubic-bezier(0.2, 0.75, 0.2, 1) infinite;
}

.hud-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 234, 211, 0.88), rgba(244, 184, 107, 0.66), transparent);
}

.hud-card span:nth-child(1) {
  top: 1rem;
  width: 32%;
}

.hud-card span:nth-child(2) {
  top: 2.4rem;
  width: 72%;
}

.hud-card span:nth-child(3) {
  top: 3.8rem;
  width: 50%;
}

.hud-card span:nth-child(4) {
  top: 5.2rem;
  width: 82%;
}

.hud-card--primary {
  top: 22%;
  right: 8%;
  width: 360px;
  height: 8.5rem;
  transform:
    translate3d(var(--pointer-near-x), calc((var(--scroll-y, 0px) * -0.18) + var(--pointer-near-y)), 160px)
    rotateX(9deg)
    rotateY(-24deg)
    rotateZ(-2deg);
}

.hud-card--secondary {
  right: 3%;
  bottom: 18%;
  width: 280px;
  height: 6.4rem;
  opacity: 0.78;
  transform:
    translate3d(var(--pointer-far-x), calc((var(--scroll-y, 0px) * 0.16) + var(--pointer-far-y)), 60px)
    rotateX(12deg)
    rotateY(22deg)
    rotateZ(4deg);
}

.hud-stack {
  right: 21%;
  bottom: 11%;
  width: 280px;
  height: 210px;
  opacity: 0.64;
  animation: stack-breathe 6.5s ease-in-out infinite;
}

.hud-stack span {
  position: absolute;
  inset: auto 0;
  height: 42px;
  border: 1px solid rgba(126, 234, 211, 0.22);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.18), rgba(255, 135, 109, 0.08)),
    rgba(8, 24, 25, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hud-stack span:nth-child(1) {
  bottom: 0;
}

.hud-stack span:nth-child(2) {
  bottom: 42px;
  transform: translateX(18px);
}

.hud-stack span:nth-child(3) {
  bottom: 84px;
  transform: translateX(36px);
}

.hud-stack span:nth-child(4) {
  bottom: 126px;
  transform: translateX(54px);
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  padding-block: 5.8rem 3.2rem;
  opacity: calc(1 - var(--hero-exit, 0));
  transform:
    translate3d(var(--pointer-far-x), calc((var(--scroll-y, 0px) * -0.025) + var(--pointer-far-y) + (var(--hero-exit, 0) * -92px)), 0)
    scale(var(--hero-scale, 1));
  transform-origin: 24% 52%;
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  line-break: strict;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.22;
  font-weight: 850;
  word-break: keep-all;
}

h1 {
  max-width: 900px;
  font-size: 3.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  word-break: normal;
}

.hero__sequence {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.18rem 0 0.9rem;
  perspective: 900px;
}

.hero__sequence span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.28);
  border-radius: 999px;
  color: rgba(237, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.08)),
    rgba(4, 16, 16, 0.62);
  padding: 0.28rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform-origin: left center;
  animation: hero-sequence-reveal 760ms cubic-bezier(0.18, 0.82, 0.2, 1) forwards;
}

.hero__sequence span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(244, 184, 107, 0.72);
}

.hero__sequence span:nth-child(1) {
  animation-delay: 260ms;
}

.hero__sequence span:nth-child(2) {
  animation-delay: 390ms;
}

.hero__sequence span:nth-child(3) {
  animation-delay: 520ms;
}

.hero__lead {
  display: grid;
  gap: 0.35rem;
  max-width: 740px;
  margin: 1.3rem 0 0;
  color: rgba(237, 255, 255, 0.88);
  font-size: 1.06rem;
  font-weight: 520;
}

.hero__lead span {
  position: relative;
  display: block;
  overflow: hidden;
  padding-left: 1.05rem;
}

.hero__lead span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.48rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 18px rgba(126, 234, 211, 0.36);
}

.hero__title-line {
  display: block;
  overflow: hidden;
  perspective: 900px;
  transform-style: preserve-3d;
}

.hero__title-text {
  display: inline-block;
  opacity: 0;
  transform-origin: left bottom;
  animation: hero-title-rise 1080ms cubic-bezier(0.16, 0.9, 0.16, 1) forwards;
}

.hero__content > .eyebrow,
.hero__lead span,
.hero .actions,
.hero .signal-strip {
  opacity: 0;
  animation: hero-copy-reveal 900ms cubic-bezier(0.18, 0.82, 0.2, 1) forwards;
}

.hero__content > .eyebrow {
  animation-delay: 150ms;
}

.hero__title-line:nth-child(1) .hero__title-text {
  animation-delay: 700ms;
}

.hero__title-line:nth-child(2) .hero__title-text {
  animation-delay: 880ms;
}

.hero__title-line:nth-child(3) .hero__title-text {
  animation-delay: 1060ms;
}

.hero__lead span:nth-child(1) {
  animation-name: hero-lead-line;
  animation-delay: 1320ms;
}

.hero__lead span:nth-child(2) {
  animation-name: hero-lead-line;
  animation-delay: 1500ms;
}

.hero .actions {
  animation-delay: 1700ms;
}

.hero .signal-strip {
  animation-delay: 1880ms;
}

.hero__title-line--wide {
  white-space: nowrap;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0.68rem 1rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button--primary {
  color: #071211;
  background: linear-gradient(135deg, var(--green), var(--cyan) 56%, var(--gold));
  box-shadow: 0 18px 44px rgba(126, 234, 211, 0.24);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(126, 234, 211, 0.32);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(9, 28, 28, 0.48);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(244, 184, 107, 0.1);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 840px;
  margin: 3rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.12), rgba(255, 135, 109, 0.06)),
    rgba(4, 17, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.signal-strip div {
  position: relative;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip dt {
  color: var(--green);
  font-weight: 900;
}

.signal-strip dd {
  margin: 0.2rem 0 0;
  color: rgba(237, 255, 255, 0.78);
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding-block: 5.5rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(126, 234, 211, 0.035) 12.1%, transparent 12.6% 100%),
    linear-gradient(116deg, transparent 0 72%, rgba(244, 184, 107, 0.04) 72.2%, transparent 72.8% 100%);
}

.section--muted {
  border-block: 1px solid rgba(126, 234, 211, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 24, 20, 0.96), rgba(5, 15, 14, 0.98));
}

.page-home main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 72% 11%, rgba(126, 234, 211, 0.12), transparent 28rem),
    radial-gradient(ellipse at 24% 42%, rgba(244, 184, 107, 0.08), transparent 30rem),
    radial-gradient(ellipse at 68% 76%, rgba(115, 232, 242, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(2, 6, 6, 0), rgba(4, 12, 12, 0.28) 12%, rgba(4, 13, 12, 0.36) 62%, rgba(2, 6, 6, 0.62));
}

.page-home main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(rgba(126, 234, 211, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(116deg, transparent 0 118px, rgba(244, 184, 107, 0.04) 119px, transparent 120px);
  background-size: 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 94%, transparent 100%);
  transform: translate3d(var(--pointer-far-x), calc(var(--scroll-y, 0px) * -0.018), 0);
}

.page-home .section--concept-zoom,
.page-home .section--flow,
.page-home .section--capabilities,
.page-home .section--proof,
.page-home .section--signal-news,
.page-home .section--cta {
  margin-top: -1px;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

.page-home .section--cta {
  padding-top: 5rem;
}

.page-home .site-footer {
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 6, 0.38), rgba(2, 6, 6, 0.96));
}

.section--note {
  padding-block: 3.2rem;
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section__header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section__tail {
  margin-top: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 3rem;
}

.concept-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.11), rgba(255, 135, 109, 0.06)),
    rgba(5, 18, 18, 0.84);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  transform-style: preserve-3d;
}

.section--concept-zoom {
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 6, 0.18), rgba(2, 6, 6, 0.03) 46%, rgba(2, 6, 6, 0.32)),
    linear-gradient(180deg, rgba(2, 6, 6, 0), rgba(8, 21, 19, 0.14) 42%, rgba(2, 6, 6, 0.72));
  isolation: isolate;
}

.section--concept-zoom::before,
.section--concept-zoom::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
}

.section--concept-zoom::before {
  opacity: 0.5;
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 92px, rgba(244, 184, 107, 0.05) 93px, transparent 94px);
  background-size: 62px 62px, 62px 62px, auto;
  transform: translate3d(var(--pointer-far-x), calc(var(--scroll-y, 0px) * -0.03), 0) rotate(-1.5deg);
}

.section--concept-zoom::after {
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(126, 234, 211, 0.1) 38.2%, transparent 39% 100%),
    linear-gradient(72deg, transparent 0 62%, rgba(255, 135, 109, 0.1) 62.2%, transparent 63% 100%);
  transform: translate3d(var(--pointer-near-x), calc(var(--scroll-y, 0px) * 0.035), 0);
}

.section--concept-zoom::before,
.section--concept-zoom::after,
.concept-zoom__field {
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
}

.concept-zoom__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  perspective: 1300px;
}

.concept-zoom__field span {
  position: absolute;
  display: block;
  border: 1px solid rgba(126, 234, 211, 0.16);
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  box-shadow: inset 0 0 36px rgba(126, 234, 211, 0.04), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.concept-zoom__field span:nth-child(1) {
  top: 8%;
  right: -9%;
  width: 42rem;
  height: 14rem;
  transform: translate3d(0, calc(var(--concept-reveal, 0) * -40px), -160px) rotateX(58deg) rotateZ(-14deg);
}

.concept-zoom__field span:nth-child(2) {
  left: -10%;
  bottom: 10%;
  width: 36rem;
  height: 12rem;
  opacity: 0.74;
  transform: translate3d(0, calc(var(--concept-reveal, 0) * 32px), -80px) rotateX(64deg) rotateZ(12deg);
}

.concept-zoom__field span:nth-child(3) {
  right: 18%;
  bottom: 18%;
  width: 16rem;
  height: 16rem;
  opacity: 0.5;
  transform: rotateX(64deg) rotateZ(-24deg);
}

.concept-zoom__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  opacity: var(--concept-reveal, 0);
  transform: translate3d(0, var(--concept-y, 42px), 0) scale(var(--concept-scale, 0.92));
  transform-origin: 50% 56%;
  will-change: transform, opacity;
}

.concept-zoom__kicker {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--cyan) 45%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(4.8rem, 10vw, 8.6rem);
  font-weight: 900;
  line-height: 0.92;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.34));
}

.concept-zoom__content h2 {
  max-width: 980px;
  margin-top: 1.1rem;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.concept-zoom__content h2 span {
  display: block;
}

.concept-zoom__content .kinetic-line {
  width: fit-content;
  transform-origin: left bottom;
}

.concept-zoom__content .kinetic-line:nth-child(2) {
  margin-left: clamp(1.4rem, 7vw, 6rem);
}

.concept-zoom__content .kinetic-line:nth-child(3) {
  margin-left: clamp(0rem, 2vw, 2rem);
  color: rgba(237, 255, 255, 0.92);
}

.concept-zoom__content .kinetic-line--shape-end {
  margin-left: clamp(1.6rem, 6vw, 5rem);
  color: rgba(237, 255, 255, 0.92);
}

.concept-zoom__body {
  max-width: 820px;
  margin-top: 1.35rem;
  border-left: 3px solid rgba(244, 184, 107, 0.78);
  padding-left: 1.25rem;
}

.concept-zoom__body p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  color: rgba(237, 255, 255, 0.76);
  font-size: 1.08rem;
  font-weight: 520;
  line-height: 1.95;
}

.concept-zoom__body span {
  display: block;
}

.concept-pulses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.concept-pulses span {
  display: inline-flex;
  min-width: 5.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 234, 211, 0.28);
  border-radius: 999px;
  color: rgba(237, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.12), rgba(244, 184, 107, 0.08)),
    rgba(4, 18, 18, 0.58);
  padding: 0.38rem 0.8rem;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.mare-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 820px;
  margin-top: 1rem;
}

.mare-principles span {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.12), rgba(244, 184, 107, 0.05)),
    rgba(4, 18, 18, 0.64);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 0.7rem 0.75rem;
  backdrop-filter: blur(12px);
}

.mare-principles span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--gold));
}

.mare-principles b {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.mare-principles em {
  margin-top: 0.14rem;
  color: #ffffff;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.mare-principles small {
  margin-top: 0.2rem;
  color: rgba(237, 255, 255, 0.68);
  font-size: 0.74rem;
  line-height: 1.4;
}

.concept-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent, rgba(126, 234, 211, 0.18), transparent);
  opacity: 0.5;
  transform: translateX(calc((var(--scroll-y, 0px) * 0.08) - 70%));
}

.concept-panel__heading {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(rgba(126, 234, 211, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(11, 46, 43, 0.84), rgba(8, 25, 24, 0.92));
  background-size: 32px 32px, 32px 32px, auto;
  padding: 1.45rem;
}

.concept-panel__heading::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 3.6rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--coral));
}

.concept-panel__heading h2 {
  color: #ffffff;
}

.concept-panel__body {
  align-self: center;
  min-width: 0;
}

.concept-panel__body p {
  margin: 0;
  color: rgba(237, 255, 255, 0.84);
  font-size: 1.02rem;
  font-weight: 520;
  line-height: 1.95;
}

.section--flow {
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding-block: 6.5rem;
  border-bottom: 1px solid rgba(126, 234, 211, 0.14);
  color: var(--text);
  background:
    radial-gradient(ellipse at 70% 36%, rgba(126, 234, 211, 0.16), transparent 34%),
    radial-gradient(ellipse at 24% 72%, rgba(244, 184, 107, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(1, 7, 7, 0.98), rgba(6, 18, 18, 0.96) 42%, rgba(5, 12, 12, 0.99));
  isolation: isolate;
}

.section--flow::before,
.section--flow::after {
  content: "";
  position: absolute;
  inset: -18% -10%;
  z-index: -1;
  pointer-events: none;
}

.section--flow::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 64% 38%, #000 0 38%, transparent 72%);
  transform: translate3d(var(--pointer-far-x), calc(var(--scroll-y, 0px) * -0.028), 0) rotate(-1deg);
}

.section--flow::after {
  opacity: 0.42;
  background:
    repeating-linear-gradient(118deg, transparent 0 68px, rgba(255, 135, 109, 0.12) 69px, transparent 70px),
    repeating-linear-gradient(28deg, transparent 0 82px, rgba(126, 234, 211, 0.1) 83px, transparent 84px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 74%, transparent 100%);
  transform: translate3d(var(--pointer-near-x), calc(var(--scroll-y, 0px) * 0.034), 0);
}

.flow-scene {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 8rem));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(1.4rem, 5vw, 4.8rem);
  align-items: center;
  transform: translate3d(0, var(--flow-y, 48px), 0);
  will-change: transform;
}

.flow-scene__copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 680px;
}

.flow-scene__copy h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 3.8vw, 4.15rem);
}

.flow-scene__copy h2 span {
  display: block;
}

.flow-scene__copy p:last-child {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(237, 255, 255, 0.78);
  font-weight: 520;
}

.workflow-orbit {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(46vw, 600px);
  aspect-ratio: 1;
  place-self: center end;
  place-items: center;
  perspective: 1200px;
  transform:
    translate3d(var(--pointer-near-x), calc(var(--pointer-near-y) + (var(--flow-enter, 0) * -18px)), 0)
    rotateY(-12deg);
  transform-style: preserve-3d;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: 50%;
  box-shadow:
    inset 0 0 48px rgba(126, 234, 211, 0.06),
    0 0 54px rgba(126, 234, 211, 0.06);
}

.orbit-ring--outer {
  width: 96%;
  height: 96%;
  border-color: rgba(126, 234, 211, 0.28);
  animation: orbit-spin 34s linear infinite;
}

.orbit-ring--middle {
  width: 72%;
  height: 72%;
  border-color: rgba(244, 184, 107, 0.3);
  animation: orbit-spin-reverse 26s linear infinite;
}

.orbit-ring--inner {
  width: 42%;
  height: 42%;
  border-color: rgba(115, 232, 242, 0.32);
  animation: orbit-spin 18s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 26px rgba(244, 184, 107, 0.86);
}

.orbit-ring::before {
  top: -0.3rem;
  left: 50%;
}

.orbit-ring::after {
  right: 12%;
  bottom: 13%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(115, 232, 242, 0.72);
}

.orbit-core {
  display: grid;
  width: 10.5rem;
  height: 10.5rem;
  place-items: center;
  border: 1px solid rgba(126, 234, 211, 0.34);
  border-radius: 50%;
  color: #061211;
  background:
    radial-gradient(circle at 44% 28%, rgba(255, 255, 255, 0.74), transparent 0.8rem),
    linear-gradient(135deg, var(--green), var(--cyan) 54%, var(--gold));
  box-shadow: 0 0 64px rgba(126, 234, 211, 0.24), 0 24px 70px rgba(0, 0, 0, 0.42);
  font-size: 0.9rem;
  font-weight: 950;
}

.orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.2rem;
  border: 1px solid rgba(126, 234, 211, 0.62);
  border-radius: 999px;
  color: #f7ffff;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.18), transparent 0.55rem),
    linear-gradient(135deg, rgba(11, 40, 39, 0.96), rgba(8, 22, 22, 0.92));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(126, 234, 211, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  padding: 0.45rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.orbit-node--assess {
  top: 23%;
  left: 5%;
  border-color: rgba(115, 232, 242, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 28px rgba(115, 232, 242, 0.22);
}

.orbit-node--design {
  top: 20%;
  right: 8%;
  border-color: rgba(244, 184, 107, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 28px rgba(244, 184, 107, 0.24);
}

.orbit-node--build {
  right: 0;
  bottom: 22%;
  border-color: rgba(126, 230, 196, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 28px rgba(126, 230, 196, 0.22);
}

.orbit-node--improve {
  bottom: 18%;
  left: 7%;
  border-color: rgba(255, 135, 109, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 135, 109, 0.22);
}

.flow-map {
  position: absolute;
  inset: auto -18vw 4rem auto;
  z-index: 1;
  display: grid;
  width: min(92vw, 960px);
  gap: 0.9rem;
  opacity: 0.78;
  transform:
    translate3d(var(--pointer-far-x), var(--pointer-far-y), 0)
    rotateX(22deg)
    rotateZ(-11deg);
  transform-style: preserve-3d;
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%, #000 72%, transparent 100%);
}

.flow-lane {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  opacity: 0.66;
  will-change: transform;
}

.flow-lane span {
  display: inline-flex;
  min-width: 9.2rem;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: var(--radius);
  color: rgba(237, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.16), rgba(244, 184, 107, 0.06)),
    rgba(7, 26, 26, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 38px rgba(0, 0, 0, 0.2);
  font-size: 0.86rem;
  font-weight: 850;
}

.flow-lane--one {
  transform: translate3d(calc((var(--scroll-y, 0px) * -0.12) + var(--pointer-near-x)), 0, 90px);
}

.flow-lane--two {
  transform: translate3d(calc((var(--scroll-y, 0px) * 0.16) + var(--pointer-far-x)), 0, 20px);
}

.flow-lane--three {
  transform: translate3d(calc((var(--scroll-y, 0px) * -0.08) + var(--pointer-near-x)), 0, -80px);
}

.flow-steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  grid-column: 1 / -1;
  margin-top: 0;
  margin-bottom: clamp(-13rem, -24vh, -9.5rem);
  perspective: 1200px;
  transform: translateY(clamp(-13rem, -24vh, -9.5rem));
}

.flow-steps article {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(6, 20, 20, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
  transform-style: preserve-3d;
}

.flow-steps--cinematic article {
  min-height: 7.1rem;
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.06)),
    linear-gradient(180deg, rgba(237, 255, 255, 0.04), rgba(237, 255, 255, 0.015)),
    rgba(4, 17, 17, 0.74);
  padding: 0.72rem 0.82rem;
  transform:
    rotateX(calc(var(--tilt-y, 0deg) * -1))
    rotateY(var(--tilt-x, 0deg))
    translate3d(0, var(--motion-lift, 0px), 0);
}

.flow-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid rgba(126, 234, 211, 0.44);
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(calc((var(--scroll-y, 0px) * 0.055) - 120%));
}

.flow-steps span {
  display: inline-flex;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.flow-steps h3 {
  margin-top: 0.34rem;
  color: #ffffff;
}

.flow-steps p {
  display: -webkit-box;
  margin: 0.38rem 0 0;
  overflow: hidden;
  color: rgba(237, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.section--capabilities {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 135, 109, 0.1), transparent 26%),
    radial-gradient(ellipse at 82% 20%, rgba(126, 234, 211, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(5, 12, 12, 0.99), rgba(8, 20, 18, 0.98));
  isolation: isolate;
}

.section--capabilities::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background:
    repeating-linear-gradient(90deg, transparent 0 112px, rgba(126, 234, 211, 0.08) 113px, transparent 114px),
    repeating-linear-gradient(0deg, transparent 0 72px, rgba(244, 184, 107, 0.05) 73px, transparent 74px);
  transform: translate3d(var(--pointer-far-x), calc(var(--scroll-y, 0px) * -0.02), 0) rotate(1.5deg);
}

.capability-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: start;
}

.capability-copy {
  position: sticky;
  top: 7.2rem;
  z-index: 3;
  min-width: 0;
}

.capability-copy h2,
.proof-copy h2,
.signal-news-copy h2 {
  font-size: clamp(1.9rem, 3.35vw, 3.55rem);
}

.capability-copy h2 span,
.proof-copy h2 span,
.signal-news-copy h2 span {
  display: block;
}

.capability-copy > p:last-of-type,
.proof-copy > p:last-of-type {
  max-width: 560px;
  color: rgba(237, 255, 255, 0.76);
  font-weight: 520;
}

.capability-copy .text-link {
  display: inline-flex;
  margin-top: 1rem;
}

.inline-cta--compact {
  display: grid;
  max-width: 560px;
  margin-top: 1.1rem;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
}

.inline-cta--compact .button {
  width: fit-content;
}

.capability-radar {
  position: absolute;
  top: 1rem;
  right: -9%;
  z-index: 0;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(126, 234, 211, 0.14);
  border-radius: 50%;
  opacity: 0.58;
  transform: rotateX(64deg) rotateZ(-18deg);
}

.capability-radar::before,
.capability-radar::after,
.capability-radar span {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(126, 234, 211, 0.16);
  border-radius: 50%;
}

.capability-radar::after {
  inset: 28%;
  border-color: rgba(244, 184, 107, 0.2);
}

.capability-radar span:nth-child(1) {
  inset: 44%;
}

.capability-radar span:nth-child(2) {
  inset: auto auto 50% 50%;
  width: 50%;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform-origin: left center;
  animation: radar-scan 8s linear infinite;
}

.capability-radar span:nth-child(3),
.capability-radar span:nth-child(4) {
  border-radius: 0;
  border-width: 0;
  background:
    linear-gradient(rgba(126, 234, 211, 0.16), rgba(126, 234, 211, 0.16)) center / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(126, 234, 211, 0.16), rgba(126, 234, 211, 0.16)) center / 1px 100% no-repeat;
}

.capability-radar span:nth-child(3) {
  inset: 6%;
}

.capability-radar span:nth-child(4) {
  inset: 20%;
  transform: rotate(45deg);
}

.capability-grid {
  position: relative;
  z-index: 2;
}

.card-carousel-controls {
  display: none;
}

.section--capabilities .service-card {
  min-height: 20rem;
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.16), rgba(244, 184, 107, 0.045)),
    linear-gradient(180deg, rgba(237, 255, 255, 0.055), rgba(237, 255, 255, 0.018)),
    rgba(5, 18, 18, 0.78);
  backdrop-filter: blur(16px);
}

.section--capabilities .service-card:nth-child(3n + 2) {
  transform: translateY(1.2rem);
}

.section--capabilities .service-card:nth-child(3n) {
  transform: translateY(2.4rem);
}

.section--capabilities .service-card:hover {
  transform:
    rotateX(calc(var(--tilt-y, 0deg) * -1))
    rotateY(var(--tilt-x, 0deg))
    translate3d(0, calc(var(--motion-lift, 0px) - 4px), 0);
}

@media (min-width: 1041px) {
  .section--capabilities .capability-stage {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .section--capabilities .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--capabilities .service-card:nth-child(3n + 2),
  .section--capabilities .service-card:nth-child(3n) {
    transform: none;
  }

  .section--capabilities .service-card:nth-child(even) {
    transform: translateY(1.15rem);
  }

  .section--capabilities .service-card:hover {
    transform:
      rotateX(calc(var(--tilt-y, 0deg) * -1))
      rotateY(var(--tilt-x, 0deg))
      translate3d(0, calc(var(--motion-lift, 0px) - 4px), 0);
  }
}

.section--proof {
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(126, 234, 211, 0.08), transparent 28%),
    linear-gradient(242deg, rgba(244, 184, 107, 0.08), transparent 24%),
    rgba(4, 11, 11, 0.99);
  isolation: isolate;
}

.section--proof::before {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  z-index: -1;
  width: min(70vw, 860px);
  height: 24rem;
  border: 1px solid rgba(126, 234, 211, 0.12);
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  transform:
    translate3d(var(--pointer-near-x), calc(var(--scroll-y, 0px) * -0.03), 0)
    rotateX(66deg)
    rotateZ(-14deg);
  opacity: 0.52;
}

.proof-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 5vw, 4.2rem);
  align-items: center;
}

.proof-card-wrap {
  position: relative;
  perspective: 1200px;
}

.proof-card-wrap--duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.proof-card-wrap::before {
  content: "";
  position: absolute;
  inset: 13% -8% -13% 8%;
  border: 1px solid rgba(244, 184, 107, 0.22);
  border-radius: var(--radius);
  background: rgba(244, 184, 107, 0.035);
  transform: rotateZ(4deg) translateZ(-40px);
}

.proof-card-wrap .work-card {
  max-width: none;
  min-height: 22rem;
  transform:
    rotateX(calc(var(--tilt-y, 0deg) * -1))
    rotateY(var(--tilt-x, 0deg))
    translate3d(0, var(--motion-lift, 0px), 0);
}

.proof-card-wrap--duo .work-card {
  min-height: auto;
  padding: 1.1rem;
}

.proof-card-wrap--duo .work-card h3 {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.works-list--single {
  grid-template-columns: minmax(0, 880px);
}

.section--signal-news {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 28%, rgba(126, 234, 211, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(4, 11, 11, 0.99), rgba(8, 18, 16, 0.98));
  isolation: isolate;
}

.signal-news-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.signal-news-copy {
  position: sticky;
  top: 7.2rem;
  min-width: 0;
}

.signal-news-copy::after {
  content: "";
  display: block;
  width: min(100%, 20rem);
  height: 3px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), transparent);
  transform-origin: left center;
  animation: signal-pulse 2.8s ease-in-out infinite;
}

.signal-news-grid .news-card {
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(5, 18, 18, 0.72);
  backdrop-filter: blur(14px);
}

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

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

.prose p + p,
.prose h2 + p,
.prose p + h2 {
  margin-top: 1.2rem;
}

.text-link,
.card__link {
  color: var(--green);
  font-weight: 850;
}

.text-accent {
  color: var(--cyan);
  font-size: 1.04em;
  text-shadow:
    0 0 18px rgba(115, 232, 242, 0.34),
    0 8px 26px rgba(0, 0, 0, 0.34);
}

.text-accent--gold {
  color: var(--gold);
  text-shadow:
    0 0 18px rgba(244, 184, 107, 0.34),
    0 8px 26px rgba(0, 0, 0, 0.34);
}

.text-accent--green {
  color: var(--green);
}

.text-link:hover,
.card__link:hover {
  color: var(--gold);
}

.card-grid {
  display: grid;
  gap: 1rem;
  perspective: 1200px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.12), rgba(244, 184, 107, 0.04)),
    rgba(7, 20, 20, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  --motion-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  transform-style: preserve-3d;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border-top: 2px solid rgba(126, 234, 211, 0.34);
}

.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.2), transparent 31%);
  transition: opacity 220ms ease;
}

.card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.44), 0 0 34px rgba(126, 234, 211, 0.08);
  --motion-lift: -6px;
}

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

.card > * {
  min-width: 0;
}

.card h3 {
  margin-top: 0.3rem;
  color: #ffffff;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.card p {
  margin: 0.8rem 0 0;
  color: rgba(237, 255, 255, 0.76);
  font-weight: 460;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.card__topline,
.tag-row,
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.card__topline span,
.tag-row span,
.article__meta span,
.article__meta time {
  max-width: 100%;
  border: 1px solid rgba(126, 234, 211, 0.26);
  border-radius: 999px;
  color: var(--green);
  background: rgba(126, 234, 211, 0.08);
  padding: 0.12rem 0.5rem;
  font-size: 0.76rem;
  line-break: anywhere;
  overflow-wrap: break-word;
  word-break: normal;
}

.mini-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mini-list span {
  position: relative;
  border-left: 2px solid rgba(244, 184, 107, 0.7);
  color: rgba(237, 255, 255, 0.88);
  padding-left: 0.65rem;
  font-size: 0.9rem;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.card__link {
  display: inline-flex;
  max-width: 100%;
  margin-top: 1.1rem;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.card__link--disabled {
  color: var(--subtle);
}

.card__note,
.small-note {
  color: var(--subtle);
  font-size: 0.9rem;
}

.work-card--featured {
  display: block;
  max-width: 880px;
}

.inline-cta,
.cta-panel {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.08)),
    rgba(8, 24, 25, 0.88);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.inline-cta h3,
.inline-cta p,
.cta-panel h2,
.cta-panel p {
  margin: 0;
}

.inline-cta p,
.cta-panel p {
  margin-top: 0.35rem;
  color: rgba(237, 255, 255, 0.78);
}

.inline-cta.inline-cta--compact {
  display: grid;
  max-width: 560px;
  margin-top: 1.1rem;
  gap: 0.9rem;
  align-items: start;
  justify-content: stretch;
  padding: 1rem;
}

.inline-cta.inline-cta--compact .button {
  width: fit-content;
  min-width: 7.2rem;
}

.section--cta {
  padding-block: 4rem;
  border-top: 1px solid rgba(126, 234, 211, 0.14);
  background:
    linear-gradient(90deg, rgba(126, 234, 211, 0.11), transparent),
    linear-gradient(135deg, #06100f, #10120b);
}

.section--cta .cta-panel {
  border-color: rgba(126, 234, 211, 0.28);
  background:
    linear-gradient(rgba(126, 234, 211, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(8, 35, 33, 0.92), rgba(11, 17, 12, 0.94));
  background-size: 36px 36px, 36px 36px, auto;
}

.page-sub main {
  background:
    radial-gradient(ellipse at 74% 4%, rgba(126, 234, 211, 0.13), transparent 28rem),
    radial-gradient(ellipse at 18% 44%, rgba(244, 184, 107, 0.08), transparent 26rem),
    linear-gradient(180deg, rgba(2, 6, 6, 0.18), rgba(4, 13, 12, 0.48));
}

.page-sub .section {
  background: transparent;
}

.page-sub .section::before {
  opacity: 0.72;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(126, 234, 211, 0.04) 16.1%, transparent 16.8% 100%),
    linear-gradient(116deg, transparent 0 68%, rgba(244, 184, 107, 0.045) 68.2%, transparent 68.8% 100%);
}

.page-hero {
  display: grid;
  min-height: clamp(28rem, 64svh, 44rem);
  align-items: center;
  overflow: hidden;
  padding-block: 7.4rem 4.8rem;
  border-bottom: 0;
  background:
    radial-gradient(ellipse at 28% 26%, rgba(115, 232, 242, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(2, 6, 6, 0.96), rgba(2, 6, 6, 0.5) 54%, rgba(2, 6, 6, 0.82)),
    transparent;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.page-hero::before {
  inset: -16%;
  opacity: 0.6;
  background:
    linear-gradient(rgba(126, 234, 211, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(116deg, transparent 0 88px, rgba(244, 184, 107, 0.055) 89px, transparent 90px);
  background-size: 54px 54px, 54px 54px, auto;
  mask-image: linear-gradient(90deg, #000 0 78%, transparent 100%);
  transform: translate3d(var(--pointer-far-x), calc(var(--scroll-y, 0px) * -0.018), 0) rotate(-1deg);
}

.page-hero::after {
  top: 18%;
  right: -6%;
  width: min(48vw, 620px);
  height: 18rem;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(126, 234, 211, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.07) 1px, transparent 1px),
    rgba(6, 24, 25, 0.24);
  background-size: 34px 34px;
  box-shadow: inset 0 0 44px rgba(126, 234, 211, 0.05), 0 30px 80px rgba(0, 0, 0, 0.28);
  transform:
    translate3d(var(--pointer-near-x), calc(var(--scroll-y, 0px) * 0.026), 0)
    rotateX(64deg)
    rotateZ(-14deg);
}

.page-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(1.5rem, 6vw, 5.4rem);
  align-items: center;
}

.page-hero__copy {
  max-width: 820px;
  min-width: 0;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6.4vw, 6.2rem);
  line-height: 0.96;
}

.page-hero__title-text {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(90deg, #ffffff 0 52%, #d9ffff 64%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(126, 234, 211, 0.12));
}

.page-hero__lead {
  max-width: 760px;
  margin: 1.3rem 0 0;
  color: rgba(237, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 540;
  line-height: 1.9;
}

.page-hero__console {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 18rem;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.13), rgba(244, 184, 107, 0.045)),
    rgba(5, 18, 18, 0.42);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  transform:
    translate3d(var(--pointer-near-x), var(--pointer-near-y), 0)
    rotateX(5deg)
    rotateY(-10deg);
}

.page-hero__console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(126, 234, 211, 0.11) 72.2%, transparent 73%),
    linear-gradient(180deg, transparent, rgba(126, 234, 211, 0.08));
  transform: translateX(calc((var(--scroll-y, 0px) * 0.04) - 18%));
}

.page-hero__console span {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(126, 234, 211, 0.26);
  border-radius: 999px;
  color: rgba(237, 255, 255, 0.88);
  background: rgba(126, 234, 211, 0.08);
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.page-hero__console span:nth-child(1) {
  color: #071211;
  background: linear-gradient(135deg, var(--green), var(--cyan), var(--gold));
}

.page-hero__console span:nth-child(2) {
  justify-self: end;
  color: var(--gold);
}

.page-hero__console span:nth-child(3) {
  margin-left: 16%;
}

.page-hero__console span:nth-child(4) {
  justify-self: end;
}

.page-sub .card {
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.045)),
    linear-gradient(180deg, rgba(237, 255, 255, 0.05), rgba(237, 255, 255, 0.014)),
    rgba(5, 18, 18, 0.74);
  backdrop-filter: blur(14px);
}

.page-sub .services-index-grid .service-card,
.page-sub .works-list .work-card,
.page-sub .link-card {
  min-height: 20rem;
}

.notice,
.legal,
.article {
  max-width: 860px;
}

.notice,
.legal,
.article {
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.1), rgba(244, 184, 107, 0.045)),
    rgba(5, 18, 18, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
  backdrop-filter: blur(12px);
}

.notice {
  border-left: 3px solid var(--gold);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.info-card dt {
  color: var(--subtle);
  font-size: 0.82rem;
}

.info-card dd {
  margin: 0.35rem 0 0;
  font-weight: 850;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.strength-list p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.article__eyecatch {
  display: block;
  width: 100%;
  margin: 1.2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.centered {
  text-align: center;
}

.centered .actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(126, 234, 211, 0.14);
  color: rgba(237, 255, 255, 0.78);
  background: #020606;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding-block: 2rem;
  color: rgba(237, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.2rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.copyright {
  color: rgba(237, 255, 255, 0.58);
}

.reveal-item {
  opacity: 0;
  --reveal-y: 54px;
  --reveal-x: 0px;
  --motion-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  filter: blur(16px);
  transform:
    perspective(1200px)
    translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--motion-lift)), 80px)
    scale(0.965)
    rotateX(calc(-18deg + var(--tilt-y)))
    rotateY(var(--tilt-x));
  transition:
    opacity 820ms ease,
    filter 960ms ease,
    transform 1050ms cubic-bezier(0.16, 0.9, 0.16, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, opacity;
}

.reveal-item.is-visible {
  opacity: 1;
  --reveal-y: 0px;
  filter: blur(0);
  transform:
    perspective(1200px)
    translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--motion-lift)), 0)
    scale(1)
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x));
}

.kinetic-copy .kinetic-line,
.kinetic-heading .kinetic-line {
  display: block;
  max-width: 100%;
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, 46px, 100px) rotateX(-42deg) scale(0.98);
  transform-origin: left bottom;
  transition:
    opacity 760ms ease,
    filter 920ms ease,
    transform 1050ms cubic-bezier(0.16, 0.9, 0.16, 1);
}

.kinetic-copy.is-visible .kinetic-line,
.reveal-item.is-visible .kinetic-line,
.concept-zoom__content .kinetic-line {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}

.kinetic-copy.is-visible .kinetic-line:nth-child(2),
.reveal-item.is-visible .kinetic-line:nth-child(2) {
  transition-delay: 120ms;
}

.kinetic-copy.is-visible .kinetic-line:nth-child(3),
.reveal-item.is-visible .kinetic-line:nth-child(3) {
  transition-delay: 240ms;
}

.kinetic-copy.is-visible p.kinetic-line,
.reveal-item.is-visible p.kinetic-line {
  transition-delay: 320ms;
}

@media (max-width: 1040px) {
  h1 {
    max-width: 780px;
    font-size: 2.85rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(2, 6, 6, 0.98) 0%, rgba(3, 13, 12, 0.92) 58%, rgba(3, 13, 12, 0.64) 100%),
      linear-gradient(180deg, rgba(2, 6, 6, 0.12), rgba(2, 6, 6, 0.34) 62%, rgba(2, 6, 6, 0.9) 100%);
  }

  .hud-card--primary {
    right: 2rem;
    width: 300px;
  }

  .hud-card--secondary,
  .hud-stack {
    opacity: 0.42;
  }

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

  .card-grid,
  .capability-grid,
  .services-index-grid {
    perspective: none;
  }

  .card-grid .reveal-item,
  .capability-grid .reveal-item,
  .services-index-grid .reveal-item,
  .section--capabilities .service-card {
    transform:
      translate3d(0, var(--reveal-y, 0px), 0)
      scale(0.985);
  }

  .card-grid .reveal-item.is-visible,
  .capability-grid .reveal-item.is-visible,
  .services-index-grid .reveal-item.is-visible,
  .section--capabilities .service-card.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .section--capabilities .service-card:hover {
    transform: translate3d(0, -4px, 0);
  }

  .concept-zoom__kicker {
    font-size: 5.4rem;
  }

  .concept-zoom__content h2 {
    font-size: 2.75rem;
  }

  .mare-principles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 960px;
  }

  .flow-scene,
  .capability-stage,
  .proof-stage,
  .signal-news-stage,
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-block: 6rem 3.8rem;
  }

  .page-hero__copy {
    max-width: 760px;
  }

  .page-hero__console,
  .page-hero__visual {
    width: min(100%, 34rem);
    min-height: 13rem;
    transform:
      translate3d(var(--pointer-near-x), var(--pointer-near-y), 0)
      rotateX(4deg)
      rotateY(-5deg);
  }

  .workflow-orbit {
    grid-column: 1;
    width: min(64vw, 440px);
    place-self: center;
    margin-top: 1.6rem;
  }

  .flow-map {
    position: relative;
    grid-column: 1;
    inset: auto;
    width: 100%;
    min-width: 0;
    margin: -0.8rem 0 0;
    opacity: 0.44;
    transform: rotateZ(-8deg);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  }

  .flow-steps {
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.2rem;
    margin-bottom: 0;
    transform: none;
  }

  .capability-copy,
  .signal-news-copy {
    position: relative;
    top: auto;
  }

  .capability-radar {
    top: 8rem;
    right: -18%;
    width: min(70vw, 520px);
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    justify-self: stretch;
    width: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 8, 8, 0.98);
    padding: 0.5rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.78rem 0.8rem;
  }

  .hero__content {
    padding-block: 4.6rem 2.7rem;
    transform:
      translate3d(0, calc((var(--scroll-y, 0px) * -0.018) + (var(--hero-exit, 0) * -64px)), 0)
      scale(var(--hero-scale, 1));
    transform-origin: left center;
  }

  .hero__title-line--wide {
    white-space: normal;
  }

  .hero h1,
  .hero__title-line,
  .hero__title-text {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero__title-line--wide .hero__title-text {
    white-space: normal;
  }

  .hud-card--primary,
  .hud-card--secondary,
  .hud-stack {
    display: none;
  }

  .hud-plane--floor {
    right: -42%;
    width: 52rem;
  }

  .signal-strip,
  .card-grid--3,
  .card-grid--2,
  .coconala-strip,
  .social-feed-grid,
  .direct-contact-panel,
  .split,
  .concept-panel,
  .strength-list,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .section__header {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-block: 4rem;
  }

  .section--concept-zoom,
  .section--flow {
    min-height: 100svh;
  }

  .concept-zoom__kicker {
    font-size: 4.2rem;
  }

  .concept-zoom__content h2 {
    font-size: 2.2rem;
  }

  .concept-zoom__body {
    margin-top: 1.2rem;
  }

  .mare-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }

  .section--flow {
    padding-block: 4.4rem;
  }

  .flow-scene {
    min-height: auto;
    gap: 1.2rem;
  }

  .flow-scene__copy h2 {
    font-size: 1.9rem;
    line-height: 1.35;
    word-break: normal;
  }

  .flow-map {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    margin: -1rem 0 -1rem;
    transform: rotateZ(-8deg);
  }

  .workflow-orbit {
    width: min(92vw, 360px);
    margin: 0 auto;
  }

  .orbit-core {
    width: 7.8rem;
    height: 7.8rem;
  }

  .orbit-node {
    min-width: 6rem;
    font-size: 0.68rem;
  }

  .capability-stage,
  .proof-stage,
  .signal-news-stage {
    gap: 1.4rem;
  }

  .capability-radar {
    display: none;
  }

  .section--capabilities .service-card,
  .section--capabilities .service-card:nth-child(3n + 2),
  .section--capabilities .service-card:nth-child(3n) {
    min-height: auto;
    transform: none;
  }

  .capability-grid,
  .services-index-grid {
    display: flex;
    gap: 0.9rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    margin-inline: auto;
    padding: 0.35rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .capability-grid::-webkit-scrollbar,
  .services-index-grid::-webkit-scrollbar {
    display: none;
  }

  .capability-grid .service-card,
  .services-index-grid .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .card-carousel-controls {
    display: flex;
    grid-column: 1;
    width: min(100% - 24px, var(--max));
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    margin: 0.1rem auto 0;
  }

  .section--capabilities .card-carousel-controls {
    width: 100%;
    margin-top: -0.2rem;
  }

  .card-carousel-controls button {
    position: relative;
    display: inline-flex;
    width: 2.35rem;
    min-width: 0;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(126, 234, 211, 0.28);
    border-radius: 999px;
    color: rgba(237, 255, 255, 0.72);
    background:
      linear-gradient(135deg, rgba(126, 234, 211, 0.1), rgba(244, 184, 107, 0.035)),
      rgba(3, 14, 14, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(237, 255, 255, 0.08),
      0 10px 24px rgba(0, 0, 0, 0.18);
    padding: 0;
  }

  .card-carousel-controls button::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
  }

  .card-carousel-controls button span {
    font-size: 0.66rem;
    font-weight: 950;
    line-height: 1;
  }

  .card-carousel-controls button.is-active {
    width: 3.1rem;
    border-color: rgba(126, 234, 211, 0.64);
    color: #061211;
    background:
      linear-gradient(135deg, var(--green), var(--cyan) 58%, var(--gold));
    box-shadow:
      0 0 24px rgba(126, 234, 211, 0.24),
      0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .flow-lane span {
    min-width: 8.2rem;
    min-height: 2.8rem;
  }

  .flow-steps {
    margin-top: 1.4rem;
    margin-bottom: 0;
    transform: none;
  }

  .inline-cta,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-cta--compact .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

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

  h1,
  .page-hero h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-block: 3.8rem 2.2rem;
  }

  .hero__title-line {
    width: 100%;
    max-width: 100%;
  }

  .hero__title-text {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .signal-strip {
    display: none;
  }

  .concept-panel {
    padding: 1rem;
  }

  .concept-zoom__kicker {
    font-size: 3.05rem;
  }

  .concept-zoom__content h2 {
    font-size: 1.78rem;
  }

  .concept-zoom__body {
    border-left-width: 2px;
    padding-left: 0.85rem;
  }

  .mare-principles {
    gap: 0.45rem;
  }

  .mare-principles span {
    padding: 0.62rem 0.68rem;
  }

  .concept-zoom__body p {
    font-size: 0.98rem;
  }

  .flow-scene__copy h2 {
    font-size: 1.58rem;
    word-break: normal;
  }

  .flow-map {
    margin-inline: -1.5rem;
  }

  .flow-lane span {
    min-width: 7.4rem;
    font-size: 0.78rem;
  }

  .page-hero::after {
    display: none;
  }

  .page-hero {
    padding-block: 4.7rem 3.2rem;
  }

  .page-hero__layout {
    gap: 1.4rem;
  }

  .page-hero__lead {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .page-hero__console {
    width: 100%;
    max-width: 100%;
    min-height: 10.5rem;
    overflow: hidden;
    padding: 0.95rem;
    transform: none;
  }

  .page-hero__system-panel {
    width: 100%;
  }

  .page-hero__system-panel .system-panel__matrix span,
  .page-hero__system-panel .system-panel__matrix span:nth-child(1),
  .page-hero__system-panel .system-panel__matrix span:nth-child(2),
  .page-hero__system-panel .system-panel__matrix span:nth-child(3) {
    justify-self: stretch;
    width: 100%;
  }
}

/* Green theme polish with retained MareTech mark. */
.hero__title-text {
  -webkit-text-stroke: 0.34px rgba(237, 255, 255, 0.16);
  text-shadow:
    0 1px 0 rgba(237, 255, 255, 0.12),
    0 16px 30px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(126, 234, 211, 0.1);
}

.page-hero__title-text,
.text-accent,
.text-accent--gold,
.text-accent--green {
  -webkit-text-stroke: 0.45px rgba(237, 255, 255, 0.18);
  filter:
    drop-shadow(0 1px 0 rgba(237, 255, 255, 0.14))
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.32));
}

.button--primary {
  border: 1px solid rgba(237, 255, 255, 0.44);
  color: #06100f;
  background:
    linear-gradient(112deg, transparent 0 24%, rgba(237, 255, 255, 0.46) 35%, transparent 47% 100%),
    linear-gradient(180deg, rgba(237, 255, 255, 0.34), rgba(237, 255, 255, 0) 42%),
    linear-gradient(135deg, var(--green), var(--cyan) 52%, var(--gold));
  background-size: 240% 100%, auto, auto;
  background-position: 110% 0, 0 0, 0 0;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.58),
    inset 0 -12px 22px rgba(6, 60, 54, 0.18),
    0 18px 44px rgba(126, 234, 211, 0.22),
    0 0 0 1px rgba(126, 234, 211, 0.1);
}

.button--primary:hover {
  background-position: 0 0, 0 0, 0 0;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.72),
    inset 0 -12px 24px rgba(6, 60, 54, 0.2),
    0 22px 56px rgba(126, 234, 211, 0.3),
    0 0 0 1px rgba(244, 184, 107, 0.2);
}

.button--ghost {
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.2);
}

.signal-strip,
.card,
.service-card,
.flow-steps--cinematic article,
.page-sub .card,
.section--capabilities .service-card,
.news-card,
.notice,
.legal,
.article,
.cta-panel {
  border-color: rgba(126, 234, 211, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.12),
    inset 0 -18px 36px rgba(126, 234, 211, 0.035),
    0 26px 72px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(237, 255, 255, 0.035);
}

.card::before,
.service-card::before,
.flow-steps article::before {
  border-top-color: rgba(126, 234, 211, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(237, 255, 255, 0.06),
    inset 0 18px 28px rgba(237, 255, 255, 0.035);
}

.card:hover,
.service-card:hover,
.flow-steps--cinematic article:hover {
  border-color: rgba(244, 184, 107, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.16),
    inset 0 -18px 36px rgba(126, 234, 211, 0.055),
    0 30px 76px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(126, 234, 211, 0.1);
}

.flow-steps article h3,
.service-card h3,
.card h3,
.signal-strip dt {
  text-shadow:
    0 1px 0 rgba(237, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.page-hero__console {
  gap: 0;
  min-height: 18.5rem;
  place-items: center;
  align-content: center;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(237, 255, 255, 0.12), transparent 10rem),
    linear-gradient(135deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.055)),
    rgba(5, 18, 18, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    inset 0 -28px 54px rgba(126, 234, 211, 0.035),
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(126, 234, 211, 0.08);
}

.page-hero__console::before {
  background:
    linear-gradient(rgba(126, 234, 211, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 44%, transparent 78%);
  transform: translate3d(calc(var(--pointer-far-x) * -0.4), calc(var(--scroll-y, 0px) * 0.02), 0);
}

.page-hero__console::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(126, 234, 211, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 44px rgba(126, 234, 211, 0.06),
    0 0 44px rgba(244, 184, 107, 0.08);
  opacity: 0.72;
  transform: rotateX(64deg) rotateZ(-16deg);
}

.page-hero__system-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(86%, 24rem);
  min-height: 14rem;
  align-content: center;
  border: 1px solid rgba(237, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(126, 234, 211, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 68% 24%, rgba(126, 234, 211, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(237, 255, 255, 0.1), rgba(126, 234, 211, 0.07)),
    rgba(4, 17, 16, 0.72);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    inset 0 -18px 34px rgba(126, 234, 211, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 46px rgba(126, 234, 211, 0.12);
  padding: 1.15rem;
}

.system-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.system-panel__header span,
.system-panel__matrix b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 234, 211, 0.32);
  border-radius: 999px;
  color: #06100f;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.46),
    inset 0 -8px 16px rgba(6, 60, 54, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

.system-panel__header strong {
  color: rgba(237, 255, 255, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.system-panel__matrix {
  display: grid;
  gap: 0.65rem;
}

.system-panel__matrix span {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.38rem 0.65rem;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(126, 234, 211, 0.2);
  border-radius: var(--radius);
  color: rgba(237, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.08), rgba(115, 232, 242, 0.025)),
    rgba(4, 19, 18, 0.72);
  padding: 0.68rem 0.75rem;
  box-shadow: inset 0 1px 0 rgba(237, 255, 255, 0.08);
}

.system-panel__matrix span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 24%;
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 234, 211, 0.7), transparent);
}

.system-panel__matrix b {
  grid-row: span 2;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  font-size: 0.72rem;
}

.system-panel__matrix em {
  color: #f3ffff;
  font-style: normal;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.system-panel__matrix small {
  color: rgba(169, 198, 197, 0.86);
  font-size: 0.72rem;
  line-height: 1.2;
}

.page-hero__system-panel .system-panel__matrix span {
  width: 100%;
  color: rgba(237, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.16), rgba(115, 232, 242, 0.04)),
    rgba(4, 19, 18, 0.8);
}

.page-hero__system-panel .system-panel__matrix span:nth-child(1) {
  justify-self: start;
  width: 64%;
  margin-left: 0;
  color: rgba(237, 255, 255, 0.92);
}

.page-hero__system-panel .system-panel__matrix span:nth-child(2) {
  justify-self: end;
  width: 64%;
  color: rgba(237, 255, 255, 0.92);
}

.page-hero__system-panel .system-panel__matrix span:nth-child(3) {
  justify-self: center;
  width: 58%;
  margin-left: 0;
}

.page-hero__system-panel .system-panel__matrix em,
.page-hero__system-panel .system-panel__matrix small {
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.page-hero__system-panel .system-panel__matrix small {
  color: rgba(218, 244, 239, 0.82);
}

.page-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 18.5rem;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 42%, rgba(237, 255, 255, 0.12), transparent 10rem),
    linear-gradient(135deg, rgba(126, 234, 211, 0.14), rgba(244, 184, 107, 0.055)),
    rgba(5, 18, 18, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    inset 0 -28px 54px rgba(126, 234, 211, 0.035),
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(126, 234, 211, 0.08);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  transform:
    translate3d(var(--pointer-near-x), var(--pointer-near-y), 0)
    rotateX(5deg)
    rotateY(-10deg);
}

.page-hero__visual::before,
.page-hero__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero__visual::before {
  inset: 0;
  background:
    linear-gradient(rgba(126, 234, 211, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 44%, transparent 78%);
  transform: translate3d(calc(var(--pointer-far-x) * -0.4), calc(var(--scroll-y, 0px) * 0.02), 0);
}

.page-hero__visual::after {
  inset: 12%;
  border: 1px solid rgba(126, 234, 211, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 44px rgba(126, 234, 211, 0.06),
    0 0 44px rgba(244, 184, 107, 0.08);
  opacity: 0.72;
  transform: rotateX(64deg) rotateZ(-16deg);
}

.hero-diagram {
  position: relative;
  z-index: 2;
  width: min(82%, 24rem);
  aspect-ratio: 1.22;
  transform: translate3d(calc(var(--pointer-far-x) * 0.28), calc(var(--pointer-far-y) * 0.22), 0);
}

.hero-diagram span {
  position: absolute;
  display: block;
}

.hero-diagram .diagram-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 255, 255, 0.22);
  border-radius: 999px;
  color: #06100f;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.58),
    0 16px 44px rgba(126, 234, 211, 0.22);
}

.diagram-node--core {
  inset: 50% auto auto 50%;
  width: 5.4rem;
  height: 5.4rem;
  transform: translate(-50%, -50%);
  font-size: 1.02rem;
}

.diagram-node--a,
.diagram-node--b,
.diagram-node--c {
  width: 3.5rem;
  height: 3.5rem;
}

.diagram-node--a {
  top: 8%;
  left: 16%;
}

.diagram-node--b {
  right: 6%;
  top: 30%;
  background: linear-gradient(135deg, #f9f2d7, var(--gold));
}

.diagram-node--c {
  left: 22%;
  bottom: 8%;
  background: linear-gradient(135deg, var(--cyan), #efffff);
}

.diagram-ring {
  inset: 50% auto auto 50%;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-18deg);
}

.diagram-ring--a {
  width: 86%;
  aspect-ratio: 1;
}

.diagram-ring--b {
  width: 58%;
  aspect-ratio: 1;
  border-color: rgba(244, 184, 107, 0.22);
  transform: translate(-50%, -50%) rotateX(64deg) rotateZ(28deg);
}

.diagram-beam {
  top: 50%;
  left: 12%;
  width: 76%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 234, 211, 0.8), rgba(244, 184, 107, 0.64), transparent);
  box-shadow: 0 0 22px rgba(126, 234, 211, 0.24);
}

.diagram-beam--a {
  transform: rotate(28deg);
}

.diagram-beam--b {
  transform: rotate(-21deg);
}

.work-orbit {
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(126, 234, 211, 0.055);
}

.work-orbit--case {
  inset: 10% 18% 24% 10%;
  transform: rotateX(62deg) rotateZ(10deg);
}

.work-orbit--value {
  inset: 24% 8% 14% 26%;
  border-color: rgba(244, 184, 107, 0.2);
  transform: rotateX(64deg) rotateZ(-24deg);
}

.work-orbit--resource {
  inset: 22% 22% 22% 22%;
  border-color: rgba(237, 255, 255, 0.18);
}

.work-cardlet {
  width: 35%;
  height: 24%;
  border: 1px solid rgba(237, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 255, 255, 0.12), rgba(126, 234, 211, 0.055)),
    rgba(4, 17, 16, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    0 20px 42px rgba(0, 0, 0, 0.28);
}

.work-cardlet::before,
.work-cardlet::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  height: 2px;
  border-radius: 999px;
  background: rgba(126, 234, 211, 0.48);
}

.work-cardlet::before {
  top: 34%;
}

.work-cardlet::after {
  top: 56%;
  right: 32%;
  background: rgba(244, 184, 107, 0.5);
}

.work-cardlet--a {
  top: 8%;
  left: 5%;
  transform: rotate(-8deg);
}

.work-cardlet--b {
  top: 32%;
  right: 4%;
  transform: rotate(7deg);
}

.work-cardlet--c {
  left: 30%;
  bottom: 6%;
  transform: rotate(-2deg);
}

.contact-window {
  inset: 18% 14% 18% 14%;
  border: 1px solid rgba(237, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(237, 255, 255, 0.11), transparent 20%),
    rgba(4, 17, 16, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    inset 0 -20px 42px rgba(126, 234, 211, 0.045),
    0 26px 58px rgba(0, 0, 0, 0.3);
}

.contact-window::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0.8rem;
  width: 3.8rem;
  height: 0.54rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0.28rem 50%, var(--green) 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 1.05rem 50%, var(--cyan) 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 1.82rem 50%, var(--gold) 0 0.22rem, transparent 0.24rem);
}

.contact-window__line {
  left: 24%;
  right: 24%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 234, 211, 0.72), transparent);
}

.contact-window__line--a {
  top: 42%;
}

.contact-window__line--b {
  top: 54%;
  right: 36%;
  background: linear-gradient(90deg, rgba(244, 184, 107, 0.64), transparent);
}

.hero-diagram .contact-window__send,
.hero-diagram .contact-satellite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
}

.contact-window__send {
  left: 50%;
  bottom: 22%;
  min-width: 7.8rem;
  color: #06100f;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  padding: 0.62rem 1rem;
  transform: translateX(-50%);
  box-shadow: 0 18px 42px rgba(126, 234, 211, 0.22);
}

.contact-satellite {
  border: 1px solid rgba(126, 234, 211, 0.28);
  color: rgba(237, 255, 255, 0.88);
  background: rgba(3, 14, 14, 0.7);
  padding: 0.48rem 0.76rem;
  font-size: 0.72rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.contact-satellite--a {
  top: 8%;
  right: 6%;
}

.contact-satellite--b {
  left: 4%;
  bottom: 8%;
}

.news-pulse {
  inset: 50% auto auto 50%;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-pulse--a {
  width: 32%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(126, 234, 211, 0.24), transparent 62%);
}

.news-pulse--b {
  width: 68%;
  aspect-ratio: 1;
  border-color: rgba(244, 184, 107, 0.18);
}

.news-line {
  left: 12%;
  right: 12%;
  height: 0.78rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 234, 211, 0.24), rgba(237, 255, 255, 0.08), transparent);
}

.news-line--a {
  top: 26%;
}

.news-line--b {
  top: 46%;
  right: 26%;
}

.news-line--c {
  top: 66%;
  left: 28%;
  background: linear-gradient(90deg, rgba(244, 184, 107, 0.28), rgba(237, 255, 255, 0.08), transparent);
}

.privacy-shield {
  inset: 16% 28% 18% 28%;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: 44% 44% 52% 52% / 28% 28% 62% 62%;
  background:
    radial-gradient(circle at 50% 42%, rgba(126, 234, 211, 0.18), transparent 52%),
    rgba(4, 17, 16, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(237, 255, 255, 0.14),
    0 22px 52px rgba(0, 0, 0, 0.3);
}

.privacy-lock {
  left: 50%;
  top: 48%;
  width: 3rem;
  height: 2.3rem;
  border: 1px solid rgba(237, 255, 255, 0.2);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  transform: translate(-50%, -50%);
}

.privacy-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 80%;
  width: 1.9rem;
  height: 1.7rem;
  border: 0.34rem solid rgba(126, 234, 211, 0.7);
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  transform: translateX(-50%);
}

.privacy-lane {
  left: 8%;
  right: 8%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 234, 211, 0.5), transparent);
}

.privacy-lane--a {
  top: 28%;
}

.privacy-lane--b {
  bottom: 24%;
}

.route-line {
  left: 14%;
  right: 14%;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(126, 234, 211, 0.76), transparent 42%, rgba(244, 184, 107, 0.76));
}

.route-line--a {
  transform: rotate(19deg);
}

.route-line--b {
  transform: rotate(-23deg);
}

.route-dot {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 40px rgba(126, 234, 211, 0.2);
}

.route-dot--a {
  left: 14%;
  top: 22%;
}

.route-dot--b {
  right: 14%;
  bottom: 22%;
  background: linear-gradient(135deg, #f9f2d7, var(--gold));
}

.route-code {
  left: 50%;
  top: 50%;
  color: rgba(237, 255, 255, 0.92);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 950;
  transform: translate(-50%, -50%);
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.contact-intro {
  align-items: center;
}

@media (min-width: 821px) {
  .contact-intro {
    grid-template-columns: minmax(26rem, 0.82fr) minmax(0, 1.18fr);
    gap: 2.4rem;
  }
}

.contact-intro h2 {
  width: fit-content;
  max-width: 100%;
  font-size: 2rem;
  line-height: 1.22;
  white-space: nowrap;
}

.contact-intro__text {
  max-width: 44rem;
}

.contact-intro__text span {
  display: inline;
}

.contact-intro__text .contact-intro__subline,
.direct-contact-panel__text span {
  display: block;
}

.coconala-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  border: 1px solid rgba(244, 184, 107, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 10% 10%, rgba(244, 184, 107, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(237, 255, 255, 0.055), rgba(126, 234, 211, 0.04)),
    rgba(5, 18, 18, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.coconala-strip h2 {
  margin-bottom: 0.52rem;
  font-size: clamp(1.32rem, 2.2vw, 2rem);
}

.coconala-strip p {
  margin: 0;
  color: rgba(237, 255, 255, 0.76);
}

.direct-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 1.2rem;
  align-items: center;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 86% 16%, rgba(126, 234, 211, 0.14), transparent 21rem),
    linear-gradient(135deg, rgba(126, 234, 211, 0.12), rgba(115, 232, 242, 0.04)),
    rgba(5, 18, 18, 0.78);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
  backdrop-filter: blur(14px);
}

.direct-contact-panel h2 {
  margin-bottom: 0.65rem;
}

.direct-contact-panel p {
  color: rgba(237, 255, 255, 0.78);
}

.direct-contact-box {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.06) 1px, transparent 1px),
    rgba(2, 10, 10, 0.44);
  background-size: 26px 26px, 26px 26px, auto;
  padding: 1rem;
}

.direct-contact-box__address {
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(126, 234, 211, 0.2);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(2, 10, 10, 0.46);
  padding: 0.68rem 0.78rem;
  font-weight: 850;
  overflow-wrap: break-word;
}

.direct-contact-box .button[disabled] {
  cursor: not-allowed;
  opacity: 0.54;
}

.direct-contact-box .button {
  width: 100%;
  white-space: normal;
}

.page-hero__orbit,
.page-hero__signal {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  display: block;
  max-width: none;
  padding: 0;
  font-size: 0;
  font-weight: 400;
  color: transparent;
  background: none;
}

.page-hero__orbit {
  border: 1px solid rgba(126, 234, 211, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(115, 232, 242, 0.08);
}

.page-hero__orbit--a {
  width: 72%;
  aspect-ratio: 1;
  transform: rotateX(68deg) rotateZ(22deg);
}

.page-hero__orbit--b {
  width: 54%;
  aspect-ratio: 1;
  border-color: rgba(244, 184, 107, 0.2);
  transform: rotateX(62deg) rotateZ(-28deg);
}

.page-hero__signal {
  border: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(115, 232, 242, 0.62), rgba(244, 184, 107, 0.5), transparent);
  box-shadow: 0 0 18px rgba(115, 232, 242, 0.2);
}

.page-hero__signal--a {
  top: 22%;
  left: 4%;
  width: 58%;
  transform: rotateZ(-16deg);
}

.page-hero__signal--b {
  right: 4%;
  bottom: 24%;
  width: 62%;
  transform: rotateZ(13deg);
}

.page-hero::after {
  display: none;
}

.page-hero__layout {
  grid-template-columns: minmax(0, 1fr);
}

.page-hero__copy {
  position: relative;
  z-index: 3;
}

.page-hero__visual {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: 7%;
  width: min(48vw, 620px);
  height: min(38vw, 420px);
  min-height: 16rem;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  opacity: 0.78;
  mix-blend-mode: screen;
  transform:
    translate3d(calc(var(--pointer-near-x) * 0.7), calc(var(--pointer-near-y) * 0.5), 0)
    rotateX(12deg)
    rotateZ(-8deg);
}

.page-hero__visual::before,
.page-hero__visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  pointer-events: none;
  border-radius: 50%;
}

.page-hero__visual::before {
  border: 1px solid rgba(126, 234, 211, 0.28);
  box-shadow:
    inset 0 0 42px rgba(126, 234, 211, 0.055),
    0 0 60px rgba(126, 234, 211, 0.08);
  transform: rotateX(68deg) rotateZ(18deg);
}

.page-hero__visual::after {
  inset: 22%;
  border: 1px solid rgba(244, 184, 107, 0.18);
  transform: rotateX(64deg) rotateZ(-28deg);
}

.hero-art,
.hero-art span {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-art span {
  inset: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 234, 211, 0.76), rgba(244, 184, 107, 0.48), transparent);
  box-shadow: 0 0 22px rgba(126, 234, 211, 0.2);
}

.hero-art span:nth-child(1) {
  top: 28%;
  left: 5%;
  width: 72%;
  height: 2px;
  transform: rotate(-14deg);
}

.hero-art span:nth-child(2) {
  top: 52%;
  right: 4%;
  width: 68%;
  height: 2px;
  transform: rotate(17deg);
}

.hero-art span:nth-child(3),
.hero-art span:nth-child(4),
.hero-art span:nth-child(5) {
  width: clamp(2.2rem, 5vw, 4rem);
  aspect-ratio: 1;
  border: 1px solid rgba(237, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(237, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, rgba(126, 234, 211, 0.78), rgba(115, 232, 242, 0.36));
}

.hero-art span:nth-child(3) {
  top: 18%;
  left: 34%;
}

.hero-art span:nth-child(4) {
  right: 16%;
  top: 42%;
  background:
    radial-gradient(circle at 35% 28%, rgba(237, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, rgba(244, 184, 107, 0.74), rgba(126, 234, 211, 0.2));
}

.hero-art span:nth-child(5) {
  left: 22%;
  bottom: 12%;
  width: clamp(1.7rem, 4vw, 3.2rem);
}

.hero-art--works span:nth-child(1),
.hero-art--works span:nth-child(2) {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 255, 255, 0.4), rgba(126, 234, 211, 0.55), transparent);
}

.hero-art--works span:nth-child(3),
.hero-art--works span:nth-child(4),
.hero-art--works span:nth-child(5) {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 255, 255, 0.12), rgba(126, 234, 211, 0.08)),
    rgba(5, 18, 18, 0.74);
  transform: rotate(-8deg);
}

.hero-art--works span:nth-child(4) {
  transform: rotate(8deg);
}

.hero-art--contact span:nth-child(3) {
  width: clamp(6rem, 12vw, 10rem);
  height: clamp(3.8rem, 8vw, 6.4rem);
  border-radius: var(--radius);
}

.hero-art--contact span:nth-child(4),
.hero-art--contact span:nth-child(5) {
  width: clamp(1.4rem, 3.5vw, 2.8rem);
}

.hero-art--news span:nth-child(3),
.hero-art--news span:nth-child(4),
.hero-art--news span:nth-child(5) {
  background: transparent;
  border-color: rgba(126, 234, 211, 0.28);
  box-shadow: inset 0 0 34px rgba(126, 234, 211, 0.08);
}

.hero-art--privacy span:nth-child(3) {
  border-radius: 44% 44% 52% 52% / 28% 28% 62% 62%;
  background: linear-gradient(135deg, rgba(126, 234, 211, 0.28), rgba(237, 255, 255, 0.08));
}

.work-card__title-sub {
  display: inline-block;
  margin-top: 0.08rem;
  color: rgba(237, 255, 255, 0.86);
  font-size: 0.88em;
}

.news-console {
  display: grid;
  gap: 1rem;
}

.news-console__controlbar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  padding: 0.82rem;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(126, 234, 211, 0.08), rgba(244, 184, 107, 0.035)),
    rgba(4, 17, 16, 0.74);
}

.news-console__month {
  position: relative;
}

.news-console__month-trigger,
.news-console__category,
.news-console__month-popover button {
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: 999px;
  color: rgba(237, 255, 255, 0.88);
  background: rgba(5, 18, 18, 0.72);
  font-weight: 900;
  cursor: pointer;
}

.news-console__month-trigger {
  display: inline-grid;
  min-width: 8.5rem;
  gap: 0.12rem;
  padding: 0.5rem 0.9rem;
  text-align: left;
}

.news-console__month-trigger span {
  color: rgba(169, 198, 197, 0.74);
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
}

.news-console__month-trigger strong {
  font-size: 0.92rem;
  line-height: 1.14;
}

.news-console__month-popover {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 20;
  display: grid;
  width: min(86vw, 23rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(126, 234, 211, 0.18), transparent 14rem),
    rgba(3, 13, 13, 0.96);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.42);
  padding: 0.7rem;
}

.news-console__month-popover[hidden] {
  display: none;
}

.news-console__month-popover button {
  min-height: 2.3rem;
  padding: 0.36rem 0.45rem;
}

.news-console__month-popover button[disabled] {
  cursor: not-allowed;
  opacity: 0.34;
}

.news-console__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.news-console__category {
  min-height: 2.5rem;
  padding: 0.45rem 0.82rem;
}

.news-console__month-trigger:hover,
.news-console__month-trigger[aria-expanded="true"],
.news-console__category.is-active,
.news-console__category:hover,
.news-console__month-popover button.is-active,
.news-console__month-popover button:not([disabled]):hover {
  border-color: rgba(244, 184, 107, 0.48);
  color: #071211;
  background: linear-gradient(135deg, var(--green), var(--cyan) 58%, var(--gold));
  box-shadow: 0 16px 34px rgba(126, 234, 211, 0.18);
}

.news-console__month-trigger:hover span,
.news-console__month-trigger[aria-expanded="true"] span {
  color: rgba(7, 18, 17, 0.68);
}

.news-console__tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  max-height: 21rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.25rem;
  scroll-padding-block: 0.75rem;
  scrollbar-width: thin;
}

.news-console__tab {
  position: relative;
  display: grid;
  min-height: 6rem;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.22);
  border-radius: var(--radius);
  color: rgba(237, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.08), rgba(244, 184, 107, 0.035)),
    rgba(5, 18, 18, 0.74);
  padding: 0.95rem;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.news-console__tab[hidden] {
  display: none;
}

.news-console__tab::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.news-console__tab span {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
}

.news-console__tab strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.news-console__tab.is-active,
.news-console__tab:hover {
  border-color: rgba(126, 234, 211, 0.52);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(126, 234, 211, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(126, 234, 211, 0.13), rgba(244, 184, 107, 0.055)),
    rgba(5, 18, 18, 0.84);
}

.news-console__tab.is-active::before {
  transform: scaleX(1);
}

.news-console__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(126, 234, 211, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.055) 1px, transparent 1px),
    radial-gradient(ellipse at 86% 0%, rgba(244, 184, 107, 0.12), transparent 20rem),
    rgba(4, 17, 16, 0.76);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: var(--shadow);
}

.news-console__panel {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.news-console__empty {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.news-console__empty[hidden] {
  display: none;
}

.news-console__panel:not(.is-active) {
  display: none;
}

.news-console__panel h2 {
  max-width: none;
  margin-top: 0.75rem;
}

.news-console__body {
  width: 100%;
  max-width: none;
  margin-top: 1rem;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

.news-console__body > * {
  max-width: none;
}

.social-feed-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.social-feed-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-feed {
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 82% 0%, rgba(126, 234, 211, 0.14), transparent 16rem),
    rgba(5, 18, 18, 0.78);
  box-shadow: var(--shadow-soft);
}

.social-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(126, 234, 211, 0.16);
  padding: 0.85rem 0.95rem;
}

.social-feed__head span {
  color: var(--green);
  font-weight: 950;
}

.social-feed__head a,
.social-feed__list a {
  color: rgba(237, 255, 255, 0.86);
}

.social-feed__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
}

.social-feed__list li + li {
  border-top: 1px solid rgba(126, 234, 211, 0.12);
}

.social-feed__list a {
  display: grid;
  gap: 0.32rem;
  border-radius: calc(var(--radius) - 2px);
  padding: 0.78rem;
}

.social-feed__list a:hover {
  background: rgba(126, 234, 211, 0.08);
}

.social-feed__list span {
  font-weight: 850;
  line-height: 1.45;
}

.social-feed__list small {
  color: rgba(169, 198, 197, 0.72);
  line-height: 1.4;
}

@media (max-width: 1040px) {
  .page-hero__visual {
    top: 22%;
    right: -2%;
    width: min(62vw, 34rem);
    min-height: 12rem;
  }

  .hero-diagram {
    width: min(86%, 22rem);
  }

  .page-hero__system-panel {
    width: min(88%, 24rem);
    min-height: 12.6rem;
  }
}

@media (max-width: 560px) {
  .hero__title-text {
    -webkit-text-stroke-width: 0.35px;
  }

  .page-hero__title-text,
  .text-accent,
  .text-accent--gold,
  .text-accent--green {
    -webkit-text-stroke-width: 0.25px;
  }

  .page-hero__console {
    justify-self: start;
    width: calc(100% - 20px);
    max-width: 100%;
    min-height: 13.5rem;
    transform: none;
  }

  .page-hero__visual {
    top: 24%;
    right: -18%;
    width: 84vw;
    height: 16rem;
    min-height: 0;
    opacity: 0.54;
    transform: rotateX(12deg) rotateZ(-10deg);
  }

  .page-hero__system-panel {
    width: 100%;
    min-height: 11.8rem;
    padding: 0.85rem;
  }

  .hero-diagram {
    width: min(92%, 20rem);
  }

  .diagram-node--core {
    width: 4.7rem;
    height: 4.7rem;
  }

  .diagram-node--a,
  .diagram-node--b,
  .diagram-node--c,
  .route-dot {
    width: 3rem;
    height: 3rem;
  }

  .contact-satellite--b {
    max-width: 11rem;
    text-align: center;
  }

  .system-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .system-panel__matrix span {
    padding: 0.58rem 0.62rem;
  }

  .page-hero__system-panel .system-panel__matrix span,
  .page-hero__system-panel .system-panel__matrix span:nth-child(1),
  .page-hero__system-panel .system-panel__matrix span:nth-child(2),
  .page-hero__system-panel .system-panel__matrix span:nth-child(3) {
    justify-self: stretch;
    width: 100%;
    margin-left: 0;
  }

  .system-panel__matrix b {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 820px) {
  .card-grid,
  .news-console__tabs {
    perspective: none;
  }

  .card-grid--2,
  .card-grid--3,
  .social-feed-grid,
  .proof-card-wrap--duo,
  .direct-contact-panel,
  .coconala-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-console__controlbar {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-console__categories {
    justify-content: flex-start;
  }

  .direct-contact-panel,
  .coconala-strip {
    align-items: start;
  }

  .direct-contact-panel > *,
  .coconala-strip > *,
  .direct-contact-box,
  .social-feed,
  .news-console,
  .news-console__tab {
    min-width: 0;
  }

  .direct-contact-box {
    width: 100%;
  }

  .page-sub .services-index-grid .service-card,
  .page-sub .works-list .work-card,
  .page-sub .link-card {
    min-height: auto;
  }

  .social-feed__list {
    padding-left: 0;
  }

  .social-feed__list li {
    list-style: none;
  }
}

@media (max-width: 560px) {
  .page-sub main,
  .page-sub .section,
  .page-hero {
    overflow-x: clip;
  }

  .page-hero__visual {
    right: -9%;
    width: 68vw;
    opacity: 0.42;
  }

  .page-hero__signal--b {
    width: 42vw;
  }

  .reveal-item {
    transform:
      translate3d(0, var(--reveal-y), 0)
      scale(0.985);
  }

  .reveal-item.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .capability-grid .service-card,
  .capability-grid .service-card.is-visible,
  .services-index-grid .service-card,
  .services-index-grid .service-card.is-visible {
    transform: none;
  }

  .card,
  .notice,
  .legal,
  .article,
  .cta-panel,
  .direct-contact-panel,
  .coconala-strip,
  .news-console,
  .social-feed {
    max-width: 100%;
  }

  .direct-contact-box__address {
    min-height: 2.45rem;
    justify-content: center;
    padding: 0.58rem 0.62rem;
    font-size: clamp(0.78rem, 3.15vw, 0.88rem);
    white-space: nowrap;
    overflow-wrap: normal;
  }
}

@media (max-width: 560px) {
  .contact-intro {
    gap: 1.2rem;
  }

  .contact-intro h2 {
    font-size: 1.42rem;
  }

  .contact-intro__text {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .contact-intro__text span {
    display: block;
  }
}

@media (max-width: 360px) {
  .page-hero h1 {
    font-size: 1.82rem;
  }

  .contact-intro h2 {
    font-size: 1.32rem;
  }

  .contact-intro__text {
    font-size: 0.94rem;
  }

  .news-console__tab {
    padding: 0.82rem 0.7rem;
  }

  .news-console__tab strong {
    font-size: 0.94rem;
  }
}

.ai-review-hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 92svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.ai-review-hero__media,
.ai-review-hero__media img,
.ai-review-hero__overlay,
.ai-review-hero__hud {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-review-hero__media {
  z-index: -3;
  opacity: 0.42;
}

.ai-review-hero__media img {
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.82) contrast(1.18) brightness(0.58);
  transform: scale(1.05);
}

.ai-review-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 6, 0.98) 0%, rgba(3, 13, 12, 0.9) 48%, rgba(3, 13, 12, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 6, 6, 0.15), rgba(2, 6, 6, 0.64) 100%);
}

.ai-review-hero__hud {
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(126, 234, 211, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, #000 68%, transparent 100%);
}

.ai-review-hero__hud span {
  position: absolute;
  display: block;
  border: 1px solid rgba(126, 234, 211, 0.24);
  background: rgba(6, 24, 25, 0.32);
  box-shadow: inset 0 0 28px rgba(126, 234, 211, 0.04), 0 20px 48px rgba(0, 0, 0, 0.22);
  transform: rotateX(62deg) rotateZ(-16deg);
}

.ai-review-hero__hud span:nth-child(1) {
  right: -8%;
  bottom: 12%;
  width: 44rem;
  height: 10rem;
}

.ai-review-hero__hud span:nth-child(2) {
  right: 18%;
  top: 21%;
  width: 20rem;
  height: 7rem;
  border-color: rgba(244, 184, 107, 0.22);
}

.ai-review-hero__hud span:nth-child(3) {
  right: 8%;
  top: 42%;
  width: 28rem;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  box-shadow: 0 0 28px rgba(126, 234, 211, 0.34);
  transform: rotateZ(-13deg);
}

.ai-review-hero__hud span:nth-child(4) {
  left: 4%;
  bottom: 8%;
  width: 34rem;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 135, 109, 0.75), rgba(126, 234, 211, 0.75), transparent);
  transform: rotateZ(9deg);
}

.ai-review-hero__content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding-block: 6rem 3.5rem;
}

.ai-review-hero__service {
  display: inline-flex;
  margin: 0 0 1rem;
  border: 1px solid rgba(244, 184, 107, 0.38);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(244, 184, 107, 0.1);
  padding: 0.26rem 0.62rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.ai-review-hero h1 {
  max-width: 920px;
  font-size: 3.28rem;
}

.ai-review-hero__lead {
  max-width: 780px;
  margin: 1.25rem 0 0;
  color: rgba(237, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 520;
}

.ai-review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 3rem 0 0;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(126, 234, 211, 0.13), rgba(244, 184, 107, 0.06)),
    rgba(4, 17, 17, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.ai-review-summary div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid rgba(126, 234, 211, 0.16);
}

.ai-review-summary div:last-child {
  border-right: 0;
}

.ai-review-summary dt {
  color: var(--green);
  font-weight: 900;
}

.ai-review-summary dd {
  margin: 0.2rem 0 0;
  color: rgba(237, 255, 255, 0.8);
  font-size: 0.9rem;
}

.ai-review-main {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(rgba(126, 234, 211, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 234, 211, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 6, 6, 0.95), rgba(5, 16, 14, 0.98));
  background-size: 64px 64px, 64px 64px, auto;
}

.ai-review-section {
  overflow: hidden;
}

.ai-review-section--band {
  border-block: 1px solid rgba(126, 234, 211, 0.14);
  background:
    linear-gradient(112deg, rgba(126, 234, 211, 0.1), transparent 32%),
    linear-gradient(248deg, rgba(244, 184, 107, 0.08), transparent 28%),
    rgba(5, 14, 14, 0.72);
}

.ai-review-section__head {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.ai-review-section__head h2 {
  font-size: 2.35rem;
}

.ai-review-section__head p:last-child {
  margin: 1rem 0 0;
  color: rgba(237, 255, 255, 0.76);
}

.ai-review-card-grid {
  display: grid;
  gap: 1rem;
}

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

.ai-review-card {
  position: relative;
  min-height: 13.4rem;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(126, 234, 211, 0.12), rgba(244, 184, 107, 0.05)),
    rgba(6, 22, 22, 0.78);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.ai-review-card::before,
.ai-review-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(237, 255, 255, 0.14);
}

.ai-review-card span {
  display: block;
  color: var(--green);
  font-weight: 900;
  line-height: 1.35;
}

.ai-review-card p,
.ai-review-plan p,
.ai-review-flow article p,
.ai-review-faq article p {
  color: rgba(237, 255, 255, 0.76);
}

.ai-review-scope {
  display: grid;
  grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1.24fr);
  gap: 2.4rem;
  align-items: start;
}

.ai-review-section__head--sticky {
  position: sticky;
  top: 7rem;
}

.ai-review-checklist,
.ai-review-material-list {
  display: grid;
  gap: 0.72rem;
}

.ai-review-checklist div,
.ai-review-material-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(126, 234, 211, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 17, 17, 0.64);
  padding: 0.82rem 0.9rem;
}

.ai-review-checklist b,
.ai-review-material-list b,
.ai-review-flow article span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(244, 184, 107, 0.34);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(244, 184, 107, 0.1);
  font-size: 0.8rem;
}

.ai-review-checklist span,
.ai-review-material-list span {
  min-width: 0;
  color: rgba(237, 255, 255, 0.88);
  font-weight: 760;
}

.ai-review-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ai-review-plan {
  position: relative;
  display: grid;
  min-height: 100%;
  gap: 0.72rem;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(126, 234, 211, 0.1), rgba(255, 135, 109, 0.045)),
    rgba(5, 18, 18, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.ai-review-plan--featured {
  border-color: rgba(244, 184, 107, 0.52);
  background:
    linear-gradient(155deg, rgba(244, 184, 107, 0.14), rgba(126, 234, 211, 0.1)),
    rgba(8, 24, 22, 0.9);
}

.ai-review-plan__top {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.ai-review-plan__top span,
.ai-review-plan__top strong {
  display: inline-flex;
  border-radius: var(--radius);
  padding: 0.2rem 0.48rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.ai-review-plan__top span {
  color: var(--green);
  background: rgba(126, 234, 211, 0.1);
}

.ai-review-plan__top strong {
  color: #17100a;
  background: var(--gold);
}

.ai-review-plan h3 {
  font-size: 1.08rem;
}

.ai-review-plan__price {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.35;
}

.ai-review-plan__label {
  margin: -0.45rem 0 0;
  color: var(--subtle);
  font-size: 0.84rem;
}

.ai-review-plan ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.2rem 0 0;
  padding-left: 1.05rem;
  color: rgba(237, 255, 255, 0.82);
  font-size: 0.9rem;
}

.ai-review-plan .button {
  align-self: end;
  margin-top: 0.35rem;
  width: 100%;
}

.ai-review-enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  border: 1px solid rgba(126, 234, 211, 0.18);
  border-radius: var(--radius);
  background: rgba(4, 17, 17, 0.66);
  padding: 1rem;
}

.ai-review-enterprise h3,
.ai-review-enterprise p {
  margin: 0;
}

.ai-review-enterprise p:last-child {
  margin-top: 0.5rem;
  color: rgba(237, 255, 255, 0.74);
}

.ai-review-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ai-review-flow article {
  border-top: 2px solid rgba(126, 234, 211, 0.34);
  padding-top: 1rem;
}

.ai-review-flow article h3 {
  margin-top: 0.72rem;
}

.ai-review-two-col {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  gap: 2rem;
  align-items: start;
}

.ai-review-material-list {
  margin-top: 0.4rem;
}

.ai-review-section--notice {
  padding-block: 3.6rem;
}

.ai-review-notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ai-review-notice-grid .notice {
  min-height: 16rem;
}

.ai-review-faq__list {
  display: grid;
  gap: 0.8rem;
}

.ai-review-faq article {
  border: 1px solid rgba(126, 234, 211, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 18, 18, 0.68);
  padding: 1rem;
}

.ai-review-faq article h3,
.ai-review-faq article p {
  margin: 0;
}

.ai-review-faq article p {
  margin-top: 0.45rem;
}

.ai-review-legal {
  padding-block: 2.2rem 3.2rem;
}

.ai-review-legal__inner {
  border-top: 1px solid rgba(126, 234, 211, 0.16);
  padding-top: 1.1rem;
  color: rgba(237, 255, 255, 0.66);
  font-size: 0.86rem;
}

.ai-review-legal__inner h2 {
  color: rgba(237, 255, 255, 0.78);
  font-size: 1rem;
}

.ai-review-legal__inner dl {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

.ai-review-legal__inner dl div {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 0.8rem;
}

.ai-review-legal__inner dt {
  color: rgba(126, 234, 211, 0.78);
  font-weight: 850;
}

.ai-review-legal__inner dd {
  margin: 0;
}

.ai-review-legal__inner p {
  max-width: 860px;
}

@media (max-width: 1040px) {
  .ai-review-hero h1 {
    font-size: 2.68rem;
  }

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

  .ai-review-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ai-review-hero {
    min-height: auto;
  }

  .ai-review-hero__content {
    padding-block: 5rem 3rem;
  }

  .ai-review-summary,
  .ai-review-scope,
  .ai-review-two-col,
  .ai-review-enterprise {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-review-summary div {
    border-right: 0;
    border-bottom: 1px solid rgba(126, 234, 211, 0.16);
  }

  .ai-review-summary div:last-child {
    border-bottom: 0;
  }

  .ai-review-section__head--sticky {
    position: static;
  }

  .ai-review-enterprise .button {
    width: 100%;
  }

  .ai-review-notice-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .ai-review-hero h1 {
    font-size: 2.08rem;
  }

  .ai-review-section__head h2 {
    font-size: 1.72rem;
  }

  .ai-review-hero__lead {
    font-size: 0.98rem;
  }

  .ai-review-card-grid--3,
  .ai-review-plan-grid,
  .ai-review-flow__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .ai-review-card,
  .ai-review-plan,
  .ai-review-faq article,
  .ai-review-checklist div,
  .ai-review-material-list div {
    max-width: 100%;
  }

  .ai-review-legal__inner dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.14rem;
  }
}

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

  .button--primary:hover {
    transform: none;
  }

  .hero__media img,
  .hero__content,
  .hud-plane,
  .hud-beam,
  .hud-card,
  .hud-stack,
  body::before,
  .section--flow::before,
  .section--flow::after,
  .flow-lane,
  .flow-steps article::before,
  .concept-panel::before,
  .workflow-orbit,
  .orbit-ring,
  .capability-radar,
  .reveal-item {
    transform: none !important;
  }

  .hud-beam,
  .hud-card::after,
  .hud-stack,
  .orbit-ring,
  .capability-radar span:nth-child(2),
  .signal-news-copy::after,
  .flow-steps article::before {
    animation: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
  }
}

body.page-ai-review {
  color-scheme: light;
  color: #1c2630;
  background: #f7fbff;
  overflow-x: hidden;
}

html:has(body.page-ai-review) {
  scroll-behavior: auto;
}

.page-ai-review > .site-header,
.page-ai-review > .site-footer,
.page-ai-review > .story-stage--sub {
  display: none;
}

.page-ai-review a {
  color: inherit;
}

.lp-page {
  --lp-ink: #1b2430;
  --lp-muted: #5c6875;
  --lp-line: #dce5ed;
  --lp-soft: #eef8f4;
  --lp-blue: #2563eb;
  --lp-teal: #0f766e;
  --lp-yellow: #facc15;
  --lp-coral: #dc2626;
  --lp-dark: #111827;
  min-height: 100vh;
  color: var(--lp-ink);
  background:
    linear-gradient(90deg, rgba(36, 107, 254, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 168, 132, 0.05) 1px, transparent 1px),
    #f7fbff;
  background-size: 38px 38px;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  padding-bottom: 6.4rem;
  overflow-x: hidden;
}

.lp-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.lp-topbar {
  color: #f8fafc;
  background: linear-gradient(90deg, #0f172a, #0f766e);
  font-weight: 900;
}

.lp-topbar__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.lp-topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(28, 38, 48, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.lp-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 68px;
  align-items: center;
  gap: 1.2rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  line-height: 1.1;
}

.lp-brand__mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.lp-brand__text {
  display: grid;
}

.lp-brand strong {
  font-size: 1.02rem;
}

.lp-brand__text > span {
  margin-top: 0.22rem;
  color: var(--lp-muted);
  font-size: 0.76rem;
}

.lp-nav {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  color: var(--lp-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.lp-nav a {
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
}

.lp-nav a:hover {
  color: var(--lp-blue);
  background: rgba(36, 107, 254, 0.08);
}

.lp-header-cta {
  border-radius: 8px;
  color: #fff;
  background: var(--lp-teal);
  padding: 0.62rem 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.24);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--lp-line);
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef7f5 54%, #edf4ff 100%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(15, 118, 110, 0.12) 58.2% 59.4%, transparent 59.6%),
    linear-gradient(18deg, transparent 0 36%, rgba(37, 99, 235, 0.10) 36.2% 37.1%, transparent 37.3%);
}

.lp-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  padding-block: 4.8rem 4.2rem;
}

.lp-kicker {
  margin: 0 0 0.65rem;
  color: var(--lp-blue);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lp-hero h1 {
  max-width: 820px;
  color: var(--lp-ink);
  font-size: clamp(2.45rem, 4.2vw, 4.15rem);
  line-height: 1.12;
  word-break: keep-all;
}

.lp-hero h1 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.lp-hero__lead {
  max-width: 720px;
  margin: 1.15rem 0 0;
  color: #273342;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.9;
  word-break: keep-all;
}

.lp-hero__lead > span {
  display: block;
}

.lp-hero__actions,
.lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.lp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.74rem 1.1rem;
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.lp-button--primary {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #047857);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.22);
}

.lp-button--secondary,
.lp-button--outline {
  border-color: rgba(36, 107, 254, 0.24);
  color: var(--lp-blue);
  background: #fff;
}

.lp-button--dark {
  color: #fff;
  background: var(--lp-dark);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.22);
}

.page-ai-review .lp-button--primary,
.page-ai-review .lp-button--dark,
.page-ai-review .lp-header-cta {
  color: #fff;
}

.page-ai-review .lp-button--secondary,
.page-ai-review .lp-button--outline {
  color: var(--lp-blue);
}

.lp-button--review {
  border-color: rgba(96, 165, 250, 0.46);
  color: #fff;
  background:
    linear-gradient(135deg, #1d4ed8 0%, #2563eb 52%, #38bdf8 100%);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.page-ai-review .lp-button--review {
  color: #fff;
}

.lp-button--production {
  border-color: rgba(216, 180, 106, 0.82);
  color: #fffaf0;
  background:
    linear-gradient(135deg, #111827 0%, #2b2634 45%, #b87555 100%);
  box-shadow: 0 18px 36px rgba(64, 44, 24, 0.24);
}

.page-ai-review .lp-button--production {
  color: #fffaf0;
}

.lp-notfound-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100vh;
  padding-bottom: 0;
}

.lp-notfound-header .lp-header__inner {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
}

.lp-notfound-header .lp-brand__logo-link,
.lp-notfound-header .lp-brand__text {
  min-width: 0;
}

.lp-notfound-header .lp-brand__logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.lp-notfound-header .lp-brand__text strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.06;
  overflow-wrap: normal;
  white-space: nowrap;
  transform: translateY(0.08rem);
}

.lp-notfound-header .lp-brand__text a {
  color: inherit;
  text-decoration: none;
}

.lp-notfound-header .lp-brand__text > span {
  margin-top: 0.08rem;
}

.lp-notfound-header .lp-brand__text a:hover {
  color: var(--lp-blue);
}

.lp-notfound {
  position: relative;
  display: grid;
  min-height: calc(100vh - 68px);
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(15, 118, 110, 0.1);
  background:
    radial-gradient(ellipse at 18% 14%, rgba(20, 184, 166, 0.18), transparent 28rem),
    radial-gradient(ellipse at 84% 18%, rgba(37, 99, 235, 0.12), transparent 26rem),
    linear-gradient(135deg, #f8fafc 0%, #eef7f5 52%, #edf4ff 100%);
  padding-block: clamp(3.8rem, 9vw, 7rem);
}

.lp-notfound::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(15, 118, 110, 0.13) 58.2% 59.3%, transparent 59.6%),
    linear-gradient(18deg, transparent 0 35%, rgba(37, 99, 235, 0.1) 35.2% 36.1%, transparent 36.4%),
    linear-gradient(90deg, rgba(36, 107, 254, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 168, 132, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px, 38px 38px;
}

.lp-notfound__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.lp-notfound__code {
  margin: 0;
  color: transparent;
  background: linear-gradient(135deg, var(--lp-teal), var(--lp-blue));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(4.8rem, 13vw, 8.2rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  filter: drop-shadow(0 18px 34px rgba(36, 99, 235, 0.12));
}

.lp-notfound h1 {
  margin: 0.8rem 0 0;
  color: var(--lp-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.lp-notfound__lead {
  max-width: 620px;
  margin: 1rem 0 0;
  color: #334155;
  font-size: 1.06rem;
  font-weight: 680;
  line-height: 1.9;
}

.lp-notfound__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.82rem;
  margin-top: 1.8rem;
}

@media (max-width: 760px) {
  .lp-notfound-header .lp-header__inner {
    gap: 0.48rem;
  }

  .lp-notfound-header .lp-brand__mark {
    width: 2.05rem;
    height: 2.05rem;
  }

  .lp-notfound {
    min-height: calc(100vh - 64px);
    padding-block: 3.2rem;
  }

  .lp-notfound-header .lp-brand__text strong {
    font-size: 0.72rem;
  }

  .lp-notfound h1 {
    font-size: clamp(1.58rem, 8vw, 2rem);
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .lp-notfound-header .lp-brand__text {
    min-width: 0;
  }

  .lp-notfound__actions {
    display: grid;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .lp-notfound-header .lp-header__inner {
    gap: 0.38rem;
  }

  .lp-notfound-header .lp-brand__mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .lp-notfound-header .lp-brand__text strong {
    font-size: 0.64rem;
  }

  .lp-notfound-header .lp-brand__text > span {
    font-size: 0.68rem;
  }
}

.lp-hero__bullets {
  display: grid;
  gap: 0.42rem;
  margin: 1.35rem 0 0;
  padding-left: 1.1rem;
  color: #334155;
  font-weight: 760;
}

.lp-report {
  position: relative;
  border: 2px solid rgba(28, 38, 48, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 60px rgba(36, 107, 254, 0.18);
  padding: 1.1rem;
}

.lp-report--link {
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-report--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
}

.lp-report::before {
  content: "PDF + Markdown";
  position: absolute;
  top: -1rem;
  right: 1rem;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  padding: 0.34rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 950;
}

.lp-report__head,
.lp-report__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.lp-report__head span,
.lp-report__footer span {
  color: var(--lp-muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.lp-report__head strong {
  color: var(--lp-blue);
}

.lp-score {
  display: grid;
  margin: 1rem 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-dark), #263345);
  padding: 1rem;
}

.lp-score span {
  color: #8df0d2;
  font-weight: 900;
}

.lp-score b {
  font-size: 3.2rem;
  line-height: 1;
}

.lp-score small {
  color: rgba(255, 255, 255, 0.76);
}

.lp-report__list {
  display: grid;
  gap: 0.6rem;
}

.lp-report__list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 0.72rem;
}

.lp-report__list b {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
}

.lp-report__list .is-high {
  background: var(--lp-coral);
}

.lp-report__list .is-mid {
  background: var(--lp-yellow);
}

.lp-report__list .is-low {
  background: var(--lp-teal);
}

.lp-report__list em {
  border-radius: 8px;
  color: #fff;
  background: #1f2937;
  padding: 0.1rem 0.4rem;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 900;
}

.lp-report__footer {
  margin-top: 1rem;
  border-top: 1px solid var(--lp-line);
  padding-top: 0.8rem;
}

.lp-section {
  scroll-margin-top: 96px;
  padding-block: 4.8rem;
  background: #fff;
}

.lp-legal[id] {
  scroll-margin-top: 96px;
}

.lp-section--cream {
  background: #f7fbff;
}

.lp-section--ai-gap {
  scroll-margin-top: 56px;
  background: #fff;
}

.lp-section--self-check {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.lp-section--lite {
  padding-block: 3.8rem;
  color: #fff;
  background:
    linear-gradient(135deg, #111827 0 42%, #0f766e 42.2% 100%);
}

.lp-section--tools {
  padding-block: 1rem;
  border-block: 1px solid var(--lp-line);
  background: #fff;
}

.lp-section--handoff {
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  background:
    linear-gradient(180deg, #f0fdf8 0%, #fff 100%);
}

.lp-section--trust {
  background:
    linear-gradient(180deg, #fff 0%, #f4fbf8 100%);
}

.lp-section--sample {
  background: #f7fbff;
}

.lp-section--danger {
  color: #fff;
  background:
    linear-gradient(135deg, #111827, #273244 66%, #1d3a44);
}

.lp-section--pricing {
  border-block: 1px solid rgba(217, 119, 6, 0.14);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(253, 224, 71, 0.2), transparent 28rem),
    radial-gradient(ellipse at 88% 16%, rgba(20, 184, 166, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffdf3 0%, #f7fdf8 100%);
}

.lp-pricing-title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.28;
  text-wrap: balance;
}

.lp-section--compare {
  background: #f7fbff;
}

.lp-section--flow {
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.lp-section--materials {
  background: linear-gradient(135deg, #e9fff8, #fff7cf 58%, #eef4ff);
}

.lp-section__head {
  scroll-margin-top: 108px;
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.lp-section__head--center {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.lp-section__head h2,
.lp-danger h2,
.lp-materials h2,
.lp-final-cta h2 {
  color: inherit;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.lp-section__head h2 > span {
  display: block;
}

.lp-section__head p:last-child,
.lp-danger p,
.lp-materials p {
  color: var(--lp-muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.85;
  text-wrap: pretty;
}

.lp-copy-lines > span {
  display: block;
}

.lp-copy-lines > span + span {
  margin-top: 0.12rem;
}

.lp-check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  color: #273342;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.7;
  list-style: none;
}

.lp-check-list li {
  position: relative;
  min-width: 0;
  padding-left: 2rem;
  overflow-wrap: anywhere;
}

.lp-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0.1rem;
  left: 0;
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--lp-teal);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
}

.lp-amount {
  display: inline-block;
  white-space: nowrap;
}

.lp-keep {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.lp-stable-lines > span,
.lp-fixed-heading > span {
  display: block;
}

.lp-fixed-heading > span {
  white-space: nowrap;
}

.lp-scroll-highlight {
  animation: lp-scroll-highlight 2.6s ease-out;
  outline: 3px solid transparent;
  outline-offset: 5px;
}

#pre-consult:target,
#first-five:target,
#lite:target,
#standard:target {
  animation: lp-scroll-highlight 2.6s ease-out;
  outline: 3px solid transparent;
  outline-offset: 5px;
}

.page-ai-review:has([data-focus-scroll="pre-consult"]:focus) #pre-consult,
.page-ai-review:has([data-focus-scroll="first-five"]:focus) #first-five,
.page-ai-review:has([data-focus-scroll="lite"]:focus) #lite,
.page-ai-review:has([data-focus-scroll="standard"]:focus) #standard {
  animation: lp-scroll-highlight 2.6s ease-out;
  outline: 3px solid transparent;
  outline-offset: 5px;
}

.page-ai-review .lp-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.995);
  transition:
    opacity 680ms ease,
    transform 780ms cubic-bezier(0.18, 0.8, 0.22, 1);
  will-change: opacity, transform;
}

.page-ai-review .lp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .page-ai-review .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes lp-scroll-highlight {
  0% {
    outline-color: rgba(36, 107, 254, 0);
    box-shadow: 0 0 0 0 rgba(36, 107, 254, 0);
  }
  16% {
    outline-color: rgba(36, 107, 254, 0.9);
    box-shadow: 0 0 0 8px rgba(36, 107, 254, 0.16), 0 24px 58px rgba(17, 24, 39, 0.18);
  }
  64% {
    outline-color: rgba(15, 118, 110, 0.72);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12), 0 18px 44px rgba(17, 24, 39, 0.12);
  }
  100% {
    outline-color: rgba(36, 107, 254, 0);
    box-shadow: 0 0 0 0 rgba(36, 107, 254, 0);
  }
}

.lp-section--danger .lp-kicker,
.lp-final-cta .lp-kicker {
  color: #8df0d2;
}

.lp-section--danger .lp-danger p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-lite-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--lp-ink);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.24);
}

.lp-lite-offer__main {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(15, 118, 110, 0.92)),
    #111827;
}

.lp-lite-offer__main .lp-kicker {
  color: var(--lp-yellow);
}

.lp-lite-offer__main h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  text-wrap: balance;
}

.lp-lite-offer__main h2 span {
  display: block;
}

.lp-lite-offer__main p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.lp-lite-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.lp-lite-offer__main .lp-button--secondary {
  border-color: #fff;
  color: #0f4f4a;
  background: #fff;
}

.lp-lite-offer__card {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.lp-lite-offer__card > span {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 950;
}

.lp-lite-offer__card ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #263342;
  font-weight: 760;
}

.lp-lite-offer__card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-tool-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.lp-tool-strip span {
  color: var(--lp-muted);
  font-size: 0.82rem;
  font-weight: 950;
}

.lp-tool-logo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.46rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: #f4fbf8;
  padding: 0.38rem 0.62rem;
  color: #0f4f4a;
  font-size: 0.84rem;
  font-weight: 900;
}

.lp-tool-logo img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.lp-tool-logo b {
  font-size: inherit;
}

.lp-self-check {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.45rem;
  align-items: start;
}

.lp-self-check .lp-section__head {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.lp-self-check__lead {
  color: var(--lp-muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.85;
}

.lp-self-check__lead > span {
  white-space: nowrap;
}

.lp-self-check__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

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

.lp-self-check__grid article {
  min-width: 0;
  border: 1px solid rgba(36, 107, 254, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.lp-self-check__grid article:first-child {
  border-color: rgba(255, 93, 98, 0.22);
  background: linear-gradient(135deg, #fff7f7 0%, #fff 100%);
}

.lp-self-check__grid b {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--lp-coral);
  font-size: 0.84rem;
  font-weight: 950;
}

.lp-self-check__grid h3 {
  margin: 0.75rem 0 0;
  color: var(--lp-ink);
  font-size: 1.08rem;
  line-height: 1.35;
  text-wrap: balance;
}

.lp-self-check__grid p {
  margin: 0.5rem 0 0;
  color: var(--lp-muted);
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.lp-pain-grid,
.lp-risk-list,
.lp-ai-gap__grid,
.lp-self-check__grid,
.lp-reviewer-grid,
.lp-scope-grid,
.lp-plan-grid,
.lp-plan-choice,
.lp-flow-grid,
.lp-handoff-grid {
  display: grid;
  gap: 1rem;
}

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

.lp-handoff-grid article {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f4fbf8 100%);
  padding: 1.1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
}

.lp-handoff-grid b {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  font-weight: 950;
}

.lp-handoff-grid h3 {
  margin: 0.85rem 0 0;
  color: var(--lp-ink);
  font-size: 1.08rem;
}

.lp-handoff-grid p {
  margin: 0.5rem 0 0;
  color: var(--lp-muted);
}

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

.lp-pain-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.lp-pain-grid article,
.lp-risk-list article,
.lp-flow-grid article,
.lp-faq__item {
  min-width: 0;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 1.1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.lp-pain-grid--six article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
}

.lp-pain-grid article > span {
  display: inline-flex;
  justify-self: start;
  border-radius: 8px;
  color: #fff;
  background: var(--lp-coral);
  padding: 0.18rem 0.42rem;
  font-size: 0.74rem;
  font-weight: 950;
}

.lp-pain-grid h3,
.lp-risk-list h3,
.lp-flow-grid h3 {
  margin-top: 0.75rem;
  color: var(--lp-ink);
  font-size: 1.08rem;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.lp-pain-grid p,
.lp-risk-list p,
.lp-flow-grid p {
  margin: 0.6rem 0 0;
  color: var(--lp-muted);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.lp-danger {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.lp-risk-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-risk-list article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.lp-risk-list h3 {
  color: #fff;
}

.lp-risk-list p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-ai-gap {
  display: grid;
  gap: 1.3rem;
}

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

.lp-ai-gap__grid article {
  min-width: 0;
  border: 1px solid rgba(36, 107, 254, 0.16);
  border-radius: 8px;
  background: #fff;
  padding: 1.05rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.lp-ai-gap__grid span {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  font-size: 0.86rem;
  font-weight: 950;
}

.lp-ai-gap__grid h3 {
  margin: 0.8rem 0 0;
  color: var(--lp-ink);
  font-size: 1.08rem;
  line-height: 1.35;
  text-wrap: balance;
}

.lp-ai-gap__grid p {
  margin: 0.55rem 0 0;
  color: var(--lp-muted);
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.lp-ai-gap__note {
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #ecfdf5 0%, #f8fafc 100%);
  padding: 1rem 1.1rem;
  color: #334155;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.08);
}

.lp-ai-gap__note strong {
  flex: 0 0 auto;
  color: #0f766e;
}

.lp-ai-gap__note span {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.lp-trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
}

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

.lp-reviewer-grid article {
  min-width: 0;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.lp-reviewer-grid b {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  color: #0f4f4a;
  background: #e9fff8;
  padding: 0.2rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-reviewer-grid h3 {
  margin: 0.72rem 0 0;
  color: var(--lp-ink);
  font-size: 1.04rem;
  line-height: 1.35;
  text-wrap: balance;
}

.lp-reviewer-grid p {
  margin: 0.48rem 0 0;
  color: var(--lp-muted);
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.lp-trust-steps {
  display: grid;
  gap: 0.9rem;
}

.lp-trust-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.8rem;
  align-items: start;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.lp-trust-steps b {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  grid-row: span 2;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--lp-teal);
  font-weight: 950;
}

.lp-trust-steps h3,
.lp-trust-steps p {
  margin: 0;
}

.lp-trust-steps p {
  color: var(--lp-muted);
}

.lp-scope {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: start;
}

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

.lp-scope-grid div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  gap: 0.72rem;
  align-items: center;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 0.86rem;
}

.lp-scope-grid b,
.lp-flow-grid b {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  font-weight: 950;
}

.lp-scope-grid div > span {
  min-width: 0;
  font-weight: 850;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: pretty;
}

.lp-scope-label-short {
  display: none;
}

.lp-scope-label-line {
  display: inline;
}

.lp-scope-label-line + .lp-scope-label-line {
  margin-left: 0;
}

.lp-scope-label-line + .lp-scope-label-line::before {
  content: "・";
}

.lp-sample {
  display: grid;
  gap: 1.4rem;
}

.lp-sample__panel {
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.1);
}

.lp-sample__summary {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.75rem;
  color: #fff;
  background:
    linear-gradient(135deg, #111827, #273244 64%, #0f766e);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.lp-sample__summary > span {
  width: fit-content;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  padding: 0.28rem 0.5rem;
  font-weight: 950;
}

.lp-sample__summary strong {
  font-size: 1.35rem;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: keep-all;
}

.lp-sample__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  overflow-wrap: normal;
  word-break: keep-all;
}

.lp-sample__tech {
  font-size: clamp(0.82rem, 1.08vw, 0.95rem);
  line-height: 1.76;
}

.lp-sample__tech-line {
  white-space: nowrap;
}

.lp-sample__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.lp-sample__stats div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem;
}

.lp-sample__stats span,
.lp-sample__stats strong {
  display: block;
}

.lp-sample__stats span {
  width: auto;
  padding: 0;
  color: #8df0d2;
  background: transparent;
  font-size: 0.78rem;
}

.lp-sample__stats strong {
  margin-top: 0.12rem;
  font-size: 1.2rem;
  line-height: 1.1;
}

.lp-sample__summary .lp-sample__judgement {
  border-left: 4px solid var(--lp-yellow);
  padding-left: 0.72rem;
  font-weight: 760;
  word-break: normal;
  overflow-wrap: break-word;
}

.lp-sample__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.lp-sample__actions .lp-button {
  min-width: 0;
  white-space: nowrap;
}

.lp-sample-details {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.lp-sample-details summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--lp-ink);
  font-weight: 950;
}

.lp-sample-details__body {
  border-top: 1px solid var(--lp-line);
  padding: 1rem 1.1rem;
}

.lp-sample-details dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.lp-sample-details dl div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.8rem;
}

.lp-sample-details dt {
  color: var(--lp-blue);
  font-weight: 950;
}

.lp-sample-details dd {
  margin: 0;
  color: var(--lp-muted);
}

.lp-sample__findings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 0.8rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.lp-sample__findings article {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  min-width: 0;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.lp-sample__findings span {
  display: inline-flex;
  justify-self: start;
  border-radius: 8px;
  color: #fff;
  padding: 0.16rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-sample__findings .is-high span {
  background: var(--lp-coral);
}

.lp-sample__findings .is-mid span {
  color: #111827;
  background: var(--lp-yellow);
}

.lp-sample__findings .is-low span {
  background: var(--lp-teal);
}

.lp-sample__findings h3 {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  overflow-wrap: break-word;
  word-break: normal;
}

.lp-sample__findings p {
  margin: 0;
  color: var(--lp-muted);
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.page-ai-review .lp-self-check__grid p,
.page-ai-review .lp-pain-grid p,
.page-ai-review .lp-risk-list p,
.page-ai-review .lp-ai-gap__grid p,
.page-ai-review .lp-reviewer-grid p,
.page-ai-review .lp-trust-steps p,
.page-ai-review .lp-handoff-grid p,
.page-ai-review .lp-flow-grid p,
.page-ai-review .lp-sample__findings p,
.page-ai-review .lp-sample__findings li,
.page-ai-review .lp-faq__answer p,
.page-ai-review .lp-plan__position,
.page-ai-review .lp-plan__meta dd,
.page-ai-review .lp-plan__points li,
.page-ai-review .lp-pricing-trust p,
.page-ai-review .lp-pricing-trust li,
.page-ai-review .lp-production-link p,
.page-ai-review .lp-legal-mini p {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

@supports (word-break: auto-phrase) {
  .page-ai-review .lp-self-check__grid p,
  .page-ai-review .lp-pain-grid p,
  .page-ai-review .lp-risk-list p,
  .page-ai-review .lp-ai-gap__grid p,
  .page-ai-review .lp-reviewer-grid p,
  .page-ai-review .lp-trust-steps p,
  .page-ai-review .lp-handoff-grid p,
  .page-ai-review .lp-flow-grid p,
  .page-ai-review .lp-sample__findings p,
  .page-ai-review .lp-sample__findings li,
  .page-ai-review .lp-faq__answer p,
  .page-ai-review .lp-plan__position,
  .page-ai-review .lp-plan__meta dd,
  .page-ai-review .lp-plan__points li,
  .page-ai-review .lp-pricing-trust p,
  .page-ai-review .lp-pricing-trust li,
  .page-ai-review .lp-production-link p,
  .page-ai-review .lp-legal-mini p {
    word-break: auto-phrase;
  }
}

.lp-sample__findings ul {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding-left: 1rem;
  color: #273342;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.55;
}

.lp-plan-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.lp-plan-choice article {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  border: 1px solid rgba(36, 107, 254, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem;
}

.lp-plan-choice b {
  color: var(--lp-blue);
  font-size: 0.9rem;
  font-weight: 950;
}

.lp-plan-choice span {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.6;
}

.lp-pricing-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.72fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.45rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(240, 253, 250, 0.9) 52%, rgba(255, 255, 255, 0.95));
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.08);
}

.lp-pricing-trust strong {
  color: #0f4f4a;
  font-size: 1.08rem;
}

.lp-pricing-trust p {
  margin: 0.35rem 0 0;
  color: #35524f;
  font-size: 0.95rem;
  font-weight: 730;
  line-height: 1.75;
}

.lp-pricing-trust ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-pricing-trust li {
  position: relative;
  min-width: 0;
  padding-left: 1.6rem;
  color: #273342;
  font-weight: 850;
}

.lp-pricing-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.06rem;
  color: #0f766e;
  font-weight: 950;
}

.lp-pre-consult-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(36, 107, 254, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 107, 254, 0.08), rgba(126, 234, 211, 0.08)),
    #fff;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(36, 107, 254, 0.08);
}

.lp-pre-consult-box span {
  color: var(--lp-blue);
  font-size: 0.84rem;
  font-weight: 950;
}

.lp-pre-consult-box h3 {
  margin: 0.28rem 0 0;
  color: var(--lp-ink);
  font-size: 1.3rem;
  line-height: 1.32;
}

.lp-pre-consult-box p {
  margin: 0.42rem 0 0;
  color: #64748b;
  font-weight: 730;
  line-height: 1.75;
}

.lp-pre-consult-box p span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.lp-pre-consult-box__actions {
  display: grid;
  gap: 0.55rem;
}

.lp-pre-consult-box .lp-button {
  color: #fff;
  background: #111827;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18);
}

.lp-first-five-offer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.35rem;
  border: 2px solid rgba(253, 224, 71, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 213, 79, 0.96) 0%, rgba(255, 122, 89, 0.94) 54%, rgba(16, 185, 129, 0.92) 100%);
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  box-shadow: 0 24px 58px rgba(180, 83, 9, 0.26), 0 0 0 5px rgba(255, 213, 79, 0.18);
}

.lp-first-five-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 10px, transparent 10px 22px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 40%);
  opacity: 0.75;
}

.lp-first-five-offer > * {
  position: relative;
  z-index: 1;
}

.lp-first-five-offer__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: #fff;
  background: #111827;
  padding: 0.34rem 0.74rem;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.22);
}

.lp-first-five-offer h3 {
  margin: 0.5rem 0 0;
  color: #111827;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.28;
  text-wrap: balance;
}

.lp-first-five-offer__heading-line {
  display: inline;
}

.lp-first-five-offer p {
  margin: 0.42rem 0 0;
  color: #111827;
  font-weight: 820;
  line-height: 1.75;
}

.lp-first-five-offer__closed {
  width: fit-content;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.24rem 0.5rem;
  font-size: 0.86rem;
}

.lp-first-five-offer__side {
  display: grid;
  gap: 0.72rem;
}

.lp-first-five-offer__price {
  display: grid;
  gap: 0.12rem;
  border: 2px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.lp-first-five-offer__price span {
  color: #c2410c;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-first-five-offer__price strong {
  color: #111827;
  font-size: clamp(1.85rem, 3vw, 2.28rem);
  line-height: 1.08;
}

.lp-first-five-offer__price small {
  color: var(--lp-muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.lp-first-five-offer__actions {
  display: grid;
  gap: 0.48rem;
}

.lp-button--payment {
  display: inline-flex;
  gap: 0.48rem;
  align-items: center;
  justify-content: center;
}

.page-ai-review .lp-button--payment {
  border-color: rgba(20, 184, 166, 0.48);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.88) 0%, rgba(16, 144, 139, 0.78) 52%, rgba(30, 127, 216, 0.74) 100%);
  box-shadow:
    0 13px 28px rgba(15, 118, 110, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.page-ai-review .lp-button--payment.lp-button--outline {
  border-color: rgba(15, 118, 110, 0.22);
  color: #31524f;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(239, 246, 255, 0.88));
  box-shadow: 0 7px 16px rgba(15, 118, 110, 0.09);
}

.lp-pay-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  border-radius: 5px;
  background: #fff;
  object-fit: contain;
  padding: 0.08rem;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.16);
}

.lp-first-five-offer[data-status="closed"] {
  border-color: #d1d5db;
  border-left-color: #9ca3af;
  background: linear-gradient(135deg, #f3f4f6 0%, #fff 100%);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.lp-first-five-offer[data-status="closed"] .lp-first-five-offer__badge {
  color: #fff;
  background: #6b7280;
}

.lp-first-five-offer[data-status="closed"] .lp-first-five-offer__closed {
  color: #374151;
  font-weight: 850;
}

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

.lp-plan-grid--review {
  align-items: start;
}

.lp-plan {
  position: relative;
  display: grid;
  gap: 0.86rem;
  align-content: start;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.lp-plan--featured {
  border-color: rgba(255, 93, 98, 0.34);
  box-shadow: 0 16px 38px rgba(255, 93, 98, 0.09);
}

.lp-plan--lite {
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 16px 38px rgba(15, 118, 110, 0.08);
}

.lp-plan--lite .lp-plan__head strong {
  background: var(--lp-teal);
}

.lp-plan__ribbon {
  position: absolute;
  top: -0.85rem;
  left: 1rem;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  padding: 0.24rem 0.52rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-plan--featured .lp-plan__ribbon {
  color: #fff;
  background: var(--lp-coral);
}

.lp-plan__head {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.lp-plan__head span,
.lp-plan__head strong {
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-plan__head span {
  color: var(--lp-blue);
  background: rgba(36, 107, 254, 0.1);
}

.lp-plan__head strong {
  color: #fff;
  background: var(--lp-coral);
}

.lp-plan h3 {
  font-size: 1.22rem;
  line-height: 1.32;
}

.lp-plan__position {
  margin: 0;
  color: var(--lp-muted);
  font-weight: 760;
}

.lp-price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  align-items: stretch;
}

.lp-price-item {
  display: grid;
  gap: 0.1rem;
  align-content: center;
  border: 1px solid #d9e4f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 0.48rem 0.58rem;
}

.lp-price-item span {
  color: var(--lp-blue);
  font-size: 0.74rem;
  font-weight: 950;
}

.lp-price-item strong {
  color: var(--lp-ink);
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 1.1;
}

.lp-price-item--primary {
  border-color: rgba(15, 118, 110, 0.28);
  background: #effdf8;
}

.lp-price-item--primary strong {
  font-size: 1.32rem;
}

.lp-price-stack {
  display: grid;
  gap: 0.38rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, #effdf8 0%, #fff 100%);
  padding: 0.9rem;
}

.lp-price-main {
  display: grid;
  gap: 0.12rem;
}

.lp-price-main span {
  color: var(--lp-blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-price-main strong {
  color: var(--lp-ink);
  font-size: 1.8rem;
  line-height: 1.08;
}

.lp-price-normal {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.lp-plan__meta {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.lp-plan__meta div {
  display: grid;
  gap: 0.18rem;
}

.lp-plan__meta dt {
  color: var(--lp-blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-plan__meta dd {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.lp-plan__points {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.05rem;
  color: #374151;
  font-size: 0.88rem;
}

.lp-plan .lp-button {
  width: 100%;
  margin-top: 0.2rem;
}

.lp-plan__details {
  display: grid;
  gap: 0.86rem;
}

.lp-plan__details > summary {
  display: none;
}

.lp-plan__details-body {
  display: grid;
  gap: 0.86rem;
}

.lp-payment-actions {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.lp-payment-actions > span {
  color: var(--lp-muted);
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-payment-actions .lp-button {
  margin-top: 0;
}

.lp-payment-actions .lp-button--closed {
  border-color: #4b5563;
  color: #fff;
  background: #4b5563;
  box-shadow: none;
  cursor: not-allowed;
  font-size: 0.94rem;
  pointer-events: none;
  user-select: none;
}

.lp-plan__fineprint {
  margin: -0.05rem 0 0;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.55;
}

.lp-plan-note,
.lp-start-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1rem;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--lp-muted);
}

.lp-plan-note strong,
.lp-start-note strong {
  flex: 0 0 auto;
  color: var(--lp-ink);
}

.lp-production-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f4fbf8 100%);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.lp-production-link__label {
  display: inline-flex;
  border-radius: 8px;
  color: #111827;
  background: var(--lp-yellow);
  padding: 0.18rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 950;
}

.lp-production-link p {
  margin: 0.62rem 0 0;
  color: var(--lp-muted);
}

.lp-production-link p span {
  display: block;
}

.lp-production-link p span + span {
  margin-top: 0.12rem;
}

.lp-production-link .lp-button {
  justify-self: start;
  min-width: 13rem;
}

.lp-compare-details {
  display: grid;
  gap: 0.95rem;
}

.lp-compare-details summary {
  cursor: pointer;
  width: fit-content;
  border: 1px solid rgba(36, 107, 254, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 0.62rem 0.8rem;
  color: var(--lp-blue);
  font-weight: 950;
}

.lp-compare {
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.lp-compare-cards {
  display: none;
}

.lp-compare__row {
  display: grid;
  grid-template-columns: minmax(230px, 1.36fr) repeat(4, minmax(104px, 0.72fr));
  border-bottom: 1px solid #dfe8f3;
}

.lp-compare__row:last-child {
  border-bottom: 0;
}

.lp-compare__row > span {
  display: flex;
  min-height: 3.25rem;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 0.72rem;
  border-right: 1px solid #dfe8f3;
  color: #374151;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.42;
  text-align: center;
}

.lp-compare__row > span:first-child {
  justify-content: flex-start;
  color: #111827;
  font-weight: 900;
  text-align: left;
}

.lp-compare__row > span:last-child {
  border-right: 0;
}

.lp-compare__row--head {
  color: #fff;
  background: linear-gradient(135deg, #172033, #21324a);
  font-weight: 950;
}

.lp-compare__row--head > span {
  min-height: 3.6rem;
  color: #fff;
  font-size: 0.94rem;
}

.lp-compare__row--head > span:first-child {
  color: #fff;
}

.lp-compare__group-title {
  border-bottom: 1px solid #dfe8f3;
  background:
    linear-gradient(90deg, rgba(36, 107, 254, 0.1), rgba(20, 184, 166, 0.08) 58%, rgba(250, 204, 21, 0.12));
}

.lp-compare__group-title > span {
  display: block;
  padding: 0.68rem 0.9rem;
  color: #174f73;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0;
}

.lp-yes {
  display: inline-grid;
  width: 1.56rem;
  height: 1.56rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.13);
  color: #047668;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
}

.lp-no {
  color: #9aa5b1;
  font-weight: 950;
}

.lp-compare-note {
  margin: 0.85rem 0 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

.lp-compare-note a {
  color: var(--lp-blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lp-faq__list a,
.lp-legal a,
.lp-production-link p a {
  color: var(--lp-blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

.lp-section--compare .lp-kicker {
  color: var(--lp-blue);
}

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

.lp-flow-grid article {
  position: relative;
  box-shadow: none;
}

.lp-flow-grid--diagram article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: -0.9rem;
  width: 0.9rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-teal), transparent);
}

.lp-flow-grid h3 {
  margin-top: 0.9rem;
}

.lp-handoff__title {
  white-space: nowrap;
}

.lp-section__head .lp-handoff__title > span {
  display: inline;
}

.lp-section__head .lp-handoff__title > span + span {
  margin-left: 0;
}

.lp-materials {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.lp-materials p {
  max-width: 760px;
  margin-inline: auto;
}

.lp-materials .lp-button {
  min-width: min(100%, 18rem);
  padding: 0.96rem 1.25rem;
  font-size: 1rem;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.2);
}

.lp-faq__list {
  display: grid;
  gap: 0.8rem;
}

.lp-faq__item {
  overflow: hidden;
  padding: 0;
}

.lp-faq__item summary {
  display: flex;
  min-width: 0;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  color: var(--lp-ink);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.48;
  list-style: none;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary span {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.lp-faq__item summary::after {
  content: "+";
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(36, 107, 254, 0.12);
  color: var(--lp-blue);
  font-weight: 950;
  line-height: 1;
}

.lp-faq__item[open] summary {
  border-bottom: 1px solid var(--lp-line);
}

.lp-faq__item[open] summary::after {
  content: "-";
}

.lp-faq__answer {
  padding: 0.9rem 1.1rem 1.05rem;
}

.lp-faq__answer p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.78;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: pretty;
}

.lp-faq__answer a {
  font-weight: 850;
}

.lp-final-cta {
  color: #fff;
  background:
    linear-gradient(135deg, #1b2430, #243b53 56%, #0f766e);
  text-align: center;
}

.lp-final-cta__box {
  max-width: 860px;
}

.lp-final-cta h2 {
  color: #fff;
}

.lp-final-cta__actions {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 1.6rem;
}

.lp-final-payment {
  position: relative;
  display: grid;
  width: min(100%, 32rem);
  min-width: 0;
  max-width: 32rem;
  gap: 0.48rem;
  border: 1px solid rgba(250, 204, 21, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(244, 184, 107, 0.18) 48%, rgba(15, 118, 110, 0.16)),
    rgba(255, 255, 255, 0.08);
  padding: 0.62rem;
  text-align: center;
  box-shadow:
    0 22px 54px rgba(250, 204, 21, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-final-payment::before {
  display: none;
}

.lp-final-payment__label {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
}

.lp-final-payment__label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.9);
  color: #1f2937;
  padding: 0.08rem 0.5rem;
  font-size: 0.76rem;
  font-weight: 950;
}

.lp-final-payment__label > strong {
  display: block;
  margin-top: 0;
  color: #fff7cc;
  font-size: 1.04rem;
  line-height: 1.35;
}

.lp-final-payment__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.lp-final-payment__links .lp-button {
  justify-content: center;
  min-height: 38px;
  min-width: 0;
  padding: 0.48rem 0.6rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.lp-final-payment__links .lp-button span {
  min-width: 0;
  color: inherit;
  font-size: inherit;
  white-space: nowrap;
}

.lp-final-payment__links .lp-button--outline {
  color: #dffbf4;
  border-color: rgba(126, 234, 211, 0.34);
  background: rgba(15, 118, 110, 0.18);
}

.lp-final-payment--closed {
  border-color: rgba(148, 163, 184, 0.56);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.lp-final-payment--closed .lp-final-payment__label > span {
  color: #fff;
  background: #6b7280;
}

.lp-final-payment--closed .lp-final-payment__links {
  grid-template-columns: minmax(0, 1fr);
}

.lp-legal {
  padding-block: 2.4rem 3.6rem;
  color: #6b7280;
  background: #f7fbff;
  font-size: 0.86rem;
}

.lp-legal h2 {
  color: #4b5563;
  font-size: 1rem;
}

.lp-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.lp-legal-links a {
  border: 1px solid #d1d9e2;
  border-radius: 8px;
  background: #fff;
  padding: 0.28rem 0.5rem;
  color: #4b5563;
  font-weight: 850;
}

.lp-legal-detail-link {
  margin: 0.8rem 0 0;
}

.lp-legal-detail-link a {
  color: #64748b;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

.lp-legal dl {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

.lp-legal dl div {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 0.8rem;
}

.lp-legal dt {
  font-weight: 900;
}

.lp-legal dd {
  margin: 0;
}

.lp-legal-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.lp-legal-mini article {
  border: 1px solid #d1d9e2;
  border-radius: 8px;
  background: #fff;
  padding: 0.8rem;
}

.lp-legal-mini h3,
.lp-legal-mini p {
  margin: 0;
}

.lp-legal-mini h3 {
  color: #4b5563;
  font-size: 0.9rem;
}

.lp-legal-mini p {
  margin-top: 0.4rem;
}

.lp-bottom-links {
  padding-block: 0 4.8rem;
  color: #64748b;
  background: #f7fbff;
  font-size: 0.86rem;
}

.lp-bottom-links__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid #dbe4ee;
  padding-top: 1rem;
}

.lp-bottom-links__inner > span {
  color: #64748b;
  flex-shrink: 0;
  font-weight: 850;
  white-space: nowrap;
}

.lp-bottom-links nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.lp-bottom-links a {
  border: 1px solid #d1d9e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.34rem 0.62rem;
  color: #334155;
  font-weight: 900;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.lp-bottom-links a:hover {
  border-color: rgba(15, 118, 110, 0.46);
  background: #fff;
  color: #0f766e;
  transform: translateY(-1px);
}

.lp-site-footer {
  background: #f8fafc;
  padding-block: 0 3rem;
}

.lp-footer-disclaimer {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.85rem;
  color: #64748b;
  text-align: center;
}

.lp-footer-disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.7;
}

.lp-footer-disclaimer small {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 760;
}

.lp-legal-page {
  min-height: 100vh;
  color: var(--lp-ink);
  background: #f8fafc;
}

.lp-legal-hero {
  padding-block: 4.4rem 3.2rem;
  color: #fff;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(126, 234, 211, 0.22), transparent 24rem),
    linear-gradient(135deg, #111827, #223047 62%, #0f766e);
}

.lp-legal-hero h1 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.14;
}

.lp-legal-hero p {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
  line-height: 1.8;
}

.lp-legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.lp-legal-page-nav a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.48rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.lp-legal-page-section {
  scroll-margin-top: 96px;
  padding-block: 3rem;
  background: #f8fafc;
}

.lp-legal-page-section:nth-of-type(odd) {
  background: #fff;
}

.lp-legal-document {
  max-width: 960px;
}

.lp-legal-document h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
}

.lp-legal-document dl {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.lp-legal-document dl div {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #fff;
  padding: 0.95rem;
}

.lp-legal-document dt {
  color: #334155;
  font-weight: 950;
}

.lp-legal-document dd {
  margin: 0;
  color: #475569;
  font-weight: 650;
  line-height: 1.8;
}

.lp-legal-document article {
  margin-top: 1rem;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
}

.lp-legal-document h3 {
  margin: 0;
  color: #0f4f4a;
  font-size: 1rem;
}

.lp-legal-document p {
  margin: 0.45rem 0 0;
  color: #475569;
  font-weight: 650;
  line-height: 1.85;
}

@media (max-width: 560px) {
  .lp-first-five-offer__heading-line {
    display: block;
  }

  .lp-bottom-links__inner {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
  }

  .lp-bottom-links nav {
    width: 100%;
  }

}

.lp-floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #111827;
  background: linear-gradient(135deg, var(--lp-yellow), #65e7ca);
  padding: 0.72rem 1rem;
  font-weight: 950;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.22);
}

.lp-floating-actions {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.55rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.58rem;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.22);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lp-floating-actions[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.lp-floating-actions > a,
.lp-floating-actions > .lp-floating-actions__status {
  display: grid;
  min-width: 7.25rem;
  min-height: 3.45rem;
  align-content: center;
  border-radius: 8px;
  color: #fff;
  background: #111827;
  padding: 0.58rem 0.78rem;
  line-height: 1.15;
  text-align: center;
}

.lp-floating-actions__lite {
  color: #111827 !important;
  background: linear-gradient(135deg, var(--lp-yellow), #65e7ca) !important;
}

.lp-floating-actions__lite--closed {
  color: #fff !important;
  background: #4b5563 !important;
}

.lp-floating-actions__status {
  cursor: not-allowed;
  user-select: none;
}

.lp-floating-actions__closed {
  color: #fff !important;
  background: #4b5563 !important;
}

.lp-floating-actions span {
  font-size: 0.76rem;
  font-weight: 850;
}

.lp-floating-actions strong {
  margin-top: 0.12rem;
  font-size: 0.98rem;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .lp-pain-grid,
  .lp-self-check__grid,
  .lp-reviewer-grid,
  .lp-plan-choice,
  .lp-plan-grid,
  .lp-flow-grid,
  .lp-handoff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-hero__grid,
  .lp-danger,
  .lp-self-check,
  .lp-scope,
  .lp-lite-offer,
  .lp-trust,
  .lp-pricing-trust,
  .lp-pre-consult-box,
  .lp-first-five-offer,
  .lp-sample__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-report {
    max-width: 620px;
  }

  .lp-trust {
    align-items: start;
  }

  .lp-compare {
    overflow-x: auto;
  }

  .lp-compare__row,
  .lp-compare__group-title {
    min-width: 900px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .lp-sample__panel {
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (max-width: 760px) {
  .lp-mobile-hidden {
    display: none !important;
  }

  .lp-page,
  .lp-page * {
    box-sizing: border-box;
  }

  .lp-container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .lp-topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 36px;
    gap: 0.55rem;
    padding-block: 0.28rem;
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: left;
  }

  .lp-topbar__inner span:nth-of-type(2) {
    display: none;
  }

  .lp-topbar__inner span,
  .lp-topbar__inner a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .lp-topbar__inner a {
    white-space: nowrap;
  }

  .lp-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding-block: 0.78rem;
  }

  .lp-nav {
    display: none;
  }

  .lp-flow-grid--diagram article:not(:last-child)::after {
    display: none;
  }

  .lp-header-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0.52rem 0.72rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .lp-hero__grid {
    display: flex;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    flex-direction: column;
    padding-block: 3rem 2.6rem;
    overflow: visible;
  }

  .lp-hero__copy,
  .lp-report {
    width: 100%;
    max-width: 100%;
  }

  .lp-hero h1 {
    font-size: 2rem;
    line-height: 1.14;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lp-hero__lead {
    font-size: 0.98rem;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lp-self-check__lead {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .lp-hero__bullets li {
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
  }

  .lp-hero__actions,
  .lp-self-check__actions,
  .lp-lite-offer__actions,
  .lp-final-cta__actions {
    display: grid;
  }

  .lp-final-cta__actions {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .lp-self-check__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .lp-self-check__actions .lp-button {
    min-width: 0;
    padding-inline: 0.8rem;
    white-space: nowrap;
  }

  .lp-final-payment,
  .lp-final-payment__links {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-button {
    width: 100%;
  }

  .lp-report,
  .lp-report__head,
  .lp-report__footer,
  .lp-report__list div {
    min-width: 0;
  }

  .lp-report__head,
  .lp-report__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-content: start;
  }

  .lp-report__head strong,
  .lp-report__footer span:last-child {
    justify-self: start;
  }

  .lp-report::before {
    position: static;
    display: inline-flex;
    margin: 0 0 0.8rem auto;
    transform: none;
    max-width: calc(100% - 1.4rem);
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: normal;
  }

  .lp-report__head strong,
  .lp-report__head span,
  .lp-report__footer strong,
  .lp-report__footer span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .lp-kicker {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .lp-lite-offer__main h2 {
    font-size: 1.86rem;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .lp-production-link {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-production-link .lp-button {
    width: 100%;
    min-width: 0;
  }

  .lp-sample-details dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.12rem;
  }

  .lp-sample__summary {
    padding-inline: clamp(0.72rem, 3.5vw, 1.2rem);
  }

  .lp-legal-document dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
  }

  .lp-legal-hero {
    padding-block: 3.6rem 2.6rem;
  }

  .lp-legal-page-nav {
    display: grid;
  }

  .lp-pain-grid,
  .lp-risk-list,
  .lp-ai-gap__grid,
  .lp-self-check__grid,
  .lp-reviewer-grid,
  .lp-plan-choice,
  .lp-plan-grid,
  .lp-flow-grid,
  .lp-handoff-grid,
  .lp-materials,
  .lp-sample__findings,
  .lp-legal-mini {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-self-check__grid article,
  .lp-pain-grid article,
  .lp-ai-gap__grid article,
  .lp-reviewer-grid article,
  .lp-handoff-grid article,
  .lp-flow-grid article,
  .lp-plan,
  .lp-sample__findings article,
  .lp-legal-mini article {
    padding-inline: 0.86rem;
  }

  .page-ai-review .lp-self-check__grid p,
  .page-ai-review .lp-pain-grid p,
  .page-ai-review .lp-risk-list p,
  .page-ai-review .lp-ai-gap__grid p,
  .page-ai-review .lp-reviewer-grid p,
  .page-ai-review .lp-trust-steps p,
  .page-ai-review .lp-handoff-grid p,
  .page-ai-review .lp-flow-grid p,
  .page-ai-review .lp-sample__findings p,
  .page-ai-review .lp-sample__findings li,
  .page-ai-review .lp-faq__answer p,
  .page-ai-review .lp-plan__position,
  .page-ai-review .lp-plan__meta dd,
  .page-ai-review .lp-plan__points li,
  .page-ai-review .lp-pricing-trust p,
  .page-ai-review .lp-pricing-trust li,
  .page-ai-review .lp-production-link p,
  .page-ai-review .lp-legal-mini p {
    width: 100%;
    font-size: 0.94rem;
    line-height: 1.72;
    text-wrap: pretty;
  }

  .lp-self-check__grid h3,
  .lp-pain-grid h3,
  .lp-ai-gap__grid h3,
  .lp-reviewer-grid h3,
  .lp-handoff-grid h3,
  .lp-flow-grid h3,
  .lp-sample__findings h3 {
    font-size: 1.02rem;
    line-height: 1.38;
  }

  .lp-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .lp-scope-grid div {
    gap: 0.42rem;
    padding: 0.58rem 0.48rem;
  }

  .lp-scope-grid b {
    width: 1.74rem;
    height: 1.74rem;
    border-radius: 7px;
    font-size: 0.72rem;
  }

  .lp-scope-grid div > span {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .lp-scope-label-full {
    display: none;
  }

  .lp-scope-label-short {
    display: inline;
    white-space: nowrap;
  }

  .lp-sample__tech {
    font-size: min(0.86rem, 2.72vw);
    line-height: 1.85;
  }

  .lp-sample__tech-line {
    white-space: nowrap;
  }

  .lp-sample__actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-sample__findings article {
    padding-inline: 0.86rem;
  }

  .lp-sample__findings p {
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: initial;
  }

  .lp-ai-gap__note {
    display: grid;
    gap: 0.28rem;
  }

  .lp-scope-label-line {
    display: block;
  }

  .lp-scope-label-line + .lp-scope-label-line {
    margin-left: 0;
  }

  .lp-scope-label-line + .lp-scope-label-line::before {
    content: "";
  }

  .lp-price-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-price-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
  }

  .lp-price-item strong,
  .lp-price-item--primary strong {
    font-size: 1.42rem;
  }

  .lp-plan__details {
    gap: 0.65rem;
  }

  .lp-plan__details > summary {
    display: flex;
    min-height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(36, 107, 254, 0.18);
    border-radius: 8px;
    background: #f8fbff;
    padding: 0.66rem 0.78rem;
    color: var(--lp-blue);
    font-size: 0.9rem;
    font-weight: 950;
    line-height: 1.25;
    list-style: none;
  }

  .lp-plan__details > summary::-webkit-details-marker {
    display: none;
  }

  .lp-plan__details > summary::after {
    content: "+";
    display: inline-grid;
    width: 1.45rem;
    height: 1.45rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(36, 107, 254, 0.12);
    color: var(--lp-blue);
    font-weight: 950;
    line-height: 1;
  }

  .lp-plan__details[open] > summary::after {
    content: "-";
  }

  .lp-plan__details-body {
    gap: 0.74rem;
  }

  .lp-first-five-offer h3 {
    font-size: 1.3rem;
  }

  .lp-first-five-offer__price strong,
  .lp-price-main strong {
    font-size: 1.55rem;
  }

  .lp-compare {
    display: none;
  }

  .lp-compare-cards {
    display: grid;
    gap: 0.9rem;
  }

  .lp-compare-card {
    overflow: hidden;
    border: 1px solid #d7e2ee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.07);
  }

  .lp-compare-card > summary {
    display: flex;
    width: 100%;
    min-width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.72rem 0.9rem;
    border-bottom: 1px solid #dfe8f3;
    background:
      linear-gradient(90deg, rgba(36, 107, 254, 0.1), rgba(20, 184, 166, 0.08) 60%, rgba(250, 204, 21, 0.11));
    color: #174f73;
    font-size: 0.98rem;
    font-weight: 950;
    line-height: 1.25;
    list-style: none;
  }

  .lp-compare-card > summary::-webkit-details-marker {
    display: none;
  }

  .lp-compare-card > summary::after {
    content: "+";
    display: inline-grid;
    width: 1.45rem;
    height: 1.45rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(36, 107, 254, 0.12);
    color: var(--lp-blue);
    font-weight: 950;
    line-height: 1;
  }

  .lp-compare-card[open] > summary::after {
    content: "-";
  }

  .lp-compare-card:not([open]) > summary {
    border-bottom: 0;
  }

  .lp-compare-card__row {
    display: grid;
    gap: 0.62rem;
    padding: 0.82rem 0.9rem;
    border-bottom: 1px solid #edf2f7;
  }

  .lp-compare-card__row:last-child {
    border-bottom: 0;
  }

  .lp-compare-card__row p {
    margin: 0;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.42;
  }

  .lp-compare-card__row dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.38rem;
    margin: 0;
  }

  .lp-compare-card__row dl div {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 0.2rem;
    border: 1px solid #e5ecf3;
    border-radius: 8px;
    background: #fbfdff;
    padding: 0.42rem 0.16rem;
  }

  .lp-compare-card__row dt {
    color: #44606d;
    font-size: 0.66rem;
    font-weight: 950;
    line-height: 1.15;
    text-align: center;
  }

  .lp-compare-card__row dd {
    display: grid;
    min-height: 1.56rem;
    place-items: center;
    margin: 0;
    line-height: 1;
  }

  .lp-tool-strip {
    justify-content: flex-start;
  }

  .lp-section {
    padding-block: 3.4rem;
  }

  .lp-section__head h2,
  .lp-danger h2,
  .lp-materials h2,
  .lp-final-cta h2 {
    font-size: 1.72rem;
    line-height: 1.28;
    overflow-wrap: normal;
    word-break: normal;
  }

  .lp-section__head .lp-scope__title > span {
    display: inline;
  }

  .lp-section__head .lp-scope__title {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .lp-section__head .lp-scope__title .lp-keep {
    white-space: nowrap;
  }

  .lp-copy-lines > span {
    display: block;
  }

  .lp-copy-lines > span + span {
    margin-top: 0.16rem;
  }

  .lp-self-check__lead {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .lp-final-cta__heading {
    font-size: clamp(1.04rem, 4.4vw, 1.42rem) !important;
  }

  .lp-handoff__title {
    white-space: normal;
  }

  .lp-section__head .lp-handoff__title > span {
    display: block;
  }

  .lp-faq__item summary {
    gap: 0.55rem;
    padding: 0.82rem 0.78rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .lp-faq__item summary::after {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.9rem;
  }

  .lp-faq__answer {
    padding: 0.78rem 0.82rem 0.95rem;
  }

  .lp-plan-note,
  .lp-start-note {
    display: grid;
  }

  .lp-legal dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.12rem;
  }

  .lp-floating-cta {
    display: none;
  }

  .lp-floating-actions {
    right: max(0.5rem, env(safe-area-inset-right));
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    left: max(0.5rem, env(safe-area-inset-left));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.32rem;
    padding: 0.34rem;
  }

  .lp-floating-actions > a,
  .lp-floating-actions > .lp-floating-actions__status {
    min-width: 0;
    min-height: 2.34rem;
    padding: 0.34rem 0.24rem;
  }

  .lp-floating-actions span {
    font-size: 0.6rem;
  }

  .lp-floating-actions strong {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .lp-container {
    width: min(100% - 24px, 1180px);
  }

  .lp-brand strong {
    font-size: 0.95rem;
  }

  .lp-hero h1 {
    font-size: 1.78rem;
  }

  .lp-lite-offer__main h2 {
    font-size: 1.68rem;
  }

  .lp-report {
    padding: 0.86rem;
  }

  .lp-score b {
    font-size: 2.55rem;
  }
}

@media (max-width: 360px) {
  .lp-sample__summary {
    padding-inline: 0.78rem;
    overflow: hidden;
  }

  .lp-sample__summary > span {
    width: fit-content;
    max-width: 100%;
  }

  .lp-sample__title,
  .lp-sample__tech,
  .lp-sample__stats,
  .lp-sample__judgement,
  .lp-sample__actions {
    min-width: 0;
    width: min(100%, calc(100vw - 60px));
    max-width: calc(100vw - 60px);
  }

  .lp-sample__summary .lp-sample__judgement {
    padding-left: 0.58rem;
    overflow-wrap: anywhere;
  }

  .lp-sample__tech-line {
    white-space: normal;
  }
}
