@charset "UTF-8";

:root {
  --ink: #14172b;
  --paper: #fffdf7;
  --paper-2: #f1efe5;
  --blue: #173be8;
  --blue-deep: #0b1a67;
  --cyan: #8deee1;
  --yellow: #ffd73f;
  --red: #f14a34;
  --green: #0f7b66;
  --line: #171b35;
  --muted: #5d6276;
  --shadow: 0 22px 55px rgba(13, 22, 75, 0.18);
  --radius: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--yellow); color: var(--ink); }
a { color: inherit; text-underline-offset: 0.22em; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: white;
  background: var(--blue);
  border: 2px solid var(--line);
  font-family: "Dela Gothic One", sans-serif;
  line-height: 1;
}
.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 18px;
  color: white;
  background: var(--blue);
  border: 2px solid var(--line);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.header-cta:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--line); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
  padding: clamp(64px, 8vw, 116px) max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--blue-deep);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(46vw, 740px);
  aspect-ratio: 1;
  left: -18vw;
  bottom: -32vw;
  border: 110px solid var(--blue);
  border-radius: 50%;
  opacity: 0.78;
}
.hero::after {
  content: "HERMES / ONBOARDING";
  position: absolute;
  z-index: -1;
  right: -210px;
  top: 80px;
  color: rgba(255,255,255,0.055);
  font: 900 clamp(60px, 9vw, 132px)/1 "Dela Gothic One", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.04em;
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-lead {
  margin: 0 0 22px;
  color: var(--cyan);
  font-weight: 900;
  font-size: clamp(17px, 1.5vw, 22px);
}
.hero h1 {
  margin: 0;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong {
  color: var(--yellow);
  font-size: clamp(46px, 4.3vw, 64px);
  font-weight: 400;
  white-space: nowrap;
}
.hero-body {
  max-width: 31em;
  margin: 30px 0 0;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 700;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 2px solid var(--line);
  font: 900 16px/1.4 "Noto Sans JP", sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 7px 0 #020714;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button-primary:hover { transform: translateY(3px); box-shadow: 0 4px 0 #020714; }
.text-link { color: white; font-weight: 800; text-decoration-thickness: 2px; }
.microcopy { margin: 18px 0 0; color: #cfd6ff; font-size: 13px; }

.onboarding-sheet {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(20,23,43,0.055) 1px, transparent 1px) 0 0 / 100% 33px,
    var(--paper);
  border: 3px solid var(--line);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: 18px 22px 0 rgba(0,0,0,0.22), var(--shadow);
  transform: rotate(1.3deg);
}
.onboarding-sheet::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 34px, var(--yellow) 34px 68px, var(--red) 68px 102px);
}
.scan-line {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--cyan);
  box-shadow: 0 0 22px 9px rgba(75, 233, 214, 0.38);
  opacity: 0;
  animation: scan 5.8s 1.2s ease-in-out infinite;
}
@keyframes scan {
  0%, 12% { opacity: 0; transform: translateY(0); }
  18% { opacity: 1; }
  68% { opacity: 0.8; transform: translateY(500px); }
  76%, 100% { opacity: 0; transform: translateY(500px); }
}
.sheet-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin: 8px 0 26px; }
.sheet-title { font: 400 clamp(25px, 2.7vw, 40px)/1.2 "Dela Gothic One", sans-serif; letter-spacing: -0.03em; }
.status-chip { padding: 6px 10px; color: white; background: var(--green); font-weight: 800; font-size: 12px; }
.sheet-meta { margin: 0 0 22px; border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.sheet-meta div { display: grid; grid-template-columns: 92px 1fr; border-bottom: 1px solid rgba(20,23,43,0.35); }
.sheet-meta div:last-child { border-bottom: 0; }
.sheet-meta dt, .sheet-meta dd { margin: 0; padding: 8px 10px; }
.sheet-meta dt { border-right: 1px solid rgba(20,23,43,0.35); font-size: 12px; font-weight: 800; }
.sheet-meta dd { font-weight: 800; }
.onboarding-steps { list-style: none; padding: 0; margin: 0; }
.onboarding-steps li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border-bottom: 1px solid rgba(20,23,43,0.28);
}
.onboarding-steps li > span { color: var(--blue); font-weight: 900; font-variant-numeric: tabular-nums; }
.onboarding-steps div { display: flex; flex-direction: column; line-height: 1.4; }
.onboarding-steps b { font-size: 15px; }
.onboarding-steps small { color: var(--muted); font-size: 11px; }
.onboarding-steps em { color: var(--green); font-style: normal; font-size: 11px; font-weight: 900; }
.approval-stamp {
  position: absolute;
  right: 28px;
  bottom: 16px;
  padding: 6px 13px;
  color: var(--red);
  border: 4px double var(--red);
  font-weight: 900;
  transform: rotate(-7deg);
  opacity: 0.84;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr) minmax(300px, 1.15fr);
  align-items: stretch;
  color: var(--ink);
  background: var(--yellow);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}
