:root {
  --viewport-height: 100dvh;
  --blue-900: #0048e9;
  --blue-700: #2d6eff;
  --orange-hero-shell: #ffffff;
  --paper: #f5f3ee;
  --paper-strong: #ece8df;
  --ink: #111111;
  --muted: #5b616c;
  --line: #d6d9e0;
  --yellow: #ffb700;
  --yellow-soft: #fdcb40;
  --green: #42c660;
  --green-soft: #a7eb98;
  --red: #ff7300;
  --shell-gap: 28px;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --header-height: 120px;
  --canvas-width: calc(100vw - (var(--shell-gap) * 2));
  --canvas-pad-x: 48px;
  --canvas-pad-bottom: 56px;
  --section-inner-x: 40px;
  --footer-overlap: clamp(110px, 12vw, 180px);
  --footer-lower-offset: 160px;
  --footer-frame-lift: 0px;
  --footer-reveal-offset: 88px;
  --loader-frame-step-duration: 750ms;
  --loader-frame-stagger: 375ms;
  --loader-final-scale-duration: 700ms;
}

@font-face {
  font-family: "Roundelay";
  src: url("Font/Roundelay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Roundelay";
  src: url("Font/Roundelay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  cursor:
    url("Image/Cursor/Cursor_Default_32_fit.png") 8 8,
    url("Image/Cursor/Cursor_Default_24_fit.png") 6 6,
    auto;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

body.lenis {
  scroll-behavior: auto;
}

body.lenis.lenis-stopped {
  overflow: hidden;
}

body.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  cursor:
    url("Image/Cursor/Cursor_Default_32_fit.png") 8 8,
    url("Image/Cursor/Cursor_Default_24_fit.png") 6 6,
    auto;
  overflow-x: hidden;
  scrollbar-width: none;
  transition: background-color 420ms ease;
}

a,
button,
input,
select,
textarea,
label,
summary,
[role="button"] {
  cursor:
    url("Image/Cursor/Cursor_Default_32_fit.png") 8 8,
    url("Image/Cursor/Cursor_Default_24_fit.png") 6 6,
    auto;
}

body.modal-open {
  overflow: hidden;
}

/* Loading section page */
body.is-loading,
body.loader-active {
  overflow: hidden;
}

body.section-story-active {
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  background: transparent;
}

.page-loader.is-solid {
  background: #ffffff;
}

.page-loader {
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  transition:
    opacity 420ms ease,
    visibility 420ms ease,
    transform var(--loader-final-scale-duration) cubic-bezier(0.22, 1, 0.36, 1),
    border-radius var(--loader-final-scale-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.no-transition,
.page-loader.no-transition * {
  transition: none !important;
}

body.is-loading .page-loader,
body.loader-active .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader[data-phase="final"] {
  transform: scale(0);
  border-radius: var(--radius-xl);
}

.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: rgba(19, 88, 255, 0.18);
  filter: blur(0);
  z-index: 0;
  display: none;
}

.page-loader::before {
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  top: -8vw;
  right: -6vw;
}

.page-loader::after {
  width: min(34vw, 240px);
  height: min(34vw, 240px);
  bottom: -10vw;
  left: -8vw;
}

.page-loader-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: scale(1.1);
  transform-origin: center;
}

.page-loader-window {
  position: absolute;
  top: var(--loader-window-top);
  left: var(--loader-window-left);
  right: var(--loader-window-right);
  bottom: var(--loader-window-bottom);
  border-radius: var(--loader-window-radius);
  transform: var(--loader-window-transform, none);
  background: transparent;
  box-shadow: 0 0 0 100vmax var(--loader-window-color);
  transition:
    top var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1),
    left var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1),
    right var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1),
    bottom var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1),
    border-radius var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--loader-frame-step-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--loader-layer-delay, 0ms);
}

.page-loader-window-layer-1 {
  --loader-window-color: #011f93;
  --loader-window-top: calc(50% - max(92.4vw, 92.4vh));
  --loader-window-left: calc(50% - max(92.4vw, 92.4vh));
  --loader-window-right: calc(50% - max(92.4vw, 92.4vh));
  --loader-window-bottom: calc(50% - max(92.4vw, 92.4vh));
  --loader-window-radius: 999px;
  --loader-layer-delay: 0ms;
  z-index: 0;
}

.page-loader-window-layer-2 {
  --loader-window-color: #012fbd;
  --loader-window-top: calc(50% - max(85.8vw, 85.8vh));
  --loader-window-left: calc(50% - max(85.8vw, 85.8vh));
  --loader-window-right: calc(50% - max(85.8vw, 85.8vh));
  --loader-window-bottom: calc(50% - max(85.8vw, 85.8vh));
  --loader-window-radius: 20px;
  --loader-window-transform: rotate(45deg);
  --loader-layer-delay: var(--loader-frame-stagger);
  z-index: 1;
}

.page-loader-window-layer-3 {
  --loader-window-color: #0048e9;
  --loader-window-top: calc(var(--header-height) * -0.495);
  --loader-window-left: -15.4vw;
  --loader-window-right: -15.4vw;
  --loader-window-bottom: -15.4vh;
  --loader-window-radius: 999px;
  --loader-layer-delay: calc(var(--loader-frame-stagger) * 2);
  z-index: 2;
}

@media (max-width: 860px) {
  .page-loader-window-layer-3 {
    --loader-window-top: calc(var(--header-height) * -0.585);
    --loader-window-left: -18.2vw;
    --loader-window-right: -18.2vw;
    --loader-window-bottom: -18.2vh;
  }
}

.page-loader-frame .page-loader-window {
  top: var(--loader-window-top);
  left: var(--loader-window-left);
  right: var(--loader-window-right);
  bottom: var(--loader-window-bottom);
  border-radius: var(--loader-window-radius);
}

.page-loader[data-phase="compress"] .page-loader-window {
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  border-radius: 18px;
}

.page-loader-frame .page-loader-window-layer-1 {
  top: var(--loader-window-top);
  left: var(--loader-window-left);
  right: var(--loader-window-right);
  bottom: var(--loader-window-bottom);
  border-radius: 999px;
}

.page-loader[data-phase="compress"] .page-loader-window-layer-1 {
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
}

