: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; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.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; }
.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; color: #768ba5; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { font-size: 12px; color: #a4b5c8; transition: color .2s; }
.desktop-nav a:hover { color: #fff; }
.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-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; }

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(2, minmax(0, 1fr));
  gap: 14px 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: 9px; letter-spacing: .12em; white-space: nowrap; }
.hero-proof span { display: block; color: #7f93aa; font-size: 10px; margin-top: 5px; line-height: 1.45; }
.hero-stage { position: relative; height: 610px; 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: 78px 18px 100px 24px;
  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 {
  position: absolute;
  top: 6%;
  left: 4%;
  width: 92%;
  height: 88%;
  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: cover;
  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 img.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 {
  z-index: 3;
  opacity: .58;
  filter: saturate(.78) brightness(.74);
  transform: translate3d(32px, -25px, 0) scale(.955) rotate(1deg);
}
.hero-screen img.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, .speaker-intro 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, .speaker-intro p, .pricing-heading p { color: #98aabd; margin: 0; font-size: 14px; line-height: 1.85; text-wrap: pretty; }

.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.value-card { min-height: 292px; border: 1px solid #22364f; 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 #33536f; 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 #254254; border-radius: 22px; background: linear-gradient(135deg, rgba(9, 36, 38, .76), rgba(12, 26, 43, .86)); 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 #3f766e; border-radius: 15px; color: #66e6b2; }
.privacy-note strong { font-size: 18px; line-height: 1.45; text-wrap: balance; }
.privacy-note p { margin: 0; color: #9eb8b2; 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: 650px; border: 1px solid #22364f; border-radius: var(--radius); background: linear-gradient(148deg, rgba(17, 32, 52, .97), rgba(9, 20, 35, .97)); padding: 28px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0, 0, 0, .16); transition: transform .3s, border-color .3s, box-shadow .3s; }
.product-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .72; }
.product-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 44%, #2c455f); box-shadow: 0 28px 74px rgba(0, 0, 0, .25); }
.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-green { background: #113f34; color: #72edb7; }
.pill-violet { background: #322149; color: #c69bff; }
.product-card h3 { font-size: 29px; line-height: 1.18; margin: 20px 0 9px; letter-spacing: -.035em; white-space: nowrap; }
.product-tagline { color: #bfd0e0; font-size: 15px; font-weight: 650; min-height: 50px; margin: 0 0 18px; 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: 2px 0 22px; }
.product-media img, .suite-media img, .speaker-media img { 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, .suite-media img.is-active, .speaker-media img.is-active { opacity: 1; transform: scale(1); }
.screenshot-media img { object-position: center; }
.media-dots { position: absolute; z-index: 8; left: 50%; bottom: 10px; display: flex; gap: 6px; transform: translateX(-50%); }
.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); }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.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-actions { margin-top: auto; padding-top: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.text-link { color: #72e4ff; font-size: 16px; font-weight: 780; }
.text-link::after { content: " ↗"; }
.price { display: inline-flex; align-items: baseline; gap: 5px; white-space: nowrap; font-size: 24px; font-weight: 820; letter-spacing: -.035em; }
.price small { color: #8398ae; font-size: 12px; font-weight: 650; letter-spacing: 0; }

.suite-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; margin-top: 22px; border: 1px solid #43517f; 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: 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 #394d72; 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: 340px; border: 1px solid #33486b; border-radius: 20px; overflow: hidden; background: #0a1526; }

.speaker-section { padding-top: 104px; padding-bottom: 116px; border-bottom: 1px solid #173b35; background: radial-gradient(circle at 80% 20%, rgba(35, 132, 96, .18), transparent 34%), linear-gradient(180deg, rgba(7, 25, 27, .72), rgba(7, 17, 31, .32)); }
.speaker-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 38px; align-items: center; }
.speaker-intro h2 { margin-top: 18px; }
.speaker-intro p { margin-top: 18px; }
.speaker-card { display: grid; grid-template-columns: .88fr 1.12fr; gap: 28px; border: 1px solid #235046; border-radius: 28px; background: linear-gradient(145deg, rgba(10, 38, 36, .98), rgba(8, 25, 32, .98)); padding: 30px; box-shadow: 0 24px 72px rgba(0, 0, 0, .2); }
.speaker-copy { display: flex; flex-direction: column; }
.speaker-copy h3 { font-size: 31px; letter-spacing: -.04em; margin: 0 0 9px; white-space: nowrap; }
.speaker-copy .feature-list li::before { color: var(--green); }
.speaker-copy .text-link { color: #72edb7; }
.speaker-media { position: relative; min-height: 330px; border: 1px solid #28584b; border-radius: 20px; overflow: hidden; background: #071b1b; }

.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 #22364f; 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: #5365a7; 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: 50px; 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: 22px; letter-spacing: -.04em; }
.price-row-green b { color: #72edb7; }

.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; }
.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: 940px; color: #92a6ba; font-size: 12px; line-height: 1.8; }

.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: 1.6fr repeat(3, .8fr); gap: 44px; padding-bottom: 44px; }
.footer-brand p { color: #7f91a8; font-size: 12px; margin-top: 18px; }
.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; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.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: 590px; }
  .hero-screen { inset: 78px 28px 100px 28px; }
  .speaker-shell { grid-template-columns: 1fr; }
  .speaker-intro { max-width: 760px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card-featured { grid-row: span 2; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 28px); }
  .header-inner { height: 70px; }
  .header-cta { display: none; }
  .brand small { display: none; }
  .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; }
  .hero-stage { height: 470px; }
  .hero-screen { inset: 64px 8px 96px; }
  .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 { grid-template-columns: 1fr; gap: 18px; }
  .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: 620px; }
  .product-card h3, .speaker-copy h3 { white-space: normal; }
  .suite-card, .speaker-card { grid-template-columns: 1fr; }
  .suite-media, .speaker-media { min-height: 280px; }
  .suite-includes { grid-template-columns: 1fr; }
  .speaker-section { padding-top: 82px; }
  .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) {
  .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: 390px; }
  .hero-screen { inset: 50px 2px 94px; }
  .hero-screen img { border-radius: 18px; }
  .hero-screen img.is-next { transform: translate3d(16px, -13px, 0) scale(.96) rotate(.7deg); }
  .hero-screen img.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, .speaker-intro h2, .pricing-heading h2, .faq-heading h2, .final-cta h2 { font-size: 34px; }
  .product-card { padding: 22px; min-height: 590px; }
  .product-media { height: 225px; }
  .suite-card, .speaker-card { padding: 22px; }
  .suite-copy h3 { font-size: 29px; }
  .suite-actions { align-items: flex-start; flex-direction: column; }
  .speaker-media, .suite-media { min-height: 220px; }
  .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: 821px) {
  .speaker-shell { grid-template-columns: .8fr 1.2fr; }
  .speaker-intro h2 { font-size: clamp(36px, 3.45vw, 48px); }
}
.speaker-description > span { display: block; }

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

/* v4: controlled Japanese line breaks and speaker enclosure matrix */
.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;
}
.enclosure-types {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(88, 231, 176, .16);
}
.enclosure-types > strong {
  display: block;
  margin-bottom: 12px;
  color: #83f1c1;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: none;
}
.enclosure-type-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 10px 12px;
  align-items: start;
  justify-content: start;
}
.enclosure-type-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(75, 180, 145, .3);
  border-radius: 999px;
  background: rgba(8, 50, 41, .58);
  color: #b9dfd2;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 980px) {
  html[data-lang="ja"] .controlled-copy .copy-line {
    white-space: normal;
  }
}


/* v5: exact product icons, larger minimum text, aligned footnote, refined speaker tag matrix */
.hero-screen-meta span:last-child { font-size: 13px; }
.hero-proof strong { font-size: 12px; }
.hero-proof span { font-size: 12px; }
.product-card h3 { white-space: normal; }
.speaker-copy .product-actions .text-link, .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; }
  .enclosure-type-list { grid-template-columns: repeat(2, max-content); }
}
@media (max-width: 640px) {
  .enclosure-type-list { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .privacy-footnote { margin-right: 16px; max-width: calc(100% - 32px); }
  .speaker-copy .product-actions .text-link, .product-card .product-actions .text-link { font-size: 16px; }
}


/* 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: flex;
  flex-wrap: wrap;
  gap: 7px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.individual-note li {
  position: relative;
  padding-left: 13px;
  color: #8498ae;
  font-size: 11px;
  line-height: 1.65;
}
.individual-note li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #72e4ff;
}
.enterprise-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #283c57;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 32, 52, .78), rgba(10, 21, 37, .76));
  padding: 21px 24px;
}
.enterprise-note strong {
  display: block;
  color: #dbe7f4;
  font-size: 17px;
  margin-bottom: 5px;
}
.enterprise-note p {
  margin: 0;
  color: #8fa3b8;
  font-size: 12px;
  line-height: 1.7;
}
.enterprise-button {
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .individual-note ul {
    display: grid;
    gap: 6px;
  }
  .enterprise-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
