/* ===== Fonts ===== */
@font-face {
  font-family: "Author";
  src: url("assets/fonts/author-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Author";
  src: url("assets/fonts/author-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Author";
  src: url("assets/fonts/author-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Author";
  src: url("assets/fonts/author-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Design tokens (extraídos do PEN) ===== */
:root {
  --bg-dark: #0A0F1C;
  --bg-card: #111827;
  --bg-card-hover: #1E293B;
  --bg-section: #060B16;
  --bg-overlay: #0A0F1CCC;

  --accent-blue: #9BBB40;
  --accent-cyan: #C8E55A;
  --accent-purple: #7C3AED;
  --accent-neon: #D4F06F;

  --text-white: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;

  --border-subtle: #1E293B;
  --border-glow: #9BBB4033;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;

  --font-body: "Author", system-ui, sans-serif;

  --container-max: 1440px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.inner-page {
  background: var(--bg-section);
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.slide-card {
  cursor: pointer;
}

ul {
  list-style: none;
}

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

svg {
  flex-shrink: 0;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

/* ===== Layout utilities ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

/* ===== Home: Hero ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 48px 0 44px;
  text-align: center;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, #9BBB4012 0%, var(--bg-dark) 100%);
}

.hero__logo {
  width: 360px;
  height: 136px;
  object-fit: contain;
}

.hero__logo #ASA path,
.hero__logo #ASD.logo-item {
  fill: transparent;
  stroke: var(--fill);
  stroke-width: 3;
  stroke-dasharray: 600 300;
  animation: logo-march 1.5s ease alternate-reverse;
}

.hero__logo.is-filled #ASA path,
.hero__logo.is-filled #ASD.logo-item {
  fill: var(--fill);
  stroke-width: 0;
  stroke-dasharray: none;
  animation: none;
  transition: fill 0.8s ease, stroke-width 0.8s ease;
}

.hero__logo #INT_TREI path {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
}

.hero__logo.is-filled #INT_TREI path {
  fill: var(--fill);
  transition: fill 0.8s ease;
}

@keyframes logo-march {
  to {
    stroke-dashoffset: -58;
  }
}

.hero__subtitle {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 20px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #9BBB4018;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 500;
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

/* ===== Home: Products ===== */
.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 80px 56px;
}

.products__title {
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 1280px;
}

.cards>li {
  flex: 1 1 340px;
  list-style: none;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.card:hover,
.card:focus-visible {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.card__illustration {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card__illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, currentColor 1px, transparent 1.6px);
  background-size: 16px 16px;
  background-position: 22px 22px;
  background-repeat: repeat;
  -webkit-mask-image: radial-gradient(circle at 46px 38px, black 34px, transparent 36px);
  mask-image: radial-gradient(circle at 46px 38px, black 34px, transparent 36px);
  opacity: 0.5;
}

.card__illustration::after {
  content: "";
  position: absolute;
  width: 144px;
  height: 144px;
  left: 132px;
  top: 28px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
}

.card__illustration .card__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 298px;
  top: 90px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
}

.card__illustration svg {
  position: relative;
  width: 64px;
  height: 64px;
  z-index: 1;
  fill: currentColor;
  stroke: none;
}

.card--ead .card__illustration {
  background-image: radial-gradient(ellipse 65% 65% at 32% 28%, #9BBB4040 0%, var(--bg-dark) 100%);
  color: var(--accent-blue);
}

.card--ead .card__glow {
  background: var(--accent-cyan);
}

.card--fabrica .card__illustration {
  background-image: radial-gradient(ellipse 65% 65% at 32% 28%, #7C3AED40 0%, var(--bg-dark) 100%);
  color: var(--accent-purple);
}

.card--fabrica .card__glow {
  background: #EC4899;
}

.card--presencial .card__illustration {
  background-image: radial-gradient(ellipse 65% 65% at 32% 28%, #C8E55A40 0%, var(--bg-dark) 100%);
  color: var(--accent-cyan);
}

.card--presencial .card__glow {
  background: #7EA82E;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.card__title {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 700;
}

.card__desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.card__arrow {
  display: flex;
  justify-content: flex-end;
}

.card__arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

/* ===== Responsive: tablet (fluid interpolation, no PEN spec) ===== */
@media (max-width: 1024px) {
  .products {
    padding: 40px 40px 48px;
  }

  .cards {
    gap: 20px;
  }

  .hero__subtitle {
    max-width: 90%;
  }
}

/* ===== Inner pages: fixed chrome (hamburger / title / section dots) ===== */
.page-chrome {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.hamburger {
  position: fixed;
  top: 24px;
  left: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  pointer-events: auto;
}

.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger__lines span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-white);
}

.page-title {
  position: fixed;
  top: 24px;
  left: 96px;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.section-dots {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.section-dots a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.2s ease;
}

.section-dots a.active {
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
}

/* ===== Menu overlay (drawer navigation) ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-overlay__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
}

.menu-panel {
  position: relative;
  width: 420px;
  max-width: 88vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 80px 48px 48px;
  background: linear-gradient(-90deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-right: 1px solid var(--border-subtle);
  overflow-y: auto;
  transform: translateX(-16px);
  transition: transform 0.25s ease;
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-panel__title {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.menu-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--border-subtle);
  border-radius: var(--radius-sm);
}

.menu-divider {
  height: 1px;
  border: none;
  background: var(--border-subtle);
  margin: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background-color 0.15s ease;
}

.menu-item:hover,
.menu-item:focus-visible {
  background: #1E293B80;
}

.menu-item__num {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
  min-width: 16px;
}

.menu-item .icon {
  width: 20px;
  height: 20px;
}

.menu-item__label {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
}

.menu-item--back {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.menu-item--back .icon {
  width: 18px;
  height: 18px;
}

/* ===== Product sections (snap-scroll inner pages) ===== */
.snap {
  scroll-snap-type: y proximity;
}

.snap>section {
  scroll-snap-align: start;
}

.product-section {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 100px 80px 60px;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, color-mix(in srgb, var(--accent) 8%, transparent) 0%, var(--bg-section) 100%);
}

.product-section__left {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 44%, transparent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.tag-pill .icon {
  width: 14px;
  height: 14px;
}

.section-title {
  color: var(--text-white);
  font-size: 44px;
  font-weight: 800;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
}

.section-cta .icon {
  width: 16px;
  height: 16px;
}

.section-watermark {
  position: absolute;
  right: 100px;
  bottom: 40px;
  font-size: 120px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}

.slider {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider__viewport {
  overflow: hidden;
  width: 100%;
}

.slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
}

.slide-card {
  flex-shrink: 0;
  width: 280px;
  height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
}

.slide-card__thumb {
  position: relative;
  height: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide-card__thumb .icon {
  width: 48px;
  height: 48px;
}

.slide-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
}

.slide-card__body h3 {
  color: var(--text-white);
  font-size: 15px;
  font-weight: 700;
}

.slide-card__body p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #334155;
  transition: all 0.2s ease;
}

.slider__dots button.active {
  width: 24px;
  background: var(--accent-blue);
}

.slider__arrows {
  display: flex;
  gap: 12px;
}

.slider__arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.slider__arrows button.next {
  background: var(--accent-blue);
  color: var(--text-white);
}

/* ===== Screenshot viewer (EAD feature showcase) ===== */
.screenshot-viewer {
  position: relative;
  flex-shrink: 0;
  height: 580px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  background-size: cover;
  background-position: center;
}

.screenshot-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0F1CBB;
  border: 1px solid #33415566;
  color: var(--text-white);
}

.screenshot-viewer__nav.prev {
  left: 16px;
}

.screenshot-viewer__nav.next {
  right: 16px;
}

.screenshot-viewer__zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0F1CBB;
  border: 1px solid #33415566;
  color: var(--text-white);
}

.screenshot-viewer__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #0A0F1CBB;
  color: var(--text-white);
  font-size: 12px;
  font-weight: 600;
}

.img-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.img-dots button {
  width: 8px;
  height: 6px;
  border-radius: 3px;
  background: #334155;
}

.img-dots button.active {
  width: 28px;
  background: var(--accent);
}

/* ===== Zoom modal (screenshot lightbox) ===== */
.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #060B16E6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.zoom-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.zoom-modal__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.zoom-modal__video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  object-fit: contain;
}

.zoom-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0F1CBB;
  border: 1px solid #33415566;
  border-radius: 24px;
  color: var(--text-white);
}

/* ===== Sample modal (lightbox) ===== */
.sample-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #060B16F2;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sample-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.sample-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.sample-modal__info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.sample-modal__info .sep {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #475569;
}

.sample-modal__counter {
  color: var(--accent-cyan);
  font-weight: 600;
}

.sample-modal__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E293B88;
  border: 1px solid #334155;
  border-radius: 24px;
  color: var(--text-white);
}

.sample-modal__body {
  position: relative;
  width: min(1040px, 88vw);
  max-height: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sample-modal__player {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.sample-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sample-modal__infobar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: #0D1117;
  flex-wrap: wrap;
}

.sample-modal__infobar h3 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
}

.sample-modal__infobar p {
  color: var(--text-muted);
  font-size: 14px;
}

.sample-modal__tags {
  display: flex;
  gap: 8px;
}

.sample-modal__tags .pill {
  padding: 6px 14px;
  font-size: 12px;
}

.sample-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E293B88;
  border: 1px solid #334155;
  border-radius: 28px;
  color: var(--text-white);
}

.sample-modal__arrow.prev {
  left: 60px;
}

.sample-modal__arrow.next {
  right: 60px;
}

.sample-modal__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 24px;
}