.page-loader-frame .page-loader-window-layer-2 {
  border-radius: 20px;
}

body.is-loading .site-shell,
body.is-loading .site-frame,
body.loader-active .site-shell,
body.loader-active .site-frame {
  pointer-events: none;
}


.site-shell {
  position: relative;
  min-height: 100vh;
  padding: var(--header-height) var(--shell-gap) var(--shell-gap);
  max-width: 100vw;
}

.site-frame {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease;
}

html:not(.frame-ready) .site-frame {
  opacity: 0;
  visibility: hidden;
}

.frame-window {
  position: fixed;
  top: var(--header-height);
  left: var(--shell-gap);
  right: var(--shell-gap);
  bottom: calc(var(--shell-gap) + var(--footer-frame-lift));
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 100vmax var(--blue-900);
  transition:
    top 420ms ease,
    left 420ms ease,
    right 420ms ease,
    border-radius 420ms ease;
}

body.section-story-active .frame-window {
  top: calc(var(--header-height) * -0.45);
  left: -14vw;
  right: -14vw;
  bottom: -14vh;
  border-radius: clamp(36px, 5vw, 72px);
  box-shadow: 0 0 0 100vmax var(--blue-900);
}

.frame-header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  pointer-events: none;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.header-collapsed .frame-header {
  transform: translateY(-100%);
}

body.header-collapsed .frame-window {
  top: var(--shell-gap);
}

.topbar {
  width: 100%;
  max-width: var(--canvas-width);
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto max-content;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 2;
  padding: 0 0 0 4px;
  pointer-events: auto;
}

.topbar-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-left: 36px;
  flex: 0 0 auto;
}

.topbar-logo img {
  width: auto;
  height: clamp(40.8px, 4.8vw, 55.2px);
  aspect-ratio: 1400 / 441;
  object-fit: contain;
}

.topbar-actions {
  margin-left: auto;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border-radius: 999px;
  background: rgba(228, 228, 228, 0.96);
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Roundelay", "DM Sans", sans-serif;
  font-weight: 500;
}

.site-nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), width 260ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
}

.platform-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.platform-btn {
  background: var(--yellow-soft);
  color: var(--ink);
  font-family: "Roundelay", "DM Sans", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.platform-btn:hover,
.platform-btn:focus-visible {
  background: #ffffff;
  color: var(--ink);
}

.btn:hover,
.btn:focus-visible,
.video-trigger:hover,
.video-trigger:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.content-canvas {
  width: 100%;
  max-width: var(--canvas-width);
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 var(--canvas-pad-x) var(--canvas-pad-bottom);
  min-height: calc(100vh - var(--header-height) - var(--shell-gap));
  transition: background-color 420ms ease;
}

body.section-story-active .content-canvas {
  background: var(--orange-hero-shell);
}

.hero {
  min-height: calc(100vh - var(--header-height) - var(--shell-gap) - 24px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(40px, 5vw, 62px) 0 clamp(52px, 6vw, 76px);
  background: #ffffff;
  border-radius: 34px;
  margin-left: calc(-1 * var(--canvas-pad-x));
  margin-right: calc(-1 * var(--canvas-pad-x));
  padding-left: var(--section-inner-x);
  padding-right: var(--section-inner-x);
}

.section-kicker,
.stack-tag,
.quote-tag,
.board-label,
.team-role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-copy h2,
.final-section h2 {
  font-family: "Roundelay", "DM Sans", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  margin: 0;
  max-width: 9.2ch;
  font-size: clamp(3.2rem, 5.6vw, 5.3rem);
  line-height: 0.94;
  text-transform: none;
}

.hero-title-block {
  margin-top: clamp(18px, 2vw, 22px);
  padding: 4px 0 0;
}

.hero p,
.story-copy p,
.split-copy p,
.feature-card p,
.infra-card p,
.enterprise-copy p,
.board-card p,
.trust-card p,
.final-section p,
.team-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero-text-block {
  max-width: 540px;
  margin-top: clamp(22px, 3vw, 30px);
}

.hero-text-block p {
  margin: 0;
}

.hero-actions,
.button-row,
.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 32px);
}

.btn {
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue-900);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 620px);
  min-height: clamp(480px, 48vw, 620px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 38px;
  background: linear-gradient(180deg, #fbfbf7 0%, #ffffff 100%);
  box-shadow: 0 26px 60px rgba(13, 44, 19, 0.12);
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(166, 213, 244, 0.22) 0 7%, transparent 7.5%),
    radial-gradient(circle at 84% 28%, rgba(187, 168, 255, 0.2) 0 5%, transparent 5.5%),
    radial-gradient(circle at 73% 86%, rgba(166, 213, 244, 0.2) 0 6%, transparent 6.5%);
  opacity: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
}

.hero-orb-top {
  top: clamp(38px, 8%, 58px);
  left: clamp(38px, 9%, 62px);
  width: clamp(10px, 1.4vw, 14px);
  height: clamp(10px, 1.4vw, 14px);
  background: #c2b5ff;
}

.hero-orb-bottom {
  right: clamp(44px, 9%, 68px);
  bottom: clamp(44px, 9%, 68px);
  width: clamp(22px, 3vw, 30px);
  height: clamp(22px, 3vw, 30px);
  background: #a5daf6;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-grid {
  position: relative;
  width: min(100%, 520px);
  min-height: clamp(420px, 40vw, 520px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(0, 1fr) auto minmax(0, 0.68fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: end;
}

.hero-mockup-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(29, 49, 39, 0.16);
}

.hero-mockup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 100%);
  pointer-events: none;
}

