:root {
  --bg: #07111f;
  --bg-2: #091526;
  --panel: #0e1b2d;
  --panel-2: #122138;
  --line: #243951;
  --line-soft: rgba(137, 173, 207, .14);
  --text: #edf6ff;
  --muted: #9cadc1;
  --cyan: #5be2ff;
  --blue: #687cff;
  --violet: #b46dff;
  --green: #58e7b0;
  --shell: min(1280px, calc(100vw - 52px));
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", sans-serif;
  background:
    radial-gradient(circle at 54% -10%, #183354 0, transparent 34%),
    linear-gradient(180deg, #07111f 0%, #091523 48%, #07111f 100%);
  line-height: 1.72;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a[href], button, summary { cursor: pointer; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }

html[data-lang="ja"] :where(p, li, summary) {
  word-break: auto-phrase;
  overflow-wrap: normal;
  line-break: strict;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .11;
  pointer-events: none;
  z-index: -1;
}
.ambient-a { width: 460px; height: 460px; background: var(--cyan); top: 11%; right: -220px; }
.ambient-b { width: 600px; height: 600px; background: var(--violet); bottom: 2%; left: -320px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 17, 31, .82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(20px);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; transition: opacity .2s ease; }
.brand:hover { opacity: .82; }
.brand:focus-visible { outline: 2px solid var(--cyan); outline-offset: 6px; border-radius: 8px; }
.brand img { filter: drop-shadow(0 10px 24px rgba(89, 220, 255, .16)); }
.brand span { display: flex; flex-direction: column; line-height: 1.06; }
.brand strong { font-size: 15px; letter-spacing: .01em; }
.brand small { margin-top: 6px; font-size: 7px; letter-spacing: .22em; text-align: left; white-space: nowrap; color: #768ba5; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { font-size: 12px; color: #a4b5c8; cursor: pointer; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch {
  display: flex;
  border: 1px solid #2a3f59;
  background: #101d2f;
  border-radius: 999px;
  padding: 4px;
  cursor: pointer;
  color: #7e91aa;
}
.language-switch span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 6px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.language-switch .active { color: #fff; background: #293f5b; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 14px;
  min-height: 50px;
  padding: 0 21px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.button-primary {
  background: linear-gradient(115deg, #59dcff, #687bff 54%, #ad6dff);
  box-shadow: 0 17px 45px rgba(90, 123, 255, .27);
  color: #fff;
}
.button-primary:hover { box-shadow: 0 22px 54px rgba(90, 123, 255, .39); }
.button-secondary, .button-ghost { background: #101d30; border-color: #29405b; color: #dbe9f7; }
.button-ghost { min-height: 42px; padding-inline: 16px; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid #263b55;
  background: #101d30;
  padding: 11px;
  cursor: pointer;
}
.menu-button span { display: block; height: 2px; background: #dcecff; margin: 5px 0; border-radius: 2px; }
.mobile-menu { background: #0b1728; border-top: 1px solid #1e3048; padding: 10px 24px 22px; }
.mobile-menu a { display: block; padding: 12px 0; color: #c1d0df; cursor: pointer; }
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 5px; }

h1, h2, h3 {
  margin: 0;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
  text-wrap: balance;
}
.headline-line { display: block; }
.gradient-text {
  background: linear-gradient(105deg, #f4fbff 0%, #6ee4ff 35%, #7b88ff 68%, #c27aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 46px;
  padding-top: 66px;
  padding-bottom: 92px;
}
.hero-copy { padding-top: 4px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #294059;
  background: rgba(15, 29, 48, .75);
  border-radius: 999px;
  padding: 9px 14px;
  color: #b1c0d1;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  max-width: 100%;
}
.status-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
h1 { font-size: clamp(48px, 4.45vw, 64px); line-height: 1.07; letter-spacing: -.052em; margin: 28px 0 26px; }
.hero-lead { max-width: 690px; color: #adbdcf; font-size: clamp(15px, 1.25vw, 18px); line-height: 1.9; margin: 0; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid #21344c;
}
.hero-proof div { min-width: 0; }
.hero-proof strong { display: block; color: #dff5ff; font-size: 15px; line-height: 1.35; letter-spacing: .02em; white-space: nowrap; }
.hero-stage { position: relative; height: auto; aspect-ratio: 16 / 11.5; overflow-x: clip; perspective: 1500px; }
.stage-grid {
  position: absolute;
  inset: 44px 0 20px 24px;
  border-radius: 34px;
  background-image: linear-gradient(rgba(105, 143, 181, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(105, 143, 181, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 82%, transparent);
}
.hero-screen {
  position: absolute;
  inset: 64px 18px auto 24px;
  aspect-ratio: 16 / 10;
  overflow: visible;
}
.hero-screen::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 5% 2% 2% 5%;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 42%, rgba(84, 174, 255, .12), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}
.hero-screen img, .hero-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(119, 163, 207, .3);
  border-radius: 24px;
  background: #08131f;
  box-shadow: 0 28px 78px rgba(0, 0, 0, .38);
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(.96);
  transition: opacity .7s ease, transform .9s cubic-bezier(.2,.8,.2,1), filter .7s ease;
  will-change: transform, opacity;
}
.hero-screen:not(.is-media-ready) img, .hero-screen:not(.is-media-ready) video {
  visibility: hidden;
  opacity: 0;
}
.hero-screen img.is-active, .hero-screen video.is-active {
  z-index: 4;
  opacity: 1;
  filter: saturate(1.02);
  transform: translate3d(0, 0, 0) scale(1) rotate(-.35deg);
}
.hero-screen img.is-next, .hero-screen video.is-next {
  z-index: 3;
  opacity: .58;
  filter: saturate(.78) brightness(.74);
  transform: translate3d(32px, -25px, 0) scale(.955) rotate(1deg);
}
.hero-screen img.is-prev, .hero-screen video.is-prev {
  z-index: 2;
  opacity: .34;
  filter: saturate(.7) brightness(.62);
  transform: translate3d(-26px, 24px, 0) scale(.92) rotate(-1.15deg);
}
.hero-screen-meta { position: absolute; left: 42px; right: 22px; top: 30px; display: flex; align-items: center; justify-content: flex-start; gap: 14px; color: #9bb0c9; font-size: 13px; font-weight: 650; letter-spacing: .12em; white-space: nowrap; }
.hero-screen-meta strong { color: #d8efff; font-size: 14px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.hero-stage-notes {
  position: absolute;
  left: 24px;
  right: 14px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(104, 141, 180, .22);
}
.hero-stage-notes span { min-width: 0; }
.hero-stage-notes b { display: block; color: #6ce1ff; font-size: 12px; letter-spacing: .14em; }
.hero-stage-notes em { display: block; margin-top: 5px; color: #a7bad0; font-size: 12px; line-height: 1.55; font-style: normal; text-wrap: pretty; }
.hero-screen .media-dots { bottom: -17px; }

.section { padding-top: 112px; padding-bottom: 112px; }
.section-heading { display: grid; grid-template-columns: 1.12fr .88fr; align-items: end; gap: 54px; margin-bottom: 44px; }
.section-heading h2, .pricing-heading h2, .faq-heading h2, .final-cta h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.18; letter-spacing: -.045em; }
.section-heading p, .pricing-heading p { color: #98aabd; margin: 0; font-size: 14px; line-height: 1.85; text-wrap: pretty; }

.about-section { display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: clamp(44px, 7vw, 96px); border-top: 1px solid #1b2d44; }
.about-intro h2 { max-width: 9em; font-size: clamp(36px, 4.3vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.about-lead { margin: 26px 0 0; color: #dff5ff; font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; line-height: 1.65; text-wrap: pretty; }
.about-copy { display: grid; gap: 20px; max-width: 700px; }
.about-copy p { margin: 0; color: #9fb1c4; font-size: 15px; line-height: 1.95; text-wrap: pretty; }
.about-section :where(.about-lead, .about-copy p) { overflow-wrap: normal; word-break: normal; }
html[data-lang="ja"] .about-section :where(.about-lead, .about-copy p) { word-break: auto-phrase; line-break: strict; }
.about-copy .about-signoff { margin-top: 8px; color: #edf6ff; font-size: 18px; font-weight: 800; letter-spacing: .01em; }

.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.value-card { min-height: 292px; border: 1px solid rgba(137, 173, 207, .1); border-radius: 24px; background: linear-gradient(145deg, rgba(17, 32, 52, .96), rgba(10, 21, 37, .95)); padding: 28px; overflow: hidden; }
.value-icon { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(116, 169, 207, .15); border-radius: 19px; background: linear-gradient(145deg, #132c42, #1d1e48); color: #79e4ff; box-shadow: 0 0 42px rgba(94, 129, 255, .12); }
.value-icon svg, .privacy-mark svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 22px; margin: 24px 0 10px; letter-spacing: -.025em; }
.value-card p { margin: 0; color: #98aabd; font-size: 13px; line-height: 1.78; text-wrap: pretty; }
.privacy-note { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; margin-top: 18px; border: 1px solid rgba(137, 173, 207, .1); border-radius: 22px; background: linear-gradient(145deg, rgba(17, 32, 52, .96), rgba(10, 21, 37, .95)); padding: 27px 30px; }
.privacy-note > div { display: flex; align-items: center; gap: 14px; }
.privacy-mark { display: grid; place-items: center; flex: 0 0 auto; width: 50px; height: 50px; border: 1px solid rgba(116, 169, 207, .15); border-radius: 15px; background: linear-gradient(145deg, #132c42, #1d1e48); color: #79e4ff; box-shadow: 0 0 42px rgba(94, 129, 255, .12); }
.privacy-note strong { font-size: 18px; line-height: 1.45; text-wrap: balance; }
.privacy-note p { margin: 0; color: #98aabd; font-size: 12px; line-height: 1.75; }
.privacy-footnote { width: fit-content; max-width: min(720px, calc(100% - 60px)); margin: 10px 28px 0 auto; color: #71859b; font-size: 10px; line-height: 1.65; text-align: right; }

.products-section { border-block: 1px solid #1b2d44; background: linear-gradient(180deg, rgba(13, 28, 47, .7), rgba(7, 17, 31, .18)); }
.automotive-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.product-card { --accent: var(--cyan); position: relative; min-height: 610px; border: 1px solid rgba(137, 173, 207, .11); border-radius: var(--radius); background: linear-gradient(148deg, rgba(17, 32, 52, .97), rgba(9, 20, 35, .97)); padding: 14px 28px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0, 0, 0, .16); }
.product-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .72; }
.accent-render { --accent: #6edfff; }
.accent-custom { --accent: #9d73ff; }
.accent-3d { --accent: #7c8cff; }
.accent-aero { --accent: #64dfff; }
.product-topline { display: flex; align-items: center; gap: 11px; }
.pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 7px 11px; background: #1d2948; color: #b5c2ff; font-size: 12px; font-weight: 850; letter-spacing: .12em; white-space: nowrap; }
.pill-cyan { background: #123b49; color: #78e7ff; }
.pill-violet { background: #322149; color: #c69bff; }
.product-card h3 { font-size: 29px; line-height: 1.18; margin: 14px 0 10px; letter-spacing: -.035em; white-space: nowrap; }
.product-tagline { color: #bfd0e0; font-size: 15px; font-weight: 650; min-height: 50px; margin: 0 0 16px; line-height: 1.6; text-wrap: balance; }
.product-media { position: relative; height: 270px; border: 1px solid #233a55; border-radius: 18px; background: #08131f; overflow: hidden; margin: 0 0 18px; }
.product-media img, .product-media video, .suite-media img, .suite-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity .45s ease, transform .8s ease; }
.product-media img.is-active, .product-media video.is-active, .suite-media img.is-active, .suite-media video.is-active { opacity: 1; transform: scale(1); }
.screenshot-media img, .screenshot-media video { object-position: center; }
.media-dots { display: none; }
.media-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .28); cursor: pointer; }
.media-dot.is-active { width: 18px; border-radius: 999px; background: var(--cyan); }
.media-deck[data-url-key] { cursor: pointer; }
.media-deck[data-url-key]:focus-visible { outline: 2px solid var(--cyan); outline-offset: -5px; }
.media-preview-hint { position: absolute; z-index: 9; top: 14px; right: 14px; border: 1px solid rgba(114, 229, 255, .55); border-radius: 999px; background: rgba(4, 14, 25, .82); padding: 6px 9px; color: #dff8ff; font-size: 10px; font-weight: 750; letter-spacing: .02em; opacity: 0; transform: translateY(-5px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.media-deck[data-url-key]:hover .media-preview-hint, .media-deck[data-url-key]:focus-visible .media-preview-hint { opacity: 1; transform: translateY(0); }
.media-edit-mode .media-preview-hint { display: none; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.product-card .feature-list { gap: 8px; }
.feature-list li { position: relative; padding-left: 20px; color: #a7b8cb; font-size: 12px; line-height: 1.58; text-wrap: pretty; }
.feature-list li::before { content: "↗"; position: absolute; left: 0; top: 0; color: var(--accent, var(--cyan)); font-size: 10px; }
.feature-footnote { margin: 13px 0 0; padding-top: 12px; border-top: 1px solid rgba(130, 158, 190, .13); color: #74879c; font-size: 12px; line-height: 1.62; }
.product-card .feature-footnote { margin-top: 8px; padding-top: 7px; }
.product-update-note { margin: 10px 0 0; color: #9fb3c7; font-size: 12px; font-weight: 700; line-height: 1.55; }
.manual-link { color: #72e4ff; font-size: 11px; font-weight: 760; line-height: 1.5; text-decoration: underline; text-decoration-color: rgba(114, 228, 255, .45); text-underline-offset: 4px; }
.manual-link::after { content: " ↗"; }
.manual-link:hover, .manual-link:focus-visible { color: #dff8ff; text-decoration-color: currentColor; }
.product-manual-link { align-self: flex-start; margin-top: 14px; }
.product-actions { margin-top: auto; padding-top: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.product-card .product-actions { padding-top: 22px; }
.product-actions.price-only { justify-content: flex-end; }
.product-actions.with-ctas { align-items: stretch; flex-direction: column; gap: 16px; }
.product-actions.with-ctas .price { align-self: flex-end; }
.product-cta-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-cta-group .button { min-height: 44px; padding: 0 14px; }
.text-link { color: #72e4ff; font-size: 16px; font-weight: 780; cursor: pointer; }
.text-link::after { content: " ↗"; }
.text-link:hover, .text-link:focus-visible { color: #dff8ff; text-decoration: underline; text-underline-offset: 5px; }
.price { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; font-size: clamp(40px, 3.3vw, 46px); font-weight: 850; line-height: 1; letter-spacing: -.045em; }
.price small { color: #8398ae; font-size: 13px; font-weight: 650; letter-spacing: 0; }

.workflow-showcase { display: grid; gap: 22px; margin: 28px 0 30px; }
.workflow-panel {
  --accent: var(--cyan);
  border: 1px solid rgba(137, 173, 207, .1);
  border-radius: var(--radius);
  background: rgba(11, 24, 40, .82);
  padding: 26px;
}
.workflow-heading { display: block; margin-bottom: 18px; text-align: left; }
.workflow-heading h3 { font-size: clamp(24px, 2.2vw, 34px); line-height: 1.15; letter-spacing: -.035em; }
.workflow-heading p { margin: 7px 0 0; color: #99acbf; font-size: 13px; line-height: 1.65; }
.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.workflow-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(137, 173, 207, .1);
  border-radius: 18px;
  background: rgba(10, 22, 37, .86);
  padding: 12px;
}
.workflow-shot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(137, 173, 207, .18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 226, 255, .08), rgba(104, 124, 255, .04)), #07131f;
  overflow: hidden;
}
.workflow-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #07131f;
}
.workflow-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 5px;
  color: #8fa6bc;
  text-align: center;
}
.workflow-placeholder span, .workflow-step {
  color: color-mix(in srgb, var(--accent) 70%, #9ab0c4);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}
.workflow-placeholder strong { color: #b8c9d9; font-size: 12px; letter-spacing: .03em; }
.workflow-step { display: block; margin-top: 13px; }
.workflow-card h4 { margin: 5px 0 4px; font-size: 17px; line-height: 1.35; letter-spacing: -.02em; }
.workflow-card p { margin: 0; color: #9eb0c3; font-size: 12px; line-height: 1.65; text-wrap: pretty; }

.suite-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; margin-top: 22px; border: 1px solid rgba(137, 148, 224, .2); border-radius: 28px; background: radial-gradient(circle at 85% 10%, rgba(113, 112, 255, .2), transparent 36%), linear-gradient(140deg, rgba(18, 32, 60, .98), rgba(25, 18, 52, .98)); padding: 24px 34px; box-shadow: 0 26px 80px rgba(0, 0, 0, .22); }
.suite-copy h3 { font-size: 34px; letter-spacing: -.04em; margin: 20px 0 10px; }
.suite-copy > p { color: #a8b8ce; margin: 0; font-size: 14px; line-height: 1.8; }
.suite-includes { list-style: none; padding: 0; margin: 24px 0 10px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.suite-includes li { border: 1px solid rgba(137, 173, 207, .12); border-radius: 12px; background: rgba(14, 27, 49, .72); padding: 11px 13px; font-size: 12px; color: #d8e3f5; }
.suite-note { color: #7f91ab !important; font-size: 12px !important; }
.suite-actions { display: flex; align-items: center; gap: 22px; margin-top: 26px; }
.suite-price { font-size: 34px; font-weight: 850; letter-spacing: -.045em; }
.suite-price small { color: #8b9bb1; font-size: 12px; font-weight: 650; }
.suite-media { position: relative; min-height: 0; aspect-ratio: 1200 / 650; align-self: center; border: 1px solid #33486b; border-radius: 20px; overflow: hidden; background: #0a1526; }
.suite-media img, .suite-media video { object-fit: contain; }

.pricing-heading { display: grid; grid-template-columns: .45fr 1.55fr; gap: 54px; align-items: end; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.pricing-card { position: relative; border: 1px solid rgba(137, 173, 207, .1); border-radius: 24px; background: linear-gradient(145deg, rgba(17, 32, 52, .96), rgba(10, 21, 37, .95)); padding: 28px; min-height: 390px; }
.pricing-card h3 { font-size: 23px; margin-bottom: 24px; letter-spacing: -.03em; }
.pricing-card-featured { border-color: rgba(125, 136, 255, .28); background: radial-gradient(circle at 80% 0%, rgba(122, 103, 255, .18), transparent 34%), linear-gradient(145deg, rgba(21, 35, 68, .98), rgba(22, 17, 50, .98)); }
.best-value { position: absolute; top: 18px; right: 18px; border-radius: 999px; padding: 7px 10px; background: linear-gradient(115deg, #697bff, #b56fff); color: #fff; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.featured-price { display: flex; align-items: baseline; gap: 7px; margin: 20px 0 24px; }
.featured-price strong { font-size: 58px; line-height: 1; letter-spacing: -.06em; }
.featured-price span { color: #8b9bb1; font-size: 12px; }
.pricing-card ul { margin: 0; padding-left: 20px; color: #a8b8ca; font-size: 12px; display: grid; gap: 9px; }
.pricing-card > small { display: block; margin-top: 22px; color: #7f91a9; font-size: 12px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-top: 1px solid #22364f; }
.price-row:first-of-type { border-top: 0; }
.price-row div { display: flex; flex-direction: column; min-width: 0; }
.price-row strong { font-size: 13px; }
.price-row span { color: #7f91a9; font-size: 12px; margin-top: 3px; }
.price-row b { font-size: 38px; line-height: 1; letter-spacing: -.045em; }
.pricing-card:not(.pricing-card-featured) { display: flex; flex-direction: column; justify-content: center; }

.faq-heading { margin-bottom: 26px; }
.faq-list { border-top: 1px solid #24374e; }
.faq-list details { border-bottom: 1px solid #24374e; }
.faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 22px 46px 22px 0; color: #d9e7f4; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.faq-list summary:hover, .faq-list summary:focus-visible { color: #72e4ff; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: #72e4ff; font-size: 18px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -3px 0 22px; max-width: 100%; color: #92a6ba; font-size: 12px; line-height: 1.8; text-wrap: pretty; }

.final-cta { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 18px; margin-bottom: 112px; padding: 40px 44px; border: 1px solid #334663; border-radius: 26px; background: radial-gradient(circle at 90% 20%, rgba(122, 91, 255, .26), transparent 38%), linear-gradient(135deg, #10253b, #161d43); }
.final-cta h2 { font-size: clamp(32px, 3.6vw, 48px); }
.final-cta p { color: #9fb0c2; margin: 10px 0 0; font-size: 13px; }

.site-footer { border-top: 1px solid #1e3048; background: #06101d; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: minmax(280px, 1.4fr) minmax(130px, .7fr) minmax(175px, .9fr) repeat(2, minmax(100px, .55fr)); column-gap: 28px; row-gap: 44px; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: flex-start; justify-content: flex-start; text-align: left; }
.footer-brand .brand { width: max-content; max-width: 100%; margin-inline: 0; justify-content: flex-start; }
.footer-brand p { color: #7f91a8; font-size: 12px; margin-top: 10px; }
.footer-grid h3 { font-size: 12px; margin: 0 0 14px; color: #dbe7f4; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid > div:not(.footer-brand) a { color: #7f91a8; font-size: 12px; cursor: pointer; }
.footer-grid > div:not(.footer-brand) a:hover, .footer-grid > div:not(.footer-brand) a:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-disclaimer { max-width: none; padding-bottom: 20px; color: #61758d; font-size: 10px; line-height: 1.65; }
.footer-disclaimer p {
  margin: 0;
  max-width: 900px;
  white-space: normal;
  overflow-wrap: normal;
  line-break: strict;
  line-height: 1.8;
  text-wrap: wrap;
}
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #18283c; padding: 19px 0 24px; color: #61758d; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.media-edit-mode .media-deck { outline: 2px dashed #73e5ff; outline-offset: -7px; cursor: copy; }
.media-edit-hint { position: absolute; z-index: 20; inset: 10px 10px auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid rgba(114, 229, 255, .54); border-radius: 10px; background: rgba(4, 14, 25, .85); padding: 8px 10px; color: #a8eeff; font-size: 8px; font-weight: 800; letter-spacing: .1em; pointer-events: none; }
.media-reset { pointer-events: auto; border: 1px solid #406279; border-radius: 7px; background: #102538; color: #dff7ff; padding: 5px 7px; font-size: 7px; cursor: pointer; }
.media-editor-panel { position: fixed; right: 18px; bottom: 18px; z-index: 100; width: 330px; border: 1px solid #3a566f; border-radius: 16px; background: rgba(6, 18, 31, .94); box-shadow: 0 20px 70px rgba(0, 0, 0, .4); padding: 16px; backdrop-filter: blur(18px); }
.media-editor-panel strong { color: #72e5ff; font-size: 10px; letter-spacing: .15em; }
.media-editor-panel p { color: #9fb0c1; font-size: 10px; line-height: 1.65; }
.media-editor-panel button { border: 1px solid #36516c; border-radius: 9px; background: #10233a; color: #dbe9f6; padding: 8px 10px; cursor: pointer; font-size: 10px; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 36px, 980px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 18px; padding-top: 72px; }
  .hero-copy { max-width: 820px; }
  .hero-stage { height: auto; aspect-ratio: 16 / 11.5; }
  .hero-screen { inset: 64px 28px auto; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card-featured { grid-row: span 2; }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 28px); }
  .header-inner { height: 70px; }
  .header-cta { display: none; }
  .brand small { display: block; text-align: left; }
  .hero { padding-top: 52px; padding-bottom: 72px; }
  h1 { font-size: clamp(42px, 12vw, 62px); letter-spacing: -.048em; }
  .eyebrow { border-radius: 16px; align-items: flex-start; }
  .hero-actions { flex-wrap: wrap; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-proof strong { white-space: normal; }
  .hero-stage { height: auto; aspect-ratio: 16 / 11.5; }
  .hero-screen { inset: 42px 8px auto; }
  .hero-screen-meta { left: 16px; right: 16px; gap: 8px; overflow: hidden; }
  .hero-screen-meta span:last-child { display: none; }
  .hero-stage-notes { left: 4px; right: 4px; bottom: 12px; gap: 14px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-heading, .pricing-heading, .about-section { grid-template-columns: 1fr; gap: 30px; }
  .value-grid, .automotive-grid, .pricing-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .privacy-note { grid-template-columns: 1fr; gap: 16px; }
  .product-card { min-height: 580px; }
  .product-card h3 { white-space: normal; }
  .suite-card { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .suite-media { min-height: 0; }
  .suite-includes { grid-template-columns: 1fr; }
  .pricing-card-featured { grid-row: auto; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 30px 26px; margin-bottom: 82px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  html[data-lang="ja"] .mobile-keep-together { white-space: nowrap; }
  .header-inner { gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand span { min-width: 0; }
  .brand small { overflow: hidden; text-overflow: ellipsis; }
  .header-actions { flex: 0 0 auto; gap: 8px; }
  .header-actions .button-ghost { width: 52px; min-height: 34px; padding-inline: 7px; font-size: 8px; line-height: 1.25; text-align: center; }
  .brand strong { font-size: 13px; }
  .language-switch span { padding: 5px 7px; font-size: 9px; }
  .hero-lead { font-size: 14px; line-height: 1.82; }
  .button { width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-stage { height: auto; aspect-ratio: 16 / 11.5; }
  .hero-screen { inset: 42px 2px auto; }
  .hero-screen img, .hero-screen video { border-radius: 18px; }
  .hero-screen img.is-next, .hero-screen video.is-next { transform: translate3d(16px, -13px, 0) scale(.96) rotate(.7deg); }
  .hero-screen img.is-prev, .hero-screen video.is-prev { transform: translate3d(-12px, 12px, 0) scale(.93) rotate(-.8deg); }
  .hero-stage-notes { grid-template-columns: 1fr; gap: 7px; }
  .hero-stage-notes span:last-child { display: none; }
  .section-heading h2, .pricing-heading h2, .faq-heading h2, .final-cta h2 { font-size: 34px; }
  html[data-lang="ja"] .final-cta h2 { max-width: 7em; text-wrap: wrap; }
  .product-card { padding: 12px 22px; min-height: 550px; }
  .product-media { height: 225px; }
  .suite-card { padding: 16px 22px; }
  .suite-copy h3 { font-size: 29px; }
  .suite-actions { align-items: flex-start; flex-direction: column; }
  .suite-media { min-height: 0; }
  .pricing-card { min-height: auto; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .media-editor-panel { width: calc(100vw - 28px); right: 14px; bottom: 14px; }
}

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

.split-heading > span { display: block; }
@media (min-width: 821px) {
  html[data-lang="en"] h1 .headline-line { white-space: nowrap; }
}

.suite-description > span { display: block; }

@media (min-width: 1121px) {
  html[data-lang="ja"] h1 .headline-line { white-space: nowrap; }
}

/* v4: controlled Japanese line breaks */
.controlled-copy .copy-line {
  display: block;
}
html[data-lang="ja"] .controlled-copy .copy-line {
  white-space: nowrap;
}
.hero-lead.controlled-copy {
  max-width: 760px;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.92;
}
.section-copy {
  max-width: 520px;
}
.card-copy .copy-line + .copy-line {
  margin-top: 2px;
}
@media (max-width: 980px) {
  html[data-lang="ja"] .controlled-copy .copy-line {
    white-space: normal;
  }
}


/* v5: exact product icons, larger minimum text, aligned footnote */
.hero-screen-meta span:last-child { font-size: 13px; }
.product-card h3 { white-space: normal; }
.product-card .product-actions .text-link { font-size: 18px; }
@media (max-width: 980px) {
  .hero-screen-meta { left: 18px; right: 18px; top: 18px; font-size: 12px; gap: 10px; }
  .hero-screen-meta strong { font-size: 12px; }
  .hero-screen-meta span:last-child { font-size: 12px; }
  .hero-stage-notes b, .hero-stage-notes em { font-size: 12px; }
}
@media (max-width: 640px) {
  .privacy-footnote { margin-right: 16px; max-width: calc(100% - 32px); }
  .product-card .product-actions .text-link { font-size: 16px; }
}

/* Keep the full product-card frame visible inside its taller 3:2 media window. */
.product-media { height: auto; aspect-ratio: 3 / 2; }
.product-media img, .product-media video { object-fit: contain; }


/* v6: minimal Individual / Enterprise information additions */
.pricing-info-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.individual-note {
  border-top: 1px solid #22364f;
  padding: 18px 4px 2px;
}
.individual-note strong {
  display: block;
  color: #dbe7f4;
  font-size: 13px;
  margin-bottom: 9px;
}
.individual-note ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 16px;
  list-style: disc outside;
}
.individual-note li {
  margin: 0;
  padding: 0;
  color: #8498ae;
  font-size: 11px;
  line-height: 1.65;
}
.individual-note li::marker {
  color: #72e4ff;
}
.enterprise-note {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px 12px;
  border: 0;
  border-top: 1px solid rgba(137, 173, 207, .08);
  border-radius: 0;
  background: transparent;
  padding: 11px 4px 0;
}
.enterprise-note strong {
  display: inline;
  color: #74879b;
  font-size: 11px;
  font-weight: 650;
  margin-right: 8px;
}
.enterprise-note p {
  display: inline;
  margin: 0;
  color: #667a8f;
  font-size: 10px;
  line-height: 1.6;
}
.enterprise-button {
  flex: 0 0 auto;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #71869b;
  font-size: 10px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.enterprise-button:hover {
  transform: none;
  background: transparent;
  color: #9aadc0;
}
.enterprise-email {
  margin: 12px 0 0;
  color: #8296aa;
  font-size: 14px;
  letter-spacing: .01em;
}
.enterprise-status-note {
  margin: 0;
  max-width: 720px;
  color: #8296aa;
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 760px) {
  .individual-note ul {
    display: grid;
    gap: 6px;
  }
  .enterprise-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Standalone contact pages */
.standalone-main {
  min-height: calc(100vh - 80px);
  padding: 92px 0 110px;
}
.standalone-shell { max-width: 900px; }
.standalone-shell-wide { max-width: 1180px; }
.standalone-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.standalone-title {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}
.standalone-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: #adbdcf;
  font-size: 16px;
  line-height: 1.9;
}
.standalone-grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
.standalone-card {
  border: 1px solid rgba(137, 173, 207, .1);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 32, 52, .78), rgba(10, 21, 37, .76));
  padding: 24px 26px;
}
.standalone-card h2 {
  color: #dff5ff;
  font-size: 18px;
  line-height: 1.35;
}
.standalone-card p {
  margin: 10px 0 0;
  color: #9cadc1;
  font-size: 14px;
  line-height: 1.85;
}
.standalone-card .standalone-price {
  margin-top: 18px;
  color: var(--text);
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.045em;
}
.standalone-price span { color: #8398ae; font-size: 13px; font-weight: 650; letter-spacing: 0; }
.standalone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}
.standalone-contact {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #29405b;
  border-radius: 14px;
  color: #dbe9f7;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.standalone-contact:hover, .standalone-contact:focus-visible { border-color: #4f718f; background: #101d30; color: #fff; }
.product-detail-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
.detail-feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.standalone-card h2 + .detail-feature-list { margin-top: 14px; }
.detail-feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.detail-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: .8;
}
@media (min-width: 641px) {
  .standalone-card .standalone-price { font-size: 64px; }
}
@media (max-width: 640px) {
  .standalone-main { padding: 64px 0 80px; }
  .standalone-card { padding: 20px; }
  .standalone-intro { font-size: 15px; }
  .product-detail-summary { grid-template-columns: 1fr; }
  .standalone-contact, .standalone-actions .button { width: 100%; }
}
