@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #0b6b3a;
  --primary-deep: #06492a;
  --accent: #16c784;
  --accent-soft: #dff8ed;
  --dark: #071a13;
  --dark-2: #0b241a;
  --surface: #f3faf6;
  --surface-2: #e8f5ef;
  --text: #10231a;
  --muted: #64736c;
  --line: rgba(16, 35, 26, 0.14);
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(7, 26, 19, 0.16);
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  color: var(--dark);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

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

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

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
  padding: 14px clamp(20px, 5vw, 58px);
  color: var(--white);
  background: rgba(7, 26, 19, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(3, 16, 11, 0.2);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.btn-primary {
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(22, 199, 132, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: #34d998;
}

.mobile-action-bar {
  display: none;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost.on-light {
  color: var(--primary);
  border-color: rgba(11, 107, 58, 0.24);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 12%, rgba(22, 199, 132, 0.25), transparent 28rem),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.surface {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(243,250,246,0.96)),
    var(--surface);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero::after {
  position: absolute;
  inset: auto -20% -32% 18%;
  z-index: -1;
  height: 46%;
  content: "";
  background: radial-gradient(closest-side, rgba(22, 199, 132, 0.28), transparent);
  filter: blur(20px);
}

.future-hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(22, 199, 132, 0.32), transparent 24rem),
    radial-gradient(circle at 16% 18%, rgba(92, 255, 184, 0.13), transparent 22rem),
    linear-gradient(135deg, #04120d 0%, #082218 44%, #020b08 100%);
}

.future-hero::before {
  background-image:
    linear-gradient(rgba(22, 199, 132, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 199, 132, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(22, 199, 132, 0.13), transparent 42%);
  background-size: 62px 62px, 62px 62px, 100% 100%;
  animation: gridDrift 18s linear infinite;
  mask-image: linear-gradient(90deg, black 20%, transparent 92%);
}

.future-hero::after {
  inset: auto -18% -34% 36%;
  height: 62%;
  background:
    radial-gradient(closest-side, rgba(22, 199, 132, 0.34), transparent),
    radial-gradient(closest-side, rgba(255, 255, 255, 0.08), transparent 72%);
  filter: blur(28px);
  animation: softPulse 5.5s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-block: clamp(36px, 5vw, 58px);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--accent);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: min(40vw, 380px);
}

.future-visual {
  position: relative;
  min-height: min(44vw, 520px);
  perspective: 900px;
  transform: translateY(var(--scroll-shift, 0px));
  transition: transform 0.12s linear;
}

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

.future-visual::before {
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(184, 255, 219, 0.4) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(184, 255, 219, 0.26) 50%, transparent 52%);
  opacity: 0.32;
  transform: rotateX(64deg) rotateZ(-18deg);
  filter: blur(0.2px);
}

.future-visual::after {
  width: 62%;
  height: 1px;
  bottom: 13%;
  left: 19%;
  background: linear-gradient(90deg, transparent, rgba(22, 199, 132, 0.8), transparent);
  box-shadow: 0 0 26px rgba(22, 199, 132, 0.7);
  animation: scanLine 3.8s ease-in-out infinite;
}

.future-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: min(38vw, 500px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: futureFloat 7s ease-in-out infinite;
}

.orb-glow,
.orb-core,
.orb-ring,
.orbit-dot,
.signal-bars,
.signal-label {
  position: absolute;
}

.orb-glow {
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(22, 199, 132, 0.24), transparent 58%),
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 36%);
  filter: blur(18px);
  animation: softPulse 4.4s ease-in-out infinite;
}

.orb-core {
  width: 31%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 42% 58% 48% 52%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 12%),
    radial-gradient(circle at 60% 58%, rgba(22, 199, 132, 0.85), rgba(5, 75, 45, 0.92) 60%, rgba(2, 18, 13, 0.96));
  box-shadow:
    0 0 34px rgba(22, 199, 132, 0.52),
    inset 0 0 24px rgba(255, 255, 255, 0.14);
  animation: morphCore 7s ease-in-out infinite;
}