.hero-mockup-image {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-mockup-card-app {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1.02;
  background: linear-gradient(180deg, #bae8ff 0%, #89d4f7 100%);
}

.hero-mockup-card-tms {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  aspect-ratio: 0.84;
  background: linear-gradient(180deg, #cfbeff 0%, #bda5ff 100%);
}

.hero-mockup-card-sms {
  grid-column: 1;
  grid-row: 2 / span 2;
  justify-self: start;
  width: min(100%, 88%);
  aspect-ratio: 1.34;
  background: linear-gradient(180deg, #b7df91 0%, #97cb6b 100%);
}

.hero-connector {
  grid-column: 1 / span 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: clamp(110px, 16vw, 140px);
  min-height: clamp(54px, 7vw, 68px);
  padding: 0 22px;
  border-radius: 999px;
  background: #c5afff;
  box-shadow: 0 16px 28px rgba(121, 83, 207, 0.22);
}

.hero-connector span {
  width: clamp(22px, 3vw, 26px);
  height: clamp(22px, 3vw, 26px);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.hero-connector span + span {
  margin-left: -11px;
}

.hero-spark {
  position: absolute;
  width: clamp(26px, 4vw, 34px);
  height: clamp(26px, 4vw, 34px);
  background: #8da97a;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  opacity: 0.9;
}

.hero-spark-left {
  left: clamp(18px, 1vw, 26px);
  top: 48%;
}

.hero-spark-right {
  right: clamp(84px, 14%, 116px);
  bottom: clamp(68px, 16%, 92px);
}

.hero-device-grid {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
}

.hero-device {
  border: 2px solid rgba(0, 72, 233, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 31, 107, 0.12);
}

.hero-device strong {
  display: block;
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-device-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue-900);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-device-laptop {
  padding: 26px;
}

.hero-device-screen {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-height: 92px;
  padding: 16px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, #0f58ff 0%, #0039b8 100%);
  color: #ffffff;
  font-weight: 700;
}

.metric-card.wide {
  grid-column: 1 / -1;
  min-height: 128px;
  background: linear-gradient(135deg, #0b3fb7 0%, #ffb700 100%);
}

.hero-device-phone {
  justify-self: end;
  width: 100%;
  max-width: 170px;
  padding: 18px 14px 22px;
  border-radius: 30px;
}

.hero-phone-screen {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.phone-pill {
  min-height: 58px;
  padding: 0 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  font-weight: 700;
  background: var(--paper);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 34px;
  }

  .hero-visual-shell {
    min-height: 460px;
    border-radius: 34px;
  }

  .hero-mockup-grid {
    width: min(100%, 470px);
    min-height: 390px;
    gap: 14px;
  }

  .hero-mockup-card {
    border-radius: 24px;
  }

  .hero-mockup-card-sms {
    width: min(100%, 92%);
  }

  .hero-connector {
    min-width: 104px;
    min-height: 50px;
  }

  .hero-device-grid {
    grid-template-columns: 1fr;
  }

  .hero-device-phone {
    justify-self: start;
    max-width: 220px;
  }
}

.video-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: min(100%, 420px);
  min-height: 240px;
  margin: 112px auto 0;
  padding: 32px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.video-trigger:hover,
.video-trigger:focus-visible {
  border-color: var(--blue-700);
}

.play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-900);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.play-icon {
  margin-left: 4px;
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-trigger-copy strong {
  display: block;
  font-size: 1.35rem;
}

.video-trigger-copy span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions .video-trigger {
  width: auto;
  max-width: 340px;
  min-height: 0;
  margin: 0;
  padding: 16px 20px;
  gap: 14px;
  align-self: stretch;
}

.hero-actions .play-ring {
  width: 56px;
  height: 56px;
}

.hero-actions .play-icon {
  border-left-width: 14px;
  border-top-width: 9px;
  border-bottom-width: 9px;
}

.hero-actions .video-trigger-copy strong {
  font-size: 1rem;
}

.hero-actions .video-trigger-copy span {
  margin-top: 4px;
  font-size: 0.92rem;
}

.feature-card,
.infra-card,
.visual-stack,
.board-card,
.trust-card {
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.section {
  padding: 48px 0;
}

.hero,
.section {
  background: #ffffff;
  border-radius: 34px;
  margin-left: calc(-1 * var(--canvas-pad-x));
  margin-right: calc(-1 * var(--canvas-pad-x));
  padding-left: var(--section-inner-x);
  padding-right: var(--section-inner-x);
}

.section-story {
  background: #ffffff;
  position: relative;
  display: block;
  min-height: max(
    680px,
    calc(var(--viewport-height) - var(--header-height) - var(--shell-gap) + 20px)
  );
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.story-showcase {
  width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns:
    minmax(160px, 0.95fr)
    minmax(176px, 1.3fr)
    minmax(180px, 1.25fr)
    minmax(176px, 1.05fr)
    minmax(140px, 0.9fr);
  grid-template-areas:
    "leftHero topBlue topWide topWide topPale"
    "leftHero center center center rightTall"
    "bottomYellow bottomPink bottomPink bottomOrange rightTall";
  gap: 20px;
  align-items: stretch;
}

.story-showcase > .story-card {
  transform: translateY(40px);
}

.story-center {
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 0;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 40px);
  justify-self: center;
  transform: translateY(20px);
}

.section-story .section-heading {
  width: auto;
  margin: 0;
  max-width: none;
  text-align: center;
}

.story-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 38px;
  clip-path: inset(0 round 38px);
  background: transparent;
  isolation: isolate;
  pointer-events: none;
}

.story-card-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  transform: translateY(calc(100% + 68px));
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
  will-change: transform;
}

.section-story.story-part-two-active .story-card-reveal {
  transform: translateY(0);
}

.section-story.story-part-two-active .story-card-left-hero .story-card-reveal {
  transition-delay: 0ms;
}

.section-story.story-part-two-active .story-card-top-blue .story-card-reveal {
  transition-delay: 80ms;
}

.section-story.story-part-two-active .story-card-top-wide .story-card-reveal {
  transition-delay: 160ms;
}

.section-story.story-part-two-active .story-card-top-pale .story-card-reveal {
  transition-delay: 240ms;
}

.section-story.story-part-two-active .story-card-bottom-yellow .story-card-reveal {
  transition-delay: 320ms;
}

.section-story.story-part-two-active .story-card-bottom-pink .story-card-reveal {
  transition-delay: 400ms;
}

.section-story.story-part-two-active .story-card-bottom-orange .story-card-reveal {
  transition-delay: 480ms;
}

.section-story.story-part-two-active .story-card-right-tall .story-card-reveal {
  transition-delay: 560ms;
}

.story-card-surface {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: inherit;
}

.story-card-left-hero {
  grid-area: leftHero;
  min-height: 408px;
  margin-right: -20px;
}

.story-card-top-blue {
  grid-area: topBlue;
  min-height: 172px;
  margin-left: 20px;
  margin-bottom: -40px;
}

.story-card-top-wide {
  grid-area: topWide;
  min-height: 172px;
  margin-right: 20px;
  margin-bottom: -40px;
}

.story-card-top-pale {
  grid-area: topPale;
  min-height: 132px;
  margin-left: -20px;
}

.story-card-bottom-yellow {
  grid-area: bottomYellow;
  min-height: 178px;
  margin-right: -20px;
}

.story-card-bottom-pink {
  grid-area: bottomPink;
  min-height: 278px;
  margin-top: -110px;
  margin-left: 20px;
}

.story-card-bottom-orange {
  grid-area: bottomOrange;
  min-height: 278px;
  margin-top: -110px;
  margin-right: 20px;
}

.story-card-right-tall {
  grid-area: rightTall;
  min-height: 408px;
  margin-left: -20px;
}

.story-surface-royal {
  background: #2430bf;
}

.story-surface-blue {
  background: #1f73ee;
}

.story-surface-console {
  background: #161e2c;
}

.story-surface-pale {
  background: #dce1fa;
}

.story-surface-yellow {
  background: #ffbf1d;
}

.story-surface-pink {
  background: #efbfd8;
}

.story-surface-orange {
  background: #ff7a14;
}

.story-surface-lavender {
  background: #c8c8fb;
}

.story-headline {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: max-content;
  max-width: 100%;
  padding-block: 0.18em 0.22em;
  font-size: clamp(2.2rem, 4vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  white-space: nowrap;
  text-align: center;
}

.story-text {
  display: block;
  line-height: inherit;
  width: 100%;
  text-align: center;
  top: 2px;
}

.story-text-inner {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0 0.2em;
}

.story-word {
  display: inline-block;
  transform: translateY(0%);
  transition: transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 96ms);
  will-change: transform;
}

.story-text-a {
  transform: translateY(0%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.story-text-b {
  position: absolute;
  inset: 0;
  transform: translateY(132%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.story-headline.text-swapped .story-text-a {
  transform: translateY(-132%);
}

.story-headline.text-swapped .story-text-b {
  transform: translateY(34%);
}

.story-headline.text-swapped .story-text-a .story-word {
  transform: translateY(-78%);
}

.story-headline.text-swapped .story-text-b .story-word {
  transform: translateY(-28%);
}

@media (max-width: 1160px) {
  .story-showcase {
    grid-template-columns:
      minmax(140px, 0.9fr)
      minmax(170px, 1.05fr)
      minmax(170px, 1.05fr)
      minmax(140px, 0.85fr);
    grid-template-areas:
      "leftHero topBlue topWide topPale"
      "leftHero center center rightTall"
      "bottomYellow bottomPink bottomOrange rightTall";
  }

  .story-center {
    padding: 0;
  }

}

@media (max-width: 860px) {
  .section-story {
    min-height: max(
      640px,
      calc(var(--viewport-height) - var(--header-height) - var(--shell-gap))
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .story-showcase {
    position: relative;
    min-height: 100%;
    display: block;
  }

  .story-showcase > .story-card {
    display: none;
  }

  .story-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    z-index: 3;
  }

  .story-headline {
    font-size: clamp(1.65rem, 4.8vw, 3.2rem);
    width: 100%;
    max-width: 12.5ch;
    margin-inline: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-block: 0.24em 0.32em;
    white-space: normal;
    text-wrap: balance;
    line-height: 1;
  }

  .story-card {
    border-radius: 28px;
    clip-path: inset(0 round 28px);
  }

  .story-card-reveal {
    transform: translateY(calc(100% + 56px));
  }

  .story-card-left-hero,
  .story-card-right-tall {
    min-height: 204px;
  }

  .story-card-top-blue,
  .story-card-top-pale,
  .story-card-top-wide,
  .story-card-bottom-yellow,
  .story-card-bottom-pink,
  .story-card-bottom-orange {
    min-height: 116px;
  }

  .story-text {
    width: 100%;
    text-align: center;
  }

  .story-text-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.12em;
  }

  .story-text-b {
    inset: 0 auto 0 0;
    width: 100%;
  }

  .story-headline.text-swapped .story-text-b {
    transform: translateY(18%);
  }

  .story-headline.text-swapped .story-text-b .story-word {
    transform: translateY(-18%);
  }
}

body.section1-locked {
  overflow: hidden;
}

body.section1-transition-lock {
  overflow: hidden;
}

#section1-physics-overlay {
  position: fixed;
  inset: 0;
  z-index: 31;
  pointer-events: none;
  overflow: hidden;
}


.section1-floating-asset {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19%;
  background: transparent;
  overflow: visible;
  pointer-events: auto;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  contain: layout paint style;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.section1-floating-asset::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 var(--drag-stroke, 0px) rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 140ms ease;
  pointer-events: none;
}

.section1-floating-asset img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.section1-floating-asset.is-dragging {
}

.section1-floating-asset.is-dragging::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .section1-floating-asset {
  }
}

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

.section-heading.compact {
  max-width: 660px;
}

.section-kicker {
  background: var(--paper-strong);
  color: var(--blue-900);
  margin-bottom: 12px;
}

.section h2,
.split-copy h2,
.final-section h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 0.94;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 34px;
  align-items: center;
}

.shape-stage {
  min-height: 420px;
  position: relative;
  border: 2px solid var(--line);
  border-radius: 34px;
  background: #ffffff;
  overflow: hidden;
}

.shape-block {
  position: absolute;
  border-radius: 28px;
}

.shape-a {
  inset: 28px 120px auto 28px;
  height: 124px;
  background: var(--blue-900);
}

.shape-b {
  left: 28px;
  right: 28px;
  bottom: 112px;
  height: 86px;
  background: var(--yellow-soft);
}

.shape-c {
  width: 132px;
  height: 132px;
  right: 28px;
  top: 54px;
  background: var(--green);
}

.shape-panel {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 34px;
  display: grid;
  gap: 12px;
}

.shape-panel span {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  background: var(--paper);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.path-intro {
  max-width: 900px;
}

.path-intro .btn {
  margin-top: 8px;
}

.role-carousel-section {
  width: 100%;
}

.role-carousel-shell {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 36px;
  background: var(--blue-900);
  color: #ffffff;
  overflow: hidden;
}

.role-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  pointer-events: none;
}

.role-carousel-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.role-carousel-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Roundelay", "DM Sans", sans-serif;
  font-size: 1.05rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.role-carousel-tab.is-active,
.role-carousel-tab:hover,
.role-carousel-tab:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
}

.role-carousel-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.role-carousel-nav {
  width: clamp(58px, 7vw, 84px);
  height: clamp(58px, 7vw, 84px);
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.role-carousel-nav:hover,
.role-carousel-nav:focus-visible {
  transform: scale(1.08);
  opacity: 0.86;
}

.role-carousel-media-window {
  position: relative;
  min-height: clamp(280px, 42vw, 460px);
  display: grid;
  place-items: center;
}

.role-carousel-slide {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100%, 620px);
  height: 100%;
  max-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border-radius: clamp(38px, 6vw, 64px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f0e8 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.role-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.role-carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.role-carousel-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 24px auto 0;
  text-align: center;
}

.role-carousel-copy h3 {
  margin: 0 0 10px;
  font-family: "Roundelay", "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.role-carousel-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--blue-700);
  background: #fbfdff;
}

.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.icon-chip.blue {
  background: var(--blue-900);
  color: #ffffff;
}

.icon-chip.yellow {
  background: var(--yellow-soft);
}

.icon-chip.green {
  background: var(--green-soft);
}

.icon-chip.purple {
  background: #eedcff;
}

.infra-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.infra-card {
  padding: 28px;
}

.infra-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  position: relative;
  background: var(--paper);
}

.infra-icon::before,
.infra-icon::after {
  content: "";
  position: absolute;
}

.infra-icon.mobility::before {
  inset: 14px 20px;
  border: 3px solid var(--blue-900);
  border-radius: 14px;
}

.infra-icon.mobility::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  right: 12px;
  bottom: 12px;
}

.infra-icon.binding::before {
  width: 22px;
  height: 22px;
  left: 16px;
  top: 25px;
  background: var(--green);
  border-radius: 8px;
}

.infra-icon.binding::after {
  width: 22px;
  height: 22px;
  right: 16px;
  top: 25px;
  border: 3px solid var(--blue-900);
  border-radius: 8px;
  box-shadow: -10px 0 0 0 var(--paper);
}

.infra-icon.offline::before {
  inset: 18px;
  border: 3px dashed var(--red);
  border-radius: 50%;
}

.infra-icon.offline::after {
  left: 33px;
  top: 18px;
  width: 6px;
  height: 36px;
  background: var(--red);
}

.enterprise-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.enterprise-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.board-card {
  padding: 24px;
}

.board-card.large {
  grid-column: 1 / -1;
  background: var(--ink);
  color: #ffffff;
}

.board-card.large p,
.board-card.large .board-label,
.board-card.large strong {
  color: #ffffff;
}

.board-label {
  background: var(--paper-strong);
  color: var(--blue-900);
}

.board-card.large .board-label {
  background: rgba(255, 255, 255, 0.12);
}

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

.trust-intro {
  max-width: 860px;
  margin-bottom: 24px;
}

.trust-intro p + p {
  margin-top: 12px;
}

.trust-card {
  padding: 18px;
}

.quote-card {
  display: grid;
  gap: 16px;
}

.quote-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.trust-grid-standards {
  align-items: stretch;
}

.standards-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.standards-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.quote-tag {
  background: var(--paper-strong);
  color: var(--blue-900);
  margin-bottom: 10px;
}

.final-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #ffffff;
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, #fffaf8 0%, #fff4eb 100%);
  box-shadow: 0 18px 38px rgba(13, 44, 19, 0.08);
  overflow: hidden;
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f4a7e3 0%, #d98cff 52%, #f2c2ff 100%);
}

.final-copy-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: 32px 24px 24px;
  border-radius: 24px;
  background: #171212;
  color: #ffffff;
  overflow: hidden;
}

.final-loop {
  position: absolute;
  top: -10px;
  left: -6px;
  width: 156px;
  height: 94px;
  border: 3px solid #f2a0e7;
  border-right: 0;
  border-bottom: 0;
  border-radius: 72px 0 0 0;
  opacity: 0.92;
}

.final-loop::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 3px solid #f2a0e7;
  border-radius: 50%;
}

.final-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 16px;
  color: #f5b9ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-section h2 {
  max-width: 7ch;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.final-section p {
  max-width: 30ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: min(100%, 244px);
  min-height: 52px;
  padding: 7px 8px 7px 20px;
  border-radius: 999px;
  background: #f8f2ee;
  color: #171212;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(248, 242, 238, 0.2);
}

.final-cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(180deg, #f7a8e9 0%, #cb7eff 100%);
  position: relative;
}

.final-cta-icon::before {
  content: "\2197";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #171212;
  font-size: 1rem;
  font-weight: 800;
}

.final-back-link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.final-back-link:hover,
.final-back-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.final-visual-card {
  min-width: 0;
  min-height: 0;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #efe3d8 0%, #d6cabf 100%);
  aspect-ratio: 1.72 / 1;
}

.final-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 1160px) {
  .final-card {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  }
}

