:root {
  --bg: #fbfaf7;
  --ink: #11172b;
  --muted: rgba(17, 23, 43, 0.68);
  --line: rgba(17, 23, 43, 0.08);
  --accent: #7a81ff;
  --lime: #dfff55;
  --orange: #fe6901;
  --navy: #101827;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(122, 129, 255, 0.14), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
}

.page-shell {
  overflow-x: clip;
}

.section-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.product-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  gap: 0;
  text-align: center;
  padding: 116px clamp(16px, 2.2vw, 32px) 0;
  overflow: hidden;
}

.product-hero > [data-reveal] {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.product-hero h1 strong {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.94em;
  line-height: inherit;
  letter-spacing: inherit;
}

.product-hero-copy {
  width: 100%;
  max-width: 720px;
  color: var(--muted);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.34vw, 1.22rem);
  line-height: 1.42;
  margin: 34px auto 0;
}

.product-hero-copy p {
  display: none;
}

.product-hero-copy p {
  margin: 0;
}

.product-hero-copy p + p {
  margin-top: 18px;
}

.product-actions {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.product-hero-video {
  width: 100%;
  max-width: 100%;
  margin-top: clamp(40px, 8vh, 96px);
  padding: 0 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}

.product-video-window {
  position: relative;
  width: auto;
  max-width: 100%;
  height: min(100%, clamp(320px, 52vh, 720px));
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 255, 255, 0.9);
}

.product-video-window-top {
  height: 18px;
  background: #171f33;
}

.product-video-poster {
  display: block;
  width: 100%;
  height: calc(100% - 18px);
  object-fit: cover;
  object-position: top center;
}

.product-video-overlay {
  position: absolute;
  inset: 18px 0 0;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  background: linear-gradient(180deg, rgba(17, 23, 43, 0.04), rgba(17, 23, 43, 0.34));
  color: #ffffff;
  pointer-events: none;
}

.product-video-play {
  display: grid;
  width: clamp(62px, 7vw, 88px);
  height: clamp(62px, 7vw, 88px);
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 20px 46px rgba(17, 23, 43, 0.18);
}

.product-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
}

.product-video-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.82);
  font-family: "Radio Canada", sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.product-intro-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 86px);
  margin-top: 110px;
  padding: 0 0 118px;
}

.product-intro-note p {
  margin: 0;
  color: rgba(17, 23, 43, 0.68);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.24vw, 1.18rem);
  line-height: 1.45;
}

.button-dark,
.button-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  font-family: "Radio Canada", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.button-dark {
  border: 0;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 26px rgba(16, 24, 39, 0.14);
}

.button-dark.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(17, 23, 43, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.button-dark:hover,
.button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(16, 24, 39, 0.14);
}

.product-snapshot {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
}

.snapshot-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-radius: 20px;
  background: #fff;
  color: rgba(17, 23, 43, 0.78);
  font-family: "Radio Canada", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.snapshot-row span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.snapshot-row:nth-child(2) span {
  color: var(--orange);
}

.snapshot-row:nth-child(3) span {
  color: #97b900;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
  padding: 0 0 132px;
}

.split-section {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 0 0 150px;
}

.split-section-b {
  min-height: 660px;
  width: min(calc(100% - 20px), var(--content-width));
  gap: 36px;
}

.split-section-b .split-copy {
  justify-self: end;
  width: min(100%, 560px);
  padding-left: clamp(18px, 3vw, 54px);
  text-align: right;
}

.split-section-b .split-copy p {
  margin-left: auto;
}

.split-section-b .integration-visual {
  order: -1;
}

.split-copy h2 {
  margin: 0 0 20px;
  max-width: 760px;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.split-copy strong {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.94em;
  line-height: inherit;
  letter-spacing: inherit;
}

.split-copy p {
  max-width: 460px;
  margin: 0 0 26px;
  color: var(--muted);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.6;
}

.title-inline-prefix {
  display: inline;
}

.title-nowrap {
  white-space: nowrap;
}

.integration-visual {
  display: flex;
  justify-content: center;
}

.integration-frame {
  position: relative;
  width: min(100%, 615px);
  aspect-ratio: 615 / 571;
  min-height: auto;
  padding: 22px 24px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.68), transparent 42%),
    linear-gradient(180deg, #eef1f8 0%, #e9edf7 100%);
}

