:root {
  --ink: rgb(11 9 9);
  --dark: rgb(46 69 64);
  --green: rgb(64 129 117);
  --green-dark: rgb(32 92 81);
  --lilac: rgb(181 185 240);
  --white: #fff;
  --canvas: #f7f9f8;
  --soft-green: #e9f3f0;
  --soft-lilac: #f0f1ff;
  --line: #dce5e2;
  --risk: #f06a5c;
  --risk-soft: #fff0ed;
  --shadow-sm: 0 16px 42px rgb(28 54 49 / 8%);
  --shadow-lg: 0 35px 90px rgb(27 56 50 / 18%);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding-block: 112px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgb(46 69 64 / 10%);
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 10px 30px rgb(46 69 64 / 7%);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(64 129 117 / 28%);
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(145deg, var(--dark), var(--green));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 20%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.brand-copy span {
  color: var(--dark);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #3f4f4b;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(181 185 240 / 75%);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-primary {
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 12px 24px rgb(46 69 64 / 18%);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 28px rgb(46 69 64 / 24%);
}

.button-secondary {
  border-color: var(--line);
  color: var(--dark);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: 80px 0 auto;
  display: none;
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 24px 48px rgb(46 69 64 / 12%);
}

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

.mobile-nav a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.hero {
  min-height: 780px;
  padding-top: 138px;
  padding-bottom: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 25%, rgb(181 185 240 / 16%), transparent 30%),
    radial-gradient(circle at 86% 25%, rgb(64 129 117 / 13%), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image: linear-gradient(rgb(46 69 64 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(46 69 64 / 4%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgb(64 129 117 / 13%);
}

.eyebrow-light {
  color: #b8ddd5;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.057em;
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #435752;
  font-size: 19px;
  line-height: 1.62;
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #53635f;
  font-size: 13px;
  font-weight: 600;
}

.hero-checks svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  color: var(--green);
  background: var(--soft-green);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.visual-glow-one {
  width: 420px;
  height: 420px;
  top: 58px;
  right: 10px;
  background: linear-gradient(145deg, rgb(64 129 117 / 18%), rgb(181 185 240 / 20%));
}

.visual-glow-two {
  width: 260px;
  height: 260px;
  top: 185px;
  left: 20px;
  border: 1px solid rgb(64 129 117 / 16%);
  background: rgb(255 255 255 / 55%);
}

.phone-stage {
  position: absolute;
  filter: drop-shadow(0 32px 30px rgb(28 52 47 / 18%));
}

.phone-stage img {
  width: 100%;
}

.phone-stage-back {
  width: 285px;
  top: 64px;
  left: 22px;
  opacity: 0.9;
  transform: rotate(-6deg);
}

.phone-stage-front {
  z-index: 2;
  width: 318px;
  top: 3px;
  right: 20px;
  transform: rotate(2.5deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 12px 15px;
  border: 1px solid rgb(64 129 117 / 14%);
  border-radius: 17px;
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  margin-bottom: 2px;
  color: #73817e;
  font-size: 10px;
}

.floating-note strong {
  color: var(--dark);
  font-size: 12px;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--green-dark);
  background: var(--soft-green);
}

.floating-icon.lilac {
  color: #666cc5;
  background: var(--soft-lilac);
}

.note-warranty {
  top: 86px;
  left: -20px;
}

.note-scan {
  right: -6px;
  bottom: 70px;
}

.trust-rail {
  position: relative;
  z-index: 2;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  border-top: 1px solid rgb(46 69 64 / 8%);
  color: #70817d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-rail i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lilac);
}

.problem {
  background: var(--canvas);
}

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

.section-heading h2,
.screens-heading h2,
.value-copy h2,
.final-cta h2,
.workflow-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading > p,
.screens-heading > p,
.workflow-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #60706c;
  font-size: 17px;
  line-height: 1.6;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 68px;
}

.problem-list {
  border-top: 1px solid #ccd8d5;
}

.problem-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid #ccd8d5;
}

.problem-row > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.problem-row h3 {
  margin: 0 0 7px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.problem-row p {
  margin: 0;
  color: #60706c;
  font-size: 14px;
  line-height: 1.55;
}

.solution-card {
  position: sticky;
  top: 110px;
  min-height: 600px;
  padding: 29px 32px 0;
  border: 1px solid rgb(64 129 117 / 16%);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgb(181 185 240 / 28%), transparent 28%),
    linear-gradient(145deg, #203a35, #355f57);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.solution-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #bad9d2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 999px;
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.status-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee2ca;
  box-shadow: 0 0 0 4px rgb(126 226 202 / 12%);
}

.solution-card h3 {
  max-width: 480px;
  margin: 28px 0 16px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.solution-card > p {
  margin: 0;
  color: #cde0dc;
  font-size: 14px;
  line-height: 1.6;
}

.solution-chain {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  white-space: nowrap;
  font-size: 11px;
}

.solution-chain span {
  padding: 7px 9px;
  border-radius: 9px;
  background: rgb(255 255 255 / 8%);
}

.solution-chain b {
  color: #8ecbbf;
}

.solution-card > img {
  width: 245px;
  margin: 22px auto -142px;
  filter: drop-shadow(0 24px 28px rgb(0 0 0 / 28%));
}

.workflow {
  min-height: 850px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgb(64 129 117 / 16%), transparent 25%),
    radial-gradient(circle at 83% 72%, rgb(181 185 240 / 12%), transparent 30%),
    #101c19;
  overflow: hidden;
}

.workflow-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 64px;
}

.workflow-copy h2 {
  max-width: 600px;
}

.workflow-copy > p {
  color: #abc0bb;
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 38px;
}

.step-tab {
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 13px;
  color: #c5d2cf;
  background: rgb(255 255 255 / 3%);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 650;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.step-tab:hover {
  transform: translateX(3px);
  border-color: rgb(126 226 202 / 25%);
}

.step-tab span {
  color: #72948d;
  font-size: 10px;
  font-weight: 800;
}

.step-tab.is-active {
  border-color: rgb(126 226 202 / 32%);
  color: var(--white);
  background: linear-gradient(135deg, rgb(64 129 117 / 34%), rgb(64 129 117 / 12%));
}

.step-tab.is-active span {
  color: #8ee5d2;
}

.workflow-viewer {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.workflow-orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgb(181 185 240 / 18%);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgb(64 129 117 / 8%);
}

.workflow-orbit::before,
.workflow-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.workflow-orbit::before {
  inset: 58px;
  border: 1px dashed rgb(126 226 202 / 13%);
}

.workflow-orbit::after {
  width: 9px;
  height: 9px;
  top: 64px;
  right: 55px;
  background: var(--lilac);
  box-shadow: 0 0 24px var(--lilac);
}

.viewer-phone {
  position: relative;
  z-index: 2;
  width: 300px;
  transition: opacity 0.18s ease, transform 0.18s ease;
  filter: drop-shadow(0 34px 38px rgb(0 0 0 / 35%));
}

.viewer-phone.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}

.viewer-caption {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 58px;
  width: 255px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  background: rgb(23 44 39 / 90%);
  box-shadow: 0 24px 48px rgb(0 0 0 / 24%);
  backdrop-filter: blur(14px);
}

.viewer-caption > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #a5ece0;
  background: rgb(64 129 117 / 28%);
  font-size: 10px;
  font-weight: 800;
}

.viewer-caption h3 {
  margin: 1px 0 5px;
  font-size: 14px;
}

.viewer-caption p {
  margin: 0;
  color: #aebfbb;
  font-size: 11px;
  line-height: 1.45;
}

.features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--canvas);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgb(64 129 117 / 30%);
  box-shadow: var(--shadow-sm);
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-content: start;
  column-gap: 18px;
}