.team-section {
  background: var(--blue-700);
  padding-top: 42px;
  padding-bottom: 42px;
  padding-left: 80px;
  padding-right: 80px;
  overflow: hidden;
  display: grid;
  gap: 18px;
}

.team-section,
.team-section h2,
.team-section p,
.team-section strong,
.team-section span {
  color: #ffffff;
}

.team-panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 34px;
}

.team-panel-header {
  background-color: transparent;
  padding: clamp(28px, 4vw, 40px) 0;
  background-image: url("Image/Message_Header/Header_BG_Message.png");
  background-position: center calc(50% - 4px);
  background-repeat: no-repeat;
  background-size: contain;
  min-height: clamp(420px, 44vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1200px) {
  .team-panel-header {
    background-size: contain;
  }
}

@media (max-width: 980px) {
  .team-panel-header {
    background-size: contain;
  }
}

.team-header-content-box {
  width: calc(100% - clamp(80px, 10vw, 160px));
  max-width: 1320px;
  max-width: 100%;
  transform: translateY(clamp(-40px, -3vw, -20px));
  position: relative;
  box-sizing: border-box;
}

.team-panel-carousel {
  padding: 24px 32px 32px;
}

.team-section-header {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  position: relative;
  max-width: 100%;
}

.team-section-topline {
  display: none;
  position: static;
  min-height: 0;
}

.team-section-copy {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(72px, 10vw, 180px);
  align-items: end;
  max-width: 100%;
}

.team-section-head-group {
  display: block;
  max-width: 100%;
}

.team-section-message-group {
  display: block;
  max-width: 100%;
  padding-top: 0;
  align-self: end;
  justify-self: start;
}

.team-section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-section-cta {
  position: absolute;
  top: -44px;
  right: -40px;
  width: clamp(68px, 7vw, 92px);
  height: clamp(68px, 7vw, 92px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ff8a15;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 6px 0 rgba(194, 77, 0, 0.9);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.team-section-cta::before {
  content: "";
  width: clamp(22px, 2.3vw, 28px);
  height: clamp(22px, 2.3vw, 28px);
  display: block;
  background-image: url("Icon/ArrowTilted.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, 0);
}

.team-section-cta:hover::before,
.team-section-cta:focus-visible::before {
  animation: team-arrow-diagonal 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes team-arrow-diagonal {
  0% {
    transform: translate(0, 0);
  }

  42% {
    transform: translate(60px, -60px);
  }

  43% {
    transform: translate(-60px, 60px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.team-section-cta:hover,
.team-section-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(194, 77, 0, 0.9);
}

.team-section-title {
  margin: 0;
  font-family: "Roundelay", "DM Sans", sans-serif;
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  max-width: 6ch;
  font-size: clamp(72px, 6.8vw, 92px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  text-transform: none;
}

.team-section-title span {
  display: block;
  font-size: inherit;
}

.team-section-title .team-section-title-accent {
  display: block;
  font-size: clamp(92px, 8.2vw, 120px);
  line-height: 0.84;
  color: #FFC33F !important;
  -webkit-text-fill-color: #FFC33F;
  text-shadow: 0 5px 0 rgba(163, 90, 0, 0.9);
}

.team-section-subtitle {
  margin: 0;
  max-width: min(26ch, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 700;
  line-height: 1.16;
  align-self: end;
}

@media (max-width: 1180px) {
  .team-section-copy {
    grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
    gap: clamp(36px, 6vw, 84px);
  }

  .team-section-subtitle {
    max-width: min(26ch, 100%);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  }
}

.team-carousel {
  display: block;
}

.team-carousel-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.team-carousel-track {
  position: relative;
  min-height: 680px;
}

.team-carousel-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 9, 9, 0.82);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.team-carousel-nav-btn:hover,
.team-carousel-nav-btn:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(9, 9, 9, 0.96);
}

.team-carousel-nav-prev {
  left: 18px;
}

.team-carousel-nav-next {
  right: 18px;
}

.team-card {
  --card-shift: 0px;
  --card-width: 360px;
  --card-scale: 1;
  --card-opacity: 1;
  --card-z: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--card-width);
  padding: 0;
  border: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #09111f;
  color: #ffffff;
  cursor: pointer;
  opacity: var(--card-opacity);
  z-index: var(--card-z);
  transform: translate3d(calc(-50% + var(--card-shift)), 0, 0) scale(var(--card-scale));
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease;
  box-shadow: 0 24px 56px rgba(8, 14, 30, 0.14);
  appearance: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: paint style;
}

.team-card:focus-visible {
  outline: 3px solid rgba(45, 110, 255, 0.34);
  outline-offset: 4px;
}

.team-card[data-slot^="hidden"] {
  pointer-events: none;
}

.team-card-media,
.team-card-media img,
.team-card-overlay,
.team-card-content {
  position: absolute;
  inset: 0;
}

.team-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card-overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 30, 0.06) 0%, rgba(8, 14, 30, 0.16) 48%, rgba(8, 14, 30, 0.78) 100%);
}

.team-card:not(.is-active) .team-card-overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 30, 0.14) 0%, rgba(8, 14, 30, 0.28) 56%, rgba(8, 14, 30, 0.82) 100%);
}

