@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&family=Noto+Serif+JP:wght@400;500&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
:root {
  --bg: #f5f4ef;
  --paper: #fbfaf5;
  --paper-strong: #fffdf7;
  --ink: #171717;
  --muted: #5e5e58;
  --line: #dedbd1;
  --lime: #d9ff43;
  --lime-dark: #b9e928;
  --soft: #ebe8de;
  --blue: #4e89a8;
  --green: #6f9776;
  --shadow: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171713;
    --paper: #22221d;
    --paper-strong: #292920;
    --ink: #f4f1e8;
    --muted: #c4c0b6;
    --line: #454237;
    --lime: #d9ff43;
    --lime-dark: #d9ff43;
    --soft: #24231d;
    --shadow: none;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-underline-offset: .25em; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 23, 23, .08);
}

.brand {
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a { text-decoration: none; }

.nav-cta, .button, .sticky-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  padding: 13px 22px;
  background: var(--lime);
  color: #171717;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(23, 23, 23, .18);
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button.secondary {
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: none;
}

.nav-cta::after, .button::after { content: "→"; }

.nav-cta:hover, .button:hover, .sticky-cta:hover {
  transform: translateY(2px);
  box-shadow: none;
  background: var(--lime-dark);
}

button.button {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.form-panel button.button { margin-top: 20px; }

.menu-button { display: none; }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) 0;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(390px, .94fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(60px, 8vw, 104px);
}

.hero-image { margin: 0; }
.hero h1 { font-size: clamp(42px, 5.3vw, 68px); text-wrap: balance; }

h1, h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(42px, 6.6vw, 82px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { margin: 0; font-size: 20px; line-height: 1.5; }
p { margin: 0 0 1.15em; }

.hero h1 span, .cta-copy h2 span {
  background: transparent;
  padding: 0 .04em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.price-line {
  margin: 22px 0 30px;
  font-weight: 900;
  font-size: 18px;
}

.price-line strong {
  display: inline-block;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 0;
}

.hero-note {
  margin: -14px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.hero-image img, .photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.hero-image img {
  border: 1px solid var(--line);
}

.photo-frame.portrait img {
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.centered { text-align: center; }
.narrow { max-width: 800px; margin: 0 auto; }
.narrow p, .split p, .content-card p, .service-card p, .site-price p, .price-card p { color: var(--muted); }

.problem-section { text-align: center; }

.issue-grid, .method-grid, .service-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.issue-grid {
  grid-template-columns: 1.2fr .92fr 1.08fr .92fr;
}

.method-grid {
  grid-template-columns: 1.18fr .92fr 1fr 1.1fr;
}

.issue-grid article, .method-grid article, .service-card, .price-card, .site-price, .mini-price, .faq-list details, .form-panel {
  background: color-mix(in srgb, var(--paper-strong) 78%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.issue-grid article, .method-grid article {
  min-height: 156px;
  padding: 24px 20px;
  text-align: left;
}

.method-grid article:nth-child(2), .method-grid article:nth-child(4) {
  margin-top: 34px;
}

.icon {
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  padding: 2px 8px;
  background: var(--lime);
  color: #171717;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
}

.operator-section {
  grid-template-columns: minmax(300px, .72fr) minmax(0, .98fr);
}

.band {
  width: 100%;
  max-width: none;
  background: var(--soft);
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}

.service-card {
  grid-column: span 2;
  min-height: 292px;
  padding: 28px 0 34px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.service-card.wide {
  grid-column: span 3;
}

.number {
  color: var(--lime-dark);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.kicker {
  margin: 12px 0 2px;
  color: var(--muted);
  font-weight: 700;
}

.service-card a, .site-price a { font-weight: 900; }
.service-card a { margin-top: auto; width: fit-content; }

.sample-section {
  padding-top: clamp(74px, 10vw, 132px);
}

.sample-grid {
  display: grid;
  grid-template-columns: 1.12fr .92fr .92fr;
  gap: 18px;
  align-items: start;
}

.sample-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.sample-card-offset { margin-top: 54px; }

.sample-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.sample-card:nth-child(3) figure { aspect-ratio: 4 / 4.5; }

.sample-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-body { padding: 22px 22px 26px; }
.sample-body h3 { margin-bottom: 8px; }
.sample-body p:last-child { margin: 0; color: var(--muted); font-size: 14px; }

.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.flow li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  font-weight: 900;
}

.price-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 18px;
  align-items: stretch;
}

.price-card, .site-price { padding: clamp(28px, 4vw, 46px); }
.price-label { margin: 22px 0 0; color: var(--muted); font-weight: 900; }
.main-price { margin: 0 0 18px; color: var(--lime-dark); font-size: clamp(56px, 8vw, 96px); font-weight: 900; line-height: 1; }
.main-price span { font-size: .35em; color: var(--ink); }
.mini-price { margin-top: 16px; padding: 20px; display: grid; gap: 2px; }
.mini-price span { font-weight: 900; }
.mini-price strong { font-size: clamp(28px, 4vw, 42px); line-height: 1.2; }
.mini-price small { color: var(--muted); }

.plan-steps {
  display: grid;
  gap: 0;
  margin: 30px 0 18px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plan-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.plan-steps strong { color: var(--lime-dark); }
.plan-steps span { color: var(--muted); font-size: 14px; }
.price-note { color: var(--muted); font-size: 13px; }

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-list details { padding: 0; }
.faq-list summary {
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  font-weight: 900;
  position: relative;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 24px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { padding: 0 20px 20px; color: var(--muted); }

.cta-section {
  width: 100%;
  max-width: none;
  min-height: 390px;
  display: grid;
  align-items: center;
  background: #cccccc;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
}

.cta-copy { max-width: 720px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 60px);
  background: #171717;
  color: #f5f4ef;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
}

.site-footer a { text-decoration: none; }
.site-footer small { color: #c4c0b6; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 40;
}

.page-hero {
  padding-top: clamp(64px, 9vw, 116px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.page-hero .lead { max-width: 760px; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper-strong) 70%, transparent);
}

.content-card h2, .content-card h3 { font-size: 24px; margin-bottom: 12px; }

.article-hero { max-width: 940px; }
.article-hero h1 { max-width: 900px; font-size: clamp(38px, 5.2vw, 68px); }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.article-section { padding-top: 24px; }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body h2 { margin-top: 56px; margin-bottom: 18px; font-size: clamp(28px, 3.6vw, 44px); }
.article-body h3 { margin-top: 34px; margin-bottom: 10px; font-size: 22px; }
.article-body p { margin: 0 0 18px; }
.article-body ul { margin: 0 0 24px; padding-left: 1.4em; }
.article-body li + li { margin-top: 8px; }
.article-body strong { font-weight: 900; }
.article-note {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--lime);
  background: var(--paper-strong);
}
.article-list-section { padding-top: 24px; }
.article-list { grid-template-columns: minmax(0, 760px); }
.article-date { margin: 0 0 10px; color: var(--muted); font-size: 13px; font-weight: 900; letter-spacing: .04em; }
.article-list-card h3 { font-size: clamp(22px, 3vw, 32px); }
.text-link { font-weight: 900; text-underline-offset: .25em; }

.form-panel {
  padding: clamp(24px, 4vw, 42px);
  max-width: 820px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-full { grid-column: 1 / -1; }

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input, textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--ink));
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--paper-strong);
}

input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

textarea { min-height: 180px; resize: vertical; }

.form-note {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--lime);
  background: var(--paper-strong);
  color: var(--muted);
}

.reveal, .motion-item { transform: translateZ(0); }
.has-gsap .reveal, .has-gsap .motion-item { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-cta, .button, .sticky-cta { transition: none; }
}

@media (max-width: 900px) {
  .menu-button {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 5px;
  }
  .menu-button span:not(.sr-only) {
    width: 25px;
    height: 2px;
    background: var(--ink);
    display: block;
  }
  .global-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
  }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 14px; }
  .hero, .split, .price-section {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .issue-grid, .method-grid, .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-grid article:nth-child(2), .method-grid article:nth-child(4) {
    margin-top: 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card, .service-card.wide {
    grid-column: auto;
    min-height: auto;
  }
  .sample-grid { grid-template-columns: 1fr; }
  .sample-card-offset { margin-top: 0; }
  .faq-list { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; padding-bottom: 86px; }
  .sticky-cta { display: inline-flex; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .section { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: clamp(38px, 10.5vw, 43px); }
  h2 { font-size: clamp(30px, 9vw, 42px); }
  .issue-grid, .method-grid, .content-grid, .form-grid { grid-template-columns: 1fr; }
  .price-line strong { display: block; }
  .hero-image img, .photo-frame img { aspect-ratio: 1 / 1; }
  .hero-note { margin-top: -8px; }
  .plan-steps li { grid-template-columns: 60px 1fr; }
}

/* Slush reference tokens: flat paper surfaces, sticker outlines, and sculptural type. */
:root {
  --color-carbon: #000000;
  --color-paper-white: #ffffff;
  --color-sky-wash: #dceeff;
  --color-concrete-gray: #cccccc;
  --color-soft-mist: #e9e9e9;
  --color-electric-blue: #4da2ff;
  --color-mint-pop: #55db9c;
  --color-lavender: #e9ccff;
  --color-ember: #fb4903;
  --color-sunburst: #ffd731;
  --color-voltage-violet: #5c4ade;
  --font-lateral: "Lateral", "Arial Black", "Noto Sans JP", sans-serif;
  --font-aeonik-pro: "Aeonik Pro", "Noto Sans JP", Arial, sans-serif;
}

body {
  background: var(--color-paper-white);
  color: var(--color-carbon);
  font-family: var(--font-aeonik-pro);
  letter-spacing: -0.01em;
}

*, *::before, *::after { box-shadow: none !important; }

h1, h2 {
  font-family: var(--font-lateral);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0;
}

h2 {
  position: relative;
  isolation: isolate;
}

h3, .eyebrow, .kicker, .number, .global-nav, .button, .nav-cta, .sticky-cta {
  font-family: var(--font-aeonik-pro);
  font-weight: 700;
}

.section {
  width: min(1280px, calc(100% - 48px));
}

.global-nav a:not(.nav-cta),
.nav-cta, .button, .sticky-cta,
.issue-grid article, .method-grid article, .service-card,
.sample-card, .content-card, .price-card, .site-price,
.mini-price, .faq-list details, .form-panel {
  border: 1px solid var(--color-carbon);
}

.global-nav a:not(.nav-cta),
.nav-cta, .button, .sticky-cta, .flow li, .sticker, .icon {
  border-radius: 1600px;
}

.issue-grid article, .method-grid article, .service-card,
.content-card, .faq-list details, .form-panel { border-radius: 20px; }
.sample-card, .price-card, .site-price { border-radius: 30px; }
.mini-price { border-radius: 20px; }

.nav-cta, .button, .sticky-cta {
  background: var(--color-carbon);
  color: var(--color-paper-white);
  letter-spacing: 0.03em;
}

.button.secondary { background: var(--color-paper-white); color: var(--color-carbon); }
.nav-cta:hover, .button:hover, .sticky-cta:hover { background: var(--color-voltage-violet); color: var(--color-paper-white); }

.hero {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: min(820px, calc(100vh - 112px));
  padding: clamp(128px, 13vw, 196px) max(24px, calc((100vw - 1280px) / 2)) clamp(100px, 12vw, 170px);
  background: var(--color-sky-wash);
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 2; max-width: 1080px; }
.hero h1 { max-width: 1100px; font-size: clamp(64px, 10vw, 150px); line-height: 0.78; }
.hero h1 span, .cta-copy h2 span { text-decoration: underline; text-decoration-color: var(--color-sunburst); text-decoration-thickness: 0.11em; text-underline-offset: 0.04em; }
.hero .lead { max-width: 680px; color: var(--color-carbon); font-weight: 700; }
.hero .eyebrow, .hero .price-line, .hero .hero-note { color: var(--color-carbon); }
.hero .price-line strong { font-size: clamp(34px, 5vw, 60px); }

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-collage .hero-ribbon {
  position: absolute;
  left: 33%;
  top: 13%;
  width: min(1500px, 118vw);
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  transform: translateX(-8%) rotate(-7deg);
}

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 84px;
  min-height: 52px;
  padding: 8px 16px;
  border: 1px solid var(--color-carbon);
  color: var(--color-carbon);
  font-family: var(--font-aeonik-pro);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.sticker-ember { top: 12%; right: 6%; background: var(--color-ember); transform: rotate(-7deg); }
.sticker-mint { top: 35%; left: 54%; background: var(--color-mint-pop); transform: rotate(8deg); }
.sticker-violet { bottom: 18%; right: 5%; background: var(--color-voltage-violet); color: var(--color-paper-white); transform: rotate(6deg); }

.section-head h2::before, .narrow h2::before, .content-card h2::before,
.price-card h2::before, .site-price h2::before, .operator-section h2::before,
.cta-copy h2::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 38%;
  bottom: -0.04em;
  width: 1.35em;
  height: 0.24em;
  border: 1px solid var(--color-carbon);
  border-radius: 1600px;
  background: var(--color-electric-blue);
  transform: rotate(-6deg);
}

.section-head h2::after, .narrow h2::after, .content-card h2::after,
.price-card h2::after, .site-price h2::after, .operator-section h2::after,
.cta-copy h2::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0.05em;
  width: 0.42em;
  height: 0.42em;
  border: 1px solid var(--color-carbon);
  border-radius: 1600px;
  background: var(--color-ember);
  transform: rotate(11deg);
}

.problem-section, .sample-section, .operator-section { background: var(--color-paper-white); }
.local-section, .cta-section { background: var(--color-concrete-gray); }
.method-band, .price-section { background: var(--color-sky-wash); }
.issue-grid article:nth-child(1), .method-grid article:nth-child(1), .service-card:nth-child(1) { background: var(--color-lavender); }
.issue-grid article:nth-child(2), .method-grid article:nth-child(2), .service-card:nth-child(2) { background: var(--color-mint-pop); }
.issue-grid article:nth-child(3), .method-grid article:nth-child(3), .service-card:nth-child(3) { background: var(--color-sunburst); }
.issue-grid article:nth-child(4), .method-grid article:nth-child(4), .service-card:nth-child(4) { background: var(--color-ember); }
.service-card:nth-child(5) { background: var(--color-voltage-violet); color: var(--color-paper-white); }
.service-card:nth-child(6) { background: var(--color-electric-blue); }

.cta-section { min-height: 420px; background-image: none; }
.cta-section .button.primary { background: var(--color-carbon); color: var(--color-paper-white); }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 112px; }
  .hero-collage .hero-ribbon { left: 24%; top: 24%; width: 135vw; }
  .global-nav a:not(.nav-cta) { border: 1px solid var(--color-carbon); border-radius: 1600px; }
}

