:root {
  color-scheme: light;
  --ink: #102a2e;
  --ink-soft: #365257;
  --muted: #687d80;
  --paper: #f6fbfa;
  --white: #ffffff;
  --warm: #fff7ef;
  --teal: #087d73;
  --teal-dark: #056159;
  --teal-soft: #dff5f1;
  --coral: #ef735e;
  --yellow: #f5c85b;
  --line: #d8e6e3;
  --shadow: 0 1rem 2.5rem rgb(15 60 57 / 12%);
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --container: 70rem;
  --reading: 46rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt" 1;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  line-break: strict;
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 0.2rem solid var(--yellow);
  outline-offset: 0.2rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.reading-width {
  max-width: var(--reading);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(246 251 250 / 94%);
  border-bottom: 1px solid rgb(8 125 115 / 12%);
  backdrop-filter: blur(0.75rem);
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  min-height: 3.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-decoration: none;
}

.brand-name {
  color: var(--teal-dark);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-tagline {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
}

.header-license {
  display: none;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
  text-align: right;
}

.header-license strong {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.header-cta {
  min-height: 2.75rem;
  padding-inline: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 3rem;
  background:
    radial-gradient(circle at 90% 5%, rgb(8 125 115 / 14%), transparent 13rem),
    linear-gradient(180deg, #f4fbf9 0%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: 1.5rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgb(8 125 115 / 18%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.eyebrow {
  padding: 0.45rem 0.75rem;
  background: var(--teal-soft);
  border-radius: 999px;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 11vw, 3.25rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--teal);
  font-style: normal;
}

.hero-brand {
  color: var(--teal);
  font-size: 1.08em;
  white-space: nowrap;
}

.hero-promise {
  font-size: 0.72em;
  white-space: nowrap;
}

.hero-lead {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 850;
}

.hero-points {
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  top: 0.05rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.68rem;
  line-height: 1;
}

.button {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0.8rem 1.8rem rgb(8 125 115 / 22%);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.button--light {
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 0.8rem 2rem rgb(0 45 42 / 25%);
}

.button-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.hero-card {
  padding: 1.5rem;
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(8 125 115 / 17%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-label {
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-card-title {
  margin-bottom: 1.1rem;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.4;
}

.method-flow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.method-flow span {
  padding: 0.75rem;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.method-flow i {
  color: var(--coral);
  font-style: normal;
  font-weight: 900;
}

.method-flow i:last-of-type {
  display: none;
}

.method-flow span:last-child {
  grid-column: 1 / -1;
}

.hero-card-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-results {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hero-results div {
  padding: 1rem 0.75rem;
  background: var(--teal-soft);
  border-radius: var(--radius-sm);
  text-align: center;
}

.hero-results dt {
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-results dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.proof {
  padding: 1rem 0;
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid div {
  min-width: 0;
  padding: 0.25rem 0.45rem;
  text-align: center;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: #8de0d3;
  font-size: 0.9rem;
  line-height: 1.4;
}

.proof-grid span {
  margin-top: 0.15rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.62rem;
  line-height: 1.35;
}

.section {
  padding: 4.5rem 0;
}

.section--warm {
  background: var(--warm);
}

.section h2,
.final-cta h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 7.8vw, 2.45rem);
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.lead-copy {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.lead-conclusion {
  padding: 1.1rem 1.2rem;
  background: var(--teal-soft);
  border-left: 0.28rem solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.lead-conclusion strong {
  color: var(--teal-dark);
}

.worry-resolve-label {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.application-worry-grid {
  display: grid;
  gap: 0.75rem;
}

.application-worry-grid article {
  position: relative;
  padding: 1.15rem 1.1rem 1.1rem 3.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 0.45rem 1.4rem rgb(29 55 53 / 6%);
}

.application-worry-grid span {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.application-worry-grid h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.application-worry-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.insight-opening {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.65;
}

.reality-list,
.self-fit-list {
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.reality-list li,
.self-fit-list li {
  position: relative;
  padding: 0.9rem 0.95rem 0.9rem 2.45rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  font-size: 0.86rem;
  line-height: 1.65;
}

.reality-list li::before,
.self-fit-list li::before {
  position: absolute;
  top: 0.87rem;
  left: 0.9rem;
  font-weight: 900;
}

.reality-list li::before {
  content: "!";
  color: var(--coral);
}

.self-fit-list li::before {
  content: "✓";
  color: var(--teal);
}

.reality-list strong,
.self-fit-list strong {
  color: var(--ink);
}

.fit-step {
  padding: 1.75rem 0;
  border-top: 1px solid #ead9ca;
}

.fit-step + .fit-step {
  margin-top: 0.5rem;
}

.fit-step-label {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.fit-step-label span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.68rem;
}

.fit-step h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.fit-support-note {
  margin: 0;
  padding: 1.1rem;
  color: var(--ink-soft);
  background: #fff5ed;
  border-left: 0.28rem solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
}

.fit-support-note strong {
  color: var(--ink);
}

.fit-result-heading {
  margin: 1.4rem 0 0.8rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.insight-prose {
  color: var(--ink-soft);
}

.insight-list {
  display: grid;
  gap: 0.9rem;
}

.insight-list article {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid #f0dfd0;
  border-radius: var(--radius-md);
}

.insight-number {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.insight-list h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.insight-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.core-quote {
  margin: 1.5rem 0 0;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
}

.core-quote p {
  margin: 0;
  font-size: 1.05rem;
}

.core-quote strong {
  color: #8de0d3;
}

.core-quote span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.82rem;
}

.axis-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.axis-result p {
  color: var(--ink-soft);
}

.axis-result p:last-child {
  margin-bottom: 0;
}

.axis-result ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.axis-result li + li {
  margin-top: 0.35rem;
}

.method-statement {
  margin: 1.25rem 0 0;
  padding: 1.25rem 1rem;
  color: var(--teal-dark);
  background: #dff7f2;
  border: 1px solid rgb(8 125 115 / 18%);
  border-radius: var(--radius-md);
  line-height: 1.8;
  text-align: center;
}

.method-statement strong {
  font-size: 1rem;
}

.method-statement > span {
  margin-inline: 0.3rem;
  color: var(--coral);
  font-weight: 900;
}

.method-statement small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.self-analysis-tool {
  margin-top: 1.25rem;
  padding: 1.4rem;
  background: var(--white);
  border: 2px solid rgb(8 125 115 / 20%);
  border-radius: var(--radius-md);
  box-shadow: 0 0.75rem 2rem rgb(15 60 57 / 6%);
}

.self-analysis-tool .tool-label {
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.self-analysis-tool h3,
.self-analysis-tool h4 {
  margin-bottom: 0.8rem;
  font-size: 1.12rem;
  line-height: 1.55;
}

.self-analysis-tool p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.self-analysis-tool ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.self-analysis-tool li + li {
  margin-top: 0.35rem;
}

.self-analysis-tool p:last-child {
  margin-bottom: 0;
  color: var(--teal-dark);
}

.final-cta {
  padding: 4.5rem 0 5.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgb(141 224 211 / 20%), transparent 16rem),
    var(--teal-dark);
  text-align: center;
}

.final-cta-inner {
  max-width: 45rem;
}

.final-cta .section-kicker {
  margin-inline: auto;
  color: #9ce7db;
}

.final-cta p {
  color: rgb(255 255 255 / 80%);
}

.final-cta .button {
  margin-top: 1.25rem;
}

.cta-assurances {
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  list-style: none;
}

.cta-assurances li {
  color: rgb(255 255 255 / 75%);
  font-size: 0.75rem;
}

.cta-assurances li::before {
  content: "✓ ";
  color: #9ce7db;
  font-weight: 900;
}

.site-footer {
  padding: 2.5rem 0 7rem;
  color: rgb(255 255 255 / 60%);
  background: #0a1f22;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
}

.footer-brand {
  color: var(--white);
  font-size: 1rem !important;
  font-weight: 900;
}

.footer-small {
  margin-top: 1rem !important;
  font-size: 0.7rem !important;
}

.footer-disclaimer {
  max-width: 40rem;
  margin: 0.75rem auto 0 !important;
  color: rgb(255 255 255 / 42%);
  font-size: 0.65rem !important;
}

.mobile-action {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / 94%);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(0.75rem);
}

.mobile-action .button {
  min-height: 3.25rem;
}

.section-lead {
  max-width: 44rem;
}

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

.support-section {
  background: var(--paper);
}

.support-grid {
  display: grid;
  gap: 1rem;
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 0.65rem 1.8rem rgb(15 60 57 / 6%);
}

.support-card--accent {
  border-color: rgb(239 115 94 / 42%);
  background: linear-gradient(145deg, #fff 0%, #fff7f2 100%);
}

.support-number {
  margin-bottom: 0.85rem;
  display: block;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.support-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  line-height: 1.55;
}

.support-card > p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.support-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.support-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.support-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.15rem;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--teal);
  border-radius: 50%;
}

.support-example {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--teal-soft);
  border: 1px solid rgb(8 125 115 / 14%);
  border-radius: var(--radius-sm);
}

.support-example .example-label {
  margin: 0 0 0.35rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.support-example p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.75;
}

.mid-cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-md);
}

.mid-cta p {
  margin-bottom: 1.1rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.9rem;
}

.mid-cta strong {
  color: #8de0d3;
  font-size: 1.05rem;
}

.jobs-section {
  background: var(--white);
}

.job-flow-label {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.55;
}

.job-flow-label span {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.68rem;
}

.job-flow-arrow {
  margin: 1.2rem 0;
  color: var(--coral);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.job-card {
  padding: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.job-card > span {
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.job-card h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: 1rem;
  line-height: 1.45;
}

.job-card p {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.job-card strong {
  color: var(--teal-dark);
  font-size: 0.74rem;
  line-height: 1.55;
}

.fit-method {
  margin-top: 0;
  padding: 1.5rem;
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.fit-method .section-kicker {
  color: #8de0d3;
}

.fit-method > h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.45;
}

.fit-intro {
  margin-top: -0.65rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.86rem;
}

.fit-axis-grid {
  display: grid;
  gap: 0.75rem;
}

.fit-axis-grid article {
  padding: 1.15rem;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
}

.fit-axis-grid span {
  color: #8de0d3;
  font-size: 0.72rem;
  font-weight: 900;
}

.fit-axis-grid h4 {
  margin: 0.2rem 0 0.45rem;
  color: var(--white);
  font-size: 1rem;
}

.fit-axis-grid p,
.fit-method-close {
  margin-bottom: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.82rem;
}

.fit-axis-grid ul {
  margin: 0;
  padding-left: 1.05rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.78rem;
  line-height: 1.65;
}

.fit-axis-grid li + li {
  margin-top: 0.2rem;
}

.fit-method-close {
  margin-top: 1.25rem;
}

.experience-section {
  margin-top: 3.5rem;
}

.experience-section > h3 {
  margin-bottom: 1.25rem;
  font-size: 1.45rem;
  line-height: 1.5;
}

.experience-grid {
  display: grid;
  gap: 0.75rem;
}

.experience-grid article {
  padding: 1.1rem 1.15rem;
  background: #fff9f4;
  border-left: 0.25rem solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.experience-grid h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.experience-close {
  margin: 1.25rem 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.reviews-section {
  background: var(--warm);
}

.review-notice {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  color: #704637;
  background: #fff;
  border: 1px dashed var(--coral);
  border-radius: var(--radius-sm);
}

.review-notice strong {
  display: block;
  font-size: 0.86rem;
}

.review-notice p {
  margin: 0.3rem 0 0;
  font-size: 0.77rem;
}

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

.review-card {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid #f0dfd0;
  border-radius: var(--radius-md);
}

.review-tag {
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.review-card h3 {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-card dl {
  margin: 0;
}

.review-card dl div {
  padding: 0.55rem 0;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.5rem;
  border-top: 1px solid #f1e5dc;
}

.review-card dt,
.review-card dd {
  margin: 0;
  font-size: 0.78rem;
}

.review-card dt {
  color: var(--muted);
  font-weight: 800;
}

.review-card dd {
  color: var(--ink-soft);
  line-height: 1.65;
}

.review-cta {
  margin-top: 1.25rem;
}

.review-source {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.flow-section {
  background: var(--white);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding: 0 0 1.2rem 3.6rem;
  display: grid;
  min-height: 5.25rem;
}

.flow-list li::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  bottom: 0;
  left: 1.28rem;
  width: 0.12rem;
  background: var(--line);
}

.flow-list li:last-child::before {
  display: none;
}

.flow-list > li > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.flow-list div {
  padding: 0.2rem 0 1.1rem;
}

.flow-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.advisor-section {
  color: var(--white);
  background: var(--ink);
}

.advisor-grid {
  display: grid;
  gap: 2rem;
}

.advisor-stats {
  display: grid;
  gap: 0.75rem;
}

.advisor-stats div {
  padding: 1.25rem;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
}

.advisor-stats strong,
.advisor-stats span {
  display: block;
}

.advisor-stats strong {
  color: #8de0d3;
  font-size: 1.45rem;
}

.advisor-stats span {
  color: rgb(255 255 255 / 64%);
  font-size: 0.76rem;
}

.advisor-copy .section-kicker {
  color: #8de0d3;
}

.advisor-copy h2 {
  color: var(--white);
}

.advisor-copy > p {
  color: rgb(255 255 255 / 74%);
}

.advisor-name {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  font-size: 0.82rem;
}

.advisor-name strong {
  color: var(--white);
  font-size: 0.95rem;
}

.advisor-copy .source-note {
  color: rgb(255 255 255 / 48%);
  font-size: 0.7rem;
}

.philosophy-section {
  background: var(--teal-soft);
}

.philosophy-inner {
  max-width: 48rem;
}

.philosophy-lead {
  margin-bottom: 1.5rem;
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.philosophy-copy p {
  color: var(--ink-soft);
}

.mismatch-examples {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.mismatch-examples p {
  margin: 0;
  padding: 1rem 1.05rem;
  background: rgb(255 255 255 / 68%);
  border-left: 0.25rem solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem;
}

.mismatch-examples strong {
  margin-bottom: 0.35rem;
  display: block;
  color: var(--ink);
}

.cta-concerns {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.5rem;
}

.final-cta .cta-concerns p {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.philosophy-quote {
  margin: 2rem 0 0;
  padding: 1.5rem;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: var(--radius-md);
  text-align: center;
}

.philosophy-quote p {
  margin-bottom: 0.35rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.86rem;
}

.philosophy-quote strong {
  font-size: 1.15rem;
}

.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 48rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  overflow: clip;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  position: relative;
  min-height: 4rem;
  padding: 1rem 3.3rem 1rem 1rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.55;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 1rem 1rem;
}

.faq-list details p {
  margin: 0;
  padding-top: 1rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.consultation-form {
  margin-top: 1.75rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  text-align: left;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  margin-bottom: 0.45rem;
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-field label span {
  margin-left: 0.35rem;
  padding: 0.15rem 0.35rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 0.25rem;
  font-size: 0.62rem;
}

.form-field label small {
  margin-left: 0.35rem;
  color: var(--muted);
  font-weight: 600;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--teal);
  outline: 0.2rem solid rgb(8 125 115 / 18%);
}

.consultation-form .button {
  margin-top: 0.5rem;
  color: var(--white);
  background: var(--teal);
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--muted) !important;
  font-size: 0.7rem;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 1rem 2.2rem rgb(8 125 115 / 28%);
  }

  .header-cta:hover {
    background: var(--teal-dark);
  }
}

@media (min-width: 48rem) {
  .container {
    width: min(100% - 4rem, var(--container));
  }

  .brand-tagline {
    display: block;
  }

  .header-license {
    display: block;
  }

  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
    align-items: center;
    gap: 3.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 7vw, 4.75rem);
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-copy .button {
    width: fit-content;
    min-width: 24rem;
  }

  .button-note {
    width: 24rem;
  }

  .method-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .method-flow i:last-of-type {
    display: block;
  }

  .method-flow span:last-child {
    grid-column: auto;
  }

  .proof {
    padding: 1.25rem 0;
  }

  .proof-grid strong {
    font-size: 1.1rem;
  }

  .proof-grid span {
    font-size: 0.75rem;
  }

  .section {
    padding: 6.5rem 0;
  }

  .application-worry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .axis-result ul {
    grid-template-columns: 1fr 1fr;
  }

  .axis-result ul {
    padding: 0;
    display: grid;
    gap: 0.45rem 2rem;
    list-style-position: inside;
  }

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

  .support-card--wide {
    grid-column: 1 / -1;
  }

  .mid-cta {
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .mid-cta p {
    margin-bottom: 0;
  }

  .mid-cta .button {
    width: fit-content;
    min-width: 18rem;
  }

  .jobs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .job-card {
    padding: 1.35rem;
  }

  .fit-method {
    padding: 2.25rem;
  }

  .fit-axis-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .experience-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .flow-list {
    max-width: 48rem;
  }

  .advisor-grid {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 4rem;
  }

  .consultation-form {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }

  .consultation-form .button,
  .consultation-form .form-note {
    grid-column: 1 / -1;
  }

  .final-cta {
    padding: 6.5rem 0;
  }

  .final-cta .button {
    width: fit-content;
    min-width: 25rem;
  }

  .mobile-action {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --line: #78918c;
  }

  .button,
  .header-cta {
    border: 2px solid currentColor;
  }
}
