:root {
  --blue: #1677ff;
  --blue-strong: #0b5ed7;
  --ink: #111827;
  --text: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f6f8fb;
  --white: #ffffff;
  --green: #0f9f6e;
  --amber: #b7791f;
  --shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(22, 119, 255, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 186px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(22, 119, 255, 0.18);
}

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

.button-ghost,
.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.button-light {
  background: var(--white);
  color: var(--blue-strong);
}

.button-accent {
  background: #26e978;
  color: #07140c;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.mobile-menu {
  display: none;
  position: relative;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.menu-toggle::-webkit-details-marker {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  position: absolute;
  top: 54px;
  right: 0;
  width: min(calc(100vw - 32px), 520px);
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav a:not(.button) {
  padding: 10px 4px;
  color: var(--text);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  color: var(--text);
}

.hero-lead {
  max-width: 560px;
  font-size: 20px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 18px 20px 42px;
  overflow: hidden;
  background: #ffffff;
}

.hero-shell {
  position: relative;
  width: min(100%, 1880px);
  min-height: min(790px, calc(100vh - 118px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.08);
}

.hero-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: heroSlide 18s ease-in-out infinite;
}

.hero-shell.is-manual .hero-track {
  animation: none;
}

.hero-slide {
  position: relative;
  display: grid;
  flex: 0 0 25%;
  min-height: min(790px, calc(100vh - 118px));
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-slide-sale::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 35%, rgba(255, 255, 255, 0.74) 52%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(circle at 78% 44%, rgba(22, 119, 255, 0.24), transparent 33%);
}

.hero-slide-product::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 34%, rgba(255, 255, 255, 0.72) 51%, rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(circle at 80% 58%, rgba(22, 119, 255, 0.16), transparent 34%);
}

.hero-slide-event,
.hero-slide-ecosystem {
  color: var(--white);
}

.hero-slide-event::before {
  background:
    linear-gradient(90deg, rgba(5, 14, 35, 0.92) 0 34%, rgba(5, 14, 35, 0.72) 54%, rgba(5, 14, 35, 0.08) 100%),
    radial-gradient(circle at 76% 36%, rgba(22, 119, 255, 0.28), transparent 34%);
}

.hero-slide-ecosystem::before {
  background:
    linear-gradient(90deg, rgba(5, 44, 126, 0.92) 0 35%, rgba(8, 90, 218, 0.74) 56%, rgba(8, 90, 218, 0.14) 100%);
}

.hero-slide-inner {
  display: flex;
  align-items: center;
  width: min(1580px, calc(100% - 180px));
  margin: 0 auto;
  padding: 92px 0 138px;
}

.hero-slide .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-slide .eyebrow {
  color: var(--blue);
}

.hero-slide p {
  color: rgba(55, 65, 81, 0.92);
}

.hero-slide-event .eyebrow,
.hero-slide-ecosystem .eyebrow,
.hero-slide-event p,
.hero-slide-ecosystem p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-slide h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 4.7vw, 92px);
  line-height: 1.08;
}

.hero .button-primary,
.hero .button-secondary {
  box-shadow: 0 14px 34px rgba(0, 43, 120, 0.18);
}

.hero .button-primary {
  background: var(--ink);
  color: var(--white);
}

.hero .button-secondary {
  border-color: rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.hero-slide-event .button-primary,
.hero-slide-ecosystem .button-primary {
  background: var(--white);
  color: var(--blue-strong);
}

.hero-slide-event .button-secondary,
.hero-slide-ecosystem .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-visual-sale {
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(135deg, #f7fbff 0%, #eff6ff 44%, #d8e9ff 100%);
}

.hero-visual-product {
  background:
    radial-gradient(circle at 78% 50%, rgba(22, 119, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 48%, #e6f0ff 100%);
}

.hero-visual-event {
  background:
    linear-gradient(180deg, rgba(6, 13, 31, 0.2), rgba(6, 13, 31, 0.8)),
    linear-gradient(135deg, #071225 0%, #0b2f69 56%, #1478ff 100%);
}

.hero-visual-ecosystem {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 26%),
    linear-gradient(135deg, #0b55dc 0%, #1478ff 58%, #41a5ff 100%);
}

.hero-product {
  position: absolute;
  z-index: 0;
  width: auto;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.hero-product-kit {
  right: -2%;
  bottom: 4%;
  width: min(58vw, 980px);
  filter: drop-shadow(0 34px 62px rgba(17, 24, 39, 0.16));
}

.hero-product-front {
  right: 12%;
  bottom: -28%;
  height: 118%;
  filter: drop-shadow(0 44px 80px rgba(17, 24, 39, 0.2));
}

.hero-product-mini {
  right: 11%;
  bottom: -18%;
  height: 98%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 42px 70px rgba(0, 24, 75, 0.22));
}

.hero-sale-card,
.hero-price-badge,
.hero-floating-panel,
.hero-store-sign,
.hero-demo-counter,
.hero-event-board,
.hero-dashboard {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
}

.hero-sale-card {
  top: 15%;
  right: 34%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(14px);
}

.hero-sale-card span,
.hero-price-badge span,
.hero-floating-panel span,
.hero-demo-counter span,
.hero-event-board span,
.hero-dashboard span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.hero-sale-card strong,
.hero-price-badge strong,
.hero-floating-panel strong,
.hero-event-board strong,
.hero-dashboard strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
}

.hero-price-badge {
  right: 12%;
  top: 16%;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(22, 119, 255, 0.14);
  text-align: center;
}

.hero-transcript-panel {
  right: 8%;
  top: 20%;
  width: min(26vw, 360px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(16px);
}

.hero-transcript-panel em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.hero-wave-panel {
  right: 36%;
  bottom: 22%;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 84px;
  padding: 18px;
  background: rgba(17, 24, 39, 0.82);
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.18);
}

.hero-wave-panel span {
  width: 10px;
  min-height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd3fc, #1677ff);
}

.hero-wave-panel span:nth-child(2) {
  height: 42px;
}

.hero-wave-panel span:nth-child(3) {
  height: 64px;
}

.hero-wave-panel span:nth-child(4) {
  height: 34px;
}

.hero-wave-panel span:nth-child(5) {
  height: 54px;
}

.hero-store-sign {
  right: 10%;
  top: 14%;
  width: min(42vw, 640px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
}

.hero-store-floor {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 62%;
  height: 34%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  transform: skewX(-12deg);
}

.hero-demo-counter {
  right: 26%;
  bottom: 12%;
  display: grid;
  place-items: center;
  width: min(22vw, 300px);
  height: min(28vw, 380px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.hero-demo-counter img {
  width: 56%;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.28));
}

.hero-demo-counter span {
  color: var(--white);
}

.hero-event-board {
  right: 8%;
  bottom: 22%;
  width: min(27vw, 390px);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.hero-dashboard-main {
  right: 14%;
  top: 17%;
  width: min(46vw, 720px);
  min-height: 360px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 78px rgba(0, 38, 116, 0.24);
  backdrop-filter: blur(18px);
}

.hero-dashboard-main::after {
  content: "";
  display: block;
  height: 160px;
  margin-top: 26px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.18) 0 22%, transparent 22% 100%),
    repeating-linear-gradient(180deg, rgba(17, 24, 39, 0.13) 0 2px, transparent 2px 26px);
}

.hero-dashboard-main p {
  max-width: 440px;
  margin: 10px 0 0;
  color: var(--text);
}

.hero-dashboard-phone {
  right: 39%;
  bottom: 15%;
  display: grid;
  place-items: center;
  width: 130px;
  height: 190px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(0, 38, 116, 0.18);
  text-align: center;
}

.hero-proof-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  min-height: 118px;
  padding: 28px 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46));
  backdrop-filter: blur(12px);
}

.hero-proof-strip span {
  display: grid;
  place-items: center;
  min-width: 86px;
  height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.hero-slide-event .hero-proof-strip,
.hero-slide-ecosystem .hero-proof-strip {
  background: linear-gradient(90deg, rgba(2, 72, 180, 0.36), rgba(255, 255, 255, 0.14));
}

.hero-slide-event .hero-proof-strip span,
.hero-slide-ecosystem .hero-proof-strip span {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-feature-strip {
  background: transparent;
  justify-content: flex-end;
  padding-right: 58px;
}

.product-image {
  width: min(100%, 650px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(17, 24, 39, 0.14));
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.22);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 26px;
  background: var(--blue);
}

@keyframes heroSlide {
  0%,
  19% {
    transform: translateX(0);
  }
  25%,
  44% {
    transform: translateX(-25%);
  }
  50%,
  69% {
    transform: translateX(-50%);
  }
  75%,
  94% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(0);
  }
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.recognition-section {
  overflow: hidden;
  background: var(--white);
}

.recognition-section h2 {
  margin: 0 0 56px;
  text-align: center;
  color: #000;
  font-size: clamp(40px, 5vw, 82px);
  font-weight: 500;
  line-height: 1.12;
}

.recognition-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.recognition-marquee::before,
.recognition-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 160px);
  pointer-events: none;
}

.recognition-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.recognition-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.recognition-track {
  display: flex;
  width: max-content;
  gap: 52px;
  padding: 8px 0 12px;
  animation: recognitionScroll 22s linear infinite;
}

.recognition-placeholder {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 260px;
  height: 112px;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: var(--radius);
  background: #fafafa;
  color: #374151;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.recognition-note {
  margin: 38px 0 0;
  text-align: center;
  color: #111827;
  font-size: 18px;
  font-weight: 650;
}

@keyframes recognitionScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 52px;
  align-items: center;
}

.split-section > *,
.hero-slide-inner > *,
.feature-row > *,
.case-card > *,
.trust-grid > * {
  min-width: 0;
}

.split-section.reverse {
  grid-template-columns: 0.68fr 1.32fr;
}

.section-copy {
  max-width: 520px;
}

.section-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.cases {
  background: var(--soft);
}

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  border: 1px dashed #aeb8c8;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(174, 184, 200, 0.34) 49% 51%, transparent 51% 100%),
    linear-gradient(0deg, transparent 0 49%, rgba(174, 184, 200, 0.34) 49% 51%, transparent 51% 100%),
    #f9fafb;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-image-placeholder {
  min-height: 520px;
  aspect-ratio: 16 / 9;
  border-color: rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(90deg, transparent 0 49.85%, rgba(255, 255, 255, 0.26) 49.85% 50.15%, transparent 50.15% 100%),
    linear-gradient(0deg, transparent 0 49.85%, rgba(255, 255, 255, 0.26) 49.85% 50.15%, transparent 50.15% 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 49, 125, 0.18);
  backdrop-filter: blur(8px);
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 360px;
}

.small-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  margin-bottom: 20px;
}

.scene-placeholder {
  aspect-ratio: 16 / 10;
  min-height: 170px;
  margin-bottom: 20px;
}

.feature-placeholder {
  aspect-ratio: 16 / 10;
  min-height: 240px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 700;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.advantage-grid,
.scene-grid,
.proof-grid,
.case-grid {
  display: grid;
  gap: 22px;
}

.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-detail-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.advantage-item,
.scene-card,
.case-card,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.advantage-item,
.scene-card,
.proof-grid article {
  padding: 22px;
}

.advantage-item p,
.scene-card p,
.proof-grid p {
  margin-bottom: 0;
}

.pain-stack {
  display: grid;
  gap: 14px;
}

.pain-stack div {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
  color: var(--ink);
  font-weight: 800;
}

.scene-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-showcase {
  background: #fbfbfb;
}

.feature-heading {
  max-width: 980px;
}

.feature-heading h2 {
  color: #000;
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 500;
  line-height: 1.15;
}

.feature-heading p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.feature-card-grid {
  display: grid;
  gap: 28px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.06);
}

.feature-card > h3 {
  display: grid;
  min-height: 84px;
  margin: 0;
  place-items: center;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  color: #000;
  font-size: clamp(28px, 2.8vw, 42px);
}