.sample-modal__thumbs button {
  width: 36px;
  height: 4px;
  border-radius: 3px;
  background: #334155;
}

.sample-modal__thumbs button.active {
  width: 48px;
  height: 6px;
  background: var(--accent-blue);
}

/* ===== Responsive: mobile (pixel-faithful to PEN mobile frames) ===== */
@media (max-width: 640px) {
  .hero {
    gap: 16px;
    padding: 40px 24px 36px;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, #9BBB4010 0%, var(--bg-dark) 100%);
  }

  .hero__logo {
    width: 220px;
    height: 83px;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.57;
  }

  .badge {
    gap: 6px;
    padding: 6px 14px;
    font-size: 11px;
  }

  .badge svg {
    width: 12px;
    height: 12px;
  }

  .products {
    gap: 18px;
    padding: 8px 20px 40px;
  }

  .products__title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .cards {
    gap: 18px;
  }

  .cards>li {
    flex: 1 1 100%;
  }

  .card__content {
    padding: 22px;
  }

  .card__title {
    font-size: 18px;
  }

  /* No mobile o card vira full-width e o ícone (centralizado por flex)
     se afasta da elipse decorativa, que no desktop fica presa em px fixo.
     Centraliza a elipse no mesmo ponto do ícone pra voltarem a alinhar. */
  .card__illustration::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ===== Product sections: tablet interpolation ===== */
@media (max-width: 1100px) {
  .product-section {
    padding: 90px 40px 48px;
    gap: 32px;
  }

  .product-section__left {
    width: 320px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-dots {
    right: 20px;
  }
}

/* ===== Product sections: mobile (faithful to PEN "M Section" frames) ===== */
@media (max-width: 640px) {
  .page-title {
    left: 76px;
    top: 10px;
    font-size: 14px;
    padding: 9px 14px;
  }

  .hamburger {
    top: 10px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  .hamburger__lines span {
    width: 18px;
  }

  .section-dots {
    display: none;
  }

  .menu-panel {
    max-width: 100vw;
    padding: 64px 28px 32px;
  }

  .snap {
    scroll-snap-type: none;
  }

  .product-section {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 76px 20px 40px;
    gap: 20px;
  }

  .product-section__left {
    display: contents;
  }

  .section-title {
    font-size: 32px;
  }

  .section-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .slider {
    order: 1;
  }

  .section-cta {
    order: 2;
  }

  .section-watermark {
    display: none;
  }

  .slide-card {
    width: 240px;
    height: 320px;
  }

  .slide-card__thumb {
    height: 200px;
  }

  .slide-card__thumb .icon {
    width: 36px;
    height: 36px;
  }

  .slider__track {
    gap: 14px;
  }

  .sample-modal__body {
    width: 92vw;
  }

  .sample-modal__player {
    height: 260px;
  }

  .sample-modal__arrow.prev {
    left: 16px;
  }

  .sample-modal__arrow.next {
    right: 16px;
  }

  .screenshot-viewer {
    height: 240px;
  }

  .screenshot-viewer__nav {
    width: 36px;
    height: 36px;
  }
}

.form-flash { padding: .75rem 1rem; border-radius: 6px; margin: 1rem 0; }
.form-flash--ok { background: #e8f5e9; color: #1b5e20; }
.form-flash--error { background: #ffebee; color: #b71c1c; }