.proof-band p, .proof-band small { margin: 0; padding: 25px clamp(20px, 3vw, 42px); border-right: 2px solid var(--line); }
.proof-band p { display: flex; align-items: baseline; gap: 12px; }
.proof-band strong { flex: none; white-space: nowrap; font: 400 clamp(32px, 3.5vw, 54px)/1 "Dela Gothic One", sans-serif; }
.proof-band span { font-weight: 800; font-size: 13px; line-height: 1.5; }
.proof-band small { display: flex; align-items: center; color: #3f3b25; font-weight: 700; border-right: 0; }

.section { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; padding: clamp(92px, 10vw, 160px) 0; }
.section-heading { max-width: 850px; }
.section-heading h2 {
  max-width: 17em;
  margin: 0;
  font: 400 clamp(38px, 5vw, 72px)/1.34 "Dela Gothic One", sans-serif;
  letter-spacing: -0.045em;
}
.section-heading p { max-width: 43em; margin: 26px 0 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; }

.friction { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(50px, 8vw, 130px); }
.friction .section-heading h2 { font-size: clamp(38px, 4.2vw, 62px); }
.friction-list { align-self: center; border-top: 3px solid var(--line); }
.friction-list p {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid #afb1ba;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
}
.friction-list span { color: var(--red); font: 400 24px/1.5 "Dela Gothic One", sans-serif; }
.friction-answer { grid-column: 1 / -1; margin: 8px 0 0; padding: 30px 38px; color: white; background: var(--blue); border: 3px solid var(--line); font-size: clamp(20px, 2vw, 28px); }
.friction-answer strong { color: var(--yellow); }

.program { border-top: 2px solid var(--line); }
.program-heading { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: end; gap: 40px; max-width: none; margin-bottom: 64px; }
.program-ledger { border-top: 4px solid var(--line); }
.program-ledger article {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 160px;
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  padding: 34px 10px;
  border-bottom: 2px solid var(--line);
}
.ledger-number { color: var(--blue); font: 400 42px/1 "Dela Gothic One", sans-serif; }
.program-ledger h3 { margin: 0 0 8px; font-size: clamp(21px, 2vw, 30px); line-height: 1.45; }
.program-ledger p { max-width: 58em; margin: 0; color: var(--muted); font-weight: 500; }
.ledger-note { justify-self: end; padding: 8px 10px; color: var(--blue-deep); background: var(--cyan); border: 2px solid var(--line); font-size: 12px; font-weight: 900; transform: none; }

.starter-kit { border-top: 2px solid var(--line); }
.starter-thesis {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
}
.starter-thesis h2 {
  margin: 0;
  font: 400 clamp(38px, 5vw, 70px)/1.34 "Dela Gothic One", sans-serif;
  letter-spacing: -0.045em;
}
.starter-thesis > p { margin: 8px 0 0; color: var(--muted); font-size: clamp(17px, 1.55vw, 21px); font-weight: 600; }
.starter-thesis > strong {
  grid-column: 1 / -1;
  padding: 28px 34px;
  color: white;
  background: var(--blue);
  border: 3px solid var(--line);
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.6;
}
.setup-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 4px solid var(--line);
  border-bottom: 4px solid var(--line);
}
.setup-layers article { padding: 34px 30px; border-right: 2px solid var(--line); }
.setup-layers article:last-child { border-right: 0; }
.setup-layers span { color: var(--blue); font-size: 12px; font-weight: 900; }
.setup-layers h3 { margin: 14px 0 18px; font-size: clamp(22px, 2vw, 29px); line-height: 1.45; }
.setup-layers p { margin: 0; color: var(--muted); font-weight: 600; }
.setup-note { margin: 22px 0 0; color: var(--muted); font-size: 13px; font-weight: 600; }