.orb-ring {
  border: 1px solid rgba(184, 255, 219, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(22, 199, 132, 0.12);
}

.ring-a {
  width: 74%;
  aspect-ratio: 1;
  transform: rotateX(64deg) rotateZ(12deg);
  animation: ringSpinA 11s linear infinite;
}

.ring-b {
  width: 92%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.72;
  transform: rotateX(72deg) rotateZ(-30deg);
  animation: ringSpinB 16s linear infinite;
}

.ring-c {
  width: 54%;
  aspect-ratio: 1;
  border-color: rgba(22, 199, 132, 0.44);
  transform: rotateX(48deg) rotateZ(52deg);
  animation: ringSpinA 8s linear infinite reverse;
}

.orbit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #baffdc;
  box-shadow: 0 0 0 10px rgba(22, 199, 132, 0.12), 0 0 30px rgba(22, 199, 132, 0.9);
}

.dot-a {
  top: 19%;
  right: 22%;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.dot-b {
  bottom: 24%;
  left: 16%;
  width: 9px;
  height: 9px;
  animation: dotPulse 2.8s ease-in-out infinite 0.4s;
}

.dot-c {
  right: 10%;
  bottom: 37%;
  width: 7px;
  height: 7px;
  animation: dotPulse 2.2s ease-in-out infinite 0.8s;
}

.signal-bars {
  right: 10%;
  bottom: 12%;
  left: 12%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(6px, 1vw, 12px);
  height: 74px;
  opacity: 0.9;
}

.signal-bars i {
  display: block;
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9ffe9, var(--accent));
  box-shadow: 0 0 18px rgba(22, 199, 132, 0.35);
  animation: spectrum 1.9s ease-in-out infinite;
}

.signal-bars i:nth-child(2n) { height: 48px; animation-delay: -0.15s; }
.signal-bars i:nth-child(3n) { height: 66px; animation-delay: -0.38s; }
.signal-bars i:nth-child(4n) { height: 34px; animation-delay: -0.62s; }

.signal-label {
  color: rgba(225, 255, 239, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(22, 199, 132, 0.45);
  animation: labelFloat 5.5s ease-in-out infinite;
}

.signal-label-a {
  top: 23%;
  left: 2%;
}

.signal-label-b {
  top: 12%;
  right: 6%;
  animation-delay: -1.3s;
}

.signal-label-c {
  right: 0;
  bottom: 28%;
  animation-delay: -2.4s;
}

.ops-visual {
  min-height: min(44vw, 480px);
}

.ops-console {
  position: relative;
  width: min(42vw, 540px);
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 80% 10%, rgba(22, 199, 132, 0.25), transparent 18rem);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.ops-console::before {
  position: absolute;
  inset: 74px 0 auto;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.console-topline,
.ops-card {
  position: relative;
  z-index: 1;
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--dark);
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.68rem;
}

.waveform {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 118px;
  margin: 30px 0 18px;
  padding: 0 12px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.waveform i {
  display: block;
  flex: 1 1 0;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b7ffdb, var(--accent));
  opacity: 0.88;
  animation: wave 2.4s ease-in-out infinite;
}

.waveform i:nth-child(2n) { height: 68px; animation-delay: -0.2s; }
.waveform i:nth-child(3n) { height: 92px; animation-delay: -0.4s; }
.waveform i:nth-child(4n) { height: 44px; animation-delay: -0.8s; }

.ops-card {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(7, 26, 19, 0.62);
}

.track-card {
  margin-top: 34px;
}

.ops-card span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ops-card strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.ops-card em {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  font-style: normal;
}

.claim-card {
  width: 88%;
  margin-left: auto;
}

.report-card {
  width: 78%;
}

.signal-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(36vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 199, 132, 0.22), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 64%);
  animation: float 6s ease-in-out infinite;
}

.signal-orbit strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38%;
  aspect-ratio: 1;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), #b9ffdb);
  border-radius: 44% 56% 48% 52%;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  box-shadow: 0 30px 90px rgba(22, 199, 132, 0.28);
}

.orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit-two {
  inset: 21%;
  transform: rotate(28deg);
  border-style: dashed;
}

