:root {
  --paper: #f5faff;
  --paper-deep: #e6f2ff;
  --surface: #ffffff;
  --ink: #061d4d;
  --ink-soft: #12366c;
  --muted: #58708d;
  --line: rgba(6, 64, 135, 0.16);
  --blue: #0878f9;
  --blue-deep: #052a82;
  --yellow: #52dff4;
  --coral: #8b70ff;
  --lavender: #b267ff;
  --green: #11aebf;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 22px 70px rgba(8, 52, 124, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
  --font-sans: "Avenir Next", Avenir, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-display: "Arial Black", "Avenir Next", "Hiragino Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.035em; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { 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 { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; background: var(--yellow); color: var(--ink); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.site-header {
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(6, 64, 135, 0.12);
  background: rgba(248, 252, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header--solid { position: relative; background: rgba(255, 255, 255, .94); }
.site-header__inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark { position: relative; width: 43px; height: 43px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; color: #fff; background: var(--blue); font-family: var(--font-display); font-size: 13px; letter-spacing: -.06em; transform: rotate(-2deg); }
.brand__mark i { position: absolute; right: -7px; bottom: -7px; width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); }
.brand__mark span { position: relative; z-index: 1; }
.brand__name { display: flex; flex-wrap: wrap; max-width: 160px; font-size: 15px; font-weight: 900; line-height: 1.05; letter-spacing: -.08em; }
.brand__name > span { color: var(--blue); }
.brand__name small { flex-basis: 100%; margin-top: 4px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .17em; }

.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a, .text-link { position: relative; font-size: 13px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--blue); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(17, 17, 15, .18); }
.button--small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button--ink { background: var(--ink); color: #fff; }
.button--yellow { background: var(--yellow); color: var(--ink); }
.button--outline { border-color: var(--ink); background: transparent; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: #fff; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 78px 0 0; z-index: 90; padding: 28px 24px; background: var(--surface); }
.mobile-menu a { display: block; padding: 19px 4px; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 800; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 5px; background: var(--blue); transform: skewX(-24deg); }
.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--light > span { background: var(--yellow); }

.hero { position: relative; overflow: hidden; background: #f8fcff; border-bottom: 1px solid rgba(6, 64, 135, .12); }
.hero__poster { position: relative; width: 100%; height: clamp(340px, 30.956vw, 610px); overflow: hidden; isolation: isolate; background: #f8fcff; }
.hero__picture { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.hero__art { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 53%; will-change: transform; animation: hero-scene-breathe 18s ease-in-out infinite alternate; }
.hero__network { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .72; mix-blend-mode: multiply; }
.hero__copy { position: absolute; z-index: 3; top: 6.4%; left: 50%; width: min(58%, 940px); color: #041b4e; text-align: center; transform: translateX(-50%); text-shadow: 0 2px 22px rgba(255, 255, 255, .96); }
.hero__kicker { margin: 0 0 .8%; font-size: clamp(13px, 1.42vw, 25px); font-weight: 900; line-height: 1.3; letter-spacing: .055em; }
.hero__copy h1 { margin: 0; font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; font-size: clamp(40px, 5.15vw, 80px); font-weight: 900; line-height: 1.08; letter-spacing: -.065em; white-space: nowrap; }
.hero__nickname { width: clamp(118px, 14.5vw, 224px); min-height: clamp(30px, 3.1vw, 48px); display: inline-flex; align-items: center; justify-content: center; margin: 1.15% auto .75%; border-radius: 999px; background: #087cf3; color: #fff; box-shadow: 0 10px 28px rgba(0, 116, 239, .2); font-size: clamp(16px, 1.72vw, 27px); font-weight: 900; line-height: 1; letter-spacing: .07em; text-shadow: none; }
.hero__lead { margin: 0; font-size: clamp(14px, 1.47vw, 23px); font-weight: 900; line-height: 1.45; letter-spacing: .025em; }
.hero__floating-cards { position: absolute; z-index: 2; inset: 0; pointer-events: none; perspective: 900px; }
.hero__float { position: absolute; display: block; aspect-ratio: 3 / 2; will-change: transform; filter: drop-shadow(0 12px 18px rgba(17, 43, 104, .22)); }
.hero-card { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; border: 1px solid rgba(121, 191, 255, .62); border-radius: 11%; background: #020a2b; box-shadow: inset 0 0 0 1px rgba(169, 92, 255, .28); will-change: transform; transform-style: preserve-3d; animation: hero-card-float-a 9s ease-in-out infinite; }
.hero-card > img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; }
.hero-card__copy { position: absolute; z-index: 1; top: 31%; right: 5.5%; bottom: 6%; left: 6%; display: flex; flex-direction: column; color: #fff; text-align: left; text-shadow: 0 2px 8px rgba(0, 0, 0, .95); }
.hero-card__copy b { font-size: clamp(8px, .82vw, 14px); line-height: 1.15; letter-spacing: -.02em; white-space: nowrap; }
.hero-card__copy small { margin-top: 3.5%; color: rgba(255, 255, 255, .8); font-size: clamp(5px, .43vw, 8px); font-style: normal; font-weight: 700; line-height: 1.2; white-space: nowrap; }
.hero-card__copy i { display: flex; justify-content: space-between; gap: 5px; margin-top: auto; color: rgba(255, 255, 255, .72); font-size: clamp(4px, .37vw, 7px); font-style: normal; line-height: 1; white-space: nowrap; }
.hero-card__copy em { color: #ffb84b; font-style: normal; }
.hero__float--web { left: 8.2%; top: 2.6%; width: 12.6%; }
.hero__float--assistant { left: 4.55%; top: 34.1%; width: 13.55%; }
.hero__float--design { left: 5.15%; top: 65%; width: 15.5%; }
.hero__float--video { right: 8.45%; top: 2.7%; width: 14.65%; }
.hero__float--saas { right: 4.55%; top: 34%; width: 15.25%; }
.hero__float--invest { right: 7.45%; top: 65%; width: 15.4%; }
.hero__float--assistant .hero-card, .hero__float--saas .hero-card { animation-name: hero-card-float-b; animation-duration: 11s; }
.hero__float--design .hero-card, .hero__float--invest .hero-card { animation-name: hero-card-float-c; animation-duration: 13s; }
.hero__float--video .hero-card { animation-delay: -4.5s; }
.hero__float--saas .hero-card { animation-delay: -7s; }
.hero__float--invest .hero-card { animation-delay: -3s; }
@keyframes hero-scene-breathe { 0% { transform: scale(1.008) translate3d(0, 0, 0); } 100% { transform: scale(1.025) translate3d(0, -2px, 0); } }
@keyframes hero-card-float-a { 0%, 100% { transform: translate3d(0, 0, 0) rotateZ(-1.2deg) rotateY(-1deg); } 50% { transform: translate3d(0, -7px, 12px) rotateZ(-.15deg) rotateY(1.5deg) scale(1.012); } }
@keyframes hero-card-float-b { 0%, 100% { transform: translate3d(0, -2px, 0) rotateZ(.85deg) rotateY(1deg); } 50% { transform: translate3d(3px, 6px, 14px) rotateZ(-.25deg) rotateY(-1.6deg) scale(1.013); } }
@keyframes hero-card-float-c { 0%, 100% { transform: translate3d(0, 2px, 0) rotateZ(-.55deg) rotateY(-1.4deg); } 50% { transform: translate3d(-3px, -6px, 13px) rotateZ(.4deg) rotateY(1.2deg) scale(1.012); } }

.section-heading h2 em, .prompt-story h2 em { position: relative; color: var(--blue); font-style: normal; }
.hero-search__icon, .catalog-search > span { position: relative; flex: 0 0 auto; width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 50%; opacity: .55; }
.hero-search__icon::after, .catalog-search > span::after { content: ""; position: absolute; right: -6px; bottom: -3px; width: 7px; height: 2px; background: currentColor; transform: rotate(45deg); }

.ticker { overflow: hidden; border-block: 1px solid var(--blue-deep); background: var(--blue-deep); color: #fff; }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 13px 0; animation: ticker 28s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-size: 12px; letter-spacing: .09em; }
.ticker__track i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading--split { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 72px; }
.section-heading h2, .prompt-story h2, .journey-heading h2, .trust h2, .faq h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 76px); line-height: 1.04; }
.section-heading--split > p { margin-bottom: 3px; color: var(--muted); font-size: 15px; line-height: 2; }
.entry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--ink); }
.entry-card { position: relative; min-height: 420px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border-right: 1px solid var(--ink); background: var(--surface); transition: transform .24s ease, box-shadow .24s ease; }
.entry-card:last-child { border-right: 0; }
.entry-card:hover { z-index: 2; transform: translateY(-9px) rotate(.3deg); box-shadow: var(--shadow); }
.entry-card--blue { background: var(--blue); color: #fff; }
.entry-card--yellow { background: var(--yellow); }
.entry-card--coral { background: var(--coral); }
.entry-card--ink { background: var(--ink); color: #fff; }
.entry-card__number { align-self: flex-start; padding: 3px 9px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 900; }
.entry-card__icon { position: relative; width: 118px; height: 118px; display: block; margin: 32px auto 28px; }
.entry-card__icon i { position: absolute; border: 2px solid currentColor; background: rgba(255,255,255,.15); }
.entry-card__icon i:nth-child(1) { inset: 8px 10px 39px 7px; transform: rotate(-5deg); }
.entry-card__icon i:nth-child(2) { inset: 29px -1px 17px 33px; transform: rotate(7deg); }
.entry-card__icon i:nth-child(3) { width: 24px; height: 24px; right: 6px; bottom: 8px; border-radius: 50%; background: var(--yellow); }
.entry-card__icon--sheets i:nth-child(1) { inset: 4px 28px 16px 8px; transform: rotate(-8deg); }
.entry-card__icon--sheets i:nth-child(2) { inset: 15px 14px 5px 24px; transform: rotate(4deg); }
.entry-card__icon--sheets i:nth-child(3) { inset: 32px 2px -5px 43px; width: auto; height: auto; border-radius: 0; background: var(--surface); transform: rotate(10deg); }
.entry-card__icon--progress i:nth-child(1) { inset: 13px; border-radius: 50%; border-width: 13px; border-right-color: transparent; transform: rotate(-30deg); }
.entry-card__icon--progress i:nth-child(2) { inset: 36px; border-radius: 50%; background: var(--yellow); }
.entry-card__icon--arrow i { inset: 46px 7px; height: 22px; border: 0; border-top: 3px solid currentColor; background: none; }
.entry-card__icon--arrow i::after { content: ""; position: absolute; top: -13px; right: 0; width: 24px; height: 24px; border-top: 3px solid currentColor; border-right: 3px solid currentColor; transform: rotate(45deg); }
.entry-card h3 { margin-bottom: 10px; font-size: 21px; }
.entry-card p { margin-bottom: 24px; color: currentColor; font-size: 12px; opacity: .78; }
.entry-card__link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 18px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 800; }
.entry-card__link b { font-size: 19px; }

.section--products { background: var(--ink); color: #fff; }
.section-heading--row { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading--row h2 { font-size: clamp(42px, 5vw, 72px); }
.section-heading__action { max-width: 360px; }
.section-heading__action p { color: rgba(255,255,255,.54); font-size: 13px; }
.arrow-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; }
.arrow-link span { font-size: 18px; transition: transform .2s; }
.arrow-link:hover span { transform: translateX(5px); }
.arrow-link--light { color: #fff; }

.product-grid { display: grid; gap: 20px; }
.product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(17,17,15,.16); border-radius: var(--radius-md); background: var(--surface); color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.section--products .product-card { border-color: rgba(255,255,255,.11); background: #1a1a18; color: #fff; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 22px 46px rgba(0,0,0,.18); }
.product-card__visual { position: relative; aspect-ratio: 16 / 10; margin: 8px; overflow: hidden; border-radius: 12px; background: #ddd; }
.product-card__badges { position: absolute; z-index: 3; top: 12px; left: 12px; display: flex; gap: 6px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(17,17,15,.82); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .05em; backdrop-filter: blur(8px); }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.status-pill--app::before { background: #55da96; }
.status-pill--prompt::before { background: var(--lavender); }
.status-pill--project::before { background: var(--yellow); }
.status-pill--transfer::before { background: var(--coral); }
.product-card__body { padding: 17px 19px 19px; }
.product-card__origin { margin-bottom: 8px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.section--products .product-card__origin { color: #8ca5ff; }
.product-card h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.25; }
.product-card h3 a::after { content: ""; position: absolute; inset: 0; }
.product-card__summary { min-height: 46px; margin-bottom: 18px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.section--products .product-card__summary { color: rgba(255,255,255,.58); }
.product-card__meta { display: flex; justify-content: space-between; align-items: end; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.section--products .product-card__meta { border-color: rgba(255,255,255,.12); }
.product-card__maker { display: flex; align-items: center; gap: 8px; min-width: 0; }
.maker-avatar { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 9px; font-weight: 900; }
.product-card__maker span { overflow: hidden; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.product-card__price { text-align: right; }
.product-card__price b { display: block; font-size: 14px; }
.product-card__price small { color: var(--muted); font-size: 8px; }
.section--products .product-card__price small { color: rgba(255,255,255,.44); }

.product-preview { position: absolute; inset: 0; padding: 36px 20px 20px; overflow: hidden; background: linear-gradient(135deg, #dbe5ff, #f5f7ff); }
.product-preview::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.8), transparent 25%); }
.product-preview--yellow { background: linear-gradient(135deg, #ffe972, #fff8d1); }
.product-preview--coral { background: linear-gradient(135deg, #ff8f7b, #ffe2d8); }
.product-preview--ink { background: linear-gradient(135deg, #25272d, #111); }
.product-preview--lavender { background: linear-gradient(135deg, #c9b5ff, #f0ebff); }
.product-preview--green { background: linear-gradient(135deg, #99dfbd, #e7fff2); }
.mini-browser { position: relative; z-index: 1; width: 94%; height: 92%; margin: auto; overflow: hidden; border: 1px solid rgba(17,17,15,.2); border-radius: 9px 9px 4px 4px; background: #fff; box-shadow: 0 16px 28px rgba(23,30,57,.18); transform: rotate(-1deg); }
.mini-browser__bar { height: 18px; display: flex; align-items: center; gap: 4px; padding: 0 8px; border-bottom: 1px solid #ddd; background: #f7f5ef; }
.mini-browser__bar i { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.mini-browser__bar i:nth-child(2) { background: var(--yellow); }
.mini-browser__bar i:nth-child(3) { background: var(--green); }
.mini-ui { height: calc(100% - 18px); display: grid; grid-template-columns: 29% 1fr; }
.mini-ui__side { padding: 12px 8px; background: #172454; }
.mini-ui__side i { display: block; width: 70%; height: 4px; margin-bottom: 9px; border-radius: 4px; background: rgba(255,255,255,.38); }
.mini-ui__main { padding: 11px; }
.mini-ui__title { width: 44%; height: 7px; margin-bottom: 12px; border-radius: 5px; background: #162455; }
.mini-ui__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.mini-ui__stats i { height: 28px; border-radius: 5px; background: #edf1ff; border: 1px solid #d7e0ff; }
.mini-ui__rows { margin-top: 8px; }
.mini-ui__rows i { display: block; height: 8px; margin-bottom: 5px; border-radius: 3px; background: #efefea; }
.mini-ui__rows i:nth-child(2) { width: 84%; }
.mini-ui__rows i:nth-child(3) { width: 92%; }
.mini-browser--prompt .mini-ui { display: block; background: #191713; }
.mini-browser--prompt .mini-ui__main { height: 100%; padding: 16px; color: #fff; }
.mini-browser--prompt .mini-ui__title { width: 74%; height: 13px; background: var(--yellow); }
.mini-browser--prompt .mini-ui__rows i { height: 6px; background: rgba(255,255,255,.24); }
.mini-browser--prompt .mini-ui__stats i { height: 48px; border: 0; background: #315cff; }
.mini-browser--calendar .mini-ui__main { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: 18px repeat(3, 1fr); gap: 4px; }
.mini-browser--calendar .mini-ui__main i { border-radius: 3px; background: #e7ecff; }
.mini-browser--calendar .mini-ui__main i:nth-child(4n) { background: var(--yellow); }
.mini-browser--chart .mini-ui__main { position: relative; }
.mini-browser--chart .mini-ui__main::before { content: ""; position: absolute; inset: 26px 15px 16px; clip-path: polygon(0 80%, 18% 56%, 35% 65%, 52% 26%, 70% 42%, 100% 4%, 100% 100%, 0 100%); background: linear-gradient(rgba(49,92,255,.75), rgba(49,92,255,.08)); }
.mini-browser--map .mini-ui__main { position: relative; background: repeating-linear-gradient(35deg, #f4f1e8 0 18px, #fff 18px 22px); }
.mini-browser--map .mini-ui__main::after { content: ""; position: absolute; width: 18px; height: 18px; top: 55%; left: 64%; border: 6px solid var(--coral); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }

.prompt-story { overflow: hidden; background: var(--surface); }
.prompt-story__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.prompt-story h2 { margin-bottom: 28px; font-size: clamp(44px, 5vw, 72px); }
.prompt-story__copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 2; }
.check-list { margin: 28px 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: flex; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; }
.check-list li span { color: var(--blue); font-size: 9px; }
.prompt-demo { position: relative; min-height: 590px; padding: 46px 38px 92px; background: var(--yellow); transform: rotate(1deg); }
.prompt-demo::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--ink); pointer-events: none; }
.prompt-demo__tape { position: absolute; z-index: 4; top: -14px; left: 40%; width: 128px; height: 44px; background: rgba(255,255,255,.6); transform: rotate(-4deg); }
.prompt-demo__window { position: relative; z-index: 2; overflow: hidden; border: 2px solid var(--ink); background: #fff; box-shadow: 18px 18px 0 var(--ink); transform: rotate(-2deg); }
.window-bar { height: 34px; display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid var(--ink); background: #eee9df; }
.window-bar > span { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.window-bar > span:nth-child(2) { background: var(--yellow); }
.window-bar > span:nth-child(3) { background: var(--green); }
.window-bar small { margin-left: auto; font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.demo-lp { height: 370px; padding: 16px; background: #eee8dc; }
.demo-lp__nav { display: flex; justify-content: space-between; font-size: 8px; letter-spacing: .1em; }
.demo-lp__nav i { width: 40px; height: 5px; background: var(--ink); }
.demo-lp__hero { height: 210px; display: flex; justify-content: space-between; align-items: center; padding: 24px 14px; }
.demo-lp__hero span { font-family: var(--font-display); font-size: 28px; line-height: .95; letter-spacing: -.08em; }
.demo-lp__hero i { width: 43%; aspect-ratio: 1; border-radius: 50%; background: var(--coral); box-shadow: -35px 16px 0 var(--blue); }
.demo-lp__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.demo-lp__cards i { height: 86px; border: 1px solid var(--ink); background: #fff; }
.prompt-demo__label { position: absolute; z-index: 3; right: 38px; bottom: 32px; left: 38px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 4px 20px; padding: 18px 20px; border: 2px solid var(--ink); background: var(--surface); transform: rotate(2deg); }
.prompt-demo__label span { font-size: 12px; font-weight: 900; }
.prompt-demo__label strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--font-display); font-size: 26px; }
.prompt-demo__label small { font-size: 8px; color: var(--muted); }

.section--journey { background: var(--blue); color: #fff; }
.journey-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 70px; }
.journey-heading h2 { max-width: 760px; font-size: clamp(44px, 5.2vw, 74px); }
.journey { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.journey::before { content: ""; position: absolute; top: 28px; right: 11%; left: 11%; height: 2px; background: rgba(255,255,255,.4); }
.journey li { position: relative; text-align: center; padding: 0 24px; }
.journey__pin { position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 28px; border: 2px solid #fff; border-radius: 50%; background: var(--blue); font-family: var(--font-display); }
.journey li:nth-child(2) .journey__pin, .journey li:nth-child(4) .journey__pin { background: var(--yellow); color: var(--ink); }
.journey small { color: var(--yellow); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.journey h3 { margin: 8px 0 12px; font-size: 18px; }
.journey p { color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.9; }

.trust { background: var(--ink); color: #fff; }
.trust__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.trust h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 72px); }
.trust__copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 2; }
.passport-card { position: relative; padding: 36px; border: 1px solid rgba(255,255,255,.25); border-radius: 22px; overflow: hidden; background: #f8f3e8; color: var(--ink); box-shadow: 22px 22px 0 var(--blue); }
.passport-card::before { content: ""; position: absolute; top: -70px; right: -40px; width: 220px; height: 220px; border: 38px solid var(--yellow); border-radius: 50%; opacity: .75; }
.passport-card__header { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.passport-card__mark { font-family: var(--font-display); font-size: 11px; letter-spacing: .08em; }
.status-dot { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border: 1px solid var(--ink); border-radius: 999px; background: var(--surface); font-size: 9px; font-weight: 900; }
.status-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.passport-card h3 { position: relative; margin-bottom: 4px; font-family: var(--font-display); font-size: 36px; }
.passport-card > p { position: relative; color: var(--muted); font-size: 9px; }
.passport-list { position: relative; margin: 26px 0 20px; border-top: 1px solid var(--line); }
.passport-list > div { display: grid; grid-template-columns: 110px 1fr; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.passport-list span { color: var(--muted); }
.passport-list b { justify-self: end; }
.passport-list b.verified { color: var(--green); }
.passport-list b.pending { color: #a56c00; }
.passport-card > small { color: var(--muted); font-size: 8px; }

.faq { background: var(--surface); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq h2 { margin-bottom: 18px; font-size: clamp(42px, 4.8vw, 68px); }
.faq__grid > div:first-child > p:last-child { color: var(--blue); font-weight: 800; }
.accordion { border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { display: flex; justify-content: space-between; gap: 24px; padding: 23px 0; cursor: pointer; font-size: 14px; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 44px 24px 0; color: var(--muted); font-size: 12px; }

.final-cta { padding: 100px 0; overflow: hidden; background: var(--blue); color: #fff; }
.final-cta__inner { position: relative; }
.final-cta__inner::after { content: "SE"; position: absolute; right: -35px; bottom: -100px; color: rgba(255,255,255,.08); font-family: var(--font-display); font-size: 330px; line-height: 1; letter-spacing: -.14em; }
.final-cta p { color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.final-cta h2 { position: relative; z-index: 1; max-width: 900px; margin-bottom: 38px; font-family: var(--font-display); font-size: clamp(50px, 7vw, 96px); line-height: .98; }
.final-cta__inner > div { position: relative; z-index: 1; display: flex; align-items: center; gap: 28px; }

.site-footer { padding: 68px 0 24px; background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.brand--footer .brand__name small { color: rgba(255,255,255,.45); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1.2fr; align-items: start; gap: 50px; padding-bottom: 54px; }
.site-footer__top > p { max-width: 320px; color: rgba(255,255,255,.5); font-size: 11px; }
.site-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; font-size: 10px; font-weight: 700; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .08em; }

.toast { position: fixed; z-index: 300; right: 24px; bottom: 24px; max-width: 380px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: 12px; transform: translateY(30px); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

/* Catalog */
.catalog-page { min-height: 70vh; }
.catalog-hero { padding: 92px 0 72px; border-bottom: 1px solid var(--ink); background: var(--yellow); }
.catalog-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; }
.catalog-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(50px, 6.2vw, 88px); line-height: .96; }
.catalog-hero__grid > p { margin-bottom: 5px; font-size: 14px; font-weight: 600; }
.catalog-body { padding: 42px 0 100px; }
.catalog-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.catalog-search { width: min(480px, 100%); height: 52px; display: flex; align-items: center; gap: 13px; padding: 6px 6px 6px 17px; border: 1px solid var(--ink); border-radius: 999px; background: var(--surface); }
.catalog-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; font-size: 12px; }
.catalog-search button { align-self: stretch; min-width: 72px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-chip { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.filter-chip:hover, .filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalog-summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.catalog-summary p { margin: 0; font-size: 10px; }
.catalog-summary strong { margin-right: 3px; font-family: var(--font-display); font-size: 20px; }
.catalog-summary > span { padding: 4px 9px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 8px; }
.empty-state { padding: 90px 20px; text-align: center; }
.empty-state > span { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 20px; border: 2px solid var(--ink); border-radius: 50%; font-family: var(--font-display); font-size: 26px; }
.empty-state h2 { margin-bottom: 8px; font-size: 28px; }
.empty-state p { color: var(--muted); font-size: 12px; }
.catalog-callout { padding: 28px 0; background: var(--blue); color: #fff; }
.catalog-callout__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; font-size: 12px; font-weight: 800; }
.catalog-callout a { padding-bottom: 3px; border-bottom: 1px solid currentColor; }

/* Product detail */
.product-page { min-height: 70vh; }
.product-detail-hero { padding: 30px 0 76px; border-bottom: 1px solid var(--ink); background: var(--paper); }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 9px; }
.breadcrumbs a:hover { color: var(--blue); }
.product-detail-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: start; }
.product-detail-visual { position: relative; min-height: 560px; overflow: hidden; border: 1px solid var(--ink); border-radius: var(--radius-md); background: #dbe5ff; }
.product-detail-visual .product-preview { padding: 70px 60px 42px; }
.product-detail-visual .mini-browser { height: 94%; }
.product-detail-visual .mini-ui__side { padding: 28px 18px; }
.product-detail-visual .mini-ui__main { padding: 24px; }
.product-detail-visual .mini-ui__stats i { height: 66px; }
.product-detail-summary { position: sticky; top: 24px; padding-top: 5px; }
.product-detail-summary .status-pill { margin-bottom: 20px; }
.product-detail-summary h1 { margin-bottom: 13px; font-family: var(--font-display); font-size: clamp(44px, 5vw, 68px); line-height: .98; }
.product-detail-summary__origin { color: var(--blue); font-size: 10px; font-weight: 900; }
.product-detail-summary__lead { margin: 21px 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.product-detail-summary__maker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding: 12px 0; border-block: 1px solid var(--line); }
.product-detail-summary__maker .maker-avatar { width: 38px; height: 38px; }
.product-detail-summary__maker span { display: block; }
.product-detail-summary__maker b { display: block; font-size: 11px; }
.product-detail-summary__maker small { color: var(--muted); font-size: 9px; }
.purchase-box { padding: 22px; border: 1px solid var(--ink); border-radius: 14px; background: var(--surface); }
.purchase-box__price { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.purchase-box__price span { color: var(--muted); font-size: 9px; }
.purchase-box__price strong { font-family: var(--font-display); font-size: 28px; }
.purchase-box .button { width: 100%; }
.purchase-box > small { display: block; margin-top: 11px; color: var(--muted); font-size: 8px; text-align: center; }
.product-detail-body { padding: 86px 0 110px; background: var(--surface); }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 80px; align-items: start; }
.story-quote { margin-bottom: 70px; padding-left: 28px; border-left: 6px solid var(--yellow); }
.story-quote small { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.story-quote blockquote { margin: 10px 0 0; font-size: clamp(24px, 3vw, 40px); font-weight: 800; line-height: 1.55; letter-spacing: -.04em; }
.detail-section { margin-bottom: 62px; }
.detail-section h2 { margin-bottom: 20px; font-size: 28px; }
.detail-section > p { color: var(--muted); font-size: 13px; line-height: 2; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 11px; font-weight: 700; }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.rights-table { border-top: 1px solid var(--ink); }
.rights-table > div { display: grid; grid-template-columns: 170px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.rights-table span { color: var(--muted); }
.rights-table b { justify-self: end; text-align: right; }
.product-passport { position: sticky; top: 24px; padding: 25px; border: 1px solid var(--ink); border-radius: 16px; background: var(--paper); }
.product-passport__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.product-passport__top span { font-family: var(--font-display); font-size: 10px; }
.product-passport__top small { color: var(--muted); font-size: 8px; }
.product-passport h2 { margin-bottom: 5px; font-size: 24px; }
.product-passport > p { color: var(--muted); font-size: 9px; }
.passport-facts { margin: 24px 0; border-top: 1px solid var(--line); }
.passport-facts > div { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 9px; }
.passport-facts span { color: var(--muted); }
.passport-facts b.ok { color: var(--green); }
.passport-facts b.warn { color: #a56c00; }
.passport-note { padding: 12px; border-radius: 8px; background: var(--surface); color: var(--muted); font-size: 8px; }
.related-section { padding: 90px 0; background: var(--paper); }
.related-section__top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 30px; }
.related-section h2 { margin: 0; font-size: 34px; }
.not-found { padding: 120px 24px; text-align: center; }
.not-found h1 { font-size: 46px; }
.not-found p { color: var(--muted); }

/* Submit */
.submit-intro { padding: 86px 0 74px; border-bottom: 1px solid var(--ink); background: var(--blue); color: #fff; }
.submit-intro__grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.submit-intro h1 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 5.8vw, 82px); line-height: 1.02; }
.submit-intro__note { padding: 20px; border: 1px solid rgba(255,255,255,.5); }
.submit-intro__note span { display: inline-block; margin-bottom: 8px; padding: 2px 7px; background: var(--yellow); color: var(--ink); font-size: 8px; font-weight: 900; }
.submit-intro__note p { margin: 0; color: rgba(255,255,255,.7); font-size: 10px; }
.submit-workspace { padding: 60px 0 110px; background: var(--paper); }
.submit-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 60px; align-items: start; }
.submit-progress { position: sticky; top: 24px; }
.submit-progress > p { margin-bottom: 18px; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.submit-progress ol { margin: 0; padding: 0; list-style: none; }
.submit-progress li { display: flex; gap: 13px; padding: 15px 0; opacity: .38; }
.submit-progress li.is-active, .submit-progress li.is-complete { opacity: 1; }
.submit-progress li > span { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 900; }
.submit-progress li.is-active > span { background: var(--yellow); }
.submit-progress li.is-complete > span { background: var(--ink); color: #fff; }
.submit-progress li b { display: block; font-size: 11px; }
.submit-progress li small { color: var(--muted); font-size: 8px; }
.submit-progress__help { margin-top: 30px; padding: 18px; border: 1px solid var(--line); background: var(--surface); }
.submit-progress__help b { font-size: 10px; }
.submit-progress__help p { margin: 7px 0 0; color: var(--muted); font-size: 9px; }
.submit-form { min-width: 0; padding: 42px; border: 1px solid var(--ink); background: var(--surface); }
.form-step__heading { margin-bottom: 34px; }
.form-step__heading > span { color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.form-step__heading h2 { margin: 7px 0 9px; font-size: clamp(30px, 4vw, 46px); }
.form-step__heading p { color: var(--muted); font-size: 11px; }
.intent-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.intent-options label { position: relative; min-height: 180px; display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 20px; border: 1px solid var(--line); cursor: pointer; transition: border .2s, background .2s; }
.intent-options label:has(input:checked) { border-color: var(--ink); background: #f2f5ff; box-shadow: inset 0 0 0 1px var(--ink); }
.intent-options input { position: absolute; opacity: 0; }
.intent-options__mark { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 8px; font-weight: 900; }
.intent-options b { display: block; margin-bottom: 5px; font-size: 14px; }
.intent-options p { margin: 0 0 11px; color: var(--muted); font-size: 9px; line-height: 1.7; }
.intent-options small { display: inline-block; padding: 3px 7px; border-radius: 99px; background: var(--paper-deep); font-size: 7px; font-weight: 800; }
.intent-options label > i { position: absolute; right: 18px; bottom: 18px; width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 50%; }
.intent-options label:has(input:checked) > i { border: 5px solid var(--blue); }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.back-button { border: 0; background: none; cursor: pointer; font-size: 11px; font-weight: 800; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field--wide { grid-column: 1 / -1; }
.field > span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--paper); font-size: 12px; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { padding: 13px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(49,92,255,.14); }
.field small { display: block; margin-top: 5px; color: var(--muted); font-size: 8px; }
.review-card { margin-bottom: 24px; padding: 23px; border: 1px solid var(--ink); background: var(--yellow); }
.review-card__top { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 25px; font-size: 8px; font-weight: 900; }
.review-card h3 { margin-bottom: 7px; font-size: 27px; }
.review-card p { margin: 0; font-size: 10px; }
.verification-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.verification-grid > div { padding: 15px; border: 1px solid var(--line); }
.verification-grid span { color: var(--blue); font-size: 8px; font-weight: 900; }
.verification-grid b { display: block; margin: 7px 0 4px; font-size: 11px; }
.verification-grid p { margin: 0; color: var(--muted); font-size: 8px; }
.verification-grid small { display: block; margin-top: 8px; font-size: 7px; font-weight: 800; }
.consent { display: flex; gap: 12px; margin-top: 20px; padding: 15px; border: 1px solid var(--line); cursor: pointer; }
.consent input { position: absolute; opacity: 0; }
.consent > span { width: 18px; height: 18px; display: block; flex: 0 0 auto; border: 1px solid var(--ink); }
.consent:has(input:checked) > span { background: var(--blue); box-shadow: inset 0 0 0 4px var(--surface); }
.consent p { margin: 0; color: var(--muted); font-size: 9px; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 920px); }
  .desktop-nav { gap: 18px; }
  .hero__copy { top: 8%; width: 60%; }
  .hero__float--web { left: 5%; }
  .hero__float--assistant { left: 2%; }
  .hero__float--design { left: 2.5%; }
  .hero__float--video { right: 5%; }
  .hero__float--saas { right: 2%; }
  .hero__float--invest { right: 2.5%; }
  .entry-grid { grid-template-columns: repeat(2, 1fr); }
  .entry-card:nth-child(2) { border-right: 0; }
  .entry-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .product-grid--featured, .product-grid--catalog { grid-template-columns: repeat(2, 1fr); }
  .prompt-story__grid, .trust__grid { gap: 52px; }
  .product-detail-grid { grid-template-columns: 1.1fr .9fr; gap: 30px; }
  .product-detail-visual { min-height: 460px; }
  .product-detail-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; }
  .catalog-tools { align-items: flex-start; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }
  .desktop-nav, .desktop-only { display: none; }
  .menu-button { display: block; }
  .site-header__inner { height: 68px; }
  .mobile-menu { inset: 68px 0 0; }
  .brand__mark { width: 39px; height: 39px; }
  .brand__name { font-size: 13px; }
  .hero__poster { height: clamp(500px, 148vw, 620px); }
  .hero__art { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
  .hero__copy { top: 8.5%; width: calc(100% - 30px); }
  .hero__kicker { margin-bottom: 7px; font-size: clamp(12px, 3.65vw, 15px); letter-spacing: .035em; }
  .hero__copy h1 { font-size: clamp(28px, 8.7vw, 36px); letter-spacing: -.075em; }
  .hero__nickname { width: 112px; min-height: 32px; margin: 10px auto 8px; font-size: 17px; }
  .hero__lead { font-size: clamp(14px, 4.15vw, 17px); line-height: 1.45; }
  .hero__network { opacity: .58; }
  .hero__float { filter: drop-shadow(0 8px 13px rgba(17, 43, 104, .2)); }
  .hero__float--web { left: -18%; top: -4%; width: 38%; }
  .hero__float--video { right: -18%; top: -4%; width: 38%; }
  .hero__float--assistant { left: -23%; top: 49%; width: 44%; }
  .hero__float--saas { right: -23%; top: 49%; width: 44%; }
  .hero__float--design { left: -15%; top: 76%; width: 40%; }
  .hero__float--invest { right: -15%; top: 76%; width: 40%; }
  .hero-card__copy { top: 30%; right: 5%; bottom: 6%; left: 6%; }
  .hero-card__copy b { font-size: 8px; }
  .hero-card__copy small { font-size: 5px; }
  .hero-card__copy i { font-size: 4px; }
  .section { padding: 82px 0; }
  .section-heading--split, .prompt-story__grid, .trust__grid, .faq__grid, .catalog-hero__grid, .submit-intro__grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading--split { margin-bottom: 48px; }
  .section-heading h2, .prompt-story h2, .journey-heading h2, .trust h2, .faq h2 { font-size: clamp(39px, 11vw, 56px); }
  .entry-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 370px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .entry-card:nth-child(3) { border-bottom: 1px solid var(--ink); }
  .entry-card:last-child { border-bottom: 0; }
  .section-heading--row { align-items: flex-start; flex-direction: column; gap: 28px; }
  .product-grid--featured, .product-grid--catalog { grid-template-columns: 1fr; }
  .product-card__summary { min-height: auto; }
  .prompt-story__grid { gap: 60px; }
  .prompt-demo { min-height: 500px; padding: 40px 24px 100px; }
  .demo-lp { height: 310px; }
  .demo-lp__hero { height: 175px; }
  .demo-lp__hero span { font-size: 22px; }
  .prompt-demo__label { right: 24px; left: 24px; grid-template-columns: 1fr; }
  .prompt-demo__label strong { grid-row: auto; grid-column: auto; }
  .journey-heading { align-items: flex-start; flex-direction: column; }
  .journey { grid-template-columns: 1fr; gap: 30px; }
  .journey::before { top: 0; right: auto; bottom: 0; left: 28px; width: 2px; height: auto; }
  .journey li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 0; text-align: left; }
  .journey__pin { margin: 0; }
  .passport-card { padding: 25px 20px; box-shadow: 10px 10px 0 var(--blue); }
  .passport-card h3 { font-size: 28px; }
  .passport-list > div { grid-template-columns: 90px 1fr; }
  .faq__grid { gap: 48px; }
  .final-cta h2 { font-size: clamp(46px, 13vw, 72px); }
  .final-cta__inner > div { align-items: flex-start; flex-direction: column; }
  .final-cta__inner::after { font-size: 210px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 6px; }
  .catalog-hero, .submit-intro { padding: 70px 0 54px; }
  .catalog-hero h1, .submit-intro h1 { font-size: clamp(44px, 12vw, 62px); }
  .catalog-tools { margin-bottom: 26px; }
  .catalog-search { width: 100%; }
  .filter-row { gap: 6px; }
  .catalog-callout__inner { align-items: flex-start; flex-direction: column; }
  .product-detail-hero { padding-bottom: 50px; }
  .product-detail-grid, .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-visual { min-height: 350px; }
  .product-detail-visual .product-preview { padding: 58px 24px 24px; }
  .product-detail-summary, .product-passport { position: static; }
  .product-detail-summary h1 { font-size: 46px; }
  .product-detail-body { padding: 65px 0 80px; }
  .feature-list { grid-template-columns: 1fr; }
  .rights-table > div { grid-template-columns: 1fr; gap: 3px; }
  .rights-table b { justify-self: start; text-align: left; }
  .related-section__top { align-items: flex-start; flex-direction: column; gap: 15px; }
  .submit-layout { grid-template-columns: 1fr; gap: 28px; }
  .submit-progress { position: static; }
  .submit-progress > p, .submit-progress__help { display: none; }
  .submit-progress ol { display: grid; grid-template-columns: repeat(3, 1fr); }
  .submit-progress li { align-items: center; flex-direction: column; text-align: center; }
  .submit-progress li small { display: none; }
  .submit-form { padding: 25px 18px; }
  .intent-options, .field-grid, .verification-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
}

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

/* Marketplace home — composition adapted from a dense Japanese service market */
.market-home-root { overflow-x: clip; }

body[data-page="home"] {
  --market-blue: #1769e8;
  --market-blue-dark: #082f72;
  --market-cyan: #11b8ce;
  --market-violet: #7559ff;
  --market-orange: #ff815e;
  --market-pink: #e72d7e;
  --market-text: #202a37;
  --market-muted: #667180;
  --market-line: #dfe4ea;
  --market-soft: #f3f7fd;
  min-width: 320px;
  padding-bottom: 68px;
  color: var(--market-text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.55;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3,
body[data-page="home"] h4 { letter-spacing: -.035em; }

.market-home .shell { width: min(1240px, calc(100vw - 48px)); }

.market-header {
  position: relative;
  z-index: 120;
  border-bottom: 0;
  background: #fff;
  backdrop-filter: none;
}

.market-header__primary {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.market-brand { flex: 0 0 auto; }
.market-brand .brand__mark { width: 38px; height: 38px; border-radius: 10px; box-shadow: none; }
.market-brand .brand__name { font-size: 14px; }
.market-brand .brand__name small { font-size: 6px; }

.market-search {
  height: 40px;
  display: flex;
  overflow: hidden;
  border: 1px solid #aeb8c4;
  border-radius: 7px;
  background: #fff;
}

.market-search select,
.market-search input,
.market-search button {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  outline: 0;
}

.market-search select {
  width: 135px;
  padding: 0 30px 0 12px;
  border-right: 1px solid var(--market-line);
  color: #415064;
  font-size: 12px;
  font-weight: 700;
}

.market-search input { flex: 1; padding: 0 12px; color: var(--market-text); font-size: 13px; }
.market-search input::placeholder { color: #99a3af; }
.market-search button { width: 44px; display: grid; place-items: center; flex: 0 0 auto; cursor: pointer; }
.market-search button:hover { background: var(--market-soft); }
.market-search:focus-within { border-color: var(--market-blue); box-shadow: 0 0 0 3px rgba(23, 105, 232, .13); }
.market-search--header { width: min(430px, 38vw); }

.market-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.market-header__help { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #728093; border-radius: 50%; color: #596779; font-size: 13px; font-weight: 900; }
.market-header__login,
.market-header__submit { min-height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 0 17px; border: 1px solid var(--market-blue); border-radius: 6px; color: var(--market-blue); font-size: 12px; font-weight: 800; }
.market-header__submit { border-color: var(--market-blue); color: #fff; background: var(--market-blue); }
.market-header__search-mobile { display: none; }

.market-header__nav { border-top: 1px solid #edf0f3; border-bottom: 1px solid #e7ebef; }
.market-header__nav .shell { min-height: 45px; display: flex; align-items: center; gap: 29px; }
.market-header__nav a { color: #354052; font-size: 11px; white-space: nowrap; }
.market-header__nav a:hover { color: var(--market-blue); }
.market-header__nav a span { margin-left: 3px; color: #7c8795; }
.market-header__nav-submit { margin-left: auto; font-weight: 800; }

.market-promo {
  min-height: 38px;
  display: grid;
  place-items: center;
  background: var(--market-violet);
  color: #fff;
  text-align: center;
}

.market-promo a { padding: 8px 16px; font-size: 13px; font-weight: 900; }
.market-promo span { margin-left: 14px; }

.market-hero { padding: 28px 0 36px; background: #fff; }
.market-hero__frame { position: relative; height: 430px; overflow: hidden; background: #f6fbff; }
.market-hero__picture,
.market-hero__picture img,
.market-hero__network { position: absolute; inset: 0; width: 100%; height: 100%; }
.market-hero__picture img { object-fit: cover; object-position: center 53%; }
.market-hero__network { z-index: 2; opacity: .52; pointer-events: none; }
.market-hero__copy { position: absolute; z-index: 3; top: 42px; left: 50%; width: min(520px, 52%); text-align: center; transform: translateX(-50%); }
.market-hero__copy > p { margin: 0 0 4px; color: var(--market-blue); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.market-hero__copy h1 { margin: 0; color: #071d49; font-family: var(--font-display); font-size: clamp(43px, 4.25vw, 61px); line-height: 1; letter-spacing: -.07em; }
.market-hero__mobile-break { display: none; }
.market-hero__copy > span { display: inline-flex; min-height: 28px; align-items: center; margin-top: 10px; padding: 0 18px; border: 1px solid var(--market-blue); border-radius: 99px; color: var(--market-blue); background: rgba(255,255,255,.82); font-size: 13px; font-weight: 900; }
.market-hero__copy strong { display: block; margin-top: 10px; color: #16335e; font-size: 15px; line-height: 1.45; }
.market-hero__copy > a { width: min(420px, 100%); min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 24px; margin: 17px auto 0; border-radius: 7px; color: #fff; background: var(--market-orange); box-shadow: 0 10px 28px rgba(255, 129, 94, .22); font-size: 14px; font-weight: 900; }
.market-hero__copy > a:hover { background: #f36f4b; }
.market-hero__copy > a b { font-size: 20px; }

.market-spectrum { position: absolute; z-index: 4; top: 0; right: 0; left: 0; height: 5px; display: grid; grid-template-columns: repeat(6, 1fr); }
.market-spectrum--bottom { top: auto; bottom: 0; }
.market-spectrum span:nth-child(1) { background: #2e8df6; }
.market-spectrum span:nth-child(2) { background: #10bfd0; }
.market-spectrum span:nth-child(3) { background: #52dff4; }
.market-spectrum span:nth-child(4) { background: #ff815e; }
.market-spectrum span:nth-child(5) { background: #e72d7e; }
.market-spectrum span:nth-child(6) { background: #7559ff; }
.market-mobile-search { display: none; }

.market-section { padding: 58px 0; background: #fff; }
.market-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.market-section__heading p { margin: 0 0 3px; color: var(--market-blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.market-section__heading h2 { margin: 0; color: var(--market-text); font-size: 26px; line-height: 1.25; }
.market-section__heading h2 > span { display: inline-flex; min-height: 24px; align-items: center; margin-left: 8px; padding: 0 8px; border-radius: 4px; color: #4d5c70; background: #edf1f5; font-size: 11px; vertical-align: middle; }
.market-section__heading--scenes { margin-top: 43px; }
.market-section__heading--action { align-items: center; }
.market-section__controls { display: flex; align-items: center; gap: 10px; }
.market-section__controls > a { color: var(--market-blue); font-size: 12px; font-weight: 700; }
.market-section__controls > a { white-space: nowrap; }
.market-section__controls > button { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #ccd4dd; background: #fff; cursor: pointer; }
.market-section__controls > button:hover { border-color: var(--market-blue); background: var(--market-soft); }

.category-market { padding-top: 34px; }
.category-market__layout { display: grid; grid-template-columns: 255px minmax(0, 1fr); gap: 34px; align-items: start; }
.category-rail { min-width: 0; }
.category-rail > p { margin: 0; padding: 0 4px 9px; border-bottom: 1px solid #bbc5cf; color: #596779; font-size: 11px; }
.category-rail > a { min-height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 4px; border-bottom: 1px solid #edf0f3; color: #374254; font-size: 12px; }
.category-rail > a:hover { color: var(--market-blue); }
.category-rail > a span { color: #718093; font-size: 20px; line-height: 1; }
.category-rail__callout { margin-top: 25px; padding: 22px 20px; border: 1px solid #cfe0fb; border-radius: 8px; background: #edf5ff; }
.category-rail__callout b { font-size: 14px; }
.category-rail__callout p { margin: 7px 0 13px; color: var(--market-muted); font-size: 10px; }
.category-rail__callout a { color: var(--market-blue); font-size: 11px; font-weight: 900; }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 23px 12px; }
.category-grid > a { min-width: 0; display: flex; align-items: center; flex-direction: column; text-align: center; }
.category-grid > a > span { width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid #dce2e8; border-radius: 50%; background: #fff; transition: transform .2s, border-color .2s, background .2s; }
.category-grid > a:hover > span { border-color: var(--market-blue); background: #edf5ff; transform: translateY(-2px); }
.category-grid > a:nth-child(2n) > span { background: #f8f5ff; }
.category-grid > a:nth-child(3n) > span { background: #effbfc; }
.category-grid > a > span img { width: 40px; height: 40px; }
.category-grid b { margin-top: 8px; font-size: 13px; }
.category-grid small { margin-top: 1px; color: var(--market-muted); font-size: 9px; }

.scene-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.scene-track > a { position: relative; min-width: 0; aspect-ratio: 1.65; overflow: hidden; border: 1px solid #dfe4e9; border-radius: 6px; background: #071a3c; }
.scene-track img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .3s, opacity .3s; }
.scene-track a:hover img { opacity: 1; transform: scale(1.025); }
.scene-track span { position: absolute; inset: auto 0 0; padding: 10px 13px 12px; color: #fff; background: rgba(0, 8, 31, .78); font-size: 10px; }
.scene-track b { font-size: 15px; }

.market-join { padding: 33px 0; background: #eaf2ff; }
.market-join__inner { display: flex; align-items: center; justify-content: center; gap: 80px; }
.market-join__inner b { display: block; font-size: 18px; }
.market-join__inner p { margin: 3px 0 0; color: var(--market-muted); font-size: 11px; }
.market-join__inner > a { width: 330px; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 42px; border-radius: 7px; color: #fff; background: var(--market-blue); font-size: 14px; font-weight: 900; box-shadow: 0 10px 25px rgba(23, 105, 232, .18); }
.market-join--second { margin-top: 18px; background: #eef0ff; }
.market-join--second .market-join__inner > a { background: var(--market-violet); }

.benefits-market { padding-top: 68px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.benefit-grid article { position: relative; min-width: 0; display: grid; grid-template-columns: 64px 1fr; gap: 15px; padding-top: 39px; }
.benefit-grid article > span { position: absolute; top: 0; left: 0; min-height: 25px; display: inline-flex; align-items: center; padding: 0 11px; border-radius: 4px; color: #fff; background: var(--market-pink); font-family: var(--font-display); font-size: 10px; letter-spacing: .08em; }
.benefit-grid article > img { width: 58px; height: 58px; padding: 9px; border-radius: 50%; background: #edf5ff; }
.benefit-grid h3 { margin: 0 0 8px; font-size: 18px; }
.benefit-grid p { margin: 0; color: #4f5d70; font-size: 12px; line-height: 1.75; }

.recommendation-market { padding-top: 42px; }
.home-product-track { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: thin; }
.home-product-card { min-width: 0; overflow: hidden; border: 1px solid var(--market-line); background: #fff; scroll-snap-align: start; }
.home-product-card__visual { position: relative; aspect-ratio: 1.45; display: block; overflow: hidden; background: #07142f; }
.home-product-card__visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.home-product-card:hover .home-product-card__visual > img { transform: scale(1.025); }
.home-product-card__type { position: absolute; top: 8px; left: 8px; min-height: 21px; display: inline-flex; align-items: center; padding: 0 7px; border-radius: 99px; color: #fff; background: var(--market-blue); font-size: 8px; font-weight: 900; }
.home-product-card__type--prompt { background: var(--market-violet); }
.home-product-card__type--project { background: var(--market-orange); }
.home-product-card__type--transfer { background: #28354a; }
.home-product-card__body { padding: 10px; }
.home-product-card__body > p { margin: 0 0 3px; overflow: hidden; color: #7a8593; font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
.home-product-card h3 { min-height: 40px; margin: 0; font-size: 13px; line-height: 1.45; }
.home-product-card h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-product-card__summary { min-height: 35px; display: -webkit-box; overflow: hidden; margin-top: 5px; color: #606c7d; font-size: 9px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-product-card__facts { display: flex; align-items: center; justify-content: space-between; gap: 7px; margin-top: 9px; }
.home-product-card__facts span { display: flex; align-items: center; gap: 3px; color: var(--market-blue); font-size: 8px; }
.home-product-card__facts img { width: 14px; height: 14px; }
.home-product-card__facts strong { font-size: 12px; white-space: nowrap; }
.home-product-card__maker { display: flex; align-items: center; gap: 5px; margin-top: 8px; padding-top: 7px; border-top: 1px solid #edf0f3; color: #6d7888; font-size: 8px; }
.home-product-card__maker img { width: 18px; height: 18px; }

.maker-market { padding-top: 22px; }
.maker-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; }
.home-maker-card { position: relative; min-width: 0; display: grid; grid-template-columns: 60px 1fr; gap: 11px; align-items: center; overflow: hidden; padding: 11px; border: 1px solid var(--market-line); scroll-snap-align: start; }
.home-maker-card__cover { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; }
.home-maker-card__avatar { position: absolute; top: 48px; left: 48px; width: 23px; height: 23px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: #edf5ff; }
.home-maker-card__avatar img { width: 18px; height: 18px; }
.home-maker-card__copy { min-width: 0; }
.home-maker-card__copy b,
.home-maker-card__copy small,
.home-maker-card__copy em { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.home-maker-card__copy b { font-size: 12px; }
.home-maker-card__copy small { color: var(--market-muted); font-size: 8px; }
.home-maker-card__copy em { margin-top: 5px; color: var(--market-blue); font-size: 8px; font-style: normal; }

.opportunity-market { padding-top: 24px; }
.opportunity-track { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; overflow-x: auto; scroll-snap-type: x proximity; }
.home-opportunity-card { min-width: 0; display: block; padding: 18px; border: 1px solid var(--market-line); background: #fff; scroll-snap-align: start; }
.home-opportunity-card__type { display: inline-flex; margin-bottom: 8px; padding: 3px 7px; border-radius: 4px; color: var(--market-violet); background: #f0edff; font-size: 8px; font-weight: 900; }
.home-opportunity-card > small { display: block; color: #85909d; font-size: 8px; }
.home-opportunity-card h3 { min-height: 42px; margin: 4px 0 12px; font-size: 16px; line-height: 1.4; }
.home-opportunity-card dl { margin: 0; border-top: 1px solid #edf0f3; }
.home-opportunity-card dl > div { display: grid; grid-template-columns: 72px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid #edf0f3; font-size: 9px; }
.home-opportunity-card dt { color: #7c8794; }
.home-opportunity-card dd { margin: 0; font-weight: 800; }
.home-opportunity-card ul { min-height: 42px; margin: 10px 0; padding-left: 16px; color: #586578; font-size: 8px; }
.home-opportunity-card__maker { display: flex; align-items: center; gap: 4px; color: #707c8c; font-size: 8px; }

.ranking-market { padding-top: 56px; }
.ranking-group { margin-top: 38px; }
.ranking-group__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.ranking-group__heading h3 { display: flex; align-items: center; gap: 7px; margin: 0; font-size: 17px; }
.ranking-group__heading h3 img { width: 21px; height: 21px; }
.ranking-group__heading a { color: var(--market-blue); font-size: 11px; font-weight: 700; }
.ranking-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; }
.home-ranking-card { min-width: 0; border: 1px solid var(--market-line); background: #fff; scroll-snap-align: start; }
.home-ranking-card__visual { position: relative; aspect-ratio: 1.58; display: block; overflow: hidden; background: #07142f; }
.home-ranking-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.home-ranking-card__visual b { position: absolute; top: 6px; left: 6px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #94712d; font-size: 10px; }
.home-ranking-card > p { margin: 8px 9px 2px; color: var(--market-blue); font-size: 8px; font-weight: 800; }
.home-ranking-card h4 { min-height: 39px; margin: 0 9px; font-size: 12px; line-height: 1.45; }
.home-ranking-card h4 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-ranking-card > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 7px 9px 9px; color: #6f7a89; font-size: 8px; }
.home-ranking-card > div strong { color: var(--market-text); font-size: 11px; white-space: nowrap; }

.story-market { margin-top: 20px; padding: 78px 0; background: #f4f8fd; }
.story-market__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.story-market__copy > p:first-child,
.prompt-market__copy > p:first-child,
.trust-market__copy > p:first-child,
.faq-market__grid > div:first-child > p { margin: 0 0 7px; color: var(--market-blue); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.story-market__copy h2 { margin: 0 0 28px; font-size: clamp(34px, 4vw, 54px); line-height: 1.18; }
.story-market__copy h2 em,
.prompt-market__copy h2 em { color: var(--market-blue); font-style: normal; }
.story-market__copy strong { display: block; margin-bottom: 9px; font-size: 15px; }
.story-market__copy > p:last-child { color: #586578; font-size: 12px; line-height: 1.9; }
.market-journey { margin: 0; padding: 0; list-style: none; border-top: 1px solid #cfd8e3; }
.market-journey li { display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 20px 0; border-bottom: 1px solid #cfd8e3; }
.market-journey li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--market-blue); font-size: 10px; font-weight: 900; }
.market-journey small { color: var(--market-blue); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.market-journey h3 { margin: 1px 0 5px; font-size: 16px; }
.market-journey p { margin: 0; color: #5d6a7c; font-size: 10px; }

.prompt-market { padding: 78px 0; }
.prompt-market__card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--market-line); border-radius: 10px; background: #fff; box-shadow: 0 20px 55px rgba(26, 58, 99, .1); }
.prompt-market__visual { position: relative; min-height: 430px; background: #061531; }
.prompt-market__visual img { width: 100%; height: 100%; object-fit: cover; }
.prompt-market__visual span { position: absolute; top: 18px; left: 18px; padding: 6px 9px; border-radius: 4px; color: #fff; background: rgba(5, 18, 47, .82); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.prompt-market__copy { padding: 54px; }
.prompt-market__copy h2 { margin: 0 0 20px; font-size: clamp(30px, 3vw, 43px); line-height: 1.25; }
.prompt-market__copy > p:not(:first-child) { color: #5b6879; font-size: 11px; line-height: 1.9; }
.prompt-market__copy ul { display: grid; gap: 8px; margin: 22px 0 25px; padding: 0; list-style: none; }
.prompt-market__copy li { display: flex; gap: 8px; font-size: 11px; font-weight: 800; }
.prompt-market__copy li::before { content: "✓"; color: var(--market-blue); }
.prompt-market__copy > a,
.trust-market__copy > a { min-height: 44px; display: inline-flex; align-items: center; gap: 28px; padding: 0 20px; border-radius: 6px; color: #fff; background: var(--market-blue); font-size: 11px; font-weight: 900; }

.trust-market { padding: 80px 0; color: #fff; background: #082552; }
.trust-market__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trust-market__copy > p:first-child { color: #66e6f4; }
.trust-market__copy h2 { margin: 0 0 18px; color: #fff; font-size: clamp(36px, 4vw, 55px); line-height: 1.18; }
.trust-market__copy > p:not(:first-child) { color: #c2d3ea; font-size: 12px; line-height: 1.9; }
.trust-market__copy > a { margin-top: 10px; color: #082552; background: #66e6f4; }
.market-passport { padding: 30px; border-radius: 10px; color: var(--market-text); background: #fff; box-shadow: 12px 12px 0 var(--market-blue); }
.market-passport > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.market-passport > div:first-child span { color: var(--market-blue); font-size: 9px; font-weight: 900; }
.market-passport > div:first-child b { padding: 3px 8px; border-radius: 99px; color: #06784d; background: #dcfaee; font-size: 8px; }
.market-passport h3 { margin: 25px 0 2px; font-size: 29px; }
.market-passport > p { color: #778393; font-size: 9px; }
.market-passport dl { margin: 22px 0; border-top: 1px solid var(--market-line); }
.market-passport dl > div { display: grid; grid-template-columns: 120px 1fr; padding: 11px 0; border-bottom: 1px solid var(--market-line); font-size: 10px; }
.market-passport dt { color: #7c8795; }
.market-passport dd { margin: 0; text-align: right; font-weight: 800; }
.market-passport dd.is-ok { color: #078659; }
.market-passport dd.is-warn { color: #b46c00; }
.market-passport > small { display: block; color: #7a8492; font-size: 8px; }

.faq-market { padding: 78px 0; }
.faq-market__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-market__grid h2 { margin: 0 0 13px; font-size: clamp(34px, 4vw, 54px); line-height: 1.2; }
.faq-market__grid strong { color: var(--market-blue); font-size: 13px; }
.market-accordion details { border-top: 1px solid var(--market-line); }
.market-accordion details:last-child { border-bottom: 1px solid var(--market-line); }
.market-accordion summary { padding: 20px 3px; font-size: 14px; }
.market-accordion details p { margin: 0; padding: 0 38px 19px 3px; color: #647083; font-size: 11px; }

.market-final { padding: 82px 0; color: #fff; background: var(--market-blue); text-align: center; }
.market-final p { margin-bottom: 8px; color: #a9d0ff; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.market-final h2 { margin: 0; color: #fff; font-size: clamp(40px, 5vw, 66px); line-height: 1.14; }
.market-final > div > div { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 29px; }
.market-final a:first-child { min-height: 48px; display: inline-flex; align-items: center; gap: 34px; padding: 0 28px; border-radius: 6px; color: #092a62; background: #67e7f5; font-size: 12px; font-weight: 900; }
.market-final a:last-child { padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 11px; }

.market-footer { padding: 62px 0 24px; color: #d9e0ea; background: #20242b; }
.market-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; }
.market-footer .brand__name { color: #fff; }
.market-footer__brand > p { max-width: 260px; margin: 20px 0 0; color: #9da7b5; font-size: 10px; }
.market-footer__grid > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; }
.market-footer__grid h3 { margin: 0 0 14px; color: #fff; font-size: 12px; }
.market-footer__grid > div:not(:first-child) a { margin: 3px 0; color: #afb8c5; font-size: 10px; }
.market-footer__grid > div:not(:first-child) a:hover { color: #fff; }
.market-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 18px; border-top: 1px solid #3a4049; color: #838e9c; font-size: 8px; }

.market-sticky { position: fixed; z-index: 500; right: 0; bottom: 0; left: 0; min-height: 68px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 10px 22px; border-top: 1px solid #d5dce5; background: rgba(255,255,255,.97); box-shadow: 0 -8px 24px rgba(30, 51, 79, .08); backdrop-filter: blur(12px); }
.market-sticky > span { margin-right: 12px; color: #4d5b6d; font-size: 11px; font-weight: 700; }
.market-sticky > a { min-width: 175px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--market-blue); border-radius: 6px; color: var(--market-blue); font-size: 12px; font-weight: 900; }
.market-sticky > a:last-child { color: #fff; background: var(--market-blue); }

@media (max-width: 1050px) {
  .market-header__nav .shell { gap: 18px; }
  .market-header__nav a { font-size: 10px; }
  .market-header__nav a:nth-child(6),
  .market-header__nav a:nth-child(7) { display: none; }
  .category-market__layout { grid-template-columns: 220px minmax(0, 1fr); gap: 26px; }
  .home-product-track { grid-auto-columns: calc((100% - 40px) / 5); grid-template-columns: none; grid-auto-flow: column; }
  .market-footer__grid { gap: 34px; }
}

@media (max-width: 760px) {
  body[data-page="home"] { padding-bottom: 64px; }
  .market-home .shell { width: calc(100vw - 28px); }
  .market-header__primary { min-height: 62px; gap: 9px; }
  .market-brand { gap: 7px; }
  .market-brand .brand__mark { width: 33px; height: 33px; }
  .market-brand .brand__name { font-size: 9px; }
  .market-brand .brand__name small { display: none; }
  .market-search--header,
  .market-header__nav { display: none; }
  .market-header__actions { gap: 6px; }
  .market-header__help { display: none; }
  .market-header__login,
  .market-header__submit { min-height: 33px; display: inline-flex; flex: 0 0 auto; padding: 0 8px; font-size: 10px; white-space: nowrap; }
  .market-header__search-mobile { width: 26px; height: 36px; display: grid; place-items: center; }
  .market-header .menu-button { width: 32px; height: 32px; display: block; }
  .market-header .mobile-menu { position: fixed; z-index: 300; inset: 62px 0 0; padding: 20px 18px 28px; overflow-y: auto; background: #fff; }
  .market-header .mobile-menu a { padding: 16px 3px; border-bottom: 1px solid var(--market-line); color: var(--market-text); font-size: 13px; }
  .market-search--mobile { margin-bottom: 12px; }
  .market-promo { min-height: 36px; }
  .market-promo a { font-size: 11px; }
  .market-promo span { margin-left: 7px; }

  .market-hero { padding: 0 0 18px; }
  .market-hero__frame { width: 100%; height: 470px; }
  .market-hero__picture img { object-position: center center; }
  .market-hero__network { opacity: .42; }
  .market-hero__copy { top: 43px; width: calc(100% - 40px); }
  .market-hero__copy > p { font-size: 11px; }
  .market-hero__copy h1 { font-size: clamp(38px, 12vw, 48px); line-height: .98; }
  .market-hero__mobile-break { display: block; }
  .market-hero__copy > span { min-height: 26px; margin-top: 9px; font-size: 12px; }
  .market-hero__copy strong { margin-top: 9px; font-size: 13px; }
  .market-hero__copy > a { min-height: 46px; margin-top: 17px; font-size: 13px; }
  .market-mobile-search { display: block; padding: 0 14px 18px; background: #fff; }
  .market-mobile-search .market-search { height: 46px; }

  .market-section { padding: 46px 0; }
  .market-section__heading { margin-bottom: 20px; }
  .market-section__heading p { font-size: 8px; }
  .market-section__heading h2 { font-size: 23px; }
  .market-section__heading h2 > span { display: inline-flex; margin-left: 4px; font-size: 9px; }
  .market-section__controls > a { font-size: 10px; }
  .market-section__controls > button { display: none; }

  .category-market { padding-top: 26px; }
  .category-market__layout { display: block; }
  .category-rail { display: none; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 5px; }
  .category-grid > a > span { width: 62px; height: 62px; }
  .category-grid > a > span img { width: 34px; height: 34px; }
  .category-grid b { font-size: 10px; }
  .category-grid small { display: none; }
  .market-section__heading--scenes { margin-top: 39px; }
  .scene-track { width: calc(100vw - 14px); grid-auto-columns: 78vw; grid-template-columns: none; grid-auto-flow: column; gap: 10px; overflow-x: auto; padding-right: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .scene-track > a { scroll-snap-align: start; }
  .scene-track span { font-size: 10px; }
  .scene-track b { font-size: 15px; }

  .market-join { padding: 29px 0; }
  .market-join__inner { align-items: stretch; flex-direction: column; gap: 17px; text-align: center; }
  .market-join__inner b { font-size: 16px; }
  .market-join__inner p { font-size: 10px; }
  .market-join__inner > a { width: 100%; min-height: 49px; }

  .benefits-market { padding-top: 52px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 38px; }
  .benefit-grid article { grid-template-columns: 57px 1fr; padding-top: 35px; }
  .benefit-grid article > img { width: 52px; height: 52px; }
  .benefit-grid h3 { font-size: 16px; }
  .benefit-grid p { font-size: 11px; }

  .recommendation-market { padding-top: 24px; }
  .home-product-track { width: calc(100vw - 14px); grid-auto-columns: 43vw; grid-template-columns: none; grid-auto-flow: column; gap: 8px; padding-right: 14px; scrollbar-width: none; }
  .home-product-card h3 { min-height: 38px; font-size: 12px; }
  .home-product-card__summary { display: none; }
  .home-product-card__facts { align-items: flex-end; flex-direction: column-reverse; gap: 4px; }
  .home-product-card__facts span { align-self: flex-start; }
  .home-product-card__facts strong { align-self: flex-end; }

  .maker-market,
  .opportunity-market { padding-top: 20px; }
  .maker-track { width: calc(100vw - 14px); grid-auto-columns: 78vw; grid-template-columns: none; grid-auto-flow: column; padding-right: 14px; scrollbar-width: none; }
  .opportunity-track { width: calc(100vw - 14px); grid-auto-columns: 82vw; grid-template-columns: none; grid-auto-flow: column; padding-right: 14px; scrollbar-width: none; }

  .ranking-market { padding-top: 45px; }
  .ranking-group { margin-top: 32px; }
  .ranking-group__heading h3 { font-size: 14px; }
  .ranking-track { width: calc(100vw - 14px); grid-auto-columns: 42vw; grid-template-columns: none; grid-auto-flow: column; padding-right: 14px; scrollbar-width: none; }

  .story-market { padding: 58px 0; }
  .story-market__grid,
  .prompt-market__card,
  .trust-market__grid,
  .faq-market__grid { grid-template-columns: 1fr; gap: 42px; }
  .story-market__copy h2 { font-size: 37px; }
  .market-journey li { grid-template-columns: 43px 1fr; }
  .prompt-market { padding: 58px 0; }
  .prompt-market__visual { min-height: 240px; }
  .prompt-market__copy { padding: 28px 23px 32px; }
  .prompt-market__copy h2 { font-size: 31px; }
  .trust-market { padding: 62px 0; }
  .trust-market__copy h2 { font-size: 38px; }
  .market-passport { padding: 24px 20px; box-shadow: 8px 8px 0 var(--market-blue); }
  .market-passport dl > div { grid-template-columns: 92px 1fr; }
  .faq-market { padding: 60px 0; }
  .faq-market__grid { gap: 36px; }
  .faq-market__grid h2 { font-size: 37px; }

  .market-final { padding: 64px 0; }
  .market-final h2 { font-size: 41px; }
  .market-final > div > div { align-items: stretch; flex-direction: column; gap: 17px; }
  .market-final a:first-child { justify-content: center; }
  .market-final a:last-child { align-self: center; }

  .market-footer { padding-top: 52px; }
  .market-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; }
  .market-footer__brand { grid-column: 1 / -1; }
  .market-footer__grid > div:last-child { display: none; }
  .market-footer__bottom { align-items: flex-start; flex-direction: column; gap: 5px; }

  .market-sticky { min-height: 64px; gap: 8px; padding: 9px 12px; }
  .market-sticky > span { display: none; }
  .market-sticky > a { min-width: 0; min-height: 44px; flex: 1; font-size: 11px; }
}

@media (max-width: 365px) {
  .market-brand .brand__name { display: none; }
  .category-grid > a > span { width: 57px; height: 57px; }
  .home-product-track { grid-auto-columns: 48vw; }
  .ranking-track { grid-auto-columns: 46vw; }
}

@media (prefers-reduced-motion: reduce) {
  .market-hero__network { display: none; }
  .scene-track img,
  .home-product-card__visual > img { transition: none; }
}

/* Option 1 — the city of connected makers */
.market-home--option-one {
  --option-blue: #0867e8;
  --option-blue-dark: #0349aa;
  --option-ink: #090c13;
  --option-muted: #687082;
  --option-line: #dfe3ea;
  --option-soft: #f6f8fb;
  --option-yellow: #f2bb00;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--option-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-feature-settings: "palt" 1;
}

.market-home--option-one * {
  box-sizing: border-box;
}

.market-home--option-one a {
  color: inherit;
  text-decoration: none;
}

.market-home--option-one button,
.market-home--option-one input {
  font: inherit;
}

.market-home--option-one img {
  display: block;
  max-width: 100%;
}

.market-home--option-one :focus-visible {
  outline: 3px solid #ffcc21;
  outline-offset: 3px;
}

.option-shell {
  width: min(1360px, calc(100% - 56px));
  margin-inline: auto;
}

.option-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #eceef2;
}

.option-header__bar {
  display: grid;
  grid-template-columns: 236px minmax(340px, 430px) 1fr;
  align-items: center;
  gap: 30px;
  min-height: 70px;
}

.option-brand {
  display: inline-flex;
  align-items: center;
  width: 222px;
}

.option-brand img {
  width: 100%;
  height: auto;
}

.option-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #bfc6d2;
  border-radius: 7px;
}

.option-search:focus-within {
  border-color: var(--option-blue);
  box-shadow: 0 0 0 3px rgb(8 103 232 / 12%);
}

.option-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 50px 0 18px;
  color: var(--option-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.option-search input::placeholder {
  color: #9aa1ae;
}

.option-search button {
  position: absolute;
  right: 0;
  display: grid;
  width: 48px;
  height: 100%;
  place-items: center;
  background: #fff;
  border: 0;
  cursor: pointer;
}

.option-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.option-header__login {
  font-size: 14px;
  font-weight: 800;
}

.option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.option-button:hover {
  transform: translateY(-2px);
}

.option-button--primary {
  color: #fff !important;
  background: var(--option-blue);
  box-shadow: 0 8px 20px rgb(4 73 170 / 15%);
}

.option-button--primary:hover {
  background: var(--option-blue-dark);
}

.option-button--secondary {
  color: #15233a !important;
  background: rgb(255 255 255 / 92%);
  border-color: var(--option-blue);
}

.option-button--secondary:hover {
  color: var(--option-blue) !important;
  background: #fff;
}

.option-button--light {
  color: var(--option-blue-dark) !important;
  background: #fff;
  box-shadow: 0 12px 30px rgb(0 18 60 / 18%);
}

.option-header__submit {
  min-height: 44px;
  padding-inline: 26px;
}

.option-header__mobile-search,
.option-menu-button {
  display: none;
}

.option-nav {
  border-top: 1px solid #f0f1f4;
}

.option-nav .option-shell {
  display: flex;
  align-items: center;
  min-height: 40px;
  gap: 46px;
}

.option-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: #273246;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 700;
}

.option-nav a:hover {
  color: var(--option-blue);
  border-bottom-color: var(--option-blue);
}

.option-mobile-menu[hidden] {
  display: none !important;
}

.option-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #2d9bed;
}

.option-hero__picture,
.option-hero__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.option-hero__picture img {
  object-fit: cover;
  object-position: center center;
}

.option-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 36px;
  align-items: center;
  flex-direction: column;
  color: #05070b;
  text-align: center;
}

.option-hero__copy h1 {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.04;
  text-shadow: 0 2px 0 rgb(255 255 255 / 44%);
}

.option-hero__copy p {
  margin: 14px 0 8px;
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgb(255 255 255 / 58%);
}

.option-hero__nickname {
  width: 242px;
  height: auto;
  margin-top: 8px;
  filter: drop-shadow(0 2px 0 rgb(0 0 0 / 10%));
}

.option-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 18px;
  width: min(500px, 100%);
  margin-top: 8px;
}

.option-hero__actions .option-button {
  min-height: 50px;
  font-size: 16px;
}

.option-hero__actions .option-button span {
  margin-left: 18px;
  font-size: 22px;
  line-height: 1;
}

.option-hero__mobile-break {
  display: none;
}

.option-categories {
  background: #fff;
  border-bottom: 1px solid var(--option-line);
}

.option-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.option-categories__grid > a {
  display: grid;
  grid-template-columns: 54px 1fr 20px;
  min-width: 0;
  min-height: 108px;
  padding: 18px 18px;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--option-line);
  transition: color .18s ease, background-color .18s ease;
}

.option-categories__grid > a:last-child {
  border-right: 1px solid var(--option-line);
}

.option-categories__grid > a:hover {
  color: var(--option-blue);
  background: #f8fbff;
}

.option-category__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: #f3f8ff;
  border: 1px solid #d9e8fa;
  border-radius: 50%;
}

.option-categories__grid > a:nth-child(2n) .option-category__icon {
  background: #f8f3ff;
  border-color: #e8dcf8;
}

.option-categories__grid > a:nth-child(3) .option-category__icon {
  background: #f4fbff;
  border-color: #d7edf5;
}

.option-categories__grid b,
.option-categories__grid small {
  display: block;
}

.option-categories__grid b {
  margin-bottom: 5px;
  color: #151b27;
  font-size: 14px;
  font-weight: 900;
}

.option-categories__grid small {
  overflow: hidden;
  color: #8a91a0;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.option-category__arrow {
  width: 18px;
  height: 18px;
  opacity: .78;
}

.option-section {
  padding: 78px 0;
}

.option-featured {
  padding: 24px 0 42px;
  background: #fff;
}

.option-heading > p,
.option-license__intro > p,
.option-trust__copy > p,
.option-cta__inner > div:first-child > p {
  margin: 0 0 7px;
  color: var(--option-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.option-heading h2,
.option-license h2,
.option-trust h2,
.option-cta h2 {
  margin: 0;
  color: var(--option-ink);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.option-heading--row {
  display: flex;
  min-height: 30px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}

.option-heading--row h2 {
  font-size: 23px;
  letter-spacing: -.025em;
}

.option-heading--row > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 3px;
  color: var(--option-blue);
  font-size: 12px;
  font-weight: 900;
}

.option-heading--center {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.option-heading--center > span {
  display: block;
  max-width: 680px;
  margin: 18px auto 0;
  color: #626b7b;
  font-size: 15px;
  line-height: 1.9;
}

.option-product-grid.home-product-track {
  display: grid;
  width: 100%;
  grid-auto-flow: initial;
  grid-auto-columns: initial;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
  padding: 0;
}

.option-product-grid .home-product-card {
  display: grid;
  min-width: 0;
  min-height: 190px;
  grid-template-columns: minmax(0, 62%) minmax(0, 38%);
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9dde5;
  border-radius: 8px;
  box-shadow: none;
}

.option-product-grid .home-product-card__visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.option-product-grid .home-product-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.option-product-grid .home-product-card:hover .home-product-card__visual > img {
  transform: scale(1.025);
}

.option-product-grid .home-product-card__type {
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  color: #fff;
  background: rgb(8 18 38 / 88%);
  border: 0;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
}

.option-product-grid .home-product-card__body {
  display: flex;
  min-width: 0;
  padding: 17px 16px 15px;
  flex-direction: column;
  background: #fff;
}

.option-product-grid .home-product-card__body > p {
  overflow: hidden;
  margin: 0 0 8px;
  color: #7c8493;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.option-product-grid .home-product-card h3 {
  min-height: 48px;
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.option-product-grid .home-product-card h3 a:hover {
  color: var(--option-blue);
}

.option-product-grid .home-product-card__summary {
  display: none;
}

.option-product-grid .home-product-card__facts {
  display: flex;
  margin-top: auto;
  align-items: flex-end;
  flex-direction: column-reverse;
  gap: 7px;
}

.option-product-grid .home-product-card__facts span {
  align-self: flex-start;
  color: #7a8493;
  font-size: 9px;
}

.option-product-grid .home-product-card__facts span img {
  width: 13px;
  height: 13px;
}

.option-product-grid .home-product-card__facts strong {
  align-self: flex-start;
  color: var(--option-blue);
  font-size: 17px;
  line-height: 1.1;
}

.option-product-grid .home-product-card__maker {
  margin-top: 7px;
  color: #687082;
  font-size: 9px;
}

.option-product-grid .home-product-card__maker img {
  width: 15px;
  height: 15px;
}

.option-how {
  background: var(--option-soft);
  border-top: 1px solid #eceff4;
}

.option-how__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
}

.option-how__grid li {
  position: relative;
  min-height: 270px;
  padding: 34px 30px 28px;
  background: #fff;
  border: 1px solid #e1e5ec;
  border-radius: 12px;
}

.option-how__grid li > img {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.option-step__number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #c8d8ed;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.option-how__grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 900;
}

.option-how__grid p {
  margin: 0;
  color: #697282;
  font-size: 13px;
  line-height: 1.9;
}

.option-license {
  background: #fff;
}

.option-license__layout {
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 70px;
}

.option-license__intro > span,
.option-trust__copy > span {
  display: block;
  margin-top: 22px;
  color: #626b7b;
  font-size: 14px;
  line-height: 1.9;
}

.option-text-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 14px;
  color: var(--option-blue) !important;
  font-size: 13px;
  font-weight: 900;
}

.option-license__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.option-license__cards article {
  display: flex;
  min-height: 300px;
  padding: 28px 23px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
}

.option-license__cards article.is-featured {
  color: #fff;
  background: var(--option-blue);
  border-color: var(--option-blue);
  box-shadow: 0 18px 40px rgb(8 103 232 / 20%);
}

.option-license__cards article > span {
  margin-bottom: 28px;
  color: var(--option-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.option-license__cards article.is-featured > span {
  color: #fff;
}

.option-license__cards h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
}

.option-license__cards p {
  margin: 0;
  color: #687082;
  font-size: 12px;
  line-height: 1.9;
}

.option-license__cards article.is-featured p {
  color: rgb(255 255 255 / 82%);
}

.option-license__cards small {
  margin-top: auto;
  padding-top: 22px;
  color: #6b7380;
  border-top: 1px solid #e5e8ee;
  font-size: 11px;
  font-weight: 900;
}

.option-license__cards article.is-featured small {
  color: #fff;
  border-top-color: rgb(255 255 255 / 28%);
}

.option-trust {
  background: #f2f7ff;
  border-top: 1px solid #dfebfa;
}

.option-trust__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.option-trust__copy .option-button {
  margin-top: 28px;
}

.option-trust__facts {
  margin: 0;
  padding: 12px 34px;
  background: #fff;
  border: 1px solid #cfdced;
  border-radius: 12px;
  box-shadow: 14px 14px 0 #bcd7fa;
}

.option-trust__facts > div {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6ebf2;
}

.option-trust__facts > div:last-child {
  border-bottom: 0;
}

.option-trust__facts dt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334055;
  font-size: 13px;
  font-weight: 800;
}

.option-trust__facts dd {
  margin: 0;
  color: var(--option-blue);
  font-size: 13px;
  font-weight: 900;
}

.option-cta {
  padding: 74px 0;
  color: #fff;
  background: var(--option-blue);
}

.option-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
}

.option-cta__inner > div:first-child > p,
.option-cta h2 {
  color: #fff;
}

.option-cta__inner > div:last-child > p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
  line-height: 1.9;
}

.option-footer {
  padding: 36px 0 18px;
  color: #303a4c;
  background: #fff;
}

.option-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

.option-brand--footer {
  width: 198px;
}

.option-footer nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 800;
}

.option-footer nav a:hover {
  color: var(--option-blue);
}

.option-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  color: #89909d;
  border-top: 1px solid #e5e8ee;
  font-size: 10px;
}

@media (max-width: 1120px) {
  .option-header__bar {
    grid-template-columns: 210px minmax(300px, 390px) 1fr;
    gap: 20px;
  }

  .option-brand {
    width: 198px;
  }

  .option-header__actions {
    gap: 18px;
  }

  .option-nav .option-shell {
    gap: 34px;
  }

  .option-categories__grid > a {
    grid-template-columns: 48px 1fr 16px;
    padding-inline: 12px;
    gap: 9px;
  }

  .option-category__icon {
    width: 48px;
    height: 48px;
  }

  .option-product-grid .home-product-card {
    grid-template-columns: 58% 42%;
  }

  .option-license__layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .option-header__bar {
    grid-template-columns: 190px 1fr auto;
  }

  .option-search {
    max-width: 380px;
  }

  .option-header__login {
    display: none;
  }

  .option-nav .option-shell {
    justify-content: space-between;
    gap: 16px;
  }

  .option-categories__grid {
    width: max-content;
  }

  .option-categories {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .option-categories::-webkit-scrollbar {
    display: none;
  }

  .option-categories__grid > a {
    width: 226px;
  }

  .option-product-grid.home-product-track {
    width: calc(100vw - 28px);
    grid-auto-flow: column;
    grid-auto-columns: min(520px, 72vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .option-product-grid .home-product-card {
    scroll-snap-align: start;
  }

  .option-how__grid {
    gap: 14px;
  }

  .option-license__layout,
  .option-trust__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .market-home--option-one {
    padding-bottom: 0;
  }

  .option-shell {
    width: calc(100% - 28px);
  }

  .option-header__bar {
    display: flex;
    min-height: 62px;
    gap: 10px;
  }

  .option-brand {
    width: 137px;
    margin-right: auto;
  }

  .option-search,
  .option-nav,
  .option-header__login {
    display: none;
  }

  .option-header__actions {
    gap: 8px;
  }

  .option-header__submit {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 6px;
    font-size: 11px;
  }

  .option-header__mobile-search,
  .option-menu-button {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
  }

  .option-header__mobile-search {
    border: 1px solid #d6dbe3;
    border-radius: 50%;
  }

  .option-menu-button {
    position: relative;
    padding: 10px 9px;
    background: #0b1936;
    border: 0;
    border-radius: 50%;
  }

  .option-menu-button > span:not(.sr-only) {
    display: block;
    width: 16px;
    height: 1px;
    margin: 2px auto;
    background: #fff;
  }

  .option-mobile-menu {
    position: absolute;
    top: 62px;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 30;
    display: grid;
    max-height: calc(100vh - 62px);
    padding: 16px 14px 22px;
    gap: 0;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #e5e8ee;
    box-shadow: 0 20px 40px rgb(17 28 48 / 14%);
  }

  .option-mobile-menu > a {
    display: flex;
    min-height: 46px;
    padding: 0 4px;
    align-items: center;
    border-bottom: 1px solid #eef0f3;
    font-size: 13px;
    font-weight: 800;
  }

  .option-mobile-search {
    position: relative;
    display: flex;
    height: 44px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #bfc6d2;
    border-radius: 7px;
  }

  .option-mobile-search input {
    width: 100%;
    min-width: 0;
    padding: 0 48px 0 14px;
    border: 0;
    outline: 0;
  }

  .option-mobile-search button {
    position: absolute;
    right: 0;
    width: 44px;
    height: 100%;
    background: #fff;
    border: 0;
  }

  .option-mobile-search button img {
    margin: auto;
  }

  .option-hero {
    min-height: 620px;
  }

  .option-hero__picture img {
    object-position: center center;
  }

  .option-hero__copy {
    width: calc(100% - 28px);
    padding-top: 42px;
  }

  .option-hero__copy h1 {
    font-size: clamp(38px, 11.2vw, 50px);
    letter-spacing: -.065em;
    line-height: 1.08;
  }

  .option-hero__mobile-break {
    display: block;
  }

  .option-hero__copy p {
    width: 100%;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.65;
  }

  .option-hero__nickname {
    width: 178px;
    margin-top: 3px;
  }

  .option-hero__actions {
    display: flex;
    width: 100%;
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .option-hero__actions .option-button {
    min-height: 48px;
    font-size: 13px;
  }

  .option-hero__actions .option-button--secondary {
    background: rgb(255 255 255 / 86%);
  }

  .option-categories__grid {
    width: max-content;
    margin-left: 14px;
  }

  .option-categories__grid > a {
    width: 212px;
    min-height: 92px;
    grid-template-columns: 46px 1fr 16px;
    padding: 13px 11px;
    border-top: 0;
  }

  .option-category__icon {
    width: 46px;
    height: 46px;
  }

  .option-category__icon img {
    width: 26px;
    height: 26px;
  }

  .option-section {
    padding: 58px 0;
  }

  .option-featured {
    padding: 26px 0 48px;
  }

  .option-heading--row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .option-heading--row > a {
    align-self: flex-end;
  }

  .option-product-grid.home-product-track {
    width: calc(100vw - 14px);
    grid-auto-columns: min(338px, 87vw);
    gap: 12px;
    padding-right: 14px;
  }

  .option-product-grid .home-product-card {
    min-height: 186px;
    grid-template-columns: 58% 42%;
  }

  .option-product-grid .home-product-card__visual {
    min-height: 186px;
  }

  .option-product-grid .home-product-card__body {
    padding: 14px 12px;
  }

  .option-product-grid .home-product-card h3 {
    min-height: 44px;
    font-size: 14px;
  }

  .option-heading--center {
    margin-bottom: 30px;
  }

  .option-heading h2,
  .option-license h2,
  .option-trust h2,
  .option-cta h2 {
    font-size: 34px;
  }

  .option-heading--center > span {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .option-how__grid,
  .option-license__cards {
    grid-template-columns: 1fr;
  }

  .option-how__grid li {
    min-height: 218px;
    padding: 28px 24px 24px;
  }

  .option-how__grid li > img {
    margin-bottom: 20px;
  }

  .option-license__layout,
  .option-trust__layout {
    gap: 34px;
  }

  .option-license__cards article {
    min-height: 240px;
  }

  .option-trust__facts {
    padding: 8px 18px;
    box-shadow: 8px 8px 0 #bcd7fa;
  }

  .option-trust__facts > div {
    min-height: 62px;
  }

  .option-trust__facts dt,
  .option-trust__facts dd {
    font-size: 11px;
  }

  .option-cta {
    padding: 58px 0;
  }

  .option-cta__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .option-cta__inner .option-button {
    width: 100%;
  }

  .option-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .option-footer nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .option-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .option-brand {
    width: 122px;
  }

  .option-header__submit {
    padding-inline: 10px;
  }

  .option-header__mobile-search {
    display: none;
  }

  .option-hero__copy h1 {
    font-size: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-home--option-one *,
  .market-home--option-one *::before,
  .market-home--option-one *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Street Engineer banner and manifesto */
.option-nav a[aria-current="page"] {
  color: var(--option-blue);
  border-bottom-color: var(--option-blue);
}

.option-nav .option-nav__about {
  color: var(--option-blue);
  font-weight: 900;
}

.street-about-promo {
  padding: 48px 0 44px;
  background: #fff;
  border-bottom: 1px solid var(--option-line);
}

.street-about-banner {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(300px, 25vw, 370px);
  overflow: hidden;
  color: var(--option-ink);
  background: #eee4d2;
  border: 1px solid #d5d9e1;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgb(21 27 39 / 9%);
}

.street-about-banner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(246 235 215 / 98%) 0%, rgb(246 235 215 / 92%) 36%, rgb(246 235 215 / 45%) 58%, transparent 76%);
  content: "";
}

.street-about-banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform .35s ease;
}

.street-about-banner__copy {
  display: flex;
  width: min(52%, 620px);
  min-height: inherit;
  padding: clamp(34px, 5vw, 68px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.street-about-banner__kicker,
.about-kicker {
  margin: 0 0 12px;
  color: var(--option-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.street-about-banner h2 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.1;
}

.street-about-banner__lead {
  margin-top: 17px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -.025em;
}

.street-about-banner__cta {
  display: inline-flex;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 19px;
  align-items: center;
  gap: 16px;
  color: #fff;
  background: var(--option-blue);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  transition: background-color .18s ease, transform .18s ease;
}

.street-about-banner:hover > img {
  transform: scale(1.015);
}

.street-about-banner:hover .street-about-banner__cta {
  background: #075bc7;
  transform: translateX(3px);
}

.street-about-banner:focus-visible {
  outline: 4px solid rgb(16 112 231 / 35%);
  outline-offset: 4px;
}

.about-hero__copy mark,
.about-manifesto h2 mark {
  padding: 0 .09em .04em;
  color: var(--option-ink);
  background: var(--option-yellow);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.about-page {
  background: #fff;
}

.about-mobile-break {
  display: none;
}

.about-hero {
  padding: 72px 0 88px;
  overflow: hidden;
  background: #f3f7fd;
  border-bottom: 1px solid #dce7f5;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.about-hero__copy h1 {
  margin: 0;
  font-size: clamp(50px, 5.45vw, 78px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: 1.12;
}

.about-hero__lead {
  max-width: 590px;
  margin: 28px 0 30px;
  color: #4f596b;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.about-hero__copy .option-button {
  min-height: 54px;
}

.about-hero__visual {
  position: relative;
  min-height: 540px;
  margin: 0 14px 14px 0;
  overflow: hidden;
  background: #2397e7;
  border: 1px solid #9bbce3;
  border-radius: 14px;
  box-shadow: 14px 14px 0 #bed8fa;
}

.about-hero__visual picture,
.about-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero__visual img {
  object-fit: cover;
  object-position: center center;
}

.about-hero__visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 16px 18px;
  color: #080b12;
  background: var(--option-yellow);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
}

.about-definition {
  padding: 112px 0 96px;
  background: #fff;
}

.about-definition__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(58px, 9vw, 128px);
}

.about-definition h2,
.about-section-heading h2,
.about-examples__heading h2,
.about-manifesto h2,
.about-invitation h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.2;
}

.about-definition__copy {
  padding-top: 30px;
}

.about-definition__copy strong {
  display: block;
  margin-bottom: 24px;
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.55;
}

.about-definition__copy p {
  margin: 0 0 17px;
  color: #566071;
  font-size: 15px;
  line-height: 2.05;
}

.about-definition__statement {
  position: relative;
  display: grid;
  margin-top: 80px;
  padding: 48px 54px 50px;
  grid-template-columns: 74px 1fr;
  align-items: start;
  background: #f4f8fe;
  border-top: 5px solid var(--option-blue);
}

.about-definition__statement > span {
  color: var(--option-yellow);
  font-family: Georgia, serif;
  font-size: 88px;
  font-weight: 900;
  line-height: .72;
}

.about-definition__statement p {
  margin: 0;
  color: #101725;
  font-size: clamp(25px, 2.55vw, 38px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.55;
}

.about-journey {
  padding: 104px 0;
  background: var(--option-soft);
  border-top: 1px solid #e7eaf0;
  border-bottom: 1px solid #e7eaf0;
}

.about-section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.about-journey__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
}

.about-journey__grid li {
  position: relative;
  min-height: 322px;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid #dce1e9;
  border-radius: 12px;
}

.about-journey__grid li > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #c5d7ef;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.about-journey__grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
}

.about-journey__grid h3 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.about-journey__grid p {
  margin: 0;
  color: #646e7e;
  font-size: 14px;
  line-height: 1.95;
}

.about-examples {
  padding: 112px 0;
  background: #fff;
}

.about-examples__heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: end;
  gap: 68px;
}

.about-examples__heading > p {
  margin: 0 0 8px;
  color: #606a7a;
  font-size: 14px;
  line-height: 1.95;
}

.about-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-examples__grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce1e9;
  border-radius: 11px;
}

.about-examples__grid article > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-bottom: 1px solid #dce1e9;
}

.about-examples__grid article > div {
  padding: 26px 25px 30px;
}

.about-examples__grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--option-blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.about-examples__grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.5;
}

.about-examples__grid p {
  margin: 0;
  color: #636d7e;
  font-size: 13px;
  line-height: 1.95;
}

.about-manifesto {
  padding: 110px 0 88px;
  color: #fff;
  background: var(--option-blue);
}

.about-manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(60px, 9vw, 130px);
}

.about-manifesto .about-kicker {
  color: #fff;
}

.about-manifesto h2 {
  color: #fff;
}

.about-manifesto__points p {
  display: grid;
  min-height: 80px;
  margin: 0;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.about-manifesto__points p:first-child {
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.about-manifesto__points span {
  color: #a8d0ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-manifesto__points strong {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
}

.about-manifesto__definition {
  display: grid;
  margin-top: 78px;
  padding: 36px 42px 38px;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 38px;
  background: #071832;
  border-top: 5px solid var(--option-yellow);
}

.about-manifesto__definition span {
  color: var(--option-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.about-manifesto__definition p {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.8vw, 40px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.45;
}

.about-invitation {
  padding: 112px 0 118px;
  background: #fff;
  text-align: center;
}

.about-invitation__inner {
  max-width: 940px;
}

.about-invitation h2 {
  font-size: clamp(44px, 5.5vw, 76px);
}

.about-invitation__inner > p:not(.about-kicker) {
  max-width: 720px;
  margin: 28px auto 34px;
  color: #596374;
  font-size: 16px;
  line-height: 2;
}

.about-invitation__inner > div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.about-invitation .option-button {
  min-width: 230px;
  min-height: 54px;
}

@media (max-width: 1120px) {
  .option-nav .option-shell {
    gap: 25px;
  }

  .about-hero__grid {
    grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
    gap: 42px;
  }

  .about-hero__visual {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .option-nav .option-shell {
    gap: 12px;
  }

  .option-nav a {
    font-size: 11px;
  }

  .about-definition__grid,
  .about-manifesto__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-definition__copy {
    padding-top: 0;
  }

  .about-hero__grid {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    max-width: 720px;
  }

  .about-hero__visual {
    min-height: 480px;
  }

  .about-journey__grid,
  .about-examples__grid {
    gap: 14px;
  }

  .about-examples__heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-manifesto__definition {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 760px) {
  .about-mobile-break {
    display: block;
  }

  .street-about-promo {
    padding: 30px 0;
  }

  .street-about-banner {
    min-height: 242px;
    border-radius: 9px;
  }

  .street-about-banner::after {
    background: linear-gradient(90deg, rgb(246 235 215 / 99%) 0%, rgb(246 235 215 / 96%) 42%, rgb(246 235 215 / 68%) 62%, rgb(246 235 215 / 8%) 88%);
  }

  .street-about-banner > img {
    object-position: center center;
  }

  .street-about-banner__copy {
    width: 68%;
    padding: 22px 20px;
  }

  .street-about-banner__kicker {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .street-about-banner h2 {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.12;
  }

  .street-about-banner__lead {
    margin-top: 10px;
    font-size: 13px;
  }

  .street-about-banner__cta {
    min-height: 38px;
    margin-top: 16px;
    padding: 0 13px;
    gap: 9px;
    font-size: 10px;
  }

  .about-hero {
    padding: 58px 0 66px;
  }

  .about-hero__grid {
    gap: 38px;
  }

  .about-hero__copy h1 {
    font-size: 44px;
    line-height: 1.15;
  }

  .about-hero__lead {
    margin: 24px 0 27px;
    font-size: 14px;
    line-height: 1.95;
  }

  .about-hero__copy .option-button {
    width: 100%;
  }

  .about-hero__visual {
    min-height: 520px;
    margin-right: 8px;
    border-radius: 10px;
    box-shadow: 8px 8px 0 #bed8fa;
  }

  .about-hero__visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
    font-size: 13px;
  }

  .about-definition,
  .about-examples {
    padding: 76px 0;
  }

  .about-definition__grid {
    gap: 28px;
  }

  .about-definition h2,
  .about-section-heading h2,
  .about-examples__heading h2,
  .about-manifesto h2,
  .about-invitation h2 {
    font-size: 40px;
    line-height: 1.23;
  }

  .about-definition__copy strong {
    font-size: 21px;
  }

  .about-definition__copy p {
    font-size: 14px;
    line-height: 1.95;
  }

  .about-definition__statement {
    margin-top: 50px;
    padding: 30px 22px 34px;
    grid-template-columns: 42px 1fr;
  }

  .about-definition__statement > span {
    font-size: 62px;
  }

  .about-definition__statement p {
    font-size: 23px;
    line-height: 1.55;
  }

  .about-journey {
    padding: 76px 0;
  }

  .about-section-heading {
    margin-bottom: 34px;
  }

  .about-journey__grid,
  .about-examples__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-journey__grid li {
    min-height: 242px;
    padding: 28px 24px 25px;
  }

  .about-journey__grid img {
    margin-bottom: 28px;
  }

  .about-examples__heading {
    margin-bottom: 34px;
  }

  .about-examples__heading > p {
    font-size: 13px;
  }

  .about-examples__grid article > div {
    padding: 23px 21px 27px;
  }

  .about-manifesto {
    padding: 76px 0 64px;
  }

  .about-manifesto__grid {
    gap: 42px;
  }

  .about-manifesto__points p {
    min-height: 78px;
    grid-template-columns: 40px 1fr;
    gap: 9px;
  }

  .about-manifesto__points strong {
    font-size: 14px;
  }

  .about-manifesto__definition {
    margin-top: 52px;
    padding: 26px 22px 29px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-manifesto__definition p {
    font-size: 25px;
  }

  .about-invitation {
    padding: 78px 0 82px;
  }

  .about-invitation h2 {
    font-size: 42px;
  }

  .about-invitation__inner > p:not(.about-kicker) {
    margin: 24px auto 29px;
    font-size: 14px;
    line-height: 1.95;
  }

  .about-invitation__inner > div {
    flex-direction: column;
    gap: 10px;
  }

  .about-invitation .option-button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .about-hero__copy h1,
  .about-definition h2,
  .about-section-heading h2,
  .about-examples__heading h2,
  .about-manifesto h2,
  .about-invitation h2 {
    font-size: 37px;
  }
}
