:root {
  --paper: #f4f3ed;
  --ink: #111216;
  --blue: #1748ff;
  --orange: #ff4a2f;
  --white: #fff;
  --mist: #dfe6ff;
  --muted: #62636a;
  --line: rgba(17, 18, 22, .16);
  --shell: min(1280px, calc(100vw - 48px));
  --display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --price: "Archivo Black", "Arial Black", sans-serif;
  --body: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(92px, 11vw, 168px) 0; }
.section[id] { scroll-margin-top: 84px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 243, 237, .92);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .06em;
  text-decoration: none;
}
.wordmark small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .13em;
}
.mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: -.06em;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.header-cta:hover { color: var(--white); background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  padding: clamp(68px, 8vw, 120px) 0 clamp(86px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  position: absolute;
  inset: 0;
  opacity: .54;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(17, 18, 22, .075) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(17, 18, 22, .055) 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}
.hero::before {
  content: "";
  position: absolute;
  width: min(46vw, 700px);
  aspect-ratio: 1;
  right: -16vw;
  top: -17vw;
  border: clamp(36px, 5vw, 76px) solid var(--mist);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}
.hero-copy { max-width: 680px; }
.eyebrow, .section-kicker {
  margin: 0 0 25px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow span, .section-kicker { color: var(--blue); }
.eyebrow span { margin-right: 14px; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -.065em;
}
.headline-main { display: block; }
.crossed {
  position: relative;
  display: inline-block;
  color: var(--muted);
}
.crossed::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -3%;
  right: -4%;
  top: 54%;
  height: .1em;
  background: var(--orange);
  transform: rotate(-3deg);
}
.hero h1 strong {
  display: block;
  margin-top: .36em;
  color: var(--blue);
  font-size: .61em;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.hero h1 strong b {
  display: inline-block;
  margin: .11em .04em 0 .05em;
  font-family: var(--price);
  font-size: 2.05em;
  line-height: .8;
  letter-spacing: -.06em;
}
.hero h1 strong i {
  font-style: normal;
  font-size: .6em;
  letter-spacing: -.02em;
}
.mobile-proof-preview { display: none; }
.hero-lead {
  max-width: 630px;
  margin: 32px 0 0;
  color: #34353b;
  font-size: clamp(15px, 1.12vw, 17px);
  font-weight: 500;
  line-height: 1.9;
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 35px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 23px;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button span { font-family: var(--mono); }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(17, 18, 22, .17); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { background: #0c36d3; }
.button-dark { width: 100%; color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--blue); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { color: var(--blue); }
.text-link.strong { font-size: 14px; }
.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.hero-showcase {
  position: relative;
  min-height: 610px;
  transform: translateY(18px);
}
.browser {
  overflow: hidden;
  border: 1px solid rgba(17, 18, 22, .55);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(17, 18, 22, .2);
}
.browser-bar, .work-browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.browser-bar span, .work-browser-bar span { width: 6px; height: 6px; border: 1px solid var(--ink); border-radius: 50%; }
.browser-bar small, .work-browser-bar small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}
.browser img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.browser-main {
  position: absolute;
  z-index: 3;
  top: 88px;
  right: 0;
  width: 96%;
  aspect-ratio: 1.6;
  transform: rotate(.7deg);
}
.browser-main img { height: calc(100% - 28px); }
.responsive-seal {
  position: absolute;
  z-index: 7;
  top: 16px;
  left: 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 17px 13px;
  color: var(--white);
  background: var(--blue);
  transform: rotate(-2deg);
  box-shadow: 9px 9px 0 var(--orange);
}
.responsive-seal span, .responsive-seal small { font-family: var(--mono); font-size: 7px; letter-spacing: .09em; }
.responsive-seal b { margin: 2px 0; font-family: var(--price); font-size: 18px; line-height: 1; }
.proof-phone {
  position: absolute;
  z-index: 6;
  left: 0;
  bottom: 32px;
  width: 27%;
  overflow: hidden;
  padding-top: 12px;
  border: 6px solid var(--ink);
  border-radius: 25px;
  background: var(--ink);
  box-shadow: 0 24px 48px rgba(17, 18, 22, .3);
  transform: rotate(-2.8deg);
}
.proof-phone img { width: 100%; height: auto; aspect-ratio: 375 / 844; object-fit: cover; object-position: top; }
.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 30%;
  height: 3px;
  border-radius: 999px;
  background: #4a4b50;
  transform: translateX(-50%);
}
.showcase-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 34%;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
}
.showcase-caption span { display: block; color: var(--blue); font-family: var(--mono); font-size: 9px; }
.showcase-caption b { display: block; font-size: 14px; }

.fact-rail { color: var(--white); background: var(--ink); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-grid > div {
  min-height: 135px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: end;
  padding: 25px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, .16);
}
.fact-grid > div:first-child { border-left: 1px solid rgba(255, 255, 255, .16); }
.fact-grid b { font-family: var(--price); font-size: clamp(36px, 4vw, 58px); line-height: .9; }
.fact-grid span { margin-left: 7px; color: #aeb9e7; font-family: var(--mono); font-size: 10px; }
.fact-grid p { grid-column: 1 / -1; margin: 9px 0 0; color: #d5d6da; font-size: 12px; }
.rail-note { width: var(--shell); margin: 0 auto; padding: 10px 0 13px; color: #999ba3; font-size: 9px; text-align: right; }

.section-intro { margin-bottom: clamp(50px, 7vw, 92px); }
.split-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .6fr); gap: 70px; align-items: end; }
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.055em;
}
.section h2 em { color: var(--blue); font-style: normal; }
.split-intro > p, .honesty-title > p, .price-copy > p {
  margin: 0;
  color: #414248;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.work { overflow: hidden; background: var(--white); }
.work-stage { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
.work-screen {
  position: relative;
  overflow: hidden;
  min-height: 575px;
  border: 1px solid var(--ink);
  background: #d8d9d9;
}
.work-browser-bar { height: 36px; background: var(--ink); border: 0; }
.work-browser-bar span { border-color: rgba(255, 255, 255, .7); }
.work-browser-bar small { color: rgba(255, 255, 255, .7); }
.work-screen > img { width: 100%; height: 539px; object-fit: cover; object-position: top; transition: opacity .2s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.work-screen.is-switching > img { opacity: .2; transform: scale(1.018); }
.screen-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  color: var(--white);
  background: var(--blue);
}
.screen-meta span { font-family: var(--mono); font-size: 9px; }
.screen-meta strong { font-size: 13px; }
.sample-controls { display: grid; border-top: 1px solid var(--ink); }
.sample-tab {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: center;
  padding: 19px 18px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.sample-tab span { grid-row: 1 / 3; align-self: center; color: var(--muted); font-family: var(--price); font-size: 21px; }
.sample-tab b { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; }
.sample-tab small { color: var(--muted); font-size: 10px; }
.sample-tab:hover, .sample-tab.is-active { color: var(--white); background: var(--blue); }
.sample-tab:hover span, .sample-tab:hover small, .sample-tab.is-active span, .sample-tab.is-active small { color: rgba(255, 255, 255, .72); }
.work-foot { display: flex; justify-content: space-between; gap: 30px; margin-top: 25px; }
.work-foot p { margin: 0; color: var(--muted); font-size: 13px; }

.honesty { position: relative; overflow: hidden; color: var(--white); background: var(--blue); }
.honesty::after {
  content: "HONEST";
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  color: rgba(255, 255, 255, .07);
  font-family: var(--price);
  font-size: 23vw;
  line-height: 1;
  pointer-events: none;
}
.honesty-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.honesty .section-kicker, .section-kicker.light { color: #cbd5ff; }
.honesty h2 em { color: #ffb7a9; }
.honesty-title > p { max-width: 530px; margin-top: 30px; color: rgba(255, 255, 255, .8); }
.comparison-card { border: 1px solid rgba(255, 255, 255, .46); background: rgba(16, 29, 102, .18); backdrop-filter: blur(6px); }
.comparison-head { display: flex; justify-content: space-between; padding: 18px 21px; border-bottom: 1px solid rgba(255, 255, 255, .35); font-family: var(--mono); font-size: 10px; }
.comparison-head small { color: #cbd5ff; }
.comparison-card ul { margin: 0; padding: 0; list-style: none; }
.comparison-card li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 20px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}
.comparison-card li:last-child { border-bottom: 0; }
.comparison-card li > span { color: #aebcff; font-family: var(--mono); font-size: 11px; }
.comparison-card p { margin: 0; }
.comparison-card p b { display: block; font-size: 14px; }
.comparison-card p small { display: block; color: rgba(255, 255, 255, .65); font-size: 10px; }
.comparison-card li > strong {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  white-space: nowrap;
}

.price { background: var(--mist); }
.price-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, .72fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.price-copy > p { max-width: 620px; margin-top: 30px; }
.why-grid { display: grid; gap: 20px; margin-top: 45px; }
.why-grid > div { display: grid; grid-template-columns: 44px 1fr; padding-top: 18px; border-top: 1px solid rgba(17, 18, 22, .25); }
.why-grid b { grid-row: 1 / 3; color: var(--blue); font-family: var(--mono); font-size: 10px; }
.why-grid h3 { margin: 0; font-size: 15px; }
.why-grid p { margin: 4px 0 0; color: #50515a; font-size: 12px; }
.receipt {
  position: relative;
  padding: clamp(30px, 4vw, 54px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 13px 13px 0 var(--blue), 0 28px 70px rgba(25, 37, 92, .15);
}
.receipt::before, .receipt::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  height: 18px;
  background: radial-gradient(circle at 9px -1px, transparent 9px, var(--white) 10px) 0 0 / 18px 18px repeat-x;
}
.receipt::before { top: -9px; transform: rotate(180deg); }
.receipt::after { bottom: -9px; }
.receipt-top { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px dashed var(--ink); font-family: var(--mono); font-size: 9px; }
.receipt h3 { margin: 26px 0 18px; font-size: 20px; }
.receipt-lines { border-top: 1px solid var(--ink); }
.receipt-lines > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px dotted rgba(17, 18, 22, .35); font-size: 11px; }
.receipt-lines b { color: var(--blue); font-family: var(--mono); font-size: 9px; }
.receipt-total { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 20px; margin: 28px 0; padding-top: 22px; border-top: 2px solid var(--ink); }
.receipt-total span { font-family: var(--mono); font-size: 9px; }
.receipt-total strong { font-family: var(--price); font-size: 28px; line-height: 1; }
.receipt-total strong:last-child { color: var(--blue); font-size: clamp(47px, 5.4vw, 72px); letter-spacing: -.05em; }
.receipt-total i { font-size: .47em; font-style: normal; vertical-align: top; }
.receipt-fine { margin: 0 0 22px; color: var(--muted); font-size: 9px; line-height: 1.75; }

.flow { background: var(--paper); }
.flow-list { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.flow-list li {
  display: grid;
  grid-template-columns: 150px minmax(220px, .55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 108px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}
.flow-list span { color: var(--blue); font-family: var(--mono); font-size: 10px; }
.flow-list b { font-size: 20px; }
.flow-list p { margin: 0; color: var(--muted); font-size: 13px; }

.faq { color: var(--white); background: var(--ink); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 9vw, 130px); }
.faq h2 em { color: #91a5ff; }
.faq-list { min-width: 0; border-top: 1px solid rgba(255, 255, 255, .35); }
.faq details { min-width: 0; border-bottom: 1px solid rgba(255, 255, 255, .25); }
.faq summary {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: #91a5ff; font-family: var(--mono); font-size: 18px; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 750px; margin: -4px 0 26px; color: #c5c6cb; font-size: 13px; line-height: 1.9; }

.request { position: relative; overflow: hidden; color: var(--white); background: var(--orange); }
.request::before {
  content: "";
  position: absolute;
  width: 50vw;
  aspect-ratio: 1;
  right: -17vw;
  top: -23vw;
  border: 6vw solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}
.request-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 9vw, 132px); align-items: start; }
.request h2 { font-size: clamp(40px, 5.1vw, 74px); }
.request h2 em { color: #57120a; }
.request-copy > p:not(.section-kicker) { max-width: 540px; margin: 30px 0 0; color: rgba(255, 255, 255, .88); font-size: 15px; }
.request-copy ul { display: grid; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; font-size: 12px; }
.request-copy li::before { content: "✓"; margin-right: 10px; font-family: var(--mono); }
.request-form { padding: clamp(25px, 4vw, 46px); color: var(--ink); background: var(--white); }
.form-head { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 15px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 10px; }
.form-head small { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.request-form label { display: block; margin-top: 15px; font-size: 11px; font-weight: 700; }
.request-form label b { margin-left: 7px; color: var(--orange); font-size: 9px; }
.request-form label small { margin-left: 7px; color: var(--muted); font-size: 9px; }
.request-form input, .request-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 18, 22, .28);
  border-radius: 0;
  color: var(--ink);
  background: #fafafa;
  font-size: 14px;
}
.request-form input:focus, .request-form textarea:focus { border-color: var(--blue); outline: 2px solid var(--mist); }
.request-form textarea { resize: vertical; min-height: 110px; }
.honeypot {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0 !important;
  white-space: nowrap;
}
.form-button { width: 100%; margin-top: 22px; color: var(--white); background: var(--blue); }
.form-button[disabled] { cursor: wait; opacity: .6; transform: none; box-shadow: none; }
.form-status { min-height: 1.6em; margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-status.is-ok { color: #147a3c; }
.form-status.is-error { color: #c83321; }

.site-footer { padding: 65px 0 36px; color: #bebfc5; background: #090a0c; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 50px; align-items: start; }
.footer-mark { color: var(--white); }
.footer-mark .mark { color: var(--ink); background: var(--white); }
.footer-links { display: grid; gap: 8px; font-size: 11px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-copy { justify-self: end; font-size: 10px; line-height: 1.8; text-align: right; }
.disclosure { margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .16); }
.disclosure summary { color: #8e9098; font-family: var(--mono); font-size: 9px; cursor: pointer; }
.disclosure p { max-width: 980px; margin: 13px 0 0; color: #74767e; font-size: 9px; line-height: 1.8; }
.disclosure a { color: #aeb9e7; }

.mobile-cta { display: none; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes showcase-in {
  from { opacity: 0; transform: translate(24px, 18px) rotate(1deg); }
  to { opacity: 1; transform: translate(0, 18px) rotate(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; animation: hero-in .72s cubic-bezier(.2,.7,.2,1) forwards; }
  .hero-copy > :nth-child(1) { animation-delay: .06s; }
  .hero-copy > :nth-child(2) { animation-delay: .13s; }
  .hero-copy > :nth-child(3) { animation-delay: .21s; }
  .hero-copy > :nth-child(4) { animation-delay: .29s; }
  .hero-copy > :nth-child(5) { animation-delay: .36s; }
  .hero-showcase { opacity: 0; animation: showcase-in .9s .22s cubic-bezier(.2,.7,.2,1) forwards; }
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 960px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: 34px; }
  .hero h1 { font-size: clamp(42px, 6.3vw, 68px); }
  .hero-showcase { min-height: 540px; }
  .browser-main { top: 82px; }
  .proof-phone { width: 29%; }
  .work-stage { grid-template-columns: 1fr 245px; }
  .work-screen { min-height: 500px; }
  .work-screen > img { height: 464px; }
  .price-grid { grid-template-columns: 1fr 460px; gap: 55px; }
  .receipt { padding: 34px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 70px; }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 670px; }
  .hero-showcase { width: min(100%, 650px); min-height: 545px; margin-inline: auto; }
  .browser-main { width: 94%; }
  .proof-phone { width: 25%; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid > div, .fact-grid > div:first-child { border: 1px solid rgba(255, 255, 255, .16); border-top: 0; }
  .split-intro, .honesty-grid, .price-grid, .faq-grid, .request-grid { grid-template-columns: minmax(0, 1fr); }
  .split-intro { gap: 26px; }
  .section-intro { margin-bottom: 52px; }
  .work-stage { grid-template-columns: 1fr; }
  .sample-controls { grid-template-columns: 1fr 1fr; border-top: 0; }
  .sample-tab:nth-child(odd) { border-left: 1px solid var(--ink); }
  .sample-tab:nth-child(even) { border-left: 0; }
  .honesty-grid, .faq-grid { gap: 55px; }
  .price-copy { max-width: 680px; }
  .receipt { width: min(100%, 600px); margin-inline: auto; }
  .flow-list li { grid-template-columns: 100px 180px 1fr; }
  .request-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-copy { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .mobile-cta {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px max(15px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(15px, env(safe-area-inset-right));
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .18);
  }
  .mobile-cta div { line-height: 1; }
  .mobile-cta small { display: block; color: #aeb9e7; font-family: var(--mono); font-size: 8px; }
  .mobile-cta b { font-family: var(--price); font-size: 18px; }
  .mobile-cta a { justify-self: stretch; padding: 12px 15px; color: var(--white); background: var(--blue); font-size: 12px; font-weight: 800; text-align: center; text-decoration: none; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 30px); }
  .section { padding: 82px 0; }
  .site-header { position: relative; }
  .header-inner { min-height: 64px; }
  .wordmark { font-size: 11px; }
  .mark { width: 34px; }
  .hero { padding: 48px 0 62px; }
  .proof-grid { background-size: 25vw 25vw; }
  .hero::before { width: 80vw; right: -35vw; top: -18vw; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }
  .eyebrow span { display: block; margin: 0 0 3px; }
  .hero h1 { font-size: 40px; letter-spacing: -.075em; }
  .hero h1 strong { margin-top: .46em; font-size: .61em; line-height: 1.14; }
  .hero h1 strong b { font-size: 1.9em; }
  .mobile-proof-preview {
    display: block;
    overflow: hidden;
    margin: 28px 0 0;
    border: 1px solid var(--ink);
    background: var(--white);
    box-shadow: 7px 7px 0 var(--blue);
  }
  .responsive-proof-head {
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: .08em;
  }
  .mobile-proof-stage { position: relative; height: 280px; overflow: hidden; background: var(--mist); }
  .mobile-proof-browser {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 90%;
    overflow: hidden;
    border: 1px solid rgba(17, 18, 22, .7);
    background: var(--white);
    box-shadow: 0 18px 35px rgba(17, 18, 22, .18);
    transform: rotate(-1deg);
  }
  .mobile-proof-browser .browser-bar { height: 23px; }
  .mobile-proof-browser > img { width: 100%; aspect-ratio: 1.6; object-fit: cover; object-position: top; }
  .mobile-proof-stage .proof-phone {
    right: 10px;
    bottom: 10px;
    left: auto;
    width: 27%;
    padding-top: 7px;
    border-width: 3px;
    border-radius: 15px;
    transform: rotate(2.5deg);
  }
  .mobile-proof-stage .phone-speaker { top: 2px; height: 2px; }
  .mobile-proof-preview figcaption { display: grid; gap: 1px; padding: 9px 11px 10px; color: var(--muted); font-size: 9px; line-height: 1.5; }
  .mobile-proof-preview figcaption b { color: var(--ink); font-size: 11px; }
  .mobile-proof-preview figcaption span { font-size: 9px; }
  .hero-lead { margin-top: 25px; font-size: 14px; line-height: 1.86; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 28px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-showcase { display: none; }
  .fact-grid b { font-size: 34px; }
  .fact-grid > div { min-height: 105px; padding: 18px; }
  .rail-note { text-align: left; }
  .section-kicker { margin-bottom: 18px; font-size: 9px; }
  .section h2 { font-size: clamp(36px, 10vw, 50px); }
  .split-intro > p, .honesty-title > p, .price-copy > p { font-size: 13px; }
  .work-screen { min-height: 330px; }
  .work-browser-bar { height: 28px; }
  .work-screen > img { height: 302px; }
  .screen-meta { gap: 9px; padding: 9px 11px; }
  .screen-meta span { font-size: 7px; }
  .screen-meta strong { font-size: 9px; }
  .sample-controls { grid-template-columns: 1fr; }
  .sample-tab, .sample-tab:nth-child(even) { min-height: 82px; border-left: 1px solid var(--ink); }
  .work-foot { align-items: flex-start; flex-direction: column; }
  .honesty-grid { gap: 42px; }
  .comparison-head { padding: 14px; }
  .comparison-card li { grid-template-columns: 31px 1fr; gap: 9px; padding: 17px 14px; }
  .comparison-card li > strong { grid-column: 2; justify-self: start; }
  .receipt { padding: 27px 22px; box-shadow: 8px 8px 0 var(--blue), 0 20px 45px rgba(25, 37, 92, .14); }
  .receipt-lines > div { gap: 8px; font-size: 9.5px; }
  .receipt-lines b { font-size: 7.5px; }
  .receipt-total strong:last-child { font-size: 48px; }
  .flow-list li { grid-template-columns: 70px 1fr; gap: 8px 18px; align-items: start; min-height: auto; padding: 21px 0; }
  .flow-list p { grid-column: 2; }
  .faq-grid { gap: 42px; }
  .faq summary { padding: 20px 0; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 23px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
/* Japanese responsive typesetting: keep phrases readable at every viewport. */
:where(h1,h2,h3,h4,summary,.button) {
  font-feature-settings: "palt" 1;
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: balance;
}

:where(p,li,dd,label) {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.segments { background: #efece5; }
.segments-intro { margin-bottom: 46px; }
.segment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,3vw,44px); }
.segment-card { min-width: 0; display: grid; grid-template-columns: 1.08fr .92fr; background: #fff; border: 1px solid var(--ink); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.segment-card:hover { transform: translateY(-5px); box-shadow: 12px 12px 0 rgba(20,27,32,.12); }
.segment-image { min-height: 340px; overflow: hidden; }
.segment-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .35s ease; }
.segment-card:hover .segment-image img { transform: scale(1.025); }
.segment-copy { padding: clamp(25px,3vw,42px); display: flex; flex-direction: column; justify-content: center; }
.segment-copy > span { color: var(--blue); font: 700 9px/1.5 var(--mono); letter-spacing: .12em; }
.segment-copy h3 { margin: 18px 0 12px; font-size: clamp(22px,2.1vw,32px); line-height: 1.5; }
.segment-copy p { margin: 0; color: var(--muted); font-size: 13px; }
.segment-copy b { margin-top: 30px; color: var(--orange); font-size: 12px; }
.segment-card-women { border-color: #6c2947; }
.segment-card-women .segment-copy > span, .segment-card-women .segment-copy b { color: #6c2947; }
.segment-card-build { background: #171b1e; color: #fff; }
.segment-card-build .segment-copy p { color: rgba(255,255,255,.62); }

@media (max-width: 980px) {
  .segment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .segment-card { grid-template-columns: 1fr; }
  .segment-image { min-height: 225px; }
}

@supports not (word-break: auto-phrase) {
  :where(h1,h2,h3,h4,summary) { word-break: normal; overflow-wrap: break-word; }
}

@media (max-width: 360px) {
  .faq summary { gap: 14px; }
  .faq summary span { flex: 0 0 auto; }
}

/* 2026-09-01: PC hero density correction. Keep the thesis above the fold. */
@media (min-width: 821px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
    padding: 46px 0 58px;
  }
  .hero-grid { align-items: start; }
  .hero h1 { font-size: clamp(46px, 4.35vw, 64px); }
  .hero-showcase {
    min-height: clamp(500px, 40vw, 580px);
    transform: none;
  }
  .browser-main { top: 50px; aspect-ratio: auto; }
  .browser-main img { height: auto; object-fit: contain; }
}

@media (min-width: 601px) and (max-width: 820px) {
  .browser-main { aspect-ratio: auto; }
  .browser-main img { height: auto; object-fit: contain; }
}

/* UI screenshots are evidence, so never crop their edges. */
.work-screen { min-height: 0; }
.work-screen > img { height: auto; object-fit: contain; }
.screen-meta {
  position: relative;
  right: auto;
  bottom: auto;
  justify-content: space-between;
}

.showcase-caption { text-wrap: balance; }