.orbit-three {
  inset: 34%;
  border-color: rgba(22, 199, 132, 0.42);
}

.pulse {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(22, 199, 132, 0.12);
}

.pulse-a {
  top: 18%;
  right: 22%;
}

.pulse-b {
  bottom: 22%;
  left: 12%;
  width: 12px;
  height: 12px;
}

.pulse-c {
  right: 12%;
  bottom: 30%;
  width: 10px;
  height: 10px;
  background: #d8ffe9;
}

.page-hero {
  padding: clamp(92px, 12vw, 154px) 0 clamp(76px, 10vw, 126px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-intro,
.section-heading {
  max-width: 780px;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.copy-stack {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.service-list,
.detail-stack,
.timeline,
.contact-grid {
  display: grid;
  gap: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row p,
.service-detail p,
.case-tile p,
.value-block p {
  color: var(--muted);
}

.service-row a,
.case-tile a {
  color: var(--primary);
  font-weight: 800;
}

.service-index,
.value-block span,
.case-tile span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.metric-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-strip strong {
  color: var(--accent);
  font-size: 1.6rem;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.76);
}

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

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

.case-grid.large .case-tile:last-child {
  grid-column: span 2;
}

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

.capability-card {
  min-height: 290px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(7, 26, 19, 0.06);
}

.capability-card span,
.usecase-block span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capability-card h3 {
  margin-top: 48px;
}

.capability-card p,
.usecase-block p,
.service-columns p {
  color: var(--muted);
}

.case-tile,
.value-block,
.service-detail,
.contact-panel,
.brief-box,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(7, 26, 19, 0.06);
}

.case-tile {
  min-height: 260px;
  padding: clamp(24px, 4vw, 36px);
}

.case-tile h2 {
  margin-top: 52px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

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

.value-block {
  padding: clamp(26px, 4vw, 40px);
}

.value-block h2 {
  margin-top: 70px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.home-pillars .value-block,
.home-principles .value-block {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    var(--white);
}

.home-pillars .value-block h3,
.home-principles .value-block h3 {
  margin-top: 54px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.home-pillars .value-block p,
.home-principles .value-block p {
  margin-bottom: 0;
}

.compact-heading {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.compact-split {
  align-items: center;
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.workflow-line::before {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(22, 199, 132, 0.06));
}

.workflow-line article {
  position: relative;
  padding: 32px clamp(16px, 2vw, 26px) 0 0;
}

.workflow-line article::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 13px;
  height: 13px;
  content: "";
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(22, 199, 132, 0.28);
}

.workflow-line span {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-line h3 {
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.45vw, 1.36rem);
}

.workflow-line p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.format-cloud {
  margin-top: 24px;
}

.format-cloud span {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
}

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

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

.principles-grid .value-block h3 {
  margin-top: 60px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.operations-panel {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.panel-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.compliance-list {
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-list div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.mini-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.mini-list strong {
  color: var(--text);
}

.mini-list span {
  color: var(--muted);
}

.format-panel {
  color: var(--muted);
}

.format-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.format-grid span {
  display: inline-flex;
  padding: 11px 14px;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid rgba(11, 107, 58, 0.12);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list.inverse li {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.76);
}

.service-detail {
  padding: clamp(30px, 5vw, 58px);
  scroll-margin-top: 100px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.service-columns > div {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.service-columns h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-detail ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.service-detail li::before,
.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(22, 199, 132, 0.12);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.contact-panel,
.brief-box {
  padding: clamp(28px, 5vw, 54px);
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 4.2vw, 3.05rem);
  letter-spacing: -0.06em;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.contact-panel .contact-email {
  display: block;
  max-width: 100%;
}

.usecase-stack {
  display: grid;
  gap: 22px;
}

.usecase-block {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(7, 26, 19, 0.06);
}

.usecase-block h2 {
  margin-top: 30px;
}

.usecase-block ol,
.partner-steps {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.usecase-block li,
.partner-steps li {
  position: relative;
  padding: 18px 0 18px 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.usecase-block li:last-child,
.partner-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.usecase-block li::before,
.partner-steps li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(22, 199, 132, 0.12);
}

.partner-steps li {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.partner-steps strong {
  color: var(--text);
}

.partner-steps span {
  color: var(--muted);
}

.small-note {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-copy {
  max-width: 860px;
  color: var(--muted);
}

.legal-copy h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

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

.legal-copy a {
  color: var(--primary);
  font-weight: 800;
}

.final-cta {
  padding: clamp(74px, 10vw, 120px) 0;
}

.cta-panel {
  max-width: 980px;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 80% 20%, rgba(22, 199, 132, 0.2), transparent 22rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.cta-panel h2 {
  max-width: 820px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #04120d;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.scroll-animate {
  opacity: 0.42;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease;
}

.scroll-animate.section-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section-visible .value-block,
.section-visible .workflow-line article,
.section-visible .format-grid span,
.section-visible .cta-panel {
  animation: scrollRise 0.72s ease both;
}

.section-visible .value-block:nth-child(2),
.section-visible .workflow-line article:nth-child(2),
.section-visible .format-grid span:nth-child(2) {
  animation-delay: 0.06s;
}

.section-visible .value-block:nth-child(3),
.section-visible .workflow-line article:nth-child(3),
.section-visible .format-grid span:nth-child(3) {
  animation-delay: 0.12s;
}

.section-visible .workflow-line article:nth-child(4),
.section-visible .format-grid span:nth-child(4) {
  animation-delay: 0.18s;
}

.section-visible .workflow-line article:nth-child(5),
.section-visible .format-grid span:nth-child(5) {
  animation-delay: 0.24s;
}

.section-visible .format-grid span:nth-child(n+6) {
  animation-delay: 0.3s;
}

.format-grid span,
.value-block,
.workflow-line article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.format-grid span:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(22, 199, 132, 0.36);
  box-shadow: 0 14px 32px rgba(7, 26, 19, 0.08);
}

.value-block:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 199, 132, 0.28);
  box-shadow: 0 28px 70px rgba(7, 26, 19, 0.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-18px) rotate(0.001deg); }
}

@keyframes wave {
  0%, 100% { transform: scaleY(0.74); }
  50% { transform: scaleY(1.08); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0, 50% 50%; }
  to { background-position: 62px 62px, -62px 62px, 50% 50%; }
}

@keyframes softPulse {
  0%, 100% { opacity: 0.72; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes futureFloat {
  0%, 100% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) rotateX(0deg) rotateZ(0deg);
  }
  50% {
    transform: translate3d(0, calc(var(--scroll-shift, 0px) - 18px), 0) rotateX(4deg) rotateZ(1.5deg);
  }
}

@keyframes morphCore {
  0%, 100% { border-radius: 42% 58% 48% 52%; transform: scale(1); }
  50% { border-radius: 54% 46% 58% 42%; transform: scale(1.04); }
}

@keyframes ringSpinA {
  from { transform: rotateX(64deg) rotateZ(0deg); }
  to { transform: rotateX(64deg) rotateZ(360deg); }
}

@keyframes ringSpinB {
  from { transform: rotateX(72deg) rotateZ(360deg); }
  to { transform: rotateX(72deg) rotateZ(0deg); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes spectrum {
  0%, 100% { transform: scaleY(0.55); opacity: 0.72; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@keyframes scanLine {
  0%, 100% { transform: translateY(0) scaleX(0.82); opacity: 0.38; }
  50% { transform: translateY(-22px) scaleX(1); opacity: 1; }
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); opacity: 0.58; }
  50% { transform: translateY(-10px); opacity: 0.94; }
}

@keyframes scrollRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--primary);
    background: var(--surface);
  }

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

  .hero-grid,
  .split,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.62fr);
    gap: clamp(24px, 3vw, 34px);
    padding-block: 26px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 4.9vw, 3.1rem);
    line-height: 0.98;
  }

  .hero .lead {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 320px;
  }

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

  .future-orb {
    width: min(100%, 360px);
  }

  .signal-label {
    font-size: 0.64rem;
  }

  .signal-bars {
    height: 56px;
  }

  .signal-orbit {
    width: min(82vw, 420px);
  }

  .case-grid,
  .case-grid.large,
  .values-grid,
  .capability-grid,
  .service-columns {
    grid-template-columns: 1fr;
  }

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

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

  .workflow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .workflow-line::before {
    display: none;
  }

  .workflow-line article {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
  }

  .case-grid.large .case-tile:last-child {
    grid-column: auto;
  }

  .ops-console {
    width: min(100%, 540px);
    min-height: 360px;
    padding: 18px;
    border-radius: 28px;
  }

  .track-card {
    margin-top: 20px;
  }

  .ops-card {
    gap: 4px;
    padding: 11px;
  }

  .ops-card span {
    font-size: 0.62rem;
  }

  .ops-card strong {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .ops-card em {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .claim-card,
  .report-card {
    width: 100%;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  body[data-page="home"] {
    background: #04120d;
    padding-bottom: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 136px;
  }

  body[data-page="home"] .site-header {
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    min-height: 58px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    background: rgba(3, 18, 12, 0.72);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  }

  body[data-page="home"] .brand img {
    width: 124px;
  }

  body[data-page="home"] .nav-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
  }

  body[data-page="home"] .site-nav {
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(4, 18, 13, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
  }

  body[data-page="home"] .site-nav a:hover,
  body[data-page="home"] .site-nav a.is-active {
    color: var(--white);
    background: rgba(22, 199, 132, 0.12);
  }

  body[data-page="home"] .mobile-action-bar {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(3, 18, 12, 0.78);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
  }

  body[data-page="home"] .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    color: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
  }

  body[data-page="home"] .mobile-action-bar a:last-child {
    color: var(--dark);
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(22, 199, 132, 0.28);
  }

  .hero {
    min-height: auto;
  }

  body[data-page="home"] .future-hero {
    min-height: 100svh;
    padding-top: 82px;
    align-items: stretch;
    background:
      radial-gradient(circle at 84% 66%, rgba(22, 199, 132, 0.34), transparent 15rem),
      radial-gradient(circle at 8% 8%, rgba(184, 255, 219, 0.12), transparent 16rem),
      linear-gradient(160deg, #03100b 0%, #082018 52%, #020806 100%);
  }

  body[data-page="home"] .future-hero::before {
    background-size: 44px 44px, 44px 44px, 100% 100%;
    opacity: 0.72;
    mask-image: linear-gradient(180deg, black 35%, transparent 96%);
  }

  body[data-page="home"] .future-hero::after {
    inset: auto -34% -24% 8%;
    height: 46%;
    filter: blur(24px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 34px 46px;
  }

  body[data-page="home"] .hero-grid {
    position: relative;
    display: block;
    min-height: calc(100svh - 82px);
    padding-block: 26px 38px;
  }

  body[data-page="home"] .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-top: clamp(16px, 5svh, 42px);
  }

  body[data-page="home"] .hero-copy .eyebrow {
    max-width: 270px;
    margin-bottom: 13px;
    color: #7effc4;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  body[data-page="home"] .hero h1 {
    max-width: 350px;
    margin-bottom: 16px;
    font-size: clamp(2.48rem, 12.4vw, 3.38rem);
    line-height: 0.91;
    letter-spacing: -0.068em;
    text-wrap: balance;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

  .lead {
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body[data-page="home"] .hero .lead {
    max-width: 315px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-visual {
    min-height: 210px;
  }

  .future-visual {
    min-height: 270px;
  }

  body[data-page="home"] .future-visual {
    position: absolute;
    right: -88px;
    bottom: 28px;
    z-index: 1;
    width: 318px;
    min-height: 318px;
    opacity: 0.78;
    transform: translateY(calc(var(--scroll-shift, 0px) * 0.25));
  }

  body[data-page="home"] .future-visual.reveal.is-visible {
    opacity: 0.78;
  }

  .future-visual::before {
    width: min(78vw, 280px);
  }

  body[data-page="home"] .future-visual::before {
    width: 318px;
    opacity: 0.24;
  }

  body[data-page="home"] .future-visual::after {
    bottom: 20%;
    left: 12%;
    width: 76%;
  }

  .future-orb {
    width: min(78vw, 280px);
  }

  body[data-page="home"] .future-orb {
    width: 300px;
  }

  .signal-label {
    display: none;
  }

  .signal-bars {
    right: 7%;
    bottom: 8%;
    left: 7%;
    height: 48px;
    gap: 7px;
  }

  .signal-bars i {
    width: 6px;
  }

  body[data-page="home"] .signal-bars {
    right: 6%;
    bottom: 5%;
    left: 6%;
    opacity: 0.62;
  }

  body[data-page="home"] .button-row {
    display: grid;
    width: min(100%, 296px);
    gap: 10px;
  }

  body[data-page="home"] .button-row .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    white-space: normal;
  }

  body[data-page="home"] .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
  }

  body[data-page="home"] .section {
    padding: 66px 0;
  }

  body[data-page="home"] .section-heading,
  body[data-page="home"] .section-intro {
    margin-bottom: 24px;
  }

  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .section-intro h2 {
    margin-bottom: 14px;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  body[data-page="home"] .section-heading p,
  body[data-page="home"] .format-panel p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
  }

  body[data-page="home"] .home-pillars,
  body[data-page="home"] .home-principles {
    gap: 12px;
  }

  body[data-page="home"] .value-block {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  body[data-page="home"] .home-pillars .value-block h3,
  body[data-page="home"] .home-principles .value-block h3 {
    margin-top: 28px;
    font-size: 1.22rem;
  }

  body[data-page="home"] .value-block p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  body[data-page="home"] .workflow-line article {
    padding: 20px 0 20px 28px;
    border-top: 1px solid var(--line);
  }

  body[data-page="home"] .workflow-line article::before {
    top: 26px;
    width: 9px;
    height: 9px;
    border-width: 4px;
  }

  body[data-page="home"] .workflow-line h3 {
    margin: 6px 0;
    font-size: 1.15rem;
  }

  body[data-page="home"] .workflow-line p {
    font-size: 0.9rem;
  }

  body[data-page="home"] .compact-split {
    gap: 18px;
  }

  body[data-page="home"] .format-grid {
    gap: 8px;
    margin-top: 18px;
  }

  body[data-page="home"] .format-grid span {
    padding: 10px 12px;
    background: #ffffff;
    font-size: 0.82rem;
  }

  body[data-page="home"] .final-cta {
    padding: 68px 0 96px;
  }

  body[data-page="home"] .cta-panel {
    padding: 28px;
    border-radius: 28px;
  }

  body[data-page="home"] .cta-panel h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  body[data-page="home"] .cta-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
  }

  body[data-page="home"] .site-footer {
    padding-bottom: 104px;
  }

  .ops-visual {
    min-height: 300px;
  }

  .ops-console {
    min-height: 300px;
    padding: 14px;
    border-radius: 26px;
  }

  .waveform {
    display: none;
    gap: 7px;
    height: 44px;
    margin: 14px 0 8px;
  }

  .ops-card {
    gap: 4px;
    margin-top: 8px;
    padding: 11px;
    border-radius: 18px;
  }

  .ops-card span {
    font-size: 0.62rem;
  }

  .ops-card strong {
    font-size: 0.78rem;
  }

  .ops-card em {
    display: none;
  }

  .claim-card,
  .report-card {
    width: 100%;
  }

  .report-card {
    display: grid;
  }

  .workflow-line {
    grid-template-columns: 1fr;
    padding-top: 0;
    border-top: 0;
  }

  .home-pillars,
  .home-principles {
    grid-template-columns: 1fr;
  }

  .workflow-line article {
    padding-top: 24px;
  }

  .workflow-line p {
    max-width: none;
  }

  .signal-orbit {
    width: min(62vw, 220px);
  }

  .service-row,
  .process-list li,
  .metric-strip div,
  .partner-steps li {
    grid-template-columns: 1fr;
  }

  .service-row {
    gap: 14px;
  }

  .button-row {
    width: 100%;
  }

  .button-row .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
    white-space: nowrap;
  }
}