.team-card-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  text-align: left;
}

.team-card-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.team-card-job {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.team-card-name {
  font-family: "Roundelay", "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.team-card-message {
  margin: 0;
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
}

.team-card .team-card-content {
  opacity: 0;
  pointer-events: none;
}

.team-card[data-slot="center"] .team-card-content {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 16px;
}

.video-modal[hidden] {
  display: none;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.74);
}

.video-dialog {
  position: relative;
  width: min(1080px, calc(100vw - 32px));
  margin: 0;
  background: #000000;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.video-modal.is-visible .video-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-dialog video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

.video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 40;
  width: 100%;
  max-width: var(--canvas-width);
  margin: calc(var(--footer-lower-offset) - var(--footer-overlap)) auto 0;
  padding: 0;
  border-radius: 40px;
  background: transparent;
  overflow: hidden;
  transform: translateY(var(--footer-reveal-offset));
  will-change: transform;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--blue-900);
  pointer-events: none;
}

.site-footer-card {
  position: relative;
  min-height: 0;
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 48px;
  border-radius: 40px;
  background: transparent;
  box-shadow: 0 24px 90px rgba(0, 42, 130, 0.18);
  overflow: hidden;
}

.site-footer-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.site-footer-brand-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: start;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-height: 100%;
  min-width: 0;
}

