:root {
  --ink: #14201c;
  --ink-soft: #4d5954;
  --paper: #f4f1e8;
  --paper-deep: #e8e2d3;
  --lime: #d8ff58;
  --orange: #ff7147;
  --line: rgba(20, 32, 28, .18);
  --white: #fffef8;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #dad5c9;
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-shell { width: min(1480px, 100%); margin: 0 auto; overflow: hidden; background: var(--paper); box-shadow: 0 0 60px rgba(20,32,28,.12); }
.scroll-progress { position: fixed; z-index: 40; top: 0; left: 0; width: 100%; height: 4px; pointer-events: none; background: transparent; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left center; }
.site-header {
  position: relative; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  min-height: 92px; padding: 18px clamp(24px, 5vw, 76px); border-bottom: 1px solid var(--line); background: rgba(244,241,232,.94);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; line-height: 1.05; letter-spacing: .04em; }
.brand strong { font-size: 18px; font-weight: 800; }
.brand-mark { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--ink); color: var(--lime); font: 600 18px/1 var(--serif); transform: rotate(-8deg); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 13px; font-weight: 700; }
.main-nav > a { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--orange); transition: right .25s ease; }
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); border-radius: 100px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); }

.section-pad { padding-left: clamp(24px, 7vw, 104px); padding-right: clamp(24px, 7vw, 104px); }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 7vw, 110px); align-items: center; min-height: 720px; padding-top: 76px; padding-bottom: 84px; }
.eyebrow { margin: 0 0 28px; font: 600 11px/1.4 var(--mono); letter-spacing: .15em; }
.eyebrow-dot { display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,113,71,.15); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font: 700 clamp(40px, 3.8vw, 56px)/1.08 var(--serif); letter-spacing: -.06em; }
h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 660px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 18px); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 58px; padding: 0 26px; border-radius: 100px; font-size: 14px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.button span { font-size: 18px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20,32,28,.16); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #26362f; }
.text-link { border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.hero-note { margin: 0; color: var(--ink-soft); font-size: 12px; }
.hero-note span { color: #207a56; font-weight: 900; }

.hero-visual { position: relative; min-height: 525px; transform: translate3d(0, var(--hero-parallax-y, 0px), 0); will-change: transform; }
.mock-window { position: absolute; z-index: 3; top: 34px; left: 4%; width: 88%; max-width: 500px; overflow: hidden; border: 1px solid rgba(20,32,28,.5); border-radius: 14px; background: var(--white); box-shadow: 22px 25px 0 var(--ink), 0 30px 80px rgba(20,32,28,.18); transform: rotate(2.5deg); }
.mock-topbar { display: flex; justify-content: space-between; align-items: center; height: 42px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #f4f0e7; font: 500 9px/1 var(--mono); }
.window-dots { display: flex; gap: 4px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.window-dots i:nth-child(2) { background: #f2c14e; }
.window-dots i:nth-child(3) { background: #5ac690; }
.mock-content { position: relative; min-height: 390px; padding: 38px 34px; overflow: hidden; background: #f6efdd; }
.mock-label { font: 600 9px/1 var(--mono); letter-spacing: .16em; }
.mock-title { position: relative; z-index: 2; margin-top: 60px; font: 700 clamp(30px, 4vw, 52px)/1.1 var(--serif); letter-spacing: -.04em; }
.mock-title b { color: var(--orange); font-weight: 700; }
.mock-line { width: 84px; height: 1px; margin: 24px 0; background: var(--ink); }
.mock-chip { display: inline-flex; gap: 24px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 100px; font: 600 8px/1 var(--mono); }
.mock-arch { position: absolute; right: -52px; bottom: -100px; width: 270px; height: 360px; border-radius: 140px 140px 0 0; background: var(--lime); transform: rotate(-8deg); }
.mock-sun { position: absolute; top: 70px; left: 76px; width: 80px; height: 80px; border-radius: 50%; background: var(--orange); }
.mock-horizon { position: absolute; top: 110px; left: 24px; right: 24px; height: 1px; background: rgba(20,32,28,.45); }
.visual-orbit { position: absolute; border: 1px solid rgba(20,32,28,.16); border-radius: 50%; }
.orbit-one { inset: 0 8% 7% 0; animation: orbit 15s linear infinite; }
.orbit-two { inset: 12% 0 0 13%; animation: orbit 20s linear infinite reverse; }
.float-card { position: absolute; z-index: 5; display: flex; align-items: center; background: var(--white); border: 1px solid var(--ink); box-shadow: 7px 7px 0 rgba(20,32,28,.9); }
.float-card-top { top: 4px; right: -6px; gap: 10px; padding: 13px 17px; font: 500 10px/1.15 var(--mono); transform: rotate(6deg); }
.float-icon { color: var(--orange); font-size: 25px; }
.float-card-bottom { right: 3%; bottom: 66px; gap: 8px; padding: 12px 15px; font-size: 10px; transform: rotate(-3deg); }
.float-card-bottom strong { margin-left: 8px; font-family: var(--mono); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #28a66f; }
.visual-caption { position: absolute; bottom: 5px; left: 7%; right: 3%; display: flex; justify-content: space-between; font: 600 9px/1 var(--mono); letter-spacing: .12em; }
@keyframes orbit { to { transform: rotate(360deg); } }

.marquee { overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--lime); transform: rotate(-1deg) scale(1.02); }
.marquee div { width: max-content; padding: 14px 0; font: 700 12px/1 var(--mono); letter-spacing: .13em; animation: marquee 24s linear infinite; }
.marquee span { margin: 0 22px; color: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

.service-section { padding-top: 140px; padding-bottom: 145px; }
.section-intro { display: grid; grid-template-columns: .7fr 1.2fr .9fr; gap: 45px; align-items: start; margin-bottom: 62px; }
.section-intro h2, .price-head h2 { margin: 0; font: 700 clamp(34px, 4.6vw, 62px)/1.15 var(--serif); letter-spacing: -.045em; }
.section-intro h2 span, .price-head h2 span { color: var(--orange); }
.section-intro > p:last-child, .price-head > p { color: var(--ink-soft); font-size: 14px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature-card { position: relative; min-height: 420px; padding: 30px; border: 1px solid var(--ink); }
.feature-card-dark { background: var(--ink); color: var(--white); transform: rotate(-1deg); }
.feature-card-lime { background: var(--lime); transform: translateY(28px) rotate(1deg); }
.feature-card-paper { background: var(--white); transform: rotate(-.5deg); }
.feature-num { position: absolute; right: 20px; top: 18px; font: 600 10px/1 var(--mono); }
.feature-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 20px 0 68px; border: 1px solid currentColor; border-radius: 50%; font-size: 32px; }
.feature-card h3 { margin-bottom: 17px; font: 700 27px/1.25 var(--serif); }
.feature-card p { font-size: 13px; opacity: .8; }
.feature-card a { position: absolute; bottom: 29px; left: 30px; font: 600 11px/1 var(--mono); border-bottom: 1px solid currentColor; }

.process-section { padding-top: 130px; padding-bottom: 140px; background: var(--white); }
.process-section .section-intro { grid-template-columns: .7fr 2.15fr; }
.process-list { border-top: 1px solid var(--ink); }
.process-item { position: relative; display: grid; grid-template-columns: 90px 1fr auto; gap: 30px; align-items: center; min-height: 142px; border-bottom: 1px solid var(--ink); transition: background-color .25s ease, padding-left .25s ease; }
.process-item::before { content: ""; position: absolute; left: -1px; top: 18px; bottom: 18px; width: 3px; background: var(--orange); opacity: 0; transform: scaleY(.45); transition: opacity .25s ease, transform .25s ease; }
.process-item.is-active { padding-left: 14px; background: rgba(216,255,88,.16); }
.process-item.is-active::before { opacity: 1; transform: scaleY(1); }
.process-item.is-active .process-index { font-weight: 800; }
.process-index { font: 500 17px/1 var(--mono); color: var(--orange); }
.process-main h3 { margin: 0 0 6px; font: 700 24px/1.3 var(--serif); }
.process-main p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.process-tag { padding: 8px 13px; border: 1px solid var(--ink); border-radius: 100px; font: 600 9px/1 var(--mono); }

.price-section { padding-top: 135px; padding-bottom: 145px; background: #dfe8dc; }
.price-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.price-card { position: relative; padding: clamp(28px, 5vw, 64px); border: 1px solid var(--ink); background: var(--paper); box-shadow: 14px 14px 0 var(--ink); }
.price-card::before { content: "START AFTER YOU SEE IT"; position: absolute; top: -17px; right: 8%; padding: 8px 15px; border: 1px solid var(--ink); background: var(--lime); font: 700 9px/1 var(--mono); letter-spacing: .12em; transform: rotate(2deg); }
.price-card-top { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.price-kicker { color: var(--orange); font: 700 9px/1 var(--mono); letter-spacing: .14em; }
.price-card h3 { margin-bottom: 10px; font: 700 clamp(28px, 3vw, 42px)/1.2 var(--serif); }
.price-card-top p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }
.price-amount { min-width: 260px; text-align: right; }
.price-amount > span { display: block; margin-bottom: -6px; font-size: 12px; font-weight: 700; }
.price-amount strong { font: 700 clamp(54px, 6vw, 82px)/1 var(--serif); letter-spacing: -.06em; }
.price-amount small { margin-left: 6px; font: 700 16px/1 var(--sans); letter-spacing: 0; }
.price-divider { height: 1px; margin: 42px 0; background: var(--ink); }
.price-details { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; }
.price-details ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; font-size: 14px; font-weight: 700; }
.price-details li span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 10px; border-radius: 50%; background: var(--lime); }
.change-fee { padding-left: 40px; border-left: 1px solid var(--line); }
.change-fee > span { font-size: 12px; font-weight: 700; }
.change-fee strong { display: block; font: 700 38px/1.3 var(--serif); }
.change-fee small { font: 700 12px/1 var(--sans); }
.change-fee p { margin: 4px 0 0; color: var(--ink-soft); font-size: 11px; }
.price-footnote { margin-top: 38px; padding-top: 18px; border-top: 1px dashed var(--line); color: var(--ink-soft); font-size: 10px; }

.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding-top: 140px; padding-bottom: 145px; }
.faq-title h2 { margin-bottom: 18px; font: 700 clamp(36px, 4vw, 54px)/1.1 var(--serif); }
.faq-title > p:last-child { color: var(--ink-soft); font-size: 13px; }
.faq-list { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--ink); }
summary { display: flex; justify-content: space-between; align-items: center; gap: 25px; min-height: 84px; cursor: pointer; list-style: none; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { font: 400 24px/1 var(--serif); transition: transform .25s; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -7px 45px 27px 0; color: var(--ink-soft); font-size: 13px; }
.cta-section { position: relative; min-height: 430px; padding-top: 95px; padding-bottom: 90px; overflow: hidden; text-align: center; background: var(--ink); color: var(--white); }
.cta-section h2 { position: relative; z-index: 2; margin-bottom: 15px; font: 700 clamp(42px, 6vw, 78px)/1.1 var(--serif); letter-spacing: -.05em; }
.cta-section > p:not(.eyebrow) { position: relative; z-index: 2; color: rgba(255,255,255,.72); font-size: 14px; }
.button-light { position: relative; z-index: 2; margin-top: 15px; background: var(--lime); color: var(--ink); }
.cta-mail { position: relative; z-index: 2; display: block; margin-top: 20px; font: 500 10px/1 var(--mono); }
.cta-orb { position: absolute; left: 50%; top: 64%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--orange), #bd361f 55%, #722316); opacity: .42; filter: blur(2px); transform: translate(-50%,-50%); }
.site-footer { padding: 65px clamp(24px, 7vw, 104px) 28px; background: var(--paper-deep); }
.footer-top { display: grid; grid-template-columns: .75fr .75fr 1fr; gap: 35px; align-items: start; }
.footer-top > p { font: 700 18px/1.5 var(--serif); }
.footer-links { display: grid; justify-items: end; gap: 10px; font-size: 11px; font-weight: 700; }
.footer-links a { border-bottom: 1px solid transparent; }
.footer-links a:hover { border-color: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 58px; padding-top: 20px; border-top: 1px solid var(--line); font: 500 9px/1 var(--mono); letter-spacing: .1em; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-main { width: min(860px, calc(100% - 48px)); margin: 0 auto; padding: 88px 0 120px; }
.legal-main .eyebrow { color: var(--orange); }
.legal-main h1 { margin-bottom: 20px; font-size: clamp(38px, 6vw, 66px); }
.legal-lead { margin-bottom: 55px; color: var(--ink-soft); font-size: 14px; }
.legal-section { padding: 27px 0 24px; border-top: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 10px; font: 700 22px/1.4 var(--serif); }
.legal-section p, .legal-section li, .legal-table { color: var(--ink-soft); font-size: 13px; }
.legal-section ul, .legal-section ol { margin: 10px 0 0; padding-left: 1.4em; }
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table th, .legal-table td { padding: 16px 12px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { width: 30%; color: var(--ink); font-weight: 800; }
.legal-back { display: inline-flex; margin-top: 48px; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .hero-visual.reveal { transform: translate3d(0, var(--hero-parallax-y, 0px), 0); }

@media (max-width: 900px) {
  .site-header { min-height: 74px; }
  .menu-toggle { display: grid; grid-template-columns: auto 22px; align-items: center; column-gap: 10px; font-size: 11px; font-weight: 800; }
  .menu-toggle i { grid-column: 2; display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .2s; }
  .menu-toggle i:last-child { margin-top: -7px; }
  .menu-toggle[aria-expanded="true"] i { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--ink); background: var(--paper); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 13px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 62px; }
  .hero-visual { min-height: 490px; width: min(600px, 100%); margin: 0 auto; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-card { min-height: 330px; }
  .feature-card-lime { transform: rotate(1deg); }
  .feature-icon { margin-bottom: 35px; }
  .price-head, .faq-section { grid-template-columns: 1fr; gap: 42px; }
  .price-card-top { align-items: flex-start; flex-direction: column; }
  .price-amount { text-align: left; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-items: start; margin-top: 18px; }
}

@media (max-width: 600px) {
  .section-pad { padding-left: 21px; padding-right: 21px; }
  .hero { padding-top: 50px; padding-bottom: 70px; }
  h1 { font-size: 44px; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .button { width: 100%; }
  .hero-note { display: block; }
  .hero-visual { min-height: 385px; }
  .mock-window { left: 1%; width: 92%; box-shadow: 10px 12px 0 var(--ink); }
  .mock-content { min-height: 285px; padding: 25px 22px; }
  .mock-title { margin-top: 42px; font-size: 34px; }
  .mock-arch { width: 190px; height: 260px; right: -75px; }
  .float-card-top { right: 0; }
  .float-card-bottom { bottom: 25px; }
  .service-section, .process-section, .price-section, .faq-section { padding-top: 95px; padding-bottom: 100px; }
  .process-item { grid-template-columns: 45px 1fr; gap: 12px; padding: 23px 0; }
  .process-tag { grid-column: 2; justify-self: start; }
  .price-card { box-shadow: 8px 8px 0 var(--ink); }
  .price-amount { min-width: 0; }
  .price-details { grid-template-columns: 1fr; gap: 30px; }
  .change-fee { padding: 25px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .faq-section { gap: 20px; }
  .cta-section { padding-top: 80px; padding-bottom: 75px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .legal-main { width: min(100% - 40px, 860px); padding-top: 60px; }
  .legal-table, .legal-table tbody, .legal-table tr, .legal-table th, .legal-table td { display: block; }
  .legal-table tr { padding: 15px 0; border-top: 1px solid var(--line); }
  .legal-table th, .legal-table td { width: 100%; padding: 2px 0; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual, .js .hero-visual.reveal { transform: none; }
}