.evidence-section { overflow: hidden; background: #0d1124; color: white; }
.evidence-intro { padding-bottom: 72px; }
.evidence-intro .section-heading p { color: #c8cee9; }
.evidence-piece {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  min-height: 720px;
  padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  border-top: 2px solid rgba(255,255,255,0.42);
}
.evidence-piece:nth-of-type(3) { grid-template-columns: 1.22fr 0.78fr; }
.evidence-blue { background: var(--blue); }
.evidence-yellow { color: var(--ink); background: var(--yellow); }
.evidence-red { background: #9f241d; }
.evidence-text { max-width: 520px; }
.evidence-label { margin: 0 0 16px; font-weight: 900; font-size: 13px; letter-spacing: 0.08em; }
.evidence-text h3 { margin: 0 0 24px; font: 400 clamp(34px, 4vw, 60px)/1.38 "Dela Gothic One", sans-serif; letter-spacing: -0.04em; }
.evidence-text > p:not(.evidence-label):not(.evidence-caution) { font-size: clamp(17px, 1.45vw, 20px); font-weight: 600; }
.evidence-text ul { padding-left: 1.2em; font-weight: 800; }
.evidence-text li { margin: 9px 0; }
.evidence-caution { padding: 14px 16px; background: rgba(255,255,255,0.12); font-size: 12px; font-weight: 700; }
.evidence-piece figure { margin: 0; }
.evidence-piece img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: contain; border: 3px solid var(--line); box-shadow: 18px 22px 0 rgba(0,0,0,0.28), var(--shadow); }
.evidence-piece figcaption { margin-top: 18px; font-size: 12px; font-weight: 700; opacity: 0.78; }
.evidence-yellow img { box-shadow: 18px 22px 0 rgba(20,23,43,0.32), var(--shadow); }

.skills { position: relative; }
.skills .section-heading h2 span { display: inline-block; white-space: nowrap; }
.skills::after {
  content: "SKILL";
  position: absolute;
  z-index: -1;
  top: 22px;
  right: 0;
  color: #eeece3;
  font: 400 clamp(90px, 17vw, 240px)/1 "Dela Gothic One", sans-serif;
}
.skill-shelf { margin-top: 68px; border-top: 4px solid var(--line); }
.skill-shelf article {
  display: grid;
  grid-template-columns: 120px minmax(240px, 0.72fr) 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px 16px;
  border-bottom: 2px solid var(--line);
  transition: background 160ms ease, transform 160ms ease;
}
.skill-shelf article:hover { transform: translateX(8px); background: var(--paper-2); }
.skill-shelf span { width: fit-content; padding: 5px 10px; color: white; background: var(--blue); font-size: 12px; font-weight: 900; }
.skill-shelf h3 { margin: 0; font-size: clamp(19px, 2vw, 27px); }
.skill-shelf p { margin: 0; color: var(--muted); font-weight: 600; }
.skills-note { margin-top: 22px; color: var(--muted); font-size: 13px; }

.offer { padding-top: 20px; }
.offer-ledger { display: grid; grid-template-columns: 1.35fr 0.65fr; border: 4px solid var(--line); box-shadow: 20px 24px 0 var(--blue-deep); }
.offer-main { padding: clamp(34px, 5vw, 68px); background: white; }
.offer-main h2 { margin: 0; font: 400 clamp(35px, 4.7vw, 66px)/1.35 "Dela Gothic One", sans-serif; letter-spacing: -0.04em; }
.offer-main h2 span { font: 700 14px/1 "Noto Sans JP", sans-serif; white-space: nowrap; }
.offer-summary { margin: 24px 0; color: var(--blue); font-size: 20px; font-weight: 900; }
.offer-main ul { padding: 0; list-style: none; }
.offer-main li { padding: 13px 0; border-bottom: 1px solid #d7d7dc; font-weight: 800; }
.offer-main li::before { content: "✓"; margin-right: 12px; color: var(--green); font-weight: 900; }
.price-block { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 38px 28px; color: white; background: var(--blue); text-align: center; }
.price-block > span { color: var(--cyan); font-weight: 900; }
.price-block p { margin: 20px 0 0; line-height: 1; }
.price-block strong { font: 400 clamp(52px, 6vw, 86px)/1 "Dela Gothic One", sans-serif; font-variant-numeric: tabular-nums; }
.price-block small { margin: 14px 0 32px; }
.button-disabled { color: #696c7a; background: #e6e6e6; border-color: #7f8290; box-shadow: none; cursor: not-allowed; }
.offer-pending { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; align-items: center; }
.offer-pending strong { margin-right: 8px; }
.offer-pending span { padding: 6px 11px; border: 1px solid #9b9da9; font-size: 12px; font-weight: 700; }

.voices { border-top: 2px solid var(--line); }
.voice-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 58px; }
.voice-board blockquote { position: relative; margin: 0; padding: 30px; background: white; border: 2px dashed #858896; transform: none; }
.voice-board blockquote:nth-child(2) { transform: none; }
.voice-board span { display: inline-block; padding: 5px 9px; color: white; background: var(--red); font-size: 11px; font-weight: 900; }
.voice-board p { margin: 24px 0; font-size: 17px; font-weight: 700; }
.voice-board footer { color: var(--muted); font-size: 12px; }

.faq { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: clamp(50px, 8vw, 120px); border-top: 2px solid var(--line); }
.faq .section-heading h2 { font-size: clamp(38px, 4vw, 58px); white-space: nowrap; }
.faq-list { border-top: 3px solid var(--line); }
details { border-bottom: 2px solid var(--line); }
summary { position: relative; padding: 25px 54px 25px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 18px; font: 400 30px/1 "Dela Gothic One", sans-serif; color: var(--blue); }
details[open] summary::after { content: "−"; }
details p { margin: 0 0 26px; color: var(--muted); font-weight: 600; }

.consultation {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(82px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--blue-deep);
  border-top: 14px solid var(--yellow);
}
.consultation-copy h2 { max-width: 15em; margin: 0; font: 400 clamp(39px, 5vw, 72px)/1.35 "Dela Gothic One", sans-serif; letter-spacing: -0.04em; }
.consultation-copy > p { max-width: 42em; margin: 28px 0; color: #cfd5ff; font-size: clamp(17px, 1.5vw, 21px); font-weight: 600; }
.consultation-copy ul { list-style: none; padding: 0; }
.consultation-copy li { margin: 11px 0; font-weight: 800; }
.consultation-copy li::before { content: "□"; margin-right: 12px; color: var(--yellow); }
.consultation-ticket {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  color: var(--ink);
  background: var(--yellow);
  border: 4px solid var(--line);
  box-shadow: 20px 22px 0 rgba(0,0,0,0.3);
  text-align: center;
}
.consultation-ticket::before, .consultation-ticket::after { content: ""; position: absolute; left: 20px; right: 20px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 11px, transparent 11px 20px); }
.consultation-ticket::before { top: 20px; }
.consultation-ticket::after { bottom: 20px; }
.consultation-ticket p { margin: 0; font-weight: 900; letter-spacing: 0.12em; }
.consultation-ticket strong { margin: 16px 0 0; font: 400 clamp(76px, 9vw, 126px)/1 "Dela Gothic One", sans-serif; }
.consultation-ticket small { margin: 10px 0 30px; font-weight: 900; }
.consultation-ticket em { max-width: 25em; margin-top: 16px; color: #5e551c; font-size: 11px; font-style: normal; font-weight: 700; }

.site-footer { display: flex; flex-wrap: wrap; gap: 14px 36px; justify-content: space-between; align-items: center; padding: 28px max(24px, calc((100vw - var(--max)) / 2)); background: #080b17; color: #cdd1e5; font-size: 12px; }
.site-footer p { margin: 0; }
.site-footer p:first-child { color: white; font-weight: 900; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 790px; }
  .onboarding-sheet { max-width: 680px; transform: rotate(0.5deg); }
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .proof-band small { grid-column: 1 / -1; border-top: 2px solid var(--line); }
  .friction, .faq { grid-template-columns: 1fr; }
  .program-heading { grid-template-columns: 1fr; }
  .starter-thesis { grid-template-columns: 1fr; }
  .setup-layers { grid-template-columns: 1fr; }
  .setup-layers article { border-right: 0; border-bottom: 2px solid var(--line); }
  .setup-layers article:last-child { border-bottom: 0; }
  .evidence-piece, .evidence-piece:nth-of-type(3) { grid-template-columns: 1fr; }
  .evidence-piece:nth-of-type(3) figure { order: 2; }
  .evidence-text { max-width: 760px; }
  .offer-ledger { grid-template-columns: 1fr; }
  .price-block { min-height: 380px; }
  .voice-board { grid-template-columns: 1fr; }
  .consultation { grid-template-columns: 1fr; }
  .consultation-ticket { max-width: 600px; width: 100%; }
}

@media (max-width: 680px) {
  .site-header { min-height: 62px; padding: 9px 16px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 38px; }
  .header-cta { min-height: 40px; padding: 6px 11px; font-size: 12px; box-shadow: 0 4px 0 var(--line); }
  .hero { padding: 58px 20px 68px; gap: 52px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 58px); line-height: 1.28; }
  .hero h1 { font-size: 10vw; }
  .hero h1 span, .hero h1 strong { white-space: nowrap; }
  .hero h1 strong { font-size: 10vw; }
  .hero-body { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .onboarding-sheet { padding: 24px 18px 40px; box-shadow: 10px 12px 0 rgba(0,0,0,0.25); }
  .sheet-top { align-items: flex-start; flex-direction: column; }
  .sheet-meta div { grid-template-columns: 70px 1fr; }
  .onboarding-steps li { grid-template-columns: 32px 1fr; padding: 8px 0; }
  .onboarding-steps em { grid-column: 2; }
  .approval-stamp { right: 13px; bottom: 12px; font-size: 11px; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-band p, .proof-band small { border-right: 0; border-bottom: 2px solid var(--line); padding: 17px 20px; }
  .proof-band small { grid-column: auto; border-bottom: 0; }
  .section { width: min(100% - 36px, var(--max)); padding: 80px 0; }
  .section-heading h2 { font-size: clamp(34px, 9.6vw, 49px); }
  .friction { gap: 44px; }
  .friction .section-heading h2 { font-size: clamp(34px, 9.6vw, 49px); }
  .friction-answer { padding: 22px; }
  .program-ledger article { grid-template-columns: 54px 1fr; gap: 14px; padding: 26px 0; }
  .ledger-number { font-size: 28px; }
  .ledger-note { grid-column: 2; justify-self: start; }
  .starter-thesis > strong { padding: 22px; }
  .setup-layers { margin-top: 42px; }
  .setup-layers article { padding: 26px 4px; }
  .evidence-intro { width: calc(100% - 36px); }
  .evidence-piece { min-height: auto; padding: 70px 18px; gap: 36px; }
  .evidence-text h3 { font-size: clamp(33px, 9vw, 48px); }
  .evidence-piece img { box-shadow: 9px 11px 0 rgba(0,0,0,0.28); }
  .skill-shelf article { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .skills::after { display: none; }
  .skill-shelf article:hover { padding-left: 0; transform: none; }
  .offer { width: calc(100% - 28px); }
  .offer-ledger { box-shadow: 9px 11px 0 var(--blue-deep); }
  .offer-main { padding: 30px 22px; }
  .offer-main h2 { font-size: 34px; }
  .price-block { min-height: 340px; }
  .offer-pending { align-items: flex-start; flex-direction: column; }
  .voice-board blockquote { padding: 24px; }
  summary { font-size: 16px; }
  .faq .section-heading h2 { font-size: clamp(34px, 9.6vw, 49px); }
  .consultation { padding: 76px 18px; }
  .consultation-copy h2 { font-size: 38px; }
  .consultation-ticket { min-height: 370px; padding: 34px 22px; }
  .site-footer { align-items: flex-start; flex-direction: column; padding: 28px 18px; }
}

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