.site-footer-brand img {
  width: min(100%, 505px);
  height: auto;
}

.site-footer-meta {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: end;
  padding-top: 12px;
  padding-bottom: 0;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
  justify-items: end;
  justify-content: end;
}

.site-footer-link-group {
  display: grid;
  align-content: start;
  width: max-content;
  justify-items: start;
  gap: 10px;
  text-align: left;
}

.site-footer-link-group h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-link-group a,
.site-footer-bottom-legal a {
  position: relative;
  z-index: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  margin-left: -10px;
  overflow: hidden;
  isolation: isolate;
  transition: color 220ms ease;
}

.site-footer-link-group a::before,
.site-footer-bottom-legal a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.16);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer-link-group a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-footer-link-group a:hover,
.site-footer-link-group a:focus-visible,
.site-footer-bottom-legal a:hover,
.site-footer-bottom-legal a:focus-visible {
  color: #ffffff;
}

.site-footer-cta-button {
  width: fit-content;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-900);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 72, 233, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-footer-cta-button:hover,
.site-footer-cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 28px rgba(0, 72, 233, 0.24);
}

.site-footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-bottom > :first-child {
  justify-self: start;
}

.site-footer-bottom-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.site-footer-bottom-legal a {
  color: inherit;
  text-decoration: none;
}