.feature-card-wide > .feature-index {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgb(64 129 117 / 8%);
  font-size: 82px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.feature-card-tall {
  grid-row: span 2;
  min-height: 504px;
}

.feature-card-dark {
  color: var(--white);
  border-color: #294740;
  background:
    radial-gradient(circle at 80% 20%, rgb(181 185 240 / 22%), transparent 29%),
    linear-gradient(150deg, #1f3833, #345c54);
}

.feature-card-dark .feature-icon {
  color: #b7e0d7;
  background: rgb(255 255 255 / 9%);
}

.feature-card-dark > span,
.feature-card-dark p {
  color: #bed1cc;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--soft-green);
}

.feature-card-wide .feature-icon {
  margin-bottom: 0;
}

.feature-icon.lilac {
  color: #656bc3;
  background: var(--soft-lilac);
}

.feature-icon.risk {
  color: #c04c41;
  background: var(--risk-soft);
}

.feature-card > span,
.feature-card > div > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 9px 0 11px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: #61716d;
  font-size: 13px;
  line-height: 1.55;
}

.kks-sample {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 18px;
  background: rgb(255 255 255 / 7%);
}

.kks-sample small,
.kks-sample strong,
.kks-sample i {
  display: block;
}

.kks-sample small {
  color: #9ab1ac;
  font-size: 10px;
}

.kks-sample strong {
  margin: 6px 0 12px;
  font-size: 27px;
  letter-spacing: 0.04em;
}

.kks-sample i {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  color: #a8eddf;
  background: rgb(77 173 151 / 14%);
  font-size: 10px;
  font-style: normal;
}

.feature-card-risk {
  border-color: #f2d5d0;
  background: linear-gradient(145deg, #fff, #fff5f3);
}

.feature-card-access {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 18px;
}

.feature-card-access ul {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-card-access li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #566762;
  background: var(--white);
  font-size: 10px;
  font-weight: 650;
}

.screens {
  padding-bottom: 92px;
  background: var(--soft-lilac);
  overflow: hidden;
}

.screens-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}

.screens-heading > div {
  max-width: 760px;
}

.screens-heading > p {
  max-width: 260px;
  margin: 0 0 4px;
  font-size: 14px;
}

.screen-rail {
  width: 100%;
  display: flex;
  gap: 18px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
  scroll-snap-type: x proximity;
}

.screen-rail::-webkit-scrollbar {
  height: 8px;
}

.screen-rail::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgb(64 129 117 / 38%);
}