.feature-card-body {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  gap: 0;
  align-items: center;
  min-height: 440px;
  background: linear-gradient(135deg, #fbfffd 0%, #ffffff 48%, #f3f6f9 100%);
}

.feature-copy-slider,
.feature-demo-slider {
  overflow: hidden;
}

.feature-copy-slider {
  --feature-copy-height: 360px;
  --feature-copy-item: 122px;
  --feature-copy-gap: 82px;
  height: var(--feature-copy-height);
  padding-left: min(9vw, 112px);
  padding-right: 44px;
  mask-image: linear-gradient(180deg, transparent 0, #000 19%, #000 81%, transparent 100%);
}

.feature-copy-track {
  display: grid;
  gap: var(--feature-copy-gap);
  padding-block: calc((var(--feature-copy-height) - var(--feature-copy-item)) / 2);
  animation: featureTextSlide 12s ease-in-out infinite;
}

.feature-copy-track p {
  display: grid;
  align-content: center;
  min-height: var(--feature-copy-item);
  margin: 0;
  color: var(--text);
  opacity: 0.18;
  transition: opacity 0.28s ease, color 0.28s ease;
}

.feature-copy-track p:nth-child(1) {
  animation: featureCopyToneOne 12s ease-in-out infinite;
}

.feature-copy-track p:nth-child(2) {
  animation: featureCopyToneTwo 12s ease-in-out infinite;
}

.feature-copy-track p:nth-child(3) {
  animation: featureCopyToneThree 12s ease-in-out infinite;
}

.feature-copy-track strong {
  display: block;
  margin-bottom: 10px;
  color: #222;
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 1.25;
}

.feature-copy-track span {
  display: block;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.feature-demo-slider {
  --feature-demo-height: 360px;
  --feature-demo-gap: 34px;
  height: 360px;
  padding: 0 min(7vw, 90px) 0 26px;
}

.feature-demo-track {
  display: grid;
  grid-auto-rows: var(--feature-demo-height);
  gap: var(--feature-demo-gap);
  width: 100%;
  height: auto;
  transform: translateY(0);
  will-change: transform;
  animation: featureDemoSlide 12s ease-in-out infinite;
}

.feature-demo-placeholder {
  height: 100%;
  border: 1px dashed rgba(17, 24, 39, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(17, 24, 39, 0.06) 49.8% 50.2%, transparent 50.2% 100%),
    linear-gradient(0deg, transparent 0 49.8%, rgba(17, 24, 39, 0.06) 49.8% 50.2%, transparent 50.2% 100%),
    #fafafa;
}

.feature-sync-note {
  margin: 32px 0 0;
  text-align: center;
  color: #111827;
  font-size: 17px;
  font-weight: 650;
}

@keyframes featureTextSlide {
  0%,
  24% {
    transform: translateY(0);
  }

  34%,
  58% {
    transform: translateY(calc(-1 * (var(--feature-copy-item) + var(--feature-copy-gap))));
  }

  68%,
  92% {
    transform: translateY(calc(-2 * (var(--feature-copy-item) + var(--feature-copy-gap))));
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes featureCopyToneOne {
  0%,
  24%,
  100% {
    opacity: 1;
  }

  34%,
  92% {
    opacity: 0.18;
  }
}

@keyframes featureCopyToneTwo {
  0%,
  24%,
  68%,
  100% {
    opacity: 0.18;
  }

  34%,
  58% {
    opacity: 1;
  }
}

@keyframes featureCopyToneThree {
  0%,
  58%,
  100% {
    opacity: 0.18;
  }

  68%,
  92% {
    opacity: 1;
  }
}

@keyframes featureDemoSlide {
  0%,
  24% {
    transform: translateY(0);
  }

  34%,
  58% {
    transform: translateY(calc(-1 * (var(--feature-demo-height) + var(--feature-demo-gap))));
  }

  68%,
  92% {
    transform: translateY(calc(-2 * (var(--feature-demo-height) + var(--feature-demo-gap))));
  }

  100% {
    transform: translateY(0);
  }
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
  min-height: 420px;
  padding: 28px;
}

.case-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 360px;
}

.case-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.case-copy p:last-of-type {
  margin-bottom: 0;
}

.case-detail-link {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 34px;
  margin-top: 12px;
  padding: 7px 18px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.case-detail-link:hover,
.case-detail-link:focus-visible {
  border-color: var(--blue-strong);
  background: var(--blue);
  color: var(--white);
}

.case-placeholder {
  min-height: 300px;
  aspect-ratio: 16 / 10;
}

.wide-placeholder {
  aspect-ratio: 21 / 9;
}

.case-benefit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(0, 118, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 118, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.benefit-visual {
  display: grid;
  min-height: 138px;
  align-items: end;
  padding: 8px 10px 0;
}

.benefit-bars {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
  height: 108px;
  border-bottom: 2px solid #0d4ec5;
}

.benefit-bars::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 8px;
  left: 50%;
  border-left: 2px dashed rgba(0, 118, 255, 0.42);
  transform: rotate(-8deg);
  transform-origin: bottom;
}

.benefit-bars > span {
  position: relative;
  display: grid;
  align-items: start;
  height: var(--h);
  min-height: 18px;
  padding-top: 12px;
  border-radius: 6px 6px 0 0;
  color: #7b8494;
  text-align: center;
}

.benefit-bars .before {
  background: linear-gradient(180deg, #eef2f7, #dfe5ec);
}

.benefit-bars .after {
  background: linear-gradient(180deg, #dce6ff, #95b7ff);
  color: #003fbd;
}

.benefit-bars b {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0 3px;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.benefit-axis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
  color: #8b96a7;
  font-size: 12px;
  text-align: center;
}

.benefit-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  row-gap: 6px;
  justify-items: start;
  align-items: end;
  align-content: center;
  min-width: 0;
}

.case-benefit p {
  grid-column: 1 / -1;
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.35;
}

.benefit-summary strong {
  color: #003fbd;
  max-width: 100%;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.benefit-summary small {
  margin-left: 2px;
  font-size: 0.42em;
}

.case-benefit em {
  align-self: end;
  margin-top: 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: #003fbd;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  white-space: nowrap;
}

.benefit-process {
  grid-template-columns: 1fr;
}

.benefit-process .benefit-visual {
  min-height: auto;
  padding: 0;
}

.benefit-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.benefit-steps span {
  display: grid;
  place-items: center;
  flex: 1 1 42px;
  min-width: 0;
  min-height: 34px;
  border: 1px solid #dbe2eb;
  border-radius: 8px;
  background: #f3f6fa;
  color: #6b7280;
  font-size: 11px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
}

.benefit-steps.is-after {
  flex-wrap: nowrap;
}

.benefit-steps.is-after span {
  border-color: rgba(0, 118, 255, 0.24);
  background: #eaf2ff;
  color: #003fbd;
}

.benefit-arrow {
  color: #003fbd;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

.benefit-process .benefit-summary {
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  align-items: end;
}

.benefit-process .benefit-summary p,
.benefit-process .benefit-summary em {
  grid-column: 1 / -1;
}

.benefit-cost .benefit-summary strong {
  font-size: clamp(30px, 2.7vw, 46px);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 52px;
  align-items: start;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid article {
  min-height: 176px;
}

.proof-grid article:nth-child(1) {
  border-top: 4px solid var(--green);
}

.proof-grid article:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.proof-grid article:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.proof-grid article:nth-child(4) {
  border-top: 4px solid #7c3aed;
}

.site-footer {
  padding: 96px 0 36px;
  border-top: 1px solid rgba(22, 119, 255, 0.08);
  background: #f4f8ff;
  color: var(--ink);
}

.site-footer .container {
  width: min(1500px, calc(100% - 96px));
}

.site-footer p,
.site-footer a {
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.8fr) minmax(250px, 0.75fr);
  gap: clamp(28px, 3vw, 52px);
  align-items: start;
}

.footer-brand-panel {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.footer-mark {
  width: 170px;
  height: auto;
}

.footer-brand-panel p {
  max-width: 220px;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.footer-mail {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-size: 17px;
}

.footer-contact-card {
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.footer-contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.footer-contact-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-contact-list dt,
.footer-contact-list dd {
  margin: 0;
}

.footer-contact-list dt {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.footer-contact-list dd,
.footer-contact-list a,
.footer-socials a {
  color: var(--ink);
}

.footer-contact-list a,
.footer-socials a,
.footer-links a,
.footer-downloads a {
  transition: color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.footer-socials a:hover span:last-child,
.footer-socials a:focus-visible span:last-child,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-contact-list dd {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  gap: 42px;
  align-items: flex-start;
}

.footer-socials a {
  display: grid;
  gap: 8px;
  min-width: 58px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-social-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: #f4f8ff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.footer-social-linkedin {
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-social-x {
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-social-instagram {
  border: 0;
  background: transparent;
  object-fit: contain;
}

.footer-social-instagram::before {
  content: none;
}

.footer-social-instagram::after {
  content: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 42px);
  min-width: 0;
}

.footer-links nav {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.footer-links a {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-downloads {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 290px;
  min-width: 0;
}

.footer-downloads h3 {
  max-width: none;
  line-height: 1.35;
}

.footer-downloads a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.1);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-downloads a:hover,
.footer-downloads a:focus-visible {
  background-color: #e5e7eb;
}


.footer-downloads span {
  display: inline-grid;
  width: 24px;
  place-items: center;
  color: #000;
  font-size: 18px;
}

.footer-store-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.copyright {
  margin-top: 72px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .split-section,
  .split-section.reverse,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 18px 14px 34px;
  }

  .section-copy {
    max-width: 720px;
  }

  .hero-shell,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide-inner {
    width: calc(100% - 64px);
    gap: 32px;
    padding: 58px 0 132px;
  }

  .hero-slide .hero-copy {
    max-width: 720px;
  }

  .hero-product-kit {
    right: -28%;
    bottom: 4%;
    width: 96vw;
    opacity: 0.42;
  }

  .hero-product-front {
    right: -4%;
    bottom: -22%;
    height: 86%;
    opacity: 0.34;
  }

  .hero-product-mini {
    right: -6%;
    bottom: -14%;
    height: 76%;
    opacity: 0.28;
  }

  .hero-sale-card,
  .hero-price-badge,
  .hero-transcript-panel,
  .hero-wave-panel,
  .hero-event-board,
  .hero-dashboard-phone {
    display: none;
  }

  .hero-store-sign,
  .hero-dashboard-main {
    right: 32px;
    top: 30%;
    width: min(58vw, 520px);
    opacity: 0.5;
  }

  .hero-dashboard-main {
    min-height: 300px;
    padding: 24px;
  }

  .hero-demo-counter {
    right: 10%;
    bottom: 18%;
    width: min(42vw, 260px);
    height: min(52vw, 340px);
    opacity: 0.46;
  }

  .advantage-grid,
  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .site-footer .container {
    width: calc(100% - 56px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-downloads {
    max-width: 320px;
  }

  .feature-copy-slider {
    --feature-copy-height: 300px;
    --feature-copy-item: 108px;
    --feature-copy-gap: 58px;
    height: var(--feature-copy-height);
    padding: 0 34px;
  }

  .feature-demo-slider {
    --feature-demo-height: 280px;
    --feature-demo-gap: 26px;
    height: 280px;
    padding: 0 34px;
  }
}

@media (max-width: 700px) {
  .container,
  .header-inner {
    width: calc(100% - 28px);
  }

  .section {
    padding: 72px 0;
  }

  .feature-heading h2 {
    font-size: 34px;
  }

  .feature-heading p:last-child {
    font-size: 16px;
  }

  .feature-card > h3 {
    min-height: 66px;
    font-size: 26px;
  }

  .feature-copy-slider {
    --feature-copy-height: 250px;
    --feature-copy-item: 102px;
    --feature-copy-gap: 46px;
    height: var(--feature-copy-height);
    padding: 0 20px;
  }

  .feature-copy-track {
    gap: var(--feature-copy-gap);
  }

  .feature-copy-track p {
    min-height: var(--feature-copy-item);
  }

  .feature-copy-track strong {
    font-size: 23px;
  }

  .feature-copy-track span {
    font-size: 15px;
  }

  .feature-demo-slider {
    --feature-demo-height: 220px;
    --feature-demo-gap: 20px;
    height: 220px;
    padding: 0 20px;
  }

  .feature-sync-note {
    font-size: 15px;
  }

  @keyframes featureTextSlide {
    0%,
    24% {
      transform: translateY(0);
    }

    34%,
    58% {
      transform: translateY(calc(-1 * (var(--feature-copy-item) + var(--feature-copy-gap))));
    }

    68%,
    92% {
      transform: translateY(calc(-2 * (var(--feature-copy-item) + var(--feature-copy-gap))));
    }

    100% {
      transform: translateY(0);
    }
  }

  .recognition-section h2 {
    margin-bottom: 34px;
    font-size: 34px;
  }

  .recognition-track {
    gap: 22px;
    animation-duration: 18s;
  }

  .recognition-placeholder {
    width: 180px;
    height: 86px;
  }

  .recognition-note {
    margin-top: 26px;
    font-size: 15px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-cta,
  .mobile-nav .button {
    align-items: stretch;
  }

  .hero-cta {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding: 12px 14px 28px;
  }

  .hero-slide-inner {
    width: calc(100% - 32px);
    gap: 24px;
    padding: 48px 0 118px;
  }

  .hero-slide h1 {
    font-size: 40px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 54%, rgba(255, 255, 255, 0.68) 74%, rgba(255, 255, 255, 0.1) 100%);
  }

  .hero-slide-event::before,
  .hero-slide-ecosystem::before {
    background: linear-gradient(180deg, rgba(5, 14, 35, 0.96) 0 58%, rgba(5, 14, 35, 0.72) 78%, rgba(5, 14, 35, 0.2) 100%);
  }

  .hero-product-kit {
    right: -54%;
    bottom: 6%;
    width: 148vw;
    opacity: 0.28;
  }

  .hero-product-front,
  .hero-product-mini {
    right: -26%;
    bottom: -28%;
    height: 72%;
    opacity: 0.2;
  }

  .hero-store-sign,
  .hero-dashboard-main,
  .hero-demo-counter {
    display: none;
  }

  .hero-proof-strip {
    flex-wrap: wrap;
    gap: 8px;
    min-height: 92px;
    padding: 18px 16px 42px;
  }

  .hero-proof-strip span {
    min-width: auto;
    height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-feature-strip {
    justify-content: center;
    padding-right: 16px;
  }

  .carousel-button {
    display: none;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-button {
    display: none;
  }

  .video-placeholder {
    min-height: 220px;
  }

  .advantage-grid,
  .scene-grid,
  .case-card,
  .case-card-wide,
  .proof-grid,
  .footer-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    width: calc(100% - 28px);
  }

  .case-card,
  .case-card-wide {
    grid-template-columns: 1fr;
  }

  .case-card {
    padding: 20px;
  }

  .scene-placeholder,
  .feature-placeholder,
  .case-placeholder {
    min-height: 190px;
  }


  .site-footer {
    padding-bottom: 22px;
  }
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.hero-shell {
  width: 100%;
  min-height: min(860px, calc(100vh - 72px));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-slide {
  min-height: min(860px, calc(100vh - 72px));
}

.hero-slide::before {
  z-index: 1;
}

.hero-slide-sale::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 31%, rgba(255, 255, 255, 0.74) 43%, rgba(255, 255, 255, 0.16) 64%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 78%, rgba(255, 255, 255, 0.94) 100%);
}

.hero-slide-product::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 33%, rgba(255, 255, 255, 0.76) 49%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-slide-ecosystem::before,
.hero-slide-event::before {
  background: linear-gradient(90deg, rgba(2, 15, 35, 0.96) 0 34%, rgba(2, 18, 42, 0.76) 48%, rgba(2, 18, 42, 0.08) 100%);
}

.hero-slide-inner {
  width: min(1540px, calc(100% - 220px));
  padding: 110px 0 146px;
}

.hero-slide .hero-copy {
  max-width: 720px;
}

.hero-slide .eyebrow {
  margin: 0 0 22px;
  color: var(--blue-strong);
  font-size: 21px;
  font-weight: 850;
}

.hero-slide p {
  color: #111827;
}

.hero-slide h1 {
  margin: 0 0 26px;
  color: #070b18;
  font-size: clamp(56px, 5.7vw, 104px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-slide h1 em {
  color: var(--blue-strong);
  font-style: normal;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 500;
  line-height: 1.35;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 550;
  line-height: 1.75;
}

.hero .button-primary,
.hero .button-secondary {
  min-width: 168px;
  min-height: 64px;
  border-radius: 999px;
  font-size: 21px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.hero-slide-sale .button-primary {
  background: linear-gradient(135deg, #0052d9, #0b6dff);
  color: #ffffff;
}

.hero-slide-sale .button-secondary {
  border-color: rgba(0, 82, 217, 0.62);
  background: rgba(255, 255, 255, 0.72);
  color: #0052d9;
}

.hero-slide-product .button-primary {
  background: #080d1d;
  color: #ffffff;
}

.hero-slide-product .button-secondary {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #080d1d;
}

.hero-slide-ecosystem,
.hero-slide-event {
  color: #ffffff;
}

.hero-slide-ecosystem .eyebrow,
.hero-slide-event .eyebrow {
  color: #1687ff;
}

.hero-slide-ecosystem h1,
.hero-slide-event h1,
.hero-slide-ecosystem p,
.hero-slide-event p {
  color: #ffffff;
}

.hero-slide-ecosystem .button-primary,
.hero-slide-event .button-primary {
  background: #ffffff;
  color: var(--blue-strong);
}

.hero-slide-ecosystem .button-secondary,
.hero-slide-event .button-secondary {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-visual-sale {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.88) 0 7%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, #aee3ff 0%, #d7f1ff 29%, #37c7ed 30%, #02a8db 46%, #fff7e9 47%, #ffffff 76%);
}

.summer-sea {
  position: absolute;
  inset: 28% 0 auto 40%;
  height: 210px;
  background:
    repeating-linear-gradient(174deg, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, rgba(42, 204, 238, 0.78), rgba(20, 168, 224, 0.24));
  filter: blur(2px);
}

.summer-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(12px);
}

.summer-cloud-one {
  top: 9%;
  left: 52%;
  width: 130px;
  height: 70px;
}

.summer-cloud-two {
  top: 16%;
  right: 28%;
  width: 210px;
  height: 86px;
  opacity: 0.7;
}

.summer-palm {
  position: absolute;
  top: -8%;
  right: -3%;
  width: 260px;
  height: 320px;
  border-radius: 40% 0 0 80%;
  background:
    linear-gradient(34deg, transparent 0 45%, rgba(20, 155, 80, 0.48) 46% 52%, transparent 53%),
    repeating-conic-gradient(from 210deg at 98% 4%, rgba(38, 172, 89, 0.7) 0 9deg, transparent 9deg 18deg);
  opacity: 0.72;
  transform: rotate(-8deg);
}

.summer-glass {
  position: absolute;
  right: 37%;
  bottom: 19%;
  width: 128px;
  height: 184px;
  border: 5px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px 16px 38px 38px;
  background:
    radial-gradient(circle at 58% 42%, #fff6ba 0 14%, transparent 15%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0 36%, rgba(98, 209, 244, 0.58) 37% 100%);
  box-shadow: 0 20px 46px rgba(0, 97, 160, 0.16);
  transform: rotate(-3deg);
}

.summer-shell {
  position: absolute;
  right: 49%;
  bottom: 15%;
  width: 104px;
  height: 86px;
  border-radius: 50% 50% 20% 20%;
  background:
    repeating-radial-gradient(circle at 50% 100%, rgba(191, 102, 45, 0.58) 0 4px, rgba(255, 218, 177, 0.92) 4px 12px);
  box-shadow: 0 14px 28px rgba(150, 95, 42, 0.2);
  transform: rotate(-9deg);
}

.summer-hat {
  position: absolute;
  right: 2%;
  bottom: 18%;
  width: 260px;
  height: 160px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 35%, #0b3f8e 36% 52%, transparent 53%),
    repeating-linear-gradient(18deg, #f1c98e 0 8px, #e5b772 8px 16px);
  transform: rotate(-7deg);
  box-shadow: 0 18px 34px rgba(91, 54, 14, 0.22);
}

.summer-sunglasses {
  position: absolute;
  right: 3%;
  bottom: 9%;
  width: 230px;
  height: 62px;
  background:
    radial-gradient(ellipse at 26% 50%, rgba(5, 20, 42, 0.9) 0 34%, transparent 35%),
    radial-gradient(ellipse at 74% 50%, rgba(5, 20, 42, 0.9) 0 34%, transparent 35%),
    linear-gradient(90deg, transparent 0 41%, rgba(5, 20, 42, 0.9) 42% 58%, transparent 59%);
  transform: rotate(-10deg);
}

.hero-product-summer {
  right: 18%;
  bottom: 7%;
  height: 82%;
  filter: drop-shadow(0 34px 58px rgba(17, 24, 39, 0.2));
  transform: rotate(7deg);
}

.hero-campaign-badge {
  position: absolute;
  top: 11%;
  right: 13%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 214px;
  height: 214px;
  border-radius: 999px;
  background: #ffc928;
  color: #0052d9;
  text-align: center;
  box-shadow: 0 18px 40px rgba(176, 129, 0, 0.2);
}

.hero-campaign-badge::before {
  content: "";
  position: absolute;
  top: 26px;
  width: 70px;
  height: 36px;
  border: 5px solid #ffffff;
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  opacity: 0.9;
}

.hero-campaign-badge span {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 900;
}

.hero-campaign-badge strong {
  display: block;
  color: #0052d9;
  font-size: 35px;
  line-height: 1.08;
}

.hero-campaign-badge small,
.hero-campaign-badge em {
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
}

.hero-visual-product {
  background:
    linear-gradient(90deg, #ffffff 0 38%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, #f5f5f5 0 58%, #d2b18c 59% 76%, #ffffff 77% 100%);
}

.meeting-room {
  position: absolute;
  inset: 0 0 0 36%;
}

.meeting-screen {
  position: absolute;
  top: 16%;
  right: 13%;
  width: min(35vw, 560px);
  min-height: 270px;
  padding: 28px;
  border: 12px solid #111827;
  background: #f8fafc;
  color: #111827;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.18);
}

.meeting-screen strong,
.meeting-screen span {
  display: block;
}

.meeting-screen span {
  margin-top: 4px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
}

.meeting-chart {
  width: 48%;
  height: 80px;
  margin-top: 26px;
  background:
    linear-gradient(140deg, transparent 0 28%, #4f8dff 29% 32%, transparent 33%),
    radial-gradient(circle at 20% 76%, #4f8dff 0 4px, transparent 5px),
    radial-gradient(circle at 48% 56%, #4f8dff 0 4px, transparent 5px),
    radial-gradient(circle at 78% 36%, #4f8dff 0 4px, transparent 5px),
    repeating-linear-gradient(180deg, rgba(17, 24, 39, 0.1) 0 1px, transparent 1px 22px);
}

.meeting-screen ul {
  position: absolute;
  top: 96px;
  right: 28px;
  width: 42%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 13px;
  font-weight: 750;
  line-height: 2;
}

.meeting-screen li::before {
  content: "✓";
  margin-right: 8px;
  color: #0f9f6e;
}

.meeting-table {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 78%;
  height: 20%;
  border-radius: 55% 0 0 0;
  background: linear-gradient(90deg, #c99967, #e0b88c);
  box-shadow: 0 -16px 44px rgba(98, 65, 38, 0.16);
}

.meeting-person {
  position: absolute;
  bottom: 22%;
  width: 112px;
  height: 190px;
  border-radius: 50px 50px 8px 8px;
  background:
    radial-gradient(circle at 50% 20%, #d7a781 0 24px, transparent 25px),
    linear-gradient(180deg, transparent 0 36%, #e7edf7 37% 100%);
  filter: blur(0.5px);
}

.meeting-person-one {
  left: 8%;
  transform: rotate(-18deg) scale(1.18);
}

.meeting-person-two {
  left: 28%;
  transform: scale(0.94);
}

.meeting-person-three {
  right: 5%;
  transform: rotate(12deg);
}

.hero-product-table {
  right: 24%;
  bottom: 17%;
  height: 22%;
  transform: rotate(88deg);
  filter: drop-shadow(0 18px 24px rgba(17, 24, 39, 0.18));
}

.hero-visual-ecosystem {
  background:
    radial-gradient(circle at 76% 25%, rgba(52, 129, 221, 0.28), transparent 28%),
    linear-gradient(135deg, #031124 0%, #062046 55%, #0b1f34 100%);
}

.night-window {
  position: absolute;
  inset: 0 0 22%;
  background:
    repeating-linear-gradient(90deg, rgba(79, 148, 217, 0.1) 0 70px, rgba(255, 255, 255, 0.02) 70px 84px),
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.1) 52%, transparent 78%);
  filter: blur(6px);
}

.night-desk {
  position: absolute;
  left: 38%;
  right: 0;
  bottom: 0;
  height: 24%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 26px, transparent 26px 52px),
    linear-gradient(180deg, #7a4b2f, #2d1b12);
  box-shadow: inset 0 24px 42px rgba(255, 255, 255, 0.08);
}

.hero-product-ecosystem {
  right: 39%;
  bottom: 12%;
  height: 73%;
  filter: drop-shadow(0 35px 62px rgba(0, 0, 0, 0.42));
}

.hero-phone-ui {
  position: absolute;
  right: 15%;
  bottom: 13%;
  z-index: 1;
  width: min(20vw, 285px);
  min-height: 560px;
  padding: 36px 22px 24px;
  border: 9px solid #0b0f18;
  border-radius: 32px;
  background: #f8fafc;
  color: #111827;
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.42);
}

.phone-bar {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 76px;
  height: 20px;
  border-radius: 999px;
  background: #111827;
  transform: translateX(-50%);
}

.hero-phone-ui strong,
.hero-phone-ui span,
.hero-phone-ui p,
.hero-phone-ui h4 {
  display: block;
  margin: 0;
}

.hero-phone-ui strong {
  font-size: 24px;
  font-weight: 900;
}

.hero-phone-ui span,
.hero-phone-ui p {
  color: #374151;
  font-size: 12px;
  font-weight: 700;
}

.hero-phone-ui h4 {
  margin-top: 16px;
  font-size: 15px;
}

.hero-phone-ui ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: #374151;
  font-size: 12px;
  line-height: 1.8;
}

.hero-phone-ui li::before {
  content: "✓";
  margin-right: 6px;
  color: #0f9f6e;
}

.hero-visual-event {
  background:
    radial-gradient(circle at 80% 30%, rgba(30, 119, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #031124 0%, #071a38 52%, #101827 100%);
}

.event-store-sign {
  position: absolute;
  top: 5%;
  left: 51%;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 950;
  text-shadow: 0 0 0 #e51b2d, 0 0 16px rgba(229, 27, 45, 0.8);
  -webkit-text-stroke: 5px #e51b2d;
  transform: translateX(-50%);
}

.event-wall {
  position: absolute;
  inset: 0 0 24%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 70px, transparent 70px 102px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0 48px, transparent 48px 76px);
  opacity: 0.66;
}

.event-screen {
  position: absolute;
  top: 20%;
  left: 48%;
  width: 360px;
  min-height: 140px;
  padding: 28px;
  border: 1px solid rgba(33, 150, 255, 0.54);
  background: linear-gradient(135deg, #0b55dc, #041734);
  color: #ffffff;
  font-size: 31px;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.event-screen span {
  font-size: 18px;
}

.event-logo-board {
  position: absolute;
  top: 12%;
  right: 6%;
  width: 260px;
  padding: 30px 20px;
  background: #ffffff;
  color: #d01424;
  font-size: 28px;
  font-weight: 950;
  text-align: center;
}

.event-logo-board span {
  display: block;
  color: #111827;
  font-size: 20px;
}

.event-counter {
  position: absolute;
  right: 0;
  bottom: 11%;
  width: 66%;
  height: 27%;
  background: linear-gradient(180deg, #93613c, #432a1c);
  box-shadow: 0 -22px 52px rgba(0, 0, 0, 0.34);
}

.event-board {
  position: absolute;
  z-index: 1;
  bottom: 20%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.event-board strong,
.event-board span {
  display: block;
}

.event-board-left {
  left: 42%;
  width: 240px;
}

.event-board-right {
  right: 5%;
  width: 360px;
}

.event-board strong {
  margin-bottom: 12px;
  font-size: 27px;
  font-weight: 950;
}

.event-board span {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.8;
}

.event-product {
  bottom: 14%;
  height: 39%;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
}

.event-product-dark {
  right: 36%;
  transform: rotate(-3deg);
  filter: brightness(0.45) drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
}

.event-product-light {
  right: 27%;
  transform: rotate(3deg);
}

.event-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.event-icons i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.hero-proof-strip {
  align-items: center;
  min-height: 114px;
  padding: 22px 24px 38px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.hero-proof-strip span {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  min-width: 192px;
  height: 66px;
  padding: 0 26px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111827;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
}

.hero-proof-strip i {
  grid-row: 1 / 3;
  color: var(--blue-strong);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
}

.hero-proof-strip b {
  display: block;
  color: var(--blue-strong);
  font-size: 18px;
  line-height: 1.1;
}

.hero-proof-strip small {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-slide-product .hero-proof-strip span {
  grid-template-rows: auto;
  min-width: 142px;
}

.hero-slide-product .hero-proof-strip b {
  color: #111827;
}

.hero-slide-ecosystem .hero-proof-strip,
.hero-slide-event .hero-proof-strip {
  background: rgba(1, 23, 55, 0.8);
}

.hero-slide-ecosystem .hero-proof-strip span,
.hero-slide-event .hero-proof-strip span {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 154px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.hero-slide-ecosystem .hero-proof-strip b,
.hero-slide-event .hero-proof-strip b {
  color: #ffffff;
  font-size: 19px;
}

.hero-feature-strip {
  justify-content: center;
  padding-right: 24px;
}

.carousel-button {
  width: 64px;
  height: 64px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  font-size: 46px;
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-dots {
  bottom: 17px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  background: rgba(17, 24, 39, 0.18);
}

.carousel-dots button.is-active {
  width: 34px;
  background: var(--blue);
}

@media (max-width: 1080px) {
  .hero-shell,
  .hero-slide {
    min-height: 760px;
  }

  .hero-slide-inner {
    width: calc(100% - 72px);
    padding: 76px 0 150px;
  }

  .hero-slide .hero-copy {
    max-width: 600px;
  }

  .hero-slide h1 {
    font-size: 58px;
  }

  .hero-kicker {
    font-size: 26px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-product-summer {
    right: -4%;
    height: 70%;
    opacity: 0.42;
  }

  .hero-campaign-badge {
    right: 8%;
    width: 160px;
    height: 160px;
  }

  .hero-campaign-badge strong {
    font-size: 26px;
  }

  .summer-glass,
  .summer-shell,
  .summer-hat,
  .summer-sunglasses {
    opacity: 0.5;
  }

  .meeting-room {
    left: 24%;
    opacity: 0.48;
  }

  .meeting-screen {
    right: 5%;
    width: 520px;
  }

  .hero-product-ecosystem,
  .hero-phone-ui,
  .event-board,
  .event-product,
  .event-screen,
  .event-logo-board,
  .event-store-sign {
    opacity: 0.42;
  }

  .hero-proof-strip {
    flex-wrap: wrap;
    min-height: 128px;
    padding-bottom: 42px;
  }
}

@media (max-width: 700px) {
  .hero-shell,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide-inner {
    width: calc(100% - 32px);
    padding: 48px 0 172px;
  }

  .hero-slide h1 {
    font-size: 40px;
  }

  .hero-slide .eyebrow {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero .button-primary,
  .hero .button-secondary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    font-size: 17px;
  }

  .hero-slide-sale::before,
  .hero-slide-product::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0 64%, rgba(255, 255, 255, 0.48) 100%);
  }

  .hero-slide-ecosystem::before,
  .hero-slide-event::before {
    background: linear-gradient(180deg, rgba(2, 15, 35, 0.96) 0 72%, rgba(2, 15, 35, 0.52) 100%);
  }

  .hero-product-summer,
  .hero-product-ecosystem,
  .hero-phone-ui,
  .meeting-room,
  .event-wall,
  .event-counter {
    opacity: 0.24;
  }

  .hero-campaign-badge,
  .summer-glass,
  .summer-shell,
  .summer-hat,
  .summer-sunglasses,
  .event-board,
  .event-product,
  .event-screen,
  .event-logo-board,
  .event-store-sign {
    display: none;
  }

  .hero-proof-strip {
    gap: 8px;
    min-height: 150px;
    padding: 18px 12px 42px;
  }

  .hero-proof-strip span,
  .hero-slide-product .hero-proof-strip span,
  .hero-slide-ecosystem .hero-proof-strip span,
  .hero-slide-event .hero-proof-strip span {
    min-width: calc(50% - 8px);
    height: 48px;
    padding: 0 12px;
  }

  .hero-proof-strip i {
    font-size: 18px;
  }

  .hero-proof-strip b {
    font-size: 13px;
  }

  .hero-proof-strip small {
    font-size: 11px;
  }

  .carousel-button {
    display: none;
  }
}

.hero-visual-sale,
.hero-visual-product,
.hero-visual-ecosystem,
.hero-visual-event {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-visual-sale {
  background-image: url("./assets/hero-summer-bg.svg");
}

.hero-visual-product {
  background-image: url("./assets/hero-product-bg.svg");
}

.hero-visual-ecosystem {
  background-image: url("./assets/hero-ecosystem-bg.svg");
}

.hero-visual-event {
  background-image: url("./assets/hero-event-bg.svg");
}

.hero-slide-sale::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 34%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 255, 255, 0.1) 66%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 80%, rgba(255, 255, 255, 0.98) 100%);
}

.hero-slide-product::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 35%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.05) 72%);
}

.hero-slide-ecosystem::before,
.hero-slide-event::before {
  background: linear-gradient(90deg, rgba(2, 15, 35, 0.98) 0 34%, rgba(2, 15, 35, 0.82) 47%, rgba(2, 15, 35, 0.1) 78%);
}

.hero-slide .eyebrow {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-slide-sale .eyebrow,
.hero-slide-product .eyebrow {
  color: #0052d9;
}

.hero-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  color: #111827;
  font-size: clamp(28px, 2.05vw, 39px);
  font-weight: 500;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 8px;
  width: 18px;
  height: 24px;
  background:
    radial-gradient(circle, #f2d44b 0 2px, transparent 3px) 8px 0 / 6px 6px no-repeat,
    radial-gradient(circle, #f2d44b 0 2px, transparent 3px) 0 12px / 6px 6px no-repeat,
    radial-gradient(circle, #f2d44b 0 2px, transparent 3px) 12px 16px / 6px 6px no-repeat;
}

.hero-slide-sale h1 {
  color: #020617;
  font-size: clamp(60px, 5.25vw, 106px);
  line-height: 1.12;
}

.hero-slide-sale h1 em {
  position: relative;
  display: inline-block;
  color: #0052d9;
}

.hero-slide-sale h1 em::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 16px;
  width: 26px;
  height: 38px;
  background:
    radial-gradient(circle, #0052d9 0 3px, transparent 4px) 12px 0 / 8px 8px no-repeat,
    radial-gradient(circle, #0052d9 0 3px, transparent 4px) 0 15px / 8px 8px no-repeat,
    radial-gradient(circle, #0052d9 0 3px, transparent 4px) 16px 27px / 8px 8px no-repeat;
}

.hero-slide-sale .hero-lead,
.hero-slide-product .hero-lead {
  color: #111827;
  font-size: clamp(24px, 1.42vw, 30px);
  font-weight: 500;
}

.summer-sea,
.summer-cloud,
.summer-palm,
.summer-glass,
.summer-shell,
.summer-hat,
.summer-sunglasses,
.meeting-room,
.event-wall,
.event-screen,
.event-logo-board,
.event-store-sign {
  display: none;
}

.hero-product-summer {
  right: 21%;
  bottom: 12%;
  height: 76%;
  z-index: 1;
  transform: rotate(6deg);
  filter: contrast(1.04) drop-shadow(0 36px 58px rgba(17, 24, 39, 0.23));
}

.hero-campaign-badge {
  top: 10%;
  right: 11%;
  z-index: 2;
  width: 218px;
  height: 218px;
  background: #ffc928;
  color: #0052d9;
  box-shadow: 0 20px 46px rgba(184, 135, 0, 0.22);
}

.hero-campaign-badge span {
  margin-top: 36px;
  color: #0052d9;
  font-size: 21px;
}

.hero-campaign-badge strong {
  font-size: 36px;
}

.hero-campaign-badge::before {
  top: 25px;
  width: 76px;
  height: 40px;
  border-width: 5px;
}

.hero-slide-product h1 {
  max-width: 520px;
  color: #0b1020;
  font-size: clamp(56px, 4.65vw, 88px);
  line-height: 1.14;
}

.hero-slide-product .hero-copy {
  max-width: 650px;
}

.hero-slide-product .hero-proof-strip {
  gap: 22px;
}

.hero-product-ecosystem {
  right: 38%;
  bottom: 12%;
  height: 75%;
  transform: rotate(-1deg);
}

.hero-phone-ui {
  right: 14%;
  bottom: 13%;
  width: min(19vw, 282px);
  min-height: 580px;
  border-width: 8px;
  background: #f9fafb;
}

.hero-slide-ecosystem h1,
.hero-slide-event h1 {
  font-size: clamp(60px, 5vw, 96px);
  line-height: 1.12;
}

.hero-slide-ecosystem h1 em,
.hero-slide-event h1 em {
  color: #0077ff;
}

.event-counter {
  right: 0;
  bottom: 10%;
  width: 70%;
  height: 24%;
  opacity: .9;
}

.event-board-left {
  left: 42%;
  bottom: 23%;
  width: 250px;
  background: rgba(255, 255, 255, 0.72);
  color: #111827;
}

.event-board-right {
  right: 5%;
  bottom: 23%;
  width: 380px;
  background: rgba(17, 24, 39, 0.72);
}

.event-product {
  bottom: 17%;
  height: 37%;
}

.event-product-dark {
  right: 36%;
}

.event-product-light {
  right: 27.5%;
}

.hero-proof-strip {
  gap: 20px;
  min-height: 116px;
  padding-bottom: 36px;
}

.hero-proof-strip span {
  min-width: 210px;
  height: 70px;
  padding: 0 28px;
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.hero-slide-product .hero-proof-strip span {
  min-width: 150px;
  height: 66px;
}

.hero-proof-strip .proof-icon {
  position: relative;
  grid-row: 1 / 3;
  display: block;
  width: 34px;
  height: 34px;
  color: #0052d9;
  font-size: 0;
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.proof-calendar {
  border: 3px solid currentColor;
  border-radius: 6px;
}

.proof-calendar::before {
  left: 4px;
  right: 4px;
  top: 9px;
  border-top: 3px solid currentColor;
}

.proof-calendar::after {
  left: 7px;
  top: -6px;
  width: 18px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.proof-tag {
  width: 32px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 7px;
  transform: rotate(-45deg);
}

.proof-tag::before {
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.proof-gift {
  border: 3px solid currentColor;
  border-radius: 6px;
}

.proof-gift::before {
  left: -3px;
  right: -3px;
  top: 10px;
  border-top: 3px solid currentColor;
}

.proof-gift::after {
  top: -5px;
  left: 13px;
  width: 8px;
  height: 39px;
  border-left: 3px solid currentColor;
}

.proof-building {
  width: 32px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.proof-building::before {
  left: 7px;
  top: 7px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 10px 0 0 currentColor, 0 9px 0 currentColor, 10px 9px 0 currentColor, 0 18px 0 currentColor, 10px 18px 0 currentColor;
}

.proof-mic {
  border: 3px solid currentColor;
  border-radius: 16px;
  width: 22px;
  height: 31px;
  margin-left: 7px;
}

.proof-mic::before {
  left: 8px;
  bottom: -10px;
  width: 3px;
  height: 12px;
  background: currentColor;
}

.proof-mic::after {
  left: -8px;
  bottom: -3px;
  width: 34px;
  height: 18px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.proof-doc {
  border: 3px solid currentColor;
  border-radius: 5px;
}

.proof-doc::before {
  top: 8px;
  left: 8px;
  width: 15px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
}

.proof-check {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.proof-check::before {
  left: 8px;
  top: 9px;
  width: 16px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.proof-globe {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.proof-globe::before {
  inset: 7px 0;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.proof-globe::after {
  top: 1px;
  bottom: 1px;
  left: 12px;
  width: 10px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 50%;
}

.proof-sparkle::before {
  left: 10px;
  top: 0;
  width: 14px;
  height: 34px;
  background: currentColor;
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.proof-sparkle::after {
  right: 0;
  bottom: 2px;
  width: 11px;
  height: 11px;
  background: currentColor;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.hero-proof-strip b {
  color: #0052d9;
  font-size: 19px;
}

.hero-slide-product .hero-proof-strip b {
  color: #111827;
}

.hero-proof-strip small {
  font-size: 15px;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .hero-product-summer {
    right: -4%;
    bottom: 13%;
    height: 66%;
    opacity: .48;
  }

  .hero-campaign-badge {
    right: 8%;
  }

  .hero-visual-product,
  .hero-visual-ecosystem,
  .hero-visual-event {
    background-position: 58% center;
  }
}

@media (max-width: 700px) {
  .hero-product-summer {
    right: -34%;
    opacity: .22;
  }

  .hero-visual-sale,
  .hero-visual-product {
    background-position: 62% center;
  }

  .hero-proof-strip .proof-icon {
    width: 24px;
    height: 24px;
  }

  .hero-proof-strip b {
    font-size: 13px;
  }
}

.security-section {
  overflow: hidden;
  background: #ffffff;
}

.security-heading {
  max-width: 1420px;
  margin: 0 auto 64px;
  text-align: center;
}

.security-heading h2 {
  margin: 0 auto 24px;
  color: #000000;
  font-size: clamp(46px, 5.6vw, 92px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.security-heading p {
  max-width: 920px;
  margin: 0 auto;
  color: #374151;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 500;
  line-height: 1.7;
}

.security-certifications {
  display: flex;
  gap: 40px;
  width: calc(100vw - 40px);
  margin-left: calc((100% - 100vw) / 2 + 20px);
  padding: 0 max(20px, calc((100vw - 1180px) / 2)) 18px;
  overflow: hidden;
  scrollbar-width: none;
}

.security-certifications::-webkit-scrollbar {
  display: none;
}

.security-marquee-track {
  display: flex;
  flex: 0 0 max-content;
  gap: 40px;
  padding-right: 40px;
  animation: securityMarquee 48s linear infinite;
}

.security-certifications:hover .security-marquee-track {
  animation-play-state: paused;
}

.security-card {
  flex: 0 0 clamp(300px, 19vw, 360px);
  min-height: 640px;
  padding: 46px 42px 40px;
  border-radius: 8px;
  background: #f7f7f7;
  color: #000000;
  scroll-snap-align: start;
}

@keyframes securityMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.security-image-slot {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 34px;
  border: 1px dashed rgba(17, 24, 39, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 49.5%, rgba(17, 24, 39, 0.08) 49.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(0deg, transparent 0 49.5%, rgba(17, 24, 39, 0.08) 49.5% 50.5%, transparent 50.5% 100%),
    #ffffff;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.security-card h3 {
  margin: 0;
  color: #000000;
  font-size: clamp(44px, 3.5vw, 64px);
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
}

.security-award-link {
  display: block;
  color: #000000;
}

.security-description-link {
  display: block;
  color: #000000;
}

.security-award-link:hover h3,
.security-award-link:focus-visible h3,
.security-award-link:hover .security-status,
.security-award-link:focus-visible .security-status,
.security-card:hover .security-award-link h3,
.security-card:hover .security-award-link .security-status,
.security-card:focus-within .security-award-link h3,
.security-card:focus-within .security-award-link .security-status,
.security-description-link:hover p,
.security-description-link:focus-visible p,
.security-card:hover .security-description-link p,
.security-card:focus-within .security-description-link p {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.security-status {
  margin: 8px 0 46px;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.security-card p:last-child {
  margin: 0;
  color: #000000;
  font-size: clamp(20px, 1.5vw, 28px);
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
}

.security-scenes {
  margin-top: clamp(72px, 7vw, 124px);
  position: relative;
  display: flex;
  width: 100vw;
  min-height: clamp(390px, 34vw, 620px);
  margin-left: calc((100% - 100vw) / 2);
  overflow: hidden;
  background: #111827;
}

.security-scenes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.54);
  pointer-events: none;
}

.security-scenes-bg {
  display: grid;
  flex: 0 0 max-content;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  width: max-content;
  min-width: 100vw;
  padding-right: 6px;
  animation: securityScenesMarquee 40s linear infinite;
}

.security-scenes:hover .security-scenes-bg {
  animation-play-state: paused;
}

.security-scenes-strip {
  display: flex;
  gap: 6px;
}

.strip-alt {
  transform: translateX(-9vw);
}

.security-scene-tile {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(260px, 20vw, 410px);
  min-height: clamp(190px, 16.5vw, 305px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 118, 255, 0.12)),
    linear-gradient(90deg, transparent 0 49.7%, rgba(255, 255, 255, 0.2) 49.7% 50.3%, transparent 50.3% 100%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(255, 255, 255, 0.2) 49.7% 50.3%, transparent 50.3% 100%),
    #d9e3f3;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 900;
  text-align: center;
}

.security-scene-tile:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 118, 255, 0.08)),
    linear-gradient(90deg, transparent 0 49.7%, rgba(255, 255, 255, 0.2) 49.7% 50.3%, transparent 50.3% 100%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(255, 255, 255, 0.2) 49.7% 50.3%, transparent 50.3% 100%),
    #edf2f8;
}

.security-scene-tile:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(12, 24, 48, 0.1), rgba(0, 118, 255, 0.18)),
    linear-gradient(90deg, transparent 0 49.7%, rgba(255, 255, 255, 0.18) 49.7% 50.3%, transparent 50.3% 100%),
    linear-gradient(0deg, transparent 0 49.7%, rgba(255, 255, 255, 0.18) 49.7% 50.3%, transparent 50.3% 100%),
    #cbd7e7;
}

.security-scene-tile.tile-wide {
  flex-basis: clamp(340px, 28vw, 560px);
}

.security-scenes-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4vw, 64px);
  padding: clamp(56px, 7vw, 112px) clamp(80px, 10vw, 180px);
  text-align: center;
}

.security-scenes-text p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.84;
}

.security-scenes-text h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4.5vw, 82px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.security-scenes-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 42px);
  width: min(820px, 92vw);
}

.security-scenes-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(72px, 5.4vw, 96px);
  border-radius: 999px;
  text-decoration: none;
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.security-scenes-primary {
  position: relative;
  width: min(380px, 24vw);
  padding: 0 clamp(36px, 4.4vw, 72px);
  background: linear-gradient(135deg, #0076ff 0%, #005bff 52%, #0044e8 100%);
  color: #ffffff;
}

.security-scenes-primary:hover,
.security-scenes-primary:focus-visible {
  background: linear-gradient(135deg, #005bd1 0%, #0046c8 52%, #0036a8 100%);
}

.security-scenes-secondary {
  gap: clamp(18px, 1.7vw, 28px);
  width: min(380px, 24vw);
  padding: 0 clamp(34px, 4vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(75, 85, 99, 0.78);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.security-scenes-secondary:hover,
.security-scenes-secondary:focus-visible {
  background: rgba(31, 41, 55, 0.88);
  border-color: rgba(255, 255, 255, 0.32);
}

.security-scenes-book {
  position: relative;
  display: inline-block;
  width: clamp(32px, 2.5vw, 44px);
  height: clamp(28px, 2.1vw, 38px);
  border: 3px solid currentColor;
  border-radius: 6px 6px 5px 5px;
}

.security-scenes-book::before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 50%;
  width: 3px;
  background: currentColor;
  transform: translateX(-50%);
}

.security-scenes-book::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -7px;
  left: -3px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

@keyframes securityScenesMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1080px) {
  .security-heading {
    margin-bottom: 42px;
  }

  .security-certifications {
    gap: 24px;
  }

  .security-marquee-track {
    gap: 24px;
    padding-right: 24px;
    animation-duration: 42s;
  }

  .security-card {
    flex-basis: 300px;
    min-height: 560px;
    padding: 34px 28px;
  }

  .security-scenes-track {
    gap: 20px;
    padding-right: 20px;
    animation-duration: 46s;
  }

  .security-scenes {
    min-height: 420px;
  }

  .security-scenes-bg {
    animation-duration: 34s;
  }

  .security-scenes-actions {
    gap: 18px;
  }

  .security-scenes-overlay {
    grid-template-columns: 1fr;
    align-content: center;
    padding-inline: 56px;
    text-align: center;
  }

  .security-scenes-actions {
    justify-content: center;
  }

  .security-scenes-primary,
  .security-scenes-secondary {
    width: min(340px, 38vw);
  }
}

@media (max-width: 700px) {
  .security-heading h2 {
    font-size: 38px;
  }

  .security-heading p {
    font-size: 16px;
  }

  .security-card {
    flex-basis: 260px;
    min-height: 500px;
  }

  .security-card h3 {
    font-size: 38px;
  }

  .security-card p:last-child {
    font-size: 18px;
  }

  .security-scenes {
    min-height: 430px;
  }

  .security-scenes-text h3 {
    font-size: 34px;
  }

  .security-scenes-actions {
    gap: 16px;
    width: 100%;
  }

  .security-scenes-actions a,
  .security-scenes-primary,
  .security-scenes-secondary {
    width: min(280px, 42vw);
    min-height: 72px;
    padding-inline: 24px;
    font-size: 19px;
  }

  .security-scenes-overlay {
    padding-inline: 24px;
  }

  .security-scenes-book {
    width: 28px;
    height: 24px;
  }
}

.hero-slide-product,
.hero-slide-ecosystem,
.hero-slide-event {
  min-height: min(900px, calc(100vh - 72px));
}

.hero-slide-product .hero-visual,
.hero-slide-ecosystem .hero-visual,
.hero-slide-event .hero-visual {
  background-size: cover;
  background-position: center top;
}

.hero-slide-product::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0 39%, rgba(255, 255, 255, .68) 52%, rgba(255, 255, 255, 0) 71%);
}

.hero-slide-product .hero-slide-inner {
  width: min(1760px, calc(100% - 200px));
  padding: 56px 0 150px;
}

.hero-slide-product .hero-copy {
  max-width: 760px;
}

.hero-slide-product .eyebrow {
  margin-bottom: 28px;
  color: #0052d9;
  font-size: clamp(24px, 1.75vw, 34px);
  font-weight: 900;
}

.hero-slide-product h1 {
  max-width: 650px;
  margin-bottom: 72px;
  color: #070b18;
  font-size: clamp(78px, 5.85vw, 116px);
  font-weight: 950;
  line-height: 1.02;
}

.hero-slide-product .hero-lead {
  max-width: 840px;
  color: #111827;
  font-size: clamp(28px, 1.85vw, 36px);
  font-weight: 900;
  line-height: 1.75;
}

.hero-slide-product .hero-cta {
  margin-top: 36px;
  gap: 22px;
}

.hero-slide-product .button-primary,
.hero-slide-product .button-secondary {
  min-width: 238px;
  min-height: 90px;
  border-radius: 999px;
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 950;
}

.hero-slide-product .button-secondary {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(17, 24, 39, .08);
  box-shadow: 0 12px 30px rgba(17, 24, 39, .08);
}

.hero-slide-product .hero-proof-strip {
  gap: 34px;
  min-height: 112px;
  padding: 0 24px 10px;
  background: transparent;
  backdrop-filter: none;
}

.hero-slide-product .hero-proof-strip span {
  min-width: 210px;
  height: 92px;
  padding: 0 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  border-color: rgba(17, 24, 39, .08);
  box-shadow: 0 12px 36px rgba(17, 24, 39, .08);
}

.hero-slide-product .hero-proof-strip .proof-icon {
  width: 46px;
  height: 46px;
}

.hero-slide-product .hero-proof-strip b {
  color: #070b18;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 950;
}

.hero-slide-ecosystem::before {
  background: linear-gradient(90deg, rgba(3, 17, 34, .98) 0 35%, rgba(3, 17, 34, .78) 51%, rgba(3, 17, 34, .08) 78%);
}

.hero-slide-ecosystem .hero-slide-inner {
  width: min(1660px, calc(100% - 220px));
  padding: 180px 0 170px;
}

.hero-slide-ecosystem .hero-copy {
  max-width: 760px;
}

.hero-slide-ecosystem .eyebrow {
  margin-bottom: 28px;
  color: #1185ff;
  font-size: clamp(30px, 2.35vw, 42px);
  font-weight: 950;
}

.hero-slide-ecosystem h1 {
  margin-bottom: 54px;
  color: #ffffff;
  font-size: clamp(86px, 6.1vw, 128px);
  font-weight: 950;
  line-height: 1.03;
}

.hero-slide-ecosystem .hero-lead {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(30px, 2.1vw, 42px);
  font-weight: 900;
  line-height: 1.65;
}

.hero-slide-ecosystem .hero-cta {
  margin-top: 52px;
  gap: 28px;
}

.hero-slide-ecosystem .button-primary,
.hero-slide-ecosystem .button-secondary {
  min-width: 312px;
  min-height: 92px;
  border-radius: 999px;
  font-size: clamp(28px, 1.95vw, 38px);
  font-weight: 950;
}

.hero-slide-ecosystem .button-secondary {
  border: 2px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.hero-product-ecosystem {
  right: 38.5%;
  bottom: -5%;
  height: 82%;
  z-index: 0;
  opacity: .35;
  transform: none;
  filter: grayscale(.05) brightness(.65) drop-shadow(0 36px 70px rgba(0, 0, 0, .4));
}

.hero-phone-ui {
  right: 13.2%;
  bottom: -3%;
  z-index: 1;
  width: min(22vw, 382px);
  min-height: 760px;
  padding: 88px 46px 44px;
  border: 15px solid #050914;
  border-radius: 54px 54px 0 0;
  background: linear-gradient(180deg, #f7f8fb, #eceff4);
  color: #111827;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .48);
}

.phone-bar {
  top: 28px;
  width: 136px;
  height: 36px;
  background: #050914;
}

.hero-phone-ui strong {
  margin-bottom: 8px;
  font-size: clamp(35px, 2.9vw, 52px);
  font-weight: 950;
}

.hero-phone-ui span,
.hero-phone-ui p,
.hero-phone-ui h4,
.hero-phone-ui li {
  font-size: clamp(17px, 1.25vw, 25px);
  font-weight: 850;
  line-height: 1.72;
}

.hero-phone-ui h4 {
  margin-top: 40px;
  color: #111827;
  font-size: clamp(22px, 1.75vw, 32px);
  font-weight: 950;
}

.hero-phone-ui ul {
  margin-top: 18px;
  font-size: inherit;
}

.hero-slide-ecosystem .hero-proof-strip,
.hero-slide-event .hero-proof-strip {
  gap: 42px;
  min-height: 176px;
  padding: 0 24px 28px;
  background: rgba(3, 23, 48, .98);
  backdrop-filter: none;
}

.hero-slide-ecosystem .hero-proof-strip span,
.hero-slide-event .hero-proof-strip span {
  min-width: 286px;
  height: 96px;
  border: 2px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.hero-slide-ecosystem .hero-proof-strip b,
.hero-slide-event .hero-proof-strip b {
  color: #ffffff;
  font-size: clamp(24px, 1.75vw, 34px);
  font-weight: 950;
}

.hero-slide-event::before {
  background: linear-gradient(90deg, rgba(3, 17, 34, .98) 0 38%, rgba(3, 17, 34, .80) 52%, rgba(3, 17, 34, .10) 82%);
}

.hero-slide-event .hero-slide-inner {
  width: min(1660px, calc(100% - 220px));
  padding: 232px 0 170px;
}

.hero-slide-event .hero-copy {
  max-width: 900px;
}

.hero-slide-event .eyebrow {
  margin-bottom: 32px;
  color: #1185ff;
  font-size: clamp(30px, 2.35vw, 42px);
  font-weight: 950;
}

.hero-slide-event h1 {
  margin-bottom: 58px;
  color: #ffffff;
  font-size: clamp(82px, 5.65vw, 122px);
  font-weight: 950;
  line-height: 1.08;
}

.hero-slide-event .hero-lead {
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(30px, 2vw, 41px);
  font-weight: 900;
  line-height: 1.65;
}

.hero-slide-event .hero-cta {
  margin-top: 52px;
  gap: 28px;
}

.hero-slide-event .button-primary,
.hero-slide-event .button-secondary {
  min-width: 312px;
  min-height: 92px;
  border-radius: 999px;
  font-size: clamp(28px, 1.95vw, 38px);
  font-weight: 950;
}

.event-counter {
  right: 0;
  bottom: 11%;
  width: 62%;
  height: 18%;
}

.event-board-left {
  left: 43%;
  bottom: 18%;
  width: 320px;
  height: 300px;
  padding: 44px 36px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .28));
  color: #061427;
  opacity: .74;
}

.event-board-right {
  right: 7%;
  bottom: 18%;
  width: 700px;
  height: 300px;
  padding: 56px 66px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(9, 19, 34, .72), rgba(9, 19, 34, .50));
}

.event-board strong {
  font-size: clamp(28px, 2.2vw, 46px);
}

.event-board span {
  font-size: clamp(16px, 1.2vw, 24px);
}

.event-product {
  bottom: 10%;
  height: 30%;
  z-index: 1;
}

.event-product-dark {
  right: 33%;
  filter: brightness(.36) drop-shadow(0 30px 52px rgba(0, 0, 0, .42));
}

.event-product-light {
  right: 27.5%;
}

.event-icons {
  gap: 24px;
  margin-top: 36px;
}

.event-icons i {
  width: 58px;
  height: 58px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .hero-slide-product .hero-slide-inner,
  .hero-slide-ecosystem .hero-slide-inner,
  .hero-slide-event .hero-slide-inner {
    width: calc(100% - 72px);
    padding-top: 72px;
  }

  .hero-slide-product h1,
  .hero-slide-ecosystem h1,
  .hero-slide-event h1 {
    font-size: 58px;
  }

  .hero-slide-product .hero-lead,
  .hero-slide-ecosystem .hero-lead,
  .hero-slide-event .hero-lead {
    font-size: 22px;
  }

  .hero-phone-ui,
  .event-board,
  .event-product,
  .hero-product-ecosystem {
    opacity: .36;
  }
}

main > .section h2,
main > .section h3,
main > .section .eyebrow,
main > .section .section-heading h2,
main > .section .section-heading h3,
main > .section .feature-heading h2,
main > .section .feature-card > h3,
main > .section .security-heading h2,
main > .section .security-card h3,
main > .section .security-scenes-text h3 {
  font-weight: 500 !important;
}

main > .section p,
main > .section li,
main > .section a,
main > .section span,
main > .section small,
main > .section b,
main > .section .media-placeholder,
main > .section .recognition-note,
main > .section .security-status,
main > .section .security-image-slot,
main > .section .security-scene-tile,
main > .section .feature-copy-slide p,
main > .section .feature-demo-placeholder,
main > .section .plain-list li,
main > .section .pain-stack div {
  font-weight: 500 !important;
}

main > .section .security-card h3,
main > .section .security-status,
main > .section .security-card p:last-child {
  font-weight: 400 !important;
}

main > .section .security-status,
main > .section .security-card p:last-child {
  color: #374151;
}

/* First hero campaign banner: scoped visual match to the provided reference. */
.hero-slide-sale {
  --sale-blue: #0052c9;
  --sale-ink: #050505;
}

@media (min-width: 1081px) {
  .hero-shell {
    height: min(calc(100vh - 72px), calc(100vw * 909 / 1731));
    min-height: 760px;
  }

  .hero-track,
  .hero-slide {
    height: 100%;
  }

  .hero-slide {
    min-height: 0;
  }
}

.hero-slide-sale::before {
  background: none;
}

.hero-slide-sale .hero-visual-sale {
  background-image: url("./assets/hero-summer-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-slide-sale .hero-slide-inner {
  width: 100%;
  padding: 0;
  align-items: flex-start;
}

.hero-slide-sale .hero-copy {
  max-width: min(50vw, 960px);
  margin: clamp(106px, 7.85vw, 152px) 0 0 clamp(92px, 6.9vw, 132px);
}

.hero-slide-sale .eyebrow {
  margin: 0 0 clamp(22px, 2vw, 38px);
  color: var(--sale-blue);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-slide-sale .hero-kicker {
  margin: 0 0 clamp(22px, 2vw, 36px);
  color: var(--sale-ink);
  font-size: clamp(30px, 2.05vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-slide-sale .hero-kicker::after {
  right: -32px;
  top: -4px;
  width: 24px;
  height: 30px;
  background:
    radial-gradient(circle, #d0b600 0 2px, transparent 3px) 12px 0 / 7px 7px no-repeat,
    radial-gradient(circle, #d0b600 0 2px, transparent 3px) 0 12px / 7px 7px no-repeat,
    radial-gradient(circle, #d0b600 0 2px, transparent 3px) 17px 19px / 7px 7px no-repeat;
}

.hero-slide-sale h1 {
  margin: 0 0 clamp(24px, 2vw, 38px);
  color: var(--sale-ink);
  font-size: clamp(60px, 4.45vw, 86px);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-slide-sale h1 em {
  color: var(--sale-blue);
  font-style: normal;
}

.hero-slide-sale h1 em::after {
  right: -40px;
  top: -14px;
  width: 34px;
  height: 46px;
  background:
    radial-gradient(circle, var(--sale-blue) 0 3px, transparent 4px) 15px 0 / 9px 9px no-repeat,
    radial-gradient(circle, var(--sale-blue) 0 3px, transparent 4px) 0 18px / 9px 9px no-repeat,
    radial-gradient(circle, var(--sale-blue) 0 3px, transparent 4px) 24px 32px / 9px 9px no-repeat;
}

.hero-slide-sale .hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--sale-ink);
  font-size: clamp(25px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.6;
}

.hero-slide-sale .hero-cta {
  margin-top: clamp(30px, 2.8vw, 54px);
  gap: 22px;
}

.hero-slide-sale .button-primary,
.hero-slide-sale .button-secondary {
  min-height: clamp(72px, 4.6vw, 88px);
  border-radius: 999px;
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 900;
  box-shadow: none;
}

.hero-slide-sale .button-primary {
  min-width: clamp(190px, 12vw, 232px);
  background: var(--sale-blue);
  color: #ffffff;
}

.hero-slide-sale .button-secondary {
  min-width: clamp(260px, 16.8vw, 324px);
  border: 2px solid var(--sale-blue);
  background: rgba(255, 255, 255, .82);
  color: var(--sale-blue);
}

.hero-slide-sale .hero-product-summer {
  top: 8.2%;
  right: 19.8%;
  bottom: auto;
  z-index: 1;
  height: 66.5%;
  transform: rotate(6.5deg);
  filter: contrast(1.02) drop-shadow(0 34px 42px rgba(14, 36, 54, .26));
}

.hero-slide-sale .hero-campaign-badge {
  top: 9.4%;
  right: 4.2%;
  z-index: 2;
  width: clamp(220px, 14.85vw, 286px);
  height: clamp(220px, 14.85vw, 286px);
  background: #ffc91f;
  color: var(--sale-blue);
  box-shadow: none;
}

.hero-slide-sale .hero-campaign-badge::before {
  top: 30px;
  width: 84px;
  height: 42px;
  border: 5px solid #ffffff;
  border-bottom: 0;
  opacity: .96;
}

.hero-slide-sale .hero-campaign-badge span {
  margin-top: 42px;
  color: var(--sale-blue);
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 950;
  line-height: 1;
}

.hero-slide-sale .hero-campaign-badge strong {
  color: var(--sale-blue);
  font-size: clamp(38px, 2.75vw, 53px);
  font-weight: 950;
  line-height: 1.08;
}

.hero-slide-sale .hero-campaign-badge small,
.hero-slide-sale .hero-campaign-badge em {
  color: var(--sale-blue);
  font-size: clamp(18px, 1.35vw, 26px);
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.hero-slide-sale .hero-campaign-badge em {
  color: #ffffff;
  font-size: clamp(25px, 1.65vw, 32px);
}

.hero-slide-sale .hero-proof-strip {
  bottom: clamp(48px, 5.2vw, 100px);
  gap: clamp(14px, 1.25vw, 24px);
  min-height: 0;
  padding: 0 24px;
  background: transparent;
  backdrop-filter: none;
}

.hero-slide-sale .hero-proof-strip span {
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  min-width: clamp(238px, 15.4vw, 296px);
  height: clamp(80px, 5.25vw, 101px);
  padding: 0 clamp(24px, 1.75vw, 34px);
  column-gap: 18px;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(17, 24, 39, .09);
}

.hero-slide-sale .hero-proof-strip span:nth-child(1) {
  min-width: clamp(310px, 19vw, 365px);
}

.hero-slide-sale .hero-proof-strip span:nth-child(3) {
  min-width: clamp(270px, 16vw, 307px);
}

.hero-slide-sale .hero-proof-strip span:nth-child(4) {
  min-width: clamp(220px, 12.4vw, 238px);
}

.hero-slide-sale .hero-proof-strip .proof-icon {
  width: clamp(36px, 2.45vw, 47px);
  height: clamp(36px, 2.45vw, 47px);
  color: var(--sale-blue);
}

.hero-slide-sale .hero-proof-strip b {
  color: var(--sale-blue);
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 950;
  line-height: 1.1;
}

.hero-slide-sale .hero-proof-strip small {
  color: var(--sale-ink);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 500;
  line-height: 1.2;
}

.hero-shell .carousel-button {
  top: 47.4%;
  width: 56px;
  height: 56px;
  border: 0;
  background: #ffffff;
  color: #050505;
  font-size: 40px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
  opacity: 1;
}

.hero-shell .carousel-prev {
  left: 31px;
}

.hero-shell .carousel-next {
  right: 31px;
}

.hero-shell .carousel-dots {
  bottom: clamp(16px, 1.25vw, 24px);
  gap: 10px;
}

.hero-shell .carousel-dots button {
  width: clamp(12px, .75vw, 14px);
  height: clamp(12px, .75vw, 14px);
  background: #d0d0d0;
}

.hero-shell .carousel-dots button.is-active {
  width: clamp(34px, 2.05vw, 40px);
  background: #0052c9;
}

.hero-shell.is-sale-active .carousel-dots {
  bottom: clamp(15px, 1.18vw, 23px);
  gap: clamp(10px, .65vw, 12px);
}

.hero-shell.is-sale-active .carousel-dots::before {
  content: none;
}

.hero-shell.is-sale-active .carousel-dots button {
  opacity: 0;
}

.hero-shell.is-sale-active .carousel-dots button.is-active {
  opacity: 0;
}

@media (max-width: 1080px) {
  .hero-slide-sale .hero-copy {
    max-width: 620px;
    margin: 72px 0 0 36px;
  }

  .hero-slide-sale .hero-product-summer {
    right: -2%;
    height: 64%;
    opacity: .42;
  }

  .hero-slide-sale .hero-campaign-badge {
    right: 4%;
    width: 156px;
    height: 156px;
  }

  .hero-slide-sale .hero-proof-strip {
    bottom: 42px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .hero-slide-sale .hero-copy {
    max-width: calc(100% - 32px);
    margin: 48px 16px 0;
  }

  .hero-slide-sale .hero-visual-sale {
    background-size: cover;
    background-position: 62% center;
  }

  .hero-slide-sale h1 {
    font-size: 40px;
  }

  .hero-slide-sale .hero-proof-strip span {
    min-width: calc(50% - 8px);
    height: 54px;
    padding: 0 12px;
  }
}

/* Use the supplied campaign image directly for the first hero slide. */
.hero-slide-sale .hero-visual-sale {
  background-image: url("./assets/hero-sale-bg.png?v=original-restore-20260608");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-slide-sale .hero-visual-sale > *,
.hero-slide-sale .hero-slide-inner,
.hero-slide-sale .hero-proof-strip {
  display: none;
}

.hero-slide-product .hero-visual-product {
  background-image: url("./assets/hero-slide-2-bg-1731x909.png?v=fit-first-slide-20260609");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-slide-ecosystem .hero-visual-ecosystem {
  background-image: url("./assets/hero-slide-3-bg-1731x909.png?v=fit-first-slide-20260609");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-slide-event .hero-visual-event {
  background-image: url("./assets/hero-slide-4-bg-1731x909.png?v=fit-first-slide-20260609");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-link-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  color: transparent;
  text-indent: -9999px;
  pointer-events: auto;
}

.hero-hotspot:focus-visible {
  outline: 3px solid rgba(0, 82, 201, .46);
  outline-offset: 4px;
}

.hero-hotspot-sale-primary {
  left: 6.8%;
  top: 67.3%;
  width: 12.1%;
  height: 8.8%;
}

.hero-hotspot-sale-secondary {
  left: 20%;
  top: 67.3%;
  width: 16.7%;
  height: 8.8%;
}

.hero-hotspot-product-primary {
  left: 7.2%;
  top: 61.4%;
  width: 10%;
  height: 6.9%;
}

.hero-hotspot-product-secondary {
  left: 18.5%;
  top: 61.4%;
  width: 14%;
  height: 6.9%;
}

.hero-hotspot-ecosystem-primary {
  left: 7.3%;
  top: 61.3%;
  width: 11.2%;
  height: 7.7%;
}

.hero-hotspot-ecosystem-secondary {
  left: 19.8%;
  top: 61.3%;
  width: 12.6%;
  height: 7.7%;
}

.hero-hotspot-event-primary {
  left: 6.4%;
  top: 62.9%;
  width: 11.2%;
  height: 7.7%;
}

.hero-hotspot-event-secondary {
  left: 18.9%;
  top: 62.9%;
  width: 11.8%;
  height: 7.7%;
}

.hero-slide-product::before,
.hero-slide-ecosystem::before,
.hero-slide-event::before {
  background: none;
}

.hero-slide-product .hero-visual-product > *,
.hero-slide-ecosystem .hero-visual-ecosystem > *,
.hero-slide-event .hero-visual-event > *,
.hero-slide-product .hero-slide-inner,
.hero-slide-ecosystem .hero-slide-inner,
.hero-slide-event .hero-slide-inner,
.hero-slide-product .hero-proof-strip,
.hero-slide-ecosystem .hero-proof-strip,
.hero-slide-event .hero-proof-strip {
  display: none;
}

.hero-shell[data-active-slide="1"] .carousel-dots button,
.hero-shell[data-active-slide="2"] .carousel-dots button,
.hero-shell[data-active-slide="3"] .carousel-dots button {
  opacity: 1;
}

.hero-shell .carousel-dots button {
  opacity: 1;
}

.hero-shell .carousel-dots {
  bottom: clamp(30px, 1.8vw, 36px);
  z-index: 4;
  gap: 10px;
}

.hero-shell .carousel-dots button,
.hero-shell.is-sale-active .carousel-dots button {
  width: 14px;
  height: 14px;
  background: #d2d2d2;
  opacity: 1;
}

.hero-shell .carousel-dots button.is-active,
.hero-shell.is-sale-active .carousel-dots button.is-active {
  width: 40px;
  background: #0052c9;
  opacity: 1;
}

/* Keep carousel controls clickable while showing the original controls baked into the supplied images. */
.hero-shell .carousel-button,
.hero-shell .carousel-dots button,
.hero-shell .carousel-dots button.is-active,
.hero-shell.is-sale-active .carousel-dots button,
.hero-shell.is-sale-active .carousel-dots button.is-active {
  opacity: 0;
}

.hero-shell[data-active-slide] .carousel-dots button,
.hero-shell[data-active-slide] .carousel-dots button.is-active {
  opacity: 0;
}

/* Slide 2 pagination replacement: gray dots with the second item as a blue pill. */
.hero-shell[data-active-slide="1"] .carousel-dots {
  width: 174px;
  height: 31px;
  left: 50%;
  right: auto;
  bottom: clamp(26px, 1.55vw, 30px);
  transform: translateX(-50%);
  z-index: 5;
}

.hero-shell[data-active-slide="1"] .carousel-dots::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -9px;
  width: 214px;
  height: 49px;
  border-radius: 999px;
  background: #ffffff;
  pointer-events: none;
}

.hero-shell[data-active-slide="1"] .carousel-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 60px 15.5px, #1266f6 0 13px, transparent 14px),
    linear-gradient(#1266f6 0 0) 60px 2.5px / 51px 26px no-repeat,
    radial-gradient(circle at 111px 15.5px, #1266f6 0 13px, transparent 14px),
    radial-gradient(circle at 18px 15.5px, #cfcfcf 0 12px, transparent 13px),
    radial-gradient(circle at 140px 15.5px, #cfcfcf 0 12px, transparent 13px),
    radial-gradient(circle at 170px 15.5px, #cfcfcf 0 12px, transparent 13px);
  filter: drop-shadow(0 1px 2px rgba(17, 24, 39, .06));
  pointer-events: none;
}

/* Hide baked-in pagination indicators on hero slides 2-4 only. */
.hero-shell[data-active-slide="1"] .carousel-dots,
.hero-shell[data-active-slide="2"] .carousel-dots,
.hero-shell[data-active-slide="3"] .carousel-dots {
  width: 210px;
  height: 52px;
  left: 50%;
  right: auto;
  bottom: clamp(18px, 1.2vw, 24px);
  transform: translateX(-50%);
  z-index: 5;
}

.hero-shell[data-active-slide="1"] .carousel-dots::before,
.hero-shell[data-active-slide="2"] .carousel-dots::before,
.hero-shell[data-active-slide="3"] .carousel-dots::before {
  content: none;
}

.hero-shell[data-active-slide="1"] .carousel-dots::after,
.hero-shell[data-active-slide="2"] .carousel-dots::after,
.hero-shell[data-active-slide="3"] .carousel-dots::after {
  content: none;
}

.hero-slide-product::after,
.hero-slide-ecosystem::after,
.hero-slide-event::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  z-index: 4;
  width: 190px;
  height: 36px;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-slide-product::after {
  background: #ffffff;
}

.hero-slide-ecosystem::after,
.hero-slide-event::after {
  bottom: -10px;
  background: #061f3d;
}

.hero-slide-sale::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  width: 170px;
  height: 38px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Match the Plaud-style typography outside the hero without changing hero/banner controls. */
#main > .section {
  font-family: "Jokker", "NotoSansJP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Segoe UI", sans-serif;
  letter-spacing: normal;
}

#main > .section .section-heading h2,
#main > .section h2 {
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

#main > .section h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

#main > .section p,
#main > .section li,
#main > .section small,
#main > .section span,
#main > .section a,
#main > .section button {
  font-family: inherit;
  letter-spacing: normal;
}

#main > .section p,
#main > .section li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

#main > .section .section-heading p:last-child,
#main > .section .case-copy p:last-of-type,
#main > .section .scene-card p,
#main > .section .feature-copy-track p,
#main > .section .security-heading p,
#main > .section .security-card p:last-child,
#main > .section .recognition-note {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

#main > .section .eyebrow,
#main > .section .security-status,
#main > .section .feature-copy-track span,
#main > .section .case-benefit p,
#main > .section .case-benefit em {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}

#main > .section .button,
#main > .section .security-scenes-actions a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

#main > .section .section-heading h2,
#main > .section h2,
#main > .section h3,
#main > .section p,
#main > .section li,
#main > .section .section-heading p:last-child,
#main > .section .case-copy p:last-of-type,
#main > .section .scene-card p,
#main > .section .feature-copy-track p,
#main > .section .security-heading p,
#main > .section .security-card p:last-child,
#main > .section .recognition-note,
#main > .section .eyebrow,
#main > .section .security-status,
#main > .section .feature-copy-track span,
#main > .section .case-benefit p,
#main > .section .case-benefit em {
  font-weight: 400 !important;
}

/* Mobile adaptation: keep phone layouts readable and all tap targets real. */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    z-index: 100;
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand-logo {
    width: min(148px, 46vw);
  }

  .mobile-menu {
    z-index: 120;
  }

  .mobile-menu:not([open]) .mobile-nav {
    display: none;
  }

  .mobile-menu[open] .mobile-nav {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
  }

  .mobile-nav a,
  .mobile-nav .button {
    min-height: 46px;
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-shell {
    width: 100%;
    min-height: 0;
  }

  .hero-track {
    align-items: stretch;
  }

  .hero-slide,
  .hero-slide-product,
  .hero-slide-ecosystem,
  .hero-slide-event {
    min-height: clamp(560px, 138vw, 660px);
  }

  .hero-visual-sale,
  .hero-visual-product,
  .hero-visual-ecosystem,
  .hero-visual-event {
    background-size: cover;
    background-position: center top;
  }

  .hero-slide-sale .hero-visual-sale {
    background-position: 58% top;
  }

  .hero-slide-product .hero-visual-product,
  .hero-slide-ecosystem .hero-visual-ecosystem,
  .hero-slide-event .hero-visual-event {
    background-position: 62% top;
  }

  .hero-slide-sale::before,
  .hero-slide-product::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 46%, rgba(255, 255, 255, 0.9) 72%, #ffffff 100%);
  }

  .hero-slide-ecosystem::before,
  .hero-slide-event::before {
    background: linear-gradient(180deg, rgba(2, 15, 35, 0.05) 0 46%, rgba(2, 15, 35, 0.78) 72%, #020f23 100%);
  }

  .hero-slide-sale .hero-slide-inner,
  .hero-slide-product .hero-slide-inner,
  .hero-slide-ecosystem .hero-slide-inner,
  .hero-slide-event .hero-slide-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    z-index: 3;
    display: flex;
    width: 100%;
    padding: 0 18px;
  }

  .hero-slide .hero-copy,
  .hero-slide-sale .hero-copy,
  .hero-slide-product .hero-copy,
  .hero-slide-ecosystem .hero-copy,
  .hero-slide-event .hero-copy {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 12px;
  }

  .hero-slide .hero-copy > :not(.hero-cta) {
    display: none;
  }

  .hero-cta,
  .hero-slide-product .hero-cta,
  .hero-slide-ecosystem .hero-cta,
  .hero-slide-event .hero-cta,
  .hero-slide-sale .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin: 0;
  }

  .hero .button-primary,
  .hero .button-secondary,
  .hero-slide-product .button-primary,
  .hero-slide-product .button-secondary,
  .hero-slide-ecosystem .button-primary,
  .hero-slide-ecosystem .button-secondary,
  .hero-slide-event .button-primary,
  .hero-slide-event .button-secondary,
  .hero-slide-sale .button-primary,
  .hero-slide-sale .button-secondary {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    pointer-events: auto;
  }

  .hero-slide-ecosystem .button-secondary,
  .hero-slide-event .button-secondary {
    background: rgba(255, 255, 255, 0.16);
  }

  .hero-proof-strip,
  .hero-slide-sale .hero-proof-strip,
  .hero-slide-product .hero-proof-strip,
  .hero-slide-ecosystem .hero-proof-strip,
  .hero-slide-event .hero-proof-strip,
  .hero-link-hotspots {
    display: none;
  }

  .hero-shell .carousel-button {
    display: grid;
    top: auto;
    bottom: 184px;
    width: 38px;
    height: 38px;
    font-size: 28px;
    opacity: 0.9;
    pointer-events: auto;
  }

  .hero-shell .carousel-prev {
    left: 12px;
  }

  .hero-shell .carousel-next {
    right: 12px;
  }

  .hero-shell .carousel-dots,
  .hero-shell[data-active-slide="1"] .carousel-dots,
  .hero-shell[data-active-slide="2"] .carousel-dots,
  .hero-shell[data-active-slide="3"] .carousel-dots {
    bottom: 16px;
    width: auto;
    height: auto;
    z-index: 6;
  }

  .hero-shell .carousel-dots button,
  .hero-shell .carousel-dots button.is-active,
  .hero-shell.is-sale-active .carousel-dots button,
  .hero-shell.is-sale-active .carousel-dots button.is-active,
  .hero-shell[data-active-slide] .carousel-dots button,
  .hero-shell[data-active-slide] .carousel-dots button.is-active {
    width: 10px;
    height: 10px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-shell .carousel-dots button.is-active,
  .hero-shell.is-sale-active .carousel-dots button.is-active,
  .hero-shell[data-active-slide] .carousel-dots button.is-active {
    width: 28px;
  }

  .hero-slide-sale::after,
  .hero-slide-product::after,
  .hero-slide-ecosystem::after,
  .hero-slide-event::after {
    content: none;
  }

  .section {
    padding: 56px 0;
  }

  .container,
  .site-footer .container {
    width: calc(100% - 28px);
  }

  #main > .section .section-heading h2,
  #main > .section h2,
  .security-heading h2,
  .feature-heading h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .recognition-section h2 {
    font-size: clamp(28px, 7.8vw, 34px);
  }

  .advantage-grid,
  .scene-grid,
  .case-grid,
  .case-card,
  .case-card-wide,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .case-card,
  .case-card-wide {
    min-height: 0;
    padding: 18px;
  }

  .case-detail-link {
    align-self: stretch;
  }

  .case-benefit {
    padding: 16px;
  }

  .media-placeholder,
  .small-placeholder,
  .scene-placeholder,
  .case-placeholder,
  .wide-placeholder {
    min-height: 160px;
    aspect-ratio: 16 / 10;
  }

  .feature-card-body {
    grid-template-columns: 1fr;
  }

  .feature-copy-slider {
    --feature-copy-height: 230px;
    --feature-copy-item: 96px;
    --feature-copy-gap: 38px;
    padding: 0 18px;
  }

  .feature-demo-slider {
    --feature-demo-height: 210px;
    --feature-demo-gap: 18px;
    padding: 0 18px 18px;
  }

  .feature-demo-placeholder {
    overflow: hidden;
    padding: 12px;
    text-align: center;
  }

  .security-certifications,
  .security-scenes {
    width: 100vw;
  }

  .security-scenes {
    min-height: 480px;
  }

  .security-scenes-overlay {
    padding: 44px 18px;
  }

  .security-scenes-actions {
    flex-direction: column;
    gap: 12px;
  }

  .security-scenes-actions a,
  .security-scenes-primary,
  .security-scenes-secondary {
    width: min(100%, 320px);
    min-height: 54px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-links {
    gap: 28px;
  }

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

  .footer-socials a,
  .footer-contact-list dd,
  .footer-contact-list a,
  .footer-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-downloads {
    max-width: none;
  }

  .footer-downloads a {
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .hero-slide,
  .hero-slide-product,
  .hero-slide-ecosystem,
  .hero-slide-event {
    min-height: 600px;
  }

  .hero-shell .carousel-button {
    bottom: 178px;
  }

  .footer-socials {
    grid-template-columns: 1fr;
  }
}

/* Mobile refinement: keep the supplied hero artwork intact instead of rebuilding it. */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-shell {
    aspect-ratio: 1731 / 909;
    min-height: 0;
    height: auto;
    overflow: hidden;
  }

  .hero-track,
  .hero-track:is(:not(#specificity)) {
    height: 100%;
  }

  .hero-slide,
  .hero-slide-product,
  .hero-slide-ecosystem,
  .hero-slide-event {
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }

  .hero-slide-sale .hero-visual-sale,
  .hero-slide-product .hero-visual-product,
  .hero-slide-ecosystem .hero-visual-ecosystem,
  .hero-slide-event .hero-visual-event {
    background-size: 100% auto;
    background-position: center top;
  }

  .hero-slide-sale .hero-slide-inner,
  .hero-slide-product .hero-slide-inner,
  .hero-slide-ecosystem .hero-slide-inner,
  .hero-slide-event .hero-slide-inner,
  .hero-cta,
  .hero-slide-sale .hero-cta,
  .hero-slide-product .hero-cta,
  .hero-slide-ecosystem .hero-cta,
  .hero-slide-event .hero-cta,
  .hero-proof-strip,
  .hero-slide-sale .hero-proof-strip,
  .hero-slide-product .hero-proof-strip,
  .hero-slide-ecosystem .hero-proof-strip,
  .hero-slide-event .hero-proof-strip {
    display: none;
  }

  .hero-link-hotspots {
    display: block;
    z-index: 8;
    pointer-events: none;
  }

  .hero-hotspot {
    min-width: 44px;
    min-height: 32px;
    pointer-events: auto;
  }

  .hero-shell .carousel-button {
    display: grid;
    z-index: 9;
    top: 47.4%;
    bottom: auto;
    width: 42px;
    height: 42px;
    opacity: 0;
    pointer-events: auto;
  }

  .hero-shell .carousel-prev {
    left: 0;
  }

  .hero-shell .carousel-next {
    right: 0;
  }

  .hero-shell .carousel-dots,
  .hero-shell[data-active-slide="1"] .carousel-dots,
  .hero-shell[data-active-slide="2"] .carousel-dots,
  .hero-shell[data-active-slide="3"] .carousel-dots {
    bottom: 0;
    width: 42%;
    height: 18%;
    z-index: 6;
    opacity: 1;
    pointer-events: none;
  }

  .hero-shell .carousel-dots button,
  .hero-shell .carousel-dots button.is-active,
  .hero-shell.is-sale-active .carousel-dots button,
  .hero-shell.is-sale-active .carousel-dots button.is-active,
  .hero-shell[data-active-slide] .carousel-dots button,
  .hero-shell[data-active-slide] .carousel-dots button.is-active {
    width: 22%;
    height: 100%;
    opacity: 0;
    pointer-events: auto;
  }

  .hero-slide-sale::before,
  .hero-slide-product::before,
  .hero-slide-ecosystem::before,
  .hero-slide-event::before,
  .hero-slide-sale::after,
  .hero-slide-product::after,
  .hero-slide-ecosystem::after,
  .hero-slide-event::after {
    content: none;
  }

  .site-footer {
    padding: 36px 0 18px;
  }

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

  .footer-brand-panel,
  .footer-contact-card,
  .footer-contact-list {
    gap: 14px;
  }

  .footer-mark {
    width: 132px;
  }

  .footer-contact-list dt {
    font-size: 16px;
  }

  .footer-contact-list dd,
  .footer-contact-list a,
  .footer-socials a,
  .footer-links a {
    font-size: 14px;
    line-height: 1.35;
  }

  .footer-socials,
  .footer-socials:is(:not(#specificity)) {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-socials a {
    display: inline-flex;
    min-width: 0;
    gap: 6px;
    align-items: center;
  }

  .footer-social-icon {
    width: 22px;
    height: 22px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .footer-links nav h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 16px;
  }

  .footer-downloads {
    grid-template-columns: repeat(2, minmax(0, 132px));
    gap: 10px;
    width: fit-content;
    max-width: 100%;
  }

  .footer-downloads h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 16px;
  }

  .footer-downloads a {
    width: 132px;
    min-height: 44px;
    padding: 0 10px;
    gap: 8px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  }

  .footer-store-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .copyright {
    margin-top: 24px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero-slide,
  .hero-slide-product,
  .hero-slide-ecosystem,
  .hero-slide-event {
    min-height: 0;
  }

  .footer-socials {
    grid-template-columns: none;
  }
}