.site-footer-link-group a:hover::before,
.site-footer-link-group a:focus-visible::before,
.site-footer-bottom-legal a:hover::before,
.site-footer-bottom-legal a:focus-visible::before {
  transform: scaleX(1);
}

.site-footer-bottom-separator {
  color: rgba(255, 255, 255, 0.42);
  align-self: center;
}

.site-footer-bottom > :last-child {
  justify-self: end;
}

@media (max-width: 1160px) {
  .topbar {
    grid-template-columns: auto max-content;
    gap: 16px;
  }

  .topbar-actions {
    gap: 8px;
    padding: 7px;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav-indicator {
    height: 50px;
  }

  .site-nav a,
  .platform-btn {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero,
  .story-grid,
  .enterprise-layout,
  .trust-grid,
  .feature-grid,
  .infra-flow {
    grid-template-columns: 1fr 1fr;
  }

  .split-copy,
  .enterprise-copy,
  .section-heading {
    grid-column: 1 / -1;
  }

  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .infra-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  :root {
    --shell-gap: 18px;
    --header-height: 96px;
    --radius-xl: 28px;
    --section-inner-x: 20px;
    --footer-overlap: 72px;
    --footer-lower-offset: 0px;
  }

  .site-shell {
    padding-bottom: var(--shell-gap);
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: inline-block;
    order: 2;
    margin-left: auto;
  }

  .topbar-logo {
    order: 1;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .topbar-actions {
    position: absolute;
    top: calc(100% - 12px);
    left: 0;
    right: 0;
    width: auto;
    display: block;
    padding: 12px;
    border-radius: 24px;
    background: var(--blue-700);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .topbar-actions .platform-btn {
    display: none;
  }

  .site-nav {
    position: static;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 0;
    background: transparent;
  }

  .site-nav-indicator {
    display: none;
  }

  .topbar-actions:has(.site-nav.is-open) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
    min-height: 0;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #ffffff;
    transform: none;
  }

  .content-canvas {
    --canvas-pad-x: 20px;
    --canvas-pad-bottom: 36px;
    padding: 0 var(--canvas-pad-x) var(--canvas-pad-bottom);
    border-radius: 28px;
    margin-inline: auto;
  }

  .hero,
  .section {
    border-radius: 28px;
    padding-left: var(--section-inner-x);
    padding-right: var(--section-inner-x);
  }

  .hero,
  .story-grid,
  .feature-grid,
  .infra-flow,
  .enterprise-layout,
  .enterprise-board,
  .trust-grid,
  .site-footer {
    margin-top: -30px;
    padding: 0;
    border-radius: 24px;
    transform: translateY(64px);
  }

  .site-footer {
    transform: none;
    will-change: auto;
  }

  .site-footer-card {
    min-height: 0;
    padding: 24px 20px 20px;
    gap: 28px;
    border-radius: 24px;
  }

  .site-footer-brand-scene {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-brand {
    justify-content: flex-start;
  }

  .site-footer-brand img {
    width: min(100%, 320px);
  }

  .site-footer-brand p {
    max-width: none;
  }

  .site-footer-meta {
    gap: 18px;
    justify-items: start;
    padding-bottom: 0;
    padding-top: 0;
  }

  .site-footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    justify-items: start;
    justify-content: start;
  }

  .site-footer-link-group {
    width: auto;
    justify-items: start;
    text-align: left;
  }

  .site-footer-link-group:last-child {
    grid-column: auto;
  }

  .site-footer-description {
    max-width: none;
  }

  .site-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding-top: 8px;
  }

  .site-footer-bottom-legal {
    justify-content: flex-start;
    gap: 8px;
  }

  .site-footer-bottom > :first-child,
  .site-footer-bottom > :last-child {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    margin-top: 18px;
    padding: 24px 20px 36px;
  }

  .hero-copy {
    display: grid;
    gap: 0;
    padding: 0;
  }

  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .infra-card:nth-child(3) {
    grid-column: auto;
  }

  .hero h1 {
    max-width: 10.4ch;
    font-size: clamp(2.25rem, 9.1vw, 3.4rem);
    line-height: 0.95;
    overflow-wrap: normal;
  }

  .hero-panel {
    justify-content: stretch;
    padding: 0;
  }

  .hero-kicker {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .hero-title-block,
  .hero-text-block {
    margin-top: 16px;
  }

  .hero-title-block {
    padding: 0;
  }

  .hero-text-block {
    padding-top: 0;
    border-top: 0;
  }

  .hero-copy > p,
  .hero-text-block {
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .split-section {
    gap: 26px;
  }

  .role-carousel-shell {
    padding: 22px 18px 24px;
    border-radius: 28px;
  }

  .role-carousel-tabs {
    gap: 8px;
    margin-bottom: 18px;
  }

  .role-carousel-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .role-carousel-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .role-carousel-media-window {
    order: 1;
    min-height: 280px;
  }

  .role-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    font-size: 2.6rem;
  }

  .role-carousel-nav:hover,
  .role-carousel-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .role-carousel-nav-prev {
    left: 4px;
  }

  .role-carousel-nav-next {
    right: 4px;
  }

  .role-carousel-slide {
    width: min(100%, 320px);
    min-height: 240px;
    padding: 20px;
    border-radius: 42px;
  }

  .role-carousel-copy {
    order: 2;
    margin-top: 10px;
    padding: 0 4px;
  }

  .role-carousel-copy h3 {
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .role-carousel-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-visual-shell {
    width: 100%;
    min-height: 420px;
    padding: 18px;
    border-radius: 30px;
  }

  .hero-image-wrap {
    min-height: 100%;
  }

  .hero-mockup-grid {
    width: 100%;
    min-height: 352px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  .hero-mockup-card {
    border-radius: 22px;
  }

  .hero-mockup-card-app {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 0.94;
  }

  .hero-mockup-card-tms {
    grid-column: 2;
    grid-row: 1 / span 2;
    aspect-ratio: 0.8;
    align-self: stretch;
  }

  .hero-mockup-card-sms {
    grid-column: 1 / span 2;
    grid-row: 3;
    width: 100%;
    aspect-ratio: 1.56;
  }

  .hero-connector {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    min-width: 96px;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-grid-lines {
    background-image:
      radial-gradient(circle at 14% 20%, rgba(166, 213, 244, 0.22) 0 7%, transparent 7.5%),
      radial-gradient(circle at 88% 28%, rgba(187, 168, 255, 0.18) 0 5%, transparent 5.5%),
      radial-gradient(circle at 79% 83%, rgba(166, 213, 244, 0.18) 0 6%, transparent 6.5%);
  }

  .hero-orb-top {
    top: 18px;
    left: 18px;
  }

  .hero-orb-bottom {
    right: 20px;
    bottom: 22px;
  }

  .hero-spark-left {
    left: auto;
    right: 18px;
    top: 42%;
  }

  .hero-spark-right {
    right: 26px;
    bottom: 28px;
  }

  .video-trigger {
    width: 100%;
    min-height: 0;
    margin: 90px auto 0;
    padding: 22px 20px;
  }

  .video-trigger-copy strong {
    font-size: 1.1rem;
  }

  .video-trigger-copy span {
    font-size: 0.95rem;
  }

  .team-section {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: var(--section-inner-x);
    padding-right: var(--section-inner-x);
  }

  .team-panel {
    border-radius: 28px;
  }

  .team-panel-header {
    padding: clamp(24px, 6vw, 34px) 0;
    background-image: url("Image/Message_Header/Header_BG_Message_Phone.png");
    background-position: center center;
    background-size: 100% auto;
    min-height: clamp(520px, 136vw, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .team-header-content-box {
    width: calc(100% - 40px);
    max-width: 100%;
    transform: translateY(-12px);
    box-sizing: border-box;
  }

  .team-panel-carousel {
    padding: 18px 18px 22px;
  }

  .team-section-header {
    margin-bottom: 0;
    display: block;
    position: relative;
    max-width: 100%;
  }

  .team-section-topline {
    display: block;
    min-height: 0;
  }

  .team-section-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 6vw, 30px);
    align-items: stretch;
    max-width: 100%;
    width: 100%;
  }

  .team-section-head-group {
    display: block;
    position: relative;
    max-width: 100%;
    padding-right: clamp(74px, 20vw, 92px);
    width: 100%;
    box-sizing: border-box;
  }

  .team-section-message-group {
    display: block;
    max-width: 100%;
    padding-top: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .team-section-subtitle {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1rem, 3.9vw, 1.22rem);
    line-height: 1.22;
    box-sizing: border-box;
  }

  .team-section-title {
    display: grid;
    max-width: 4.9ch;
    font-size: clamp(2.5rem, 10.5vw, 3.7rem);
    line-height: 0.9;
    gap: clamp(6px, 2vw, 10px);
  }

  .team-section-title .team-section-title-accent {
    font-size: clamp(3.5rem, 13.5vw, 4.6rem);
    line-height: 0.82;
    text-shadow: 0 4px 0 rgba(163, 90, 0, 0.9);
  }

  .team-section-cta {
    position: absolute;
    top: clamp(6px, 2vw, 10px);
    right: 0;
    width: clamp(50px, 14vw, 62px);
    height: clamp(50px, 14vw, 62px);
    font-size: 0;
    box-shadow: 0 5px 0 rgba(194, 77, 0, 0.9);
    flex-shrink: 0;
  }

  .team-section-cta::before {
    width: clamp(20px, 5.8vw, 28px);
    height: clamp(20px, 5.8vw, 28px);
  }

  .team-carousel-stage,
  .team-carousel-track {
    min-height: 420px;
  }

  .team-carousel-stage {
    overflow: hidden;
    padding-bottom: 0;
    scrollbar-width: auto;
  }

  .team-carousel-track {
    display: block;
    gap: 0;
    min-height: 420px;
    width: auto;
    padding-right: 0;
  }

  .team-carousel-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .team-carousel-nav-prev {
    left: 10px;
  }

  .team-carousel-nav-next {
    right: 10px;
  }

  .team-card {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    min-height: 0;
    flex: none;
    border-radius: 28px;
    scroll-snap-align: none;
  }

  .team-card[data-slot^="hidden"] {
    pointer-events: none;
  }

  .team-card[data-slot="center"] {
    overflow: hidden;
  }

  .team-card[data-slot="center"] .team-card-content {
    position: absolute !important;
    inset: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 18px !important;
    background: transparent;
    text-align: left;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 3;
  }

  .team-card .team-card-content {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .team-card[data-slot="center"] .team-card-meta {
    position: static !important;
    gap: 8px;
    display: grid !important;
  }

  .team-card[data-slot="center"] .team-card-job,
  .team-card[data-slot="center"] .team-card-name,
  .team-card[data-slot="center"] .team-card-message {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
  }

  .team-card-name {
    font-size: clamp(1.2rem, 5.6vw, 1.75rem);
  }

  .team-card-message {
    font-size: 0.76rem;
    line-height: 1.4;
    max-width: 20ch;
  }

  .team-card[data-slot="center"] .team-card-message {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9);
  }

  .team-card-job {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .video-modal {
    padding: 18px;
  }

  .video-dialog {
    width: min(100%, 520px);
    max-height: calc(100vh - 36px);
    border-radius: 20px;
  }

  .video-dialog video {
    max-height: calc(100vh - 36px);
  }

  .section h2,
  .split-copy h2,
  .final-section h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .shape-stage {
    min-height: 320px;
  }

  .final-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .final-copy-card {
    padding: 28px 20px 22px;
  }

  .final-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .final-section p {
    max-width: none;
  }

  .final-cta-button {
    width: 100%;
  }

  .final-actions {
    align-items: stretch;
  }

  .final-visual-card {
    aspect-ratio: 1.28 / 1;
  }
}