@media (max-width: 560px) {
  .section { width: min(100% - 28px, 1280px); }
  .hero { padding: 92px 18px 80px; }
  .hero h1 { font-size: clamp(48px, 13vw, 64px); line-height: 0.8; white-space: normal; }
  .hero-collage { position: absolute; min-height: 0; }
  .hero-collage .hero-ribbon { left: 4%; top: 34%; width: 156vw; transform: rotate(-9deg); }
  .sticker { min-width: 68px; min-height: 42px; padding: 7px 11px; font-size: 12px; }
  .sticker-ember { top: 8%; right: 2%; }
  .sticker-mint { top: 46%; left: 54%; }
  .sticker-violet { bottom: 13%; right: 3%; }
}

.issue-grid .icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 0;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--color-paper-white);
}

.issue-grid .icon img {
  width: 76px;
  height: 76px;
  max-width: none;
  object-fit: contain;
}

.sticker-illustration {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-carbon);
  border-radius: 30px;
  background: var(--color-concrete-gray);
}

.sticker-illustration img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.split > div, .split > figure { min-width: 0; }
.split p, .section-head p, .issue-grid h3 { overflow-wrap: anywhere; }

/* MOSH PIT CREW sticker-world direction. */
:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --ink: #000000;
  --muted: #243244;
  --line: #000000;
  --lime: #d9ff43;
  --lime-dark: #d9ff43;
  --soft: #cccccc;
  --blue: #4da2ff;
  --green: #55db9c;
  --lavender: #e9ccff;
  --ember: #fb4903;
  --sunburst: #ffd731;
  --violet: #5c4ade;
  --shadow: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #ffffff;
    --paper: #ffffff;
    --paper-strong: #ffffff;
    --ink: #000000;
    --muted: #243244;
    --line: #000000;
    --soft: #cccccc;
  }
}