.screen-card {
  min-width: 258px;
  scroll-snap-align: start;
  padding: 16px 16px 0;
  border: 1px solid rgb(46 69 64 / 10%);
  border-radius: 25px;
  background: rgb(255 255 255 / 72%);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.screen-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.screen-card > span {
  display: block;
  margin: 4px 3px 13px;
  color: var(--dark);
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.screen-card img {
  width: 222px;
  margin: auto;
  filter: drop-shadow(0 16px 18px rgb(41 66 60 / 18%));
}

.value {
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 100px;
}

.value-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.report-halo {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--soft-green), var(--soft-lilac));
}

.value-visual > img {
  position: relative;
  z-index: 2;
  width: 320px;
  filter: drop-shadow(0 34px 36px rgb(46 69 64 / 22%));
}

.value-badge {
  position: absolute;
  z-index: 3;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-sm);
  color: #6a7774;
  font-size: 11px;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.value-badge svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 10px;
  color: var(--green);
  background: var(--soft-green);
}

.value-badge strong {
  color: var(--dark);
}

.value-badge-top {
  top: 100px;
  left: -5px;
}

.value-badge-bottom {
  right: -8px;
  bottom: 115px;
}

.value-copy h2 {
  max-width: 630px;
  margin-bottom: 42px;
}

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

.role-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.role-list article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: 10px;
  font-weight: 800;
}

.role-list h3 {
  margin: 2px 0 6px;
  font-size: 17px;
}

.role-list p {
  margin: 0;
  color: #61716d;
  font-size: 13px;
  line-height: 1.55;
}

.final-cta {
  padding-top: 20px;
  padding-bottom: 90px;
}

.final-cta-inner {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  border-radius: 42px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 85% 20%, rgb(181 185 240 / 32%), transparent 28%),
    radial-gradient(circle at 15% 80%, rgb(64 129 117 / 32%), transparent 25%),
    #172c27;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.cta-orb::before,
.cta-orb::after {
  content: "";
  position: absolute;
  inset: 62px;
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: inherit;
}

.cta-orb::after {
  inset: 128px;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  max-width: 600px;
  margin: 22px 0 0;
  color: #bed1cc;
  font-size: 16px;
  line-height: 1.6;
}

.button-white {
  color: var(--dark);
  background: var(--white);
}

.button-outline-light {
  border-color: rgb(255 255 255 / 22%);
  color: var(--white);
  background: rgb(255 255 255 / 4%);
}

