:root {
  --ink: #10231c;
  --ink-soft: #415149;
  --green: #06c755;
  --green-deep: #087a3d;
  --green-dark: #0c402d;
  --mint: #e8f6ed;
  --mint-soft: #f3f9f4;
  --paper: #fbfcf8;
  --sand: #f2eee5;
  --line: #dbe3dc;
  --white: #ffffff;
  --orange: #e39961;
  --yellow: #e7c56f;
  --max: 1160px;
  --section-space: 116px;
  --column-gap: clamp(64px, 6.2vw, 88px);
  --frame-pad: max(40px, calc((100vw - var(--max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

button,
summary {
  font: inherit;
}

main {
  overflow: visible;
}

.phrase {
  display: inline-block;
  white-space: nowrap;
}

.section {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-label,
.eyebrow {
  margin: 0 0 24px;
  color: var(--green-deep);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.section-label.light {
  color: #9dd8b6;
}

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

h2 {
  margin-bottom: 28px;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 max(30px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(16, 35, 28, 0.1);
  background: rgba(251, 252, 248, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-self: start;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  line-height: 1;
}

.brand-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.footer-brand .brand-main {
  font-size: 21px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--green-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 126px;
  height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  vertical-align: middle;
}

.arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(56px, 6vw, 76px);
  align-items: center;
  width: min(var(--max), calc(100% - 80px));
  min-height: 0;
  margin: 0 auto;
  padding: 88px 0 94px;
}

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

.eyebrow > span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green-deep);
}

.hero h1 {
  margin: 0 0 30px;
  font-size: clamp(42px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line.accent {
  color: var(--green-deep);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-line {
  color: var(--white);
  background: var(--green-deep);
}

.button-line:hover {
  background: #066c36;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--green-deep);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  min-height: 76px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-meta li:last-child {
  border-right: 0;
}

.hero-meta span {
  margin-bottom: 5px;
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
  padding: 40px 0;
  background: var(--mint);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid rgba(8, 122, 61, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  width: 420px;
  height: 420px;
}

.hero-visual::after {
  width: 320px;
  height: 320px;
}

.phone {
  position: relative;
  z-index: 2;
  width: 284px;
  border: 9px solid var(--ink);
  border-radius: 30px;
  overflow: hidden;
  background: #f5f5f1;
  box-shadow: 0 32px 80px rgba(14, 57, 37, 0.2);
  transform: rotate(-1.25deg);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.phone-top i {
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: rotate(45deg);
}

.phone-top b {
  justify-self: end;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.chat-area {
  min-height: 396px;
  padding: 22px 18px 18px;
}

.chat-date {
  margin-bottom: 18px;
  color: #88978f;
  text-align: center;
  font-family: "Avenir Next", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.bubble {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
}

.bubble-user {
  margin-left: auto;
  border-radius: 14px 2px 14px 14px;
  background: #c8f1d6;
}

.bubble-reply {
  border: 1px solid #e4e7e3;
  border-radius: 2px 14px 14px 14px;
  background: var(--white);
}

.action-card {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 17px;
  border-left: 3px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 50, 36, 0.08);
}

.action-card small {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.action-card strong {
  margin: 4px 0 8px;
  font-size: 13px;
}

.action-card span {
  color: #73847b;
  font-size: 9px;
}

.action-card span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
}

.phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 18px;
  border-top: 1px solid #e1e5e2;
  color: #9ca9a2;
  background: var(--white);
  font-size: 10px;
}

.phone-input i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #aebbb3;
  border-radius: 50%;
  font-style: normal;
}

.float-note {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 112px;
  padding: 12px 14px;
  border-top: 2px solid var(--green-deep);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(18, 50, 36, 0.12);
  font-size: 11px;
}

.float-note small {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.note-one { top: 128px; left: 20px; }
.note-two { top: 276px; right: 16px; }
.note-three { bottom: 68px; left: 24px; }

.value-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 70px;
  padding: 12px 40px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.value-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #79c59b;
}

.origin {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
}

.section-intro {
  position: static;
  align-self: center;
}

.origin-body {
  color: var(--ink-soft);
  font-size: 16px;
}

.origin-body > p {
  margin-bottom: 26px;
}

.origin-body .origin-lead {
  margin-bottom: 38px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
  line-break: strict;
  line-height: 1.75;
  text-wrap: pretty;
}

.origin-body .origin-lead span {
  display: block;
}

.origin blockquote {
  margin: 48px 0 0;
  padding: 30px 48px 32px;
  color: var(--ink);
  background: var(--sand);
}

.origin blockquote > .quote-mark {
  display: block;
  height: 42px;
  color: var(--green-deep);
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
}

.origin blockquote > .quote-open {
  margin-bottom: 12px;
  text-align: left;
}

.origin blockquote > .quote-close {
  margin-top: 12px;
  text-align: right;
}

.origin blockquote p {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-break: strict;
  line-height: 1.8;
  text-wrap: pretty;
}

.fit-check {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
  align-items: center;
  padding: var(--section-space) var(--frame-pad);
  background: var(--sand);
}

.fit-copy h2 {
  margin-bottom: 22px;
}

.fit-copy > p:last-child {
  color: var(--ink-soft);
}

.fit-check ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-check li {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid rgba(16, 35, 28, 0.14);
}

.fit-check li span {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.fit-check li p {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
}

.fit-check li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-deep);
  font-size: 11px;
  font-style: normal;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
  align-items: center;
}

.benefit-heading {
  position: static;
  align-self: center;
}

.benefit-heading > p:last-child,
.plans-heading > p:last-child,
.scope-intro > p:last-child,
.screening-head > p:last-child,
.faq-heading > p:last-child {
  color: var(--ink-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefit-card:nth-child(1) { background: #f5fbf7; }
.benefit-card:nth-child(2) { background: #fffdfa; }
.benefit-card:nth-child(3) { background: #fffaf7; }
.benefit-card:nth-child(4) { background: #f8fbfa; }

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-weight: 800;
}

.card-top span { font-size: 16px; }
.card-top small { font-size: 10px; letter-spacing: 0.14em; }

.line-icon {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 11px;
  background: var(--mint);
}

.line-icon i,
.line-icon b,
.line-icon::before,
.line-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.icon-clarity i { top: 12px; left: 11px; width: 19px; height: 15px; border: 1px solid var(--green-deep); border-radius: 3px; }
.icon-clarity i::after { position: absolute; right: 2px; bottom: -5px; width: 6px; height: 6px; border-bottom: 1px solid var(--green-deep); content: ""; transform: skewY(-35deg); }
.icon-clarity b { top: 17px; left: 16px; width: 10px; height: 1px; background: var(--green-deep); box-shadow: 0 4px 0 var(--green-deep); }

.icon-action::before { top: 9px; left: 12px; width: 16px; height: 22px; border: 1px solid var(--green-deep); border-radius: 2px; }
.icon-action i { top: 15px; left: 16px; width: 8px; height: 1px; background: var(--green-deep); box-shadow: 0 5px 0 var(--green-deep), 0 10px 0 var(--green-deep); }
.icon-action b { top: 8px; left: 17px; width: 7px; height: 4px; border: 1px solid var(--green-deep); border-radius: 3px; background: var(--mint); }

.icon-review::before { top: 10px; left: 10px; width: 20px; height: 20px; border: 1px solid var(--green-deep); border-radius: 50%; border-right-color: transparent; }
.icon-review::after { top: 9px; right: 9px; width: 7px; height: 7px; border-top: 1px solid var(--green-deep); border-right: 1px solid var(--green-deep); }
.icon-review i { top: 19px; left: 16px; width: 9px; height: 1px; background: var(--green-deep); transform: rotate(35deg); }

.icon-archive::before { top: 11px; left: 10px; width: 22px; height: 20px; border: 1px solid var(--green-deep); border-radius: 2px; }
.icon-archive::after { top: 11px; left: 9px; width: 24px; height: 5px; border: 1px solid var(--green-deep); background: var(--mint); }
.icon-archive i { top: 21px; left: 17px; width: 9px; height: 1px; background: var(--green-deep); }

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  letter-spacing: -0.03em;
  line-height: 1.6;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
  align-items: center;
  padding: var(--section-space) var(--frame-pad);
  color: var(--white);
  background: var(--green-dark);
}

.flow-copy p:not(.section-label) {
  color: #c5d8cd;
  font-size: 16px;
}

.flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.flow-tags span {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  color: #dce9e1;
  font-size: 12px;
}

.flow-diagram {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 14px;
  align-items: center;
}

.flow-diagram article {
  min-height: 185px;
  padding: 28px;
  border-top: 2px solid #85d1a6;
  background: var(--white);
  color: var(--ink);
}

.flow-diagram article:nth-of-type(3),
.flow-diagram article:nth-of-type(4) {
  margin-top: 10px;
}

.flow-diagram > i {
  color: #85d1a6;
  font-family: sans-serif;
  font-size: 18px;
  font-style: normal;
  text-align: center;
}

.flow-diagram > i:nth-of-type(2) {
  display: none;
}

.flow-diagram article:nth-of-type(3) {
  grid-column: 1;
}

.flow-diagram article:nth-of-type(4) {
  grid-column: 3;
}

.flow-diagram article small {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flow-diagram article strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 20px;
}

.flow-diagram article p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.plans-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.plan-card.recommended {
  border: 2px solid var(--green-deep);
  background: var(--mint-soft);
}

.recommend-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  color: var(--white);
  background: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-weight: 800;
}

.plan-head span { font-size: 18px; }
.plan-head small { font-size: 11px; }

.plan-card h3 {
  margin: 32px 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.plan-lead {
  min-height: 68px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.price {
  display: flex;
  align-items: flex-end;
  margin: 18px 0 26px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  line-height: 1;
}

.price small {
  margin-right: 8px;
  padding-bottom: 6px;
  font-size: 12px;
}

.price strong {
  color: var(--green-deep);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(34px, 3vw, 44px);
  letter-spacing: -0.055em;
}

.price span {
  margin-left: 6px;
  padding-bottom: 3px;
  font-size: 11px;
  line-height: 1.4;
}

.plan-card ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.plan-card li i {
  color: var(--green-deep);
  font-style: normal;
  font-weight: 900;
}

.plan-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.plan-card > a:hover {
  color: var(--white);
  background: var(--ink);
}

.plan-switch {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--column-gap);
  align-items: center;
  margin-top: 54px;
  padding: 46px 48px;
  background: var(--sand);
}

.plan-switch h3 {
  margin-bottom: 16px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.plan-switch p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.switch-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.switch-visual span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border-top: 2px solid var(--green-deep);
  background: var(--white);
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.switch-visual small {
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 10px;
}

.switch-visual i {
  color: var(--green-deep);
  font-style: normal;
}

.scope-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
  padding: var(--section-space) var(--frame-pad);
  background: var(--mint);
}

.scope-intro {
  position: static;
  align-self: center;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(16, 35, 28, 0.16);
  border-left: 1px solid rgba(16, 35, 28, 0.16);
}

.scope-grid article {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid rgba(16, 35, 28, 0.16);
  border-bottom: 1px solid rgba(16, 35, 28, 0.16);
  background: rgba(255,255,255,0.55);
}

.scope-grid article > span {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.scope-grid article > small {
  display: block;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.scope-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.scope-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.scope-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 20px 0 28px;
  border-radius: 50%;
  background: var(--white);
}

.scope-icon i,
.scope-icon b,
.scope-icon::before,
.scope-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.scope-business::before { top: 13px; left: 12px; width: 24px; height: 19px; border: 1px solid var(--green-deep); }
.scope-business::after { top: 18px; left: 21px; width: 6px; height: 5px; border: 1px solid var(--green-deep); background: var(--white); }
.scope-business i { top: 10px; left: 19px; width: 10px; height: 5px; border: 1px solid var(--green-deep); }

.scope-health::before { top: 11px; left: 20px; width: 8px; height: 26px; background: var(--green-deep); border-radius: 2px; }
.scope-health::after { top: 20px; left: 11px; width: 26px; height: 8px; background: var(--green-deep); border-radius: 2px; }

.scope-talk::before { top: 11px; left: 10px; width: 28px; height: 21px; border: 1px solid var(--green-deep); border-radius: 10px; }
.scope-talk::after { bottom: 9px; right: 12px; width: 8px; height: 8px; border-bottom: 1px solid var(--green-deep); transform: skewY(-35deg); }
.scope-talk i { top: 21px; left: 18px; width: 3px; height: 3px; border-radius: 50%; background: var(--green-deep); box-shadow: 6px 0 0 var(--green-deep), 12px 0 0 var(--green-deep); }

.scope-life::before { top: 19px; left: 13px; width: 22px; height: 18px; border: 1px solid var(--green-deep); }
.scope-life::after { top: 10px; left: 14px; width: 19px; height: 19px; border-top: 1px solid var(--green-deep); border-left: 1px solid var(--green-deep); transform: rotate(45deg); }
.scope-life i { top: 25px; left: 22px; width: 5px; height: 12px; border-left: 1px solid var(--green-deep); border-right: 1px solid var(--green-deep); }

.screening-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  column-gap: var(--column-gap);
  align-items: end;
  margin-bottom: 50px;
}

.screening-head .section-label {
  grid-column: 1 / -1;
}

.screening-head h2 {
  margin: 0;
}

.screening-head > p:last-child {
  margin: 0 0 8px;
}

.screening-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.screening-grid article {
  padding: 40px;
  border-top: 3px solid var(--green-deep);
  background: var(--mint-soft);
}

.screening-grid .no-fit {
  border-color: #b7a795;
  background: var(--sand);
}

.screening-grid small {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.screening-grid .no-fit small { color: #766554; }

.screening-grid h3 {
  margin: 18px 0 26px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.screening-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.screening-grid li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid rgba(16,35,28,0.12);
  font-size: 14px;
  line-height: 1.7;
}

.screening-grid li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 8px;
  height: 4px;
  border-bottom: 1px solid var(--green-deep);
  border-left: 1px solid var(--green-deep);
  content: "";
  transform: rotate(-45deg);
}

.no-fit li::before {
  top: 20px;
  height: 8px;
  border: 0;
  background: linear-gradient(45deg, transparent 45%, #766554 46%, #766554 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #766554 46%, #766554 54%, transparent 55%);
  transform: none;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: var(--column-gap);
  border-top: 1px solid var(--line);
}

.faq-heading {
  position: static;
  align-self: center;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary span {
  color: var(--green-deep);
  font-family: "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.faq summary strong {
  font-size: 14px;
  letter-spacing: 0;
}

.faq summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq summary i::before,
.faq summary i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  background: var(--green-deep);
  content: "";
}

.faq summary i::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq details[open] summary i::after {
  transform: rotate(0);
}

.faq details > p {
  margin: -4px 40px 32px 56px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.final-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 88px 40px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  text-align: center;
}

.final-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255,255,255,0.035);
  font-family: "Avenir Next", sans-serif;
  font-size: min(30vw, 460px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: translate(-52%, -50%);
}

.final-cta > *:not(.final-word) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.final-cta > p:not(.section-label) {
  margin-bottom: 34px;
  color: #d3e4da;
}

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

.final-cta > small {
  margin-top: 18px;
  color: #a9c3b4;
  font-size: 12px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--max), calc(100% - 80px));
  min-height: 110px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 12px;
}

footer > p {
  justify-self: end;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(16,35,28,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 30px rgba(16,35,28,0.1);
  font-family: "Avenir Next", sans-serif;
  line-height: 1;
}

.back-to-top span { color: var(--green-deep); font-size: 14px; }
.back-to-top small { margin-top: 3px; font-size: 8px; font-weight: 800; }

.mobile-sticky {
  display: none;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 400px;
    gap: 52px;
  }

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

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

  .float-note {
    width: 100px;
  }

  .benefits,
  .scope-section {
    gap: 5vw;
  }

  .plan-card {
    padding: 28px 24px;
  }
}

@media (max-width: 900px) {
  .section {
    width: min(100% - 48px, 720px);
    padding: 90px 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
    min-height: 68px;
    padding: 0 24px;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    min-width: 112px;
    height: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 720px);
    min-height: 0;
    padding: 72px 0 78px;
  }

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

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

  .origin,
  .benefits,
  .faq {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-intro,
  .benefit-heading,
  .faq-heading,
  .scope-intro {
    position: static;
  }

  .fit-check,
  .flow-section,
  .scope-section {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 90px 24px;
  }

  .fit-copy,
  .fit-check ul,
  .flow-copy,
  .flow-diagram,
  .scope-intro,
  .scope-grid {
    width: min(100%, 720px);
    margin-right: auto;
    margin-left: auto;
  }

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

  .plan-card {
    min-height: 0;
    padding: 38px;
  }

  .plan-lead {
    min-height: 0;
  }

  .plan-switch {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .screening-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  footer {
    width: calc(100% - 48px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  main {
    padding-bottom: 82px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 68px 0;
  }

  h2 {
    margin-bottom: 22px;
    font-size: clamp(29px, 8.5vw, 37px);
    line-height: 1.42;
  }

  .section-label,
  .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .site-header {
    height: 62px;
    min-height: 62px;
    padding: 0 20px;
  }

  .brand-main {
    font-size: 18px;
  }

  .header-cta {
    min-width: 105px;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-cta .arrow {
    margin-left: 10px;
  }

  .hero {
    width: calc(100% - 40px);
    padding: 56px 0 64px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.3;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.9;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
    min-height: 58px;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-meta {
    margin-top: 36px;
  }

  .hero-meta li {
    min-height: 84px;
    padding: 12px 9px;
    font-size: 11px;
  }

  .hero-visual {
    min-height: 544px;
    padding: 32px 0;
    margin-top: 16px;
  }

  .hero-visual::before {
    width: 310px;
    height: 310px;
  }

  .hero-visual::after {
    width: 240px;
    height: 240px;
  }

  .phone {
    width: min(246px, calc(100% - 68px));
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-top {
    height: 55px;
  }

  .chat-area {
    min-height: 356px;
    padding: 17px 14px 14px;
  }

  .bubble {
    padding: 10px 12px;
    font-size: 10px;
  }

  .action-card {
    margin-top: 18px;
    padding: 13px;
  }

  .float-note {
    width: 88px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .note-one { top: 108px; left: 4px; }
  .note-two { top: 252px; right: 4px; }
  .note-three { bottom: 46px; left: 7px; }

  .value-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 24px 28px;
    font-size: 12px;
  }

  .value-strip i {
    display: none;
  }

  .origin {
    gap: 32px;
  }

  .origin-body .origin-lead {
    font-size: 19px;
  }

  .origin blockquote {
    margin-top: 42px;
    padding: 26px 24px 28px;
  }

  .origin blockquote p {
    font-size: 18px;
  }

  .fit-check,
  .flow-section,
  .scope-section {
    gap: 38px;
    padding: 68px 20px;
  }

  .fit-check li {
    grid-template-columns: 34px 1fr 25px;
    gap: 10px;
    min-height: 88px;
  }

  .fit-check li p {
    font-size: 15px;
  }

  .benefit-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .scope-grid article {
    min-height: 0;
    padding: 26px;
  }

  .benefit-card {
    padding-bottom: 32px;
  }

  .flow-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-diagram article,
  .flow-diagram article:nth-of-type(3),
  .flow-diagram article:nth-of-type(4) {
    grid-column: 1;
    min-height: 0;
    margin: 0;
    padding: 24px;
  }

  .flow-diagram > i,
  .flow-diagram > i:nth-of-type(2) {
    display: block;
    transform: rotate(90deg);
  }

  .plans-heading {
    margin-bottom: 42px;
  }

  .plan-card {
    padding: 30px 24px;
  }

  .plan-card h3 {
    margin-top: 26px;
    font-size: 22px;
  }

  .price strong {
    font-size: 40px;
  }

  .plan-switch {
    margin-top: 40px;
    padding: 34px 24px;
  }

  .plan-switch h3 {
    font-size: 22px;
  }

  .switch-visual {
    grid-template-columns: 1fr;
  }

  .switch-visual i {
    text-align: center;
    transform: rotate(90deg);
  }

  .switch-visual span {
    min-height: 74px;
  }

  .scope-grid article {
    min-height: 260px;
  }

  .screening-head {
    margin-bottom: 38px;
  }

  .screening-grid article {
    padding: 34px 24px;
  }

  .faq {
    gap: 30px;
  }

  .faq summary {
    grid-template-columns: 30px 1fr 28px;
    gap: 8px;
    min-height: 78px;
  }

  .faq summary strong {
    font-size: 14px;
    line-height: 1.65;
  }

  .faq details > p {
    margin: 0 20px 26px 38px;
    font-size: 14px;
  }

  .final-cta {
    min-height: 440px;
    padding: 76px 20px;
  }

  .final-cta h2 {
    font-size: 37px;
  }

  .final-cta > p:not(.section-label) {
    font-size: 14px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    width: calc(100% - 40px);
    padding: 34px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  footer > p {
    justify-self: start;
  }

  .back-to-top {
    display: none;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 8px;
    color: var(--white);
    background: var(--green-deep);
    box-shadow: 0 8px 24px rgba(16,35,28,0.22);
    font-size: 13px;
    font-weight: 800;
  }
}

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