body { background: var(--bg); color: var(--ink); line-height: 1.65; }
.marquee { overflow: hidden; width: 100%; background: #000; color: #fff; border-bottom: 1px solid #000; white-space: nowrap; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee-track span { padding: 8px 0; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

.site-header { top: 0; background: rgba(255, 255, 255, .94); border-bottom: 1px solid #000; backdrop-filter: none; }
.brand { letter-spacing: .02em; }
.global-nav a:not(.nav-cta) { padding: 9px 13px; border: 1px solid #000; border-radius: 999px; background: #fff; }
.nav-cta, .button, .sticky-cta {
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  box-shadow: none;
  letter-spacing: .03em;
}
.button.secondary { background: #fff; color: #000; box-shadow: none; }
.nav-cta:hover, .button:hover, .sticky-cta:hover { background: var(--violet); color: #fff; box-shadow: none; }
.nav-cta::after, .button::after { content: "↗"; }

.hero {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1280px) / 2));
  padding-right: max(18px, calc((100vw - 1280px) / 2));
  background: #dceeff;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(48px, 6.4vw, 92px); line-height: .86; letter-spacing: -.03em; white-space: nowrap; text-wrap: none; }
.hero h1 span, .cta-copy h2 span { background: transparent; padding: 0; text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: .14em; text-underline-offset: .04em; }
.hero .lead { max-width: 620px; color: #000; font-weight: 700; }
.hero .eyebrow, .hero .price-line, .hero .hero-note { color: #000; }
.hero .price-line strong { font-size: clamp(34px, 5vw, 60px); }
.hero-collage { position: relative; min-height: 390px; overflow: visible; }
.hero-collage .hero-ribbon { position: absolute; right: -2%; width: 108%; max-width: none; height: auto; aspect-ratio: auto; object-fit: contain; border: 0; border-radius: 0; box-shadow: none; transform: rotate(-4deg); }
.sticker { position: absolute; z-index: 2; display: grid; place-items: center; min-width: 78px; min-height: 48px; padding: 8px 14px; border: 1px solid #000; border-radius: 999px; color: #000; font-size: 14px; font-weight: 900; line-height: 1; transform: rotate(-7deg); }
.sticker-ember { top: 6%; right: 8%; background: var(--ember); }
.sticker-mint { top: 29%; left: 2%; background: var(--green); transform: rotate(8deg); }
.sticker-violet { bottom: 20%; right: 1%; background: var(--violet); color: #fff; transform: rotate(6deg); }
.sticker-sun { bottom: 7%; left: 15%; background: var(--sunburst); transform: rotate(-12deg); }
.sticker-lime { top: 50%; left: 42%; background: var(--lime); transform: rotate(4deg); }

.problem-section { width: 100%; max-width: none; background: #fff; padding-left: max(18px, calc((100vw - 1180px) / 2)); padding-right: max(18px, calc((100vw - 1180px) / 2)); }
.issue-grid article, .method-grid article, .content-card, .price-card, .site-price, .mini-price, .faq-list details, .form-panel {
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: none;
}
.issue-grid article:nth-child(1), .method-grid article:nth-child(1) { background: var(--lavender); }
.issue-grid article:nth-child(2), .method-grid article:nth-child(2) { background: var(--green); }
.issue-grid article:nth-child(3), .method-grid article:nth-child(3) { background: var(--sunburst); }
.issue-grid article:nth-child(4), .method-grid article:nth-child(4) { background: var(--ember); }
.icon { border: 1px solid #000; border-radius: 999px; background: #fff; }

.local-section { width: 100%; max-width: none; background: var(--soft); padding-left: max(18px, calc((100vw - 1180px) / 2)); padding-right: max(18px, calc((100vw - 1180px) / 2)); }
.method-band { background: #cccccc; }
.method-band .method-grid article { background: #fff; }
.service-grid { gap: 12px; }
.service-card, .service-card.wide { min-height: 292px; padding: 24px; border: 1px solid #000; border-radius: 8px; background: #fff; box-shadow: none; }
.service-card:nth-child(1) { background: var(--lavender); }
.service-card:nth-child(2) { background: var(--green); }
.service-card:nth-child(3) { background: var(--sunburst); }
.service-card:nth-child(4) { background: var(--ember); }
.service-card:nth-child(5) { background: var(--violet); color: #fff; }
.service-card:nth-child(6) { background: var(--blue); }
.service-card p, .service-card .kicker { color: inherit; }
.number { color: #000; }
.sample-section { width: 100%; max-width: none; background: #ffffff; padding-left: max(18px, calc((100vw - 1180px) / 2)); padding-right: max(18px, calc((100vw - 1180px) / 2)); }
.sample-card { border: 1px solid #000; border-radius: 8px; box-shadow: none; }
.sample-card:nth-child(1) { background: var(--sunburst); }
.sample-card:nth-child(2) { background: var(--green); }
.sample-card:nth-child(3) { background: var(--ember); }
.flow li { border: 1px solid #000; border-radius: 999px; background: #fff; }
.price-section { width: 100%; max-width: none; background: #dceeff; padding-left: max(18px, calc((100vw - 1180px) / 2)); padding-right: max(18px, calc((100vw - 1180px) / 2)); }
.price-card { background: var(--lime); }
.site-price { background: #fff; }
.mini-price { background: var(--lavender); }
.main-price { color: #000; }
.operator-section { width: 100%; max-width: none; background: #fff; padding-left: max(18px, calc((100vw - 1180px) / 2)); padding-right: max(18px, calc((100vw - 1180px) / 2)); }
.cta-section { background: #cccccc; color: #000; }
.cta-section p { color: #000; }
.cta-section .button.primary { background: #000; color: #fff; }
.site-footer { background: #000; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@media (max-width: 900px) {
  .global-nav a:not(.nav-cta) { border: 0; border-radius: 8px; }
  .hero-collage { min-height: 300px; }
  .hero-collage .hero-ribbon { width: 104%; }
}

@media (max-width: 560px) {
  .hero { padding-top: 54px; padding-bottom: 66px; }
  .hero-copy { min-width: 0; }
  .hero h1 { font-size: clamp(40px, 10.5vw, 52px); line-height: .9; white-space: normal; text-wrap: balance; }
  .hero-collage { min-height: 244px; margin-top: 24px; }
  .sticker { min-width: 68px; min-height: 42px; padding: 7px 10px; font-size: 12px; }
  .sticker-ember { right: 3%; }
  .sticker-mint { left: 0; }
  .sticker-lime { left: 38%; }
  .hero-collage .hero-ribbon { width: 112%; }
  .service-card, .service-card.wide { min-height: 0; }
}

/* Final token enforcement after the legacy layout overrides above. */
body { font-family: var(--font-aeonik-pro); letter-spacing: -0.01em; }
h1, h2 { font-family: var(--font-lateral); font-weight: 800; line-height: 0.8; letter-spacing: 0; }
.section { width: min(1280px, calc(100% - 48px)); }
.global-nav a:not(.nav-cta), .nav-cta, .button, .sticky-cta, .flow li, .sticker, .icon { border-radius: 1600px; }
.issue-grid article, .method-grid article, .service-card, .content-card, .faq-list details, .form-panel { border-radius: 20px; }
.sample-card, .price-card, .site-price { border-radius: 30px; }
.mini-price { border-radius: 20px; }
.global-nav a:not(.nav-cta), .nav-cta, .button, .sticky-cta, .issue-grid article, .method-grid article, .service-card, .sample-card, .content-card, .price-card, .site-price, .mini-price, .faq-list details, .form-panel { border: 1px solid var(--color-carbon); }
.nav-cta, .button, .sticky-cta { background: var(--color-carbon); color: var(--color-paper-white); letter-spacing: 0.03em; }
.button.secondary { background: var(--color-paper-white); color: var(--color-carbon); }
.hero { position: relative; display: block; min-height: min(820px, calc(100vh - 112px)); padding: clamp(128px, 13vw, 196px) max(24px, calc((100vw - 1280px) / 2)) clamp(100px, 12vw, 170px); background: var(--color-sky-wash); }
.hero-copy { position: relative; z-index: 2; max-width: 1080px; }
.hero h1 { max-width: 1100px; font-size: clamp(64px, 10vw, 150px); line-height: 0.78; white-space: normal; }
.hero-collage { position: absolute; inset: 0; z-index: 1; min-height: 0; overflow: visible; pointer-events: none; }
.hero-collage .hero-ribbon { left: 33%; top: 13%; width: min(1500px, 118vw); max-width: none; transform: translateX(-8%) rotate(-7deg); }
.sticker { min-width: 84px; min-height: 52px; padding: 8px 16px; border-radius: 1600px; font-family: var(--font-aeonik-pro); font-weight: 700; letter-spacing: 0.03em; }
.sticker-ember { top: 12%; right: 6%; }
.sticker-mint { top: 35%; left: 54%; }
.sticker-violet { bottom: 18%; right: 5%; }
.problem-section, .sample-section, .operator-section { background: var(--color-paper-white); }
.local-section, .cta-section { background: var(--color-concrete-gray); }
.method-band, .price-section { background: var(--color-sky-wash); }
.cta-section { min-height: 420px; background-image: none; }
.cta-section .button.primary { background: var(--color-carbon); color: var(--color-paper-white); }
.service-card:nth-child(1) { background: var(--color-lavender); }
.service-card:nth-child(2) { background: var(--color-mint-pop); }
.service-card:nth-child(3) { background: var(--color-sunburst); }
.service-card:nth-child(4) { background: var(--color-ember); }
.service-card:nth-child(5) { background: var(--color-voltage-violet); color: var(--color-paper-white); }
.service-card:nth-child(6) { background: var(--color-electric-blue); }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 112px; }
  .hero-collage .hero-ribbon { left: 24%; top: 24%; width: 135vw; }
  .global-nav a:not(.nav-cta) { border: 1px solid var(--color-carbon); border-radius: 1600px; }
}

@media (max-width: 560px) {
  .section { width: min(100% - 28px, 1280px); }
  .hero { padding: 92px 18px 80px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 48px); line-height: 0.8; }
  .hero h1 span { display: inline-block; white-space: nowrap; }
  .hero-collage .hero-ribbon { left: 4%; top: 34%; width: 156vw; transform: rotate(-9deg); }
  .sticker { min-width: 68px; min-height: 42px; padding: 7px 11px; font-size: 12px; }
  .sticker-ember { top: 8%; right: 2%; }
  .sticker-mint { top: 46%; left: 54%; }
  .sticker-violet { bottom: 13%; right: 3%; }
}

/* Typography shared with the approved editorial homepage. */
:root {
  --font-aeonik-pro: "Zen Kaku Gothic New", "Yu Gothic", sans-serif;
  --font-lateral: "Noto Serif JP", "Yu Mincho", serif;
}
body { font-family: var(--font-aeonik-pro); font-weight: 400; }
h1, h2, h3 {
  font-family: var(--font-lateral);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.4;
}
.page-hero h1 { font-size: clamp(32px, 4.3vw, 60px); line-height: 1.4; }
.eyebrow, .kicker, .brand, small, .global-nav, .number {
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
button, input, select, textarea { font-family: var(--font-aeonik-pro); }
.button, .nav-cta, .sticky-cta, .text-link, .service-card a,
.site-price a, .faq-list summary, .article-body strong,
.main-price, .price-label, .mini-price span { font-weight: 500; }