.button-outline-light:hover {
  border-color: rgb(255 255 255 / 45%);
  background: rgb(255 255 255 / 8%);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.footer-inner p {
  max-width: 540px;
  margin: 0;
  color: #7a8784;
  font-size: 12px;
}

.footer-inner > a:last-child {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.screen-dialog {
  width: min(92vw, 720px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  overflow: visible;
}

.screen-dialog::backdrop {
  background: rgb(11 18 16 / 76%);
  backdrop-filter: blur(9px);
}

.dialog-content {
  min-height: 82vh;
  display: grid;
  grid-template-rows: auto 1fr;
  place-items: center;
  padding: 20px 30px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 28px;
  color: var(--white);
  background: #152722;
  box-shadow: 0 40px 100px rgb(0 0 0 / 40%);
}

.dialog-content p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dialog-content img {
  width: auto;
  height: min(75vh, 760px);
  filter: drop-shadow(0 24px 30px rgb(0 0 0 / 32%));
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  color: var(--white);
  background: var(--dark);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 440px;
    gap: 26px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .phone-stage-front {
    right: 0;
  }

  .phone-stage-back {
    left: 0;
  }

  .problem-layout,
  .workflow-shell,
  .value-grid {
    gap: 48px;
  }

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

  .feature-card-tall {
    grid-row: auto;
    min-height: 330px;
  }

  .kks-sample {
    position: static;
    margin-top: 25px;
  }

  .value-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .value-badge-top {
    left: -15px;
  }

  .value-badge-bottom {
    right: -15px;
  }
}

@media (max-width: 840px) {
  .section {
    padding-block: 84px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .problem-layout,
  .workflow-shell,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions,
  .hero-checks {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .trust-rail {
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 24px;
  }

  .solution-card {
    position: relative;
    top: auto;
  }

  .workflow-copy {
    text-align: center;
  }

  .workflow-copy .eyebrow {
    justify-content: center;
  }

  .workflow-copy > p {
    margin-inline: auto;
  }

  .workflow-viewer {
    min-height: 670px;
  }

  .viewer-caption {
    right: 8%;
  }

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

  .screens-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .screens-heading > p {
    max-width: 480px;
  }

  .value-visual {
    order: 2;
  }

  .value-copy {
    order: 1;
  }

  .value-copy h2 {
    max-width: none;
  }

  .final-cta-inner {
    min-height: 460px;
    padding: 54px 34px;
  }
}

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

  .section {
    padding-block: 70px;
  }

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

  .mobile-nav {
    inset: 70px 0 auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-checks {
    align-items: center;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 14px;
  }

  .visual-glow-one {
    width: 350px;
    height: 350px;
    right: 50%;
    transform: translateX(50%);
  }

  .phone-stage-back {
    width: 230px;
    top: 90px;
    left: -6px;
  }

  .phone-stage-front {
    width: 270px;
    right: -4px;
  }

  .floating-note {
    min-width: 160px;
    padding: 10px;
  }

  .note-warranty {
    top: 76px;
    left: 0;
  }

  .note-scan {
    right: 0;
    bottom: 45px;
  }

  .trust-rail i {
    display: none;
  }

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

  .section-heading h2,
  .screens-heading h2,
  .value-copy h2,
  .final-cta h2,
  .workflow-copy h2 {
    font-size: 38px;
  }

  .problem-row {
    grid-template-columns: 44px 1fr;
  }

  .solution-card {
    min-height: 550px;
    padding: 24px 22px 0;
    border-radius: 28px;
  }

  .solution-card h3 {
    font-size: 26px;
  }

  .solution-chain {
    gap: 5px;
    overflow-x: auto;
  }

  .solution-chain span {
    padding: 6px 7px;
  }

  .step-tabs {
    grid-template-columns: 1fr;
  }

  .workflow-viewer {
    min-height: 590px;
  }

  .workflow-orbit {
    width: 390px;
    height: 390px;
  }

  .viewer-phone {
    width: 260px;
  }

  .viewer-caption {
    right: 0;
    bottom: 42px;
    width: 220px;
  }

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

  .feature-card-wide,
  .feature-card-access {
    grid-column: auto;
  }

  .feature-card-wide,
  .feature-card-access {
    grid-template-columns: 44px 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card-tall {
    min-height: 390px;
  }

  .screen-card {
    min-width: 238px;
  }

  .value-visual {
    min-height: 560px;
  }

  .report-halo {
    width: 350px;
    height: 350px;
  }

  .value-visual > img {
    width: 280px;
  }

  .value-badge {
    min-width: 190px;
  }

  .value-badge-top {
    top: 56px;
    left: 0;
  }

  .value-badge-bottom {
    right: 0;
    bottom: 60px;
  }

  .final-cta {
    padding-top: 6px;
    padding-bottom: 60px;
  }

  .final-cta-inner {
    min-height: 520px;
    padding: 42px 22px;
    border-radius: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-inner .brand {
    justify-self: center;
  }

  .footer-inner p {
    margin-inline: auto;
  }

  .dialog-content {
    padding: 18px;
  }

  .dialog-close {
    top: 8px;
    right: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