.integration-icons {
  display: grid;
  grid-template-columns: repeat(5, 80px);
  grid-auto-rows: 80px;
  gap: 16px 17px;
  width: fit-content;
  margin: 18px auto 0;
}

.integration-icons button {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  min-height: 0;
  padding: 10px 8px;
  border: 1px solid rgba(16, 24, 39, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 10px 20px rgba(44, 52, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--ink);
  font-family: "Radio Canada", sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.integration-icons button:nth-child(3n + 1) {
  background: linear-gradient(180deg, #e9ff6f 0%, var(--lime) 100%);
  color: var(--ink);
}

.integration-icons button:nth-child(3n + 2) {
  background: linear-gradient(180deg, #ff986a 0%, #ee5f28 100%);
  color: #fff8f3;
}

.integration-icons button:nth-child(3n) {
  background: linear-gradient(180deg, #8d92ff 0%, var(--accent) 100%);
  color: #ffffff;
}

.integration-branches {
  position: absolute;
  left: 50%;
  top: 214px;
  width: 448px;
  transform: translateX(-50%);
  pointer-events: none;
}

.integration-root {
  position: absolute;
  left: 50%;
  bottom: 62px;
  display: grid;
  width: 79px;
  height: 79px;
  place-items: center;
  transform: translateX(-50%);
  border: 0;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 16px 28px rgba(64, 78, 170, 0.16);
}

.integration-root img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.module-contents {
  display: grid;
  width: min(calc(100% - 80px), 1680px);
  grid-template-columns: minmax(520px, 0.78fr) minmax(620px, 1fr);
  grid-template-rows: auto 1fr;
  gap: 38px clamp(56px, 4.2vw, 80px);
  align-items: start;
  min-height: 820px;
  margin: 0 clamp(40px, 2.1vw, 56px) 0 auto;
  padding: 0 0 150px;
}

.module-contents-intro {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 100%;
  max-width: 900px;
  padding-top: 8px;
  padding-right: 18px;
  text-align: right;
}

.module-contents-intro span {
  display: inline-flex;
  margin-bottom: clamp(70px, 8vw, 104px);
  color: var(--accent);
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.module-contents-intro h2 {
  margin: 0;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(4rem, 6vw, 7.4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.module-contents-intro h2 br {
  display: none;
}

.module-contents-intro .title-nowrap {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: normal;
}

.module-contents-intro .title-inline-prefix {
  display: inline-flex;
  margin: 0 12px 0 0;
  color: var(--accent);
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  vertical-align: middle;
}

.module-contents-intro h2 strong {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.96em;
  line-height: inherit;
  letter-spacing: inherit;
}

.module-contents-intro p {
  max-width: 670px;
  margin: 52px 0 0 auto;
  color: rgba(17, 23, 43, 0.68);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.55vw, 1.58rem);
  line-height: 1.42;
}

.module-contents-layout {
  display: contents;
}

.module-tab-list {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 838px;
  padding: clamp(28px, 2vw, 34px);
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.68), transparent 42%),
    linear-gradient(180deg, #eef1f8 0%, #e9edf7 100%);
  box-shadow: 0 26px 56px rgba(44, 52, 95, 0.08);
}

.module-tab {
  appearance: none;
  min-height: 92px;
  padding: 0 30px;
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow:
    0 16px 30px rgba(44, 52, 95, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.module-tab:hover,
.module-tab:focus-visible {
  border-color: rgba(122, 129, 255, 0.34);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.module-tab.is-active {
  border-color: rgba(223, 255, 85, 0.88);
  background: var(--navy);
  color: #ffffff;
  box-shadow:
    0 22px 42px rgba(16, 24, 39, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.module-tab:nth-child(3n + 1):not(.is-active) {
  background: linear-gradient(180deg, #e9ff6f 0%, var(--lime) 100%);
}

.module-tab:nth-child(3n + 2):not(.is-active) {
  background: linear-gradient(180deg, #ff986a 0%, #ee5f28 100%);
  color: #fff8f3;
}

.module-tab:nth-child(3n):not(.is-active) {
  background: linear-gradient(180deg, #8d92ff 0%, var(--accent) 100%);
  color: #ffffff;
}

.module-panel-stack {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  min-height: 430px;
}

.module-content-panel {
  min-height: 100%;
  padding: clamp(34px, 3vw, 44px);
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 60px rgba(44, 52, 95, 0.055);
}

.module-content-panel[hidden] {
  display: none;
}

.module-content-panel h3 {
  margin: 0;
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(1.16rem, 1.35vw, 1.36rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.module-content-panel p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(17, 23, 43, 0.7);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  line-height: 1.32;
}

.module-content-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.module-content-panel li {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 48px;
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(17, 23, 43, 0.78);
  font-family: "Radio Canada", sans-serif;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 850;
  line-height: 1.18;
}

.module-content-panel li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--lime);
}

.module-content-panel li:nth-child(3n + 2)::before {
  background: var(--orange);
}

.module-content-panel li:nth-child(3n)::before {
  background: var(--accent);
}

.product-story h2,
.product-detail h2 {
  margin: 0;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.058em;
}

.product-story-text {
  display: grid;
  gap: 22px;
}

.product-story-text p,
.product-detail p {
  margin: 0;
  color: rgba(17, 23, 43, 0.72);
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.24vw, 1.16rem);
  line-height: 1.45;
}

.product-intro-note p strong,
.product-story-text p strong,
.split-copy p strong,
.product-detail p strong,
.detail-card p strong {
  color: var(--ink);
  font-family: "Radio Canada", sans-serif;
  font-size: 0.92em;
  font-weight: 900;
  letter-spacing: -0.018em;
}

.product-detail {
  position: relative;
  padding: 0 0 150px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: stretch;
}

.detail-copy {
  min-height: 100%;
}

.detail-copy-inner {
  position: sticky;
  top: 112px;
  align-self: start;
  will-change: top;
}

.detail-copy-inner p {
  margin-top: 24px;
}

.detail-cards {
  display: grid;
  gap: 18px;
}

.detail-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(17, 23, 43, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
}

.detail-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--lime);
}

.detail-card:nth-child(3n + 2)::before {
  background: var(--accent);
}

.detail-card:nth-child(3n)::before {
  background: var(--orange);
}

.detail-card h3 {
  margin: 0 0 14px;
  font-family: "Radio Canada", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.detail-card p {
  font-size: 1rem;
  line-height: 1.42;
}

.product-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  margin-bottom: 150px;
  min-height: 292px;
  padding: clamp(52px, 6vw, 76px);
  border: 1px solid rgba(180, 116, 48, 0.16);
  border-radius: 38px;
  background:
    url("../../assets/images/home/regulations-bg.svg") center / cover no-repeat,
    linear-gradient(90deg, #e88945 0%, #f6b56e 44%, #f3e2b9 100%);
  box-shadow:
    0 38px 76px rgba(17, 23, 43, 0.12),
    0 18px 38px rgba(112, 76, 32, 0.1);
}

.product-cta-card > div > span,
.product-cta-card > div > p {
  display: none;
}

.product-cta-card h2 {
  max-width: 620px;
  margin: 0;
  color: #fffaf0;
  font-family: "Source Serif Pro", "Times New Roman", serif;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-shadow:
    0 18px 38px rgba(17, 23, 43, 0.26),
    0 4px 12px rgba(17, 23, 43, 0.12);
}

.product-cta-card .panel-links {
  gap: 18px;
}

.panel-links {
  display: grid;
  gap: 14px;
}

.panel-links a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid rgba(17, 23, 43, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-family: "Radio Canada", sans-serif;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(17, 23, 43, 0.08);
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.product-cta-card .panel-links a {
  min-height: 66px;
  padding: 0 28px;
  font-size: 1.02rem;
}

.panel-links a:first-child {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.product-cta-card-single .panel-links a:first-child {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.panel-links a:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(17, 23, 43, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 920px) {
  .product-hero,
  .product-intro-note,
  .product-story,
  .split-section,
  .detail-layout,
  .product-cta-card,
  .panel-links {
    grid-template-columns: 1fr;
  }

  .split-section-b {
    min-height: auto;
  }

  .split-section-b .split-copy {
    justify-self: stretch;
    width: 100%;
    padding-left: 0;
    text-align: left;
  }

  .split-section-b .split-copy p {
    margin-left: 0;
  }

  .split-section-b .integration-visual {
    order: 0;
  }

  .module-contents-intro,
  .module-contents-layout {
    grid-template-columns: 1fr;
  }

  .module-contents {
    width: min(calc(100% - 32px), var(--content-width));
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding-top: 0;
  }

  .module-contents-intro,
  .module-tab-list,
  .module-panel-stack {
    grid-column: 1;
    grid-row: auto;
  }

  .module-contents-intro {
    justify-self: stretch;
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .module-contents-intro span {
    margin-bottom: 34px;
  }

  .module-contents-intro h2 {
    font-size: clamp(3.3rem, 10vw, 5.2rem);
  }

  .module-contents-intro .title-nowrap {
    margin-bottom: 16px;
  }

  .module-contents-intro p {
    max-width: 680px;
    font-size: clamp(1.12rem, 2.7vw, 1.34rem);
  }

  .module-contents-intro p {
    margin-left: 0;
  }

  .module-tab-list {
    gap: 12px;
    min-height: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .module-tab {
    min-height: 70px;
    border-radius: 22px;
  }

  .module-panel-stack {
    min-height: 0;
  }

  .integration-frame {
    width: min(100%, 560px);
  }

  .integration-icons {
    grid-template-columns: repeat(5, 72px);
    grid-auto-rows: 72px;
    gap: 14px;
  }

  .integration-icons button {
    width: 72px;
    height: 72px;
    font-size: 0.76rem;
  }

  .integration-branches {
    width: min(78%, 398px);
  }

  .detail-copy {
    min-height: 0;
  }

  .detail-copy-inner {
    position: static;
  }

  .product-hero-video {
    margin-top: clamp(28px, 6vh, 72px);
    padding: 0 clamp(56px, 9vw, 160px);
  }

  .product-video-window {
    width: min(100%, calc(100vw - clamp(220px, 28.4vw, 400px)));
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .panel-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .product-hero {
    width: 100%;
  }

  .product-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: normal;
    gap: clamp(56px, 8vh, 88px);
    padding: clamp(68px, 16vw, 94px) 10px 0;
    min-height: auto;
    height: auto;
  }

  .product-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .product-hero-copy {
    height: auto;
    margin: 0 auto;
  }

  .product-actions {
    flex-direction: column;
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .product-hero-video {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .product-video-window {
    margin-top: 0;
    width: 100%;
    height: clamp(230px, 34dvh, 370px);
    min-height: 0;
    max-height: min(100%, 34dvh);
    aspect-ratio: auto;
    border-radius: 18px 18px 0 0;
  }

  .product-video-play {
    width: 58px;
    height: 58px;
  }

  .product-video-play::before {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .product-video-label {
    max-width: calc(100% - 28px);
    min-height: 34px;
    justify-content: center;
    padding: 0 13px;
    font-size: 0.78rem;
    text-align: center;
  }

  .button-dark,
  .button-secondary {
    width: 100%;
  }

  .product-story,
  .product-intro-note,
  .split-section,
  .module-contents,
  .product-detail {
    padding-bottom: 86px;
    margin-bottom: 86px;
  }

  .product-intro-note {
    margin-top: 56px;
  }

  .product-cta-card {
    margin-bottom: 86px;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .product-intro-note p,
  .product-story-text p,
  .split-copy p,
  .product-detail p {
    text-align: justify;
    text-justify: inter-word;
  }

  .split-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .module-contents {
    width: 100%;
    max-width: var(--content-width);
    padding: 0 0 86px;
  }

  .module-contents-intro h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .module-contents-intro span {
    margin-bottom: 28px;
  }

  .module-contents-intro .title-nowrap,
  .module-contents-intro .title-inline-prefix {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .module-contents-intro .title-inline-prefix {
    margin-right: 8px;
  }

  .module-contents-intro p {
    margin-top: 26px;
    font-size: 1.08rem;
  }

  .module-contents-layout {
    display: contents;
  }

  .module-tab-list {
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .module-tab {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .module-content-panel {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .module-content-panel p {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .module-content-panel ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .module-content-panel li {
    min-height: 54px;
    padding: 10px 14px 10px 36px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .module-content-panel li::before {
    left: 16px;
    width: 8px;
    height: 8px;
  }

  .title-nowrap {
    white-space: normal;
  }

  .integration-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 18px 18px 26px;
  }

  .integration-icons {
    grid-template-columns: repeat(3, 72px);
    grid-auto-rows: 72px;
    gap: 12px;
    justify-content: center;
  }

  .integration-icons button {
    width: 72px;
    height: 72px;
    padding: 8px;
    font-size: 0.72rem;
  }

  .integration-branches {
    top: 188px;
    width: min(80%, 266px);
  }

  .integration-root {
    width: 72px;
    height: 72px;
  }

  .panel-links {
    flex-direction: column;
  }

  .panel-links a {
    width: 100%;
  }
}
