:root {
  --bg: #08111d;
  --panel: rgba(10, 26, 43, 0.82);
  --panel-strong: rgba(7, 18, 30, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(129, 215, 255, 0.18);
  --line-strong: rgba(129, 215, 255, 0.32);
  --text: #eef7ff;
  --muted: #abc6d8;
  --accent: #5ce1ff;
  --accent-strong: #00b8e8;
  --warm: #ffcb59;
  --warm-soft: rgba(255, 203, 89, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 184, 232, 0.16), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(255, 203, 89, 0.15), transparent 18%),
    linear-gradient(180deg, #07101a 0%, #081726 34%, #0b1d2f 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(92, 225, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 225, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 96%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(7, 16, 26, 0.3), rgba(7, 16, 26, 0.52)),
    url('./assets/images/gstarconcrete-bg-hero.png') center top / cover no-repeat;
  opacity: 0.42;
  mix-blend-mode: normal;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 8px 12px;
  position: sticky;
  top: 14px;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(7, 17, 29, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
}

.topbar-brand-logo-wrap {
  width: clamp(176px, 16vw, 228px);
  height: 40px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.topbar-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  object-position: left center;
}

.eyebrow,
.hero-kicker,
.card-label,
.dealer-badge,
.play-pill,
.button,
h1,
h2,
h3,
figcaption {
  font-family: "Space Grotesk", sans-serif;
}

.nav a,
.lead,
.section-head p,
.feature-card p,
.detail-card p,
.extra-card p,
.module-overview-card li,
.support-card p,
.dealer-top p,
.compat-card span,
.footer p,
.ribbon-card span,
.metric-card p,
.tutorial-overlay span,
.dealer-meta li,
.form-note,
.form-status,
.field span,
.checkbox-field span,
.tutorial-copy p,
.partner-card p,
.brand-card p,
figcaption {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 0;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  font-size: 0.88rem;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 68px 0;
}

section[id] {
  scroll-margin-top: 140px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #041018;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.button-small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.8rem;
  box-shadow: none;
  white-space: nowrap;
}

.topbar-cta {
  flex: 0 0 auto;
  margin-left: auto;
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button-link {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-inline: 8px;
}

.hero,
.content-split,
.section-media-grid,
.partner-grid,
.brand-grid,
.contact-grid,
.hero-metrics,
.value-grid,
.detail-grid,
.extra-grid,
.tutorial-grid,
.dealer-grid,
.compat-grid,
.module-overview-grid,
.form-grid {
  display: grid;
  gap: 16px;
}

.hero {
  align-items: center;
  padding-top: 30px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-kicker,
.card-label,
.dealer-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--accent);
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1;
}

h1 span,
.form-status.is-success {
  color: var(--accent);
}

h2 {
  margin: 0 0 16px;
  max-width: 24ch;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.06;
}

.lead,
.section-head p,
.feature-card p,
.detail-card p,
.extra-card p,
.support-card p,
.dealer-top p,
.dealer-meta li,
.compat-card span,
.metric-card p,
.ribbon-card span,
.tutorial-copy p,
.partner-card p,
.brand-card p {
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  font-size: 0.98rem;
}

.hero-actions,
.card-actions,
.dealer-links,
.form-actions,
.partner-logo-bar,
.brand-logo-row,
.hero-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 22px 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chip-list li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
}

.hero-media-card,
.feature-card,
.detail-card,
.extra-card,
.module-overview-card,
.support-card,
.form-card,
.dealer-card,
.compat-card,
.ribbon-card,
.metric-card,
.tutorial-card,
.list-panel,
.brand-card,
.partner-card,
.image-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}

.hero-media-card {
  padding: 14px;
}

.logo-pill {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 120px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.logo-pill-wide {
  flex-basis: 220px;
}

.logo-pill img {
  max-height: 44px;
  width: auto;
}

.hero-image-frame,
.brand-image-wrap,
.image-card {
  overflow: hidden;
}

.hero-image-frame {
  margin-top: 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  max-height: 350px;
}

.hero-image-frame img,
.brand-image-wrap img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-metrics-compact {
  margin-top: 10px;
}

.hero-pdf-showcase {
  margin-top: 10px;
  display: grid;
  gap: 14px;
}

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

.pdf-thumb-card,
.example-pdf-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.pdf-thumb-card {
  aspect-ratio: 0.78;
}

.pdf-thumb-card img,
.example-pdf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
}

.hero-pdf-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(6, 17, 29, 0.74);
}

.hero-pdf-copy strong {
  display: block;
}

.hero-pdf-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.example-pdf-grid {
  display: grid;
  gap: 18px;
}

.example-pdf-stack {
  display: grid;
  gap: 18px;
}

.example-pdf-browser {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.example-pdf-sidebar {
  display: grid;
  gap: 0;
  max-height: 960px;
  overflow-y: auto;
  background: #f4f8fb;
  border-right: 1px solid rgba(16, 34, 53, 0.1);
}

.example-pdf-select {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid rgba(16, 34, 53, 0.08);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.example-pdf-select img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(16, 34, 53, 0.08);
}

.example-pdf-select span {
  color: #102235;
  font-size: 0.84rem;
  line-height: 1.4;
}

.example-pdf-select.is-active {
  background: #eaf7fd;
}

.example-pdf-stage {
  min-width: 0;
  background: #ffffff;
}

.example-pdf-viewer-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.example-pdf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 34, 53, 0.1);
}

.example-pdf-toolbar h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #102235;
}

.example-pdf-toolbar a {
  color: #0b84a6;
  font-size: 0.86rem;
  white-space: nowrap;
}

.example-pdf-viewer {
  display: block;
  width: 100%;
  height: 900px;
  border: 0;
  background: #ffffff;
}

.example-pdf-card {
  box-shadow: var(--shadow);
}

.example-pdf-card img {
  aspect-ratio: 0.78;
  object-fit: contain;
  padding: 8px;
}

.example-pdf-copy {
  padding: 10px 12px 12px;
  display: grid;
  gap: 6px;
  background: #ffffff;
}

.example-pdf-copy h3 {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #102235;
}

.example-pdf-copy p {
  margin: 0;
  color: #0b84a6;
  font-size: 0.78rem;
}

.metric-card,
.feature-card,
.detail-card,
.extra-card,
.module-overview-card,
.support-card,
.form-card,
.dealer-card,
.compat-card,
.tutorial-card,
.partner-card,
.brand-card {
  padding: 20px;
}

.metric-card {
  background: rgba(6, 17, 29, 0.74);
}

.hero-metrics .metric-card {
  padding: 16px 18px;
}

.hero-metrics .metric-card p {
  line-height: 1.55;
  font-size: 0.92rem;
}

.metric-card strong,
.ribbon-card strong,
.compat-card strong {
  display: block;
  margin-bottom: 6px;
}

.ribbon {
  display: grid;
  gap: 16px;
  padding-top: 0;
}

.ribbon-card {
  padding: 18px;
}

.section-head {
  max-width: 1120px;
  margin-bottom: 22px;
}

.section-head-wide {
  max-width: 1200px;
}

.section-head-compact h2 {
  max-width: none;
  font-size: clamp(1.3rem, 2.7vw, 2rem);
}

.content-split,
.section-media-grid,
.partner-grid,
.brand-grid,
.contact-grid {
  align-items: start;
}

.media-stack {
  display: grid;
  gap: 16px;
}

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

.media-stack-examples .image-card:last-child {
  grid-column: 1 / -1;
}

.image-card {
  background: var(--panel-strong);
}

.image-card img {
  min-height: 190px;
}

figcaption {
  padding: 16px 18px 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.module-overview-card ul,
.list-panel ul {
  margin: 0;
  padding-left: 18px;
}

.module-overview-card li,
.list-panel li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.list-panel {
  padding: 24px;
}

.brand-card,
.partner-card,
.support-card,
.form-card,
.extra-card {
  background: linear-gradient(180deg, rgba(92, 225, 255, 0.08), transparent 32%), var(--panel-strong);
}

.brand-logo-wrap,
.brand-image-wrap {
  min-height: 180px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-logo-wrap img {
  max-width: 88%;
  max-height: 110px;
}

.brand-logo-row {
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 18px;
}

.brand-logo-large {
  width: min(220px, 48%);
}

.detail-grid-wide {
  grid-template-columns: 1fr;
}

.tutorial-card {
  display: grid;
  gap: 20px;
}

.tutorial-media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.tutorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tutorial-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.tutorial-media-official {
  background:
    radial-gradient(circle at 20% 10%, rgba(92, 225, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #0c2134 0%, #081624 100%);
}

.tutorial-media-featured {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 203, 89, 0.25), transparent 26%),
    linear-gradient(180deg, #1e1c2d 0%, #0b1727 100%);
}

.tutorial-media-custom {
  background:
    radial-gradient(circle at 50% 0%, rgba(106, 255, 198, 0.2), transparent 26%),
    linear-gradient(180deg, #0d2130 0%, #0a1825 100%);
}

.tutorial-media-thumb {
  display: block;
  background: #0b1826;
}

.tutorial-media-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 22, 0.04) 0%, rgba(4, 13, 22, 0.72) 100%);
}

.tutorial-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(4, 13, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 2;
}

.tutorial-overlay strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  color: #f7fbff;
}

.tutorial-card-video .play-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #0a1a27;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

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

.tutorial-card-feature .tutorial-media {
  min-height: 260px;
}

.section-tight {
  padding-top: 0;
}

.video-library-hero .section-head {
  max-width: 920px;
}

.video-library-grid {
  display: grid;
  gap: 18px;
}

.video-folder-grid {
  display: grid;
  gap: 18px;
}

.video-folder-card {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.video-folder-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.video-folder-thumb {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(92, 225, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid var(--line);
}

.video-folder-thumb img {
  width: min(220px, 82%);
  height: auto;
  object-fit: contain;
}

.video-folder-copy {
  padding: 18px;
}

.video-folder-copy h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.video-folder-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.video-category-list {
  display: grid;
  gap: 24px;
}

.video-category {
  display: grid;
  gap: 16px;
}

.video-category-head {
  max-width: 760px;
}

.video-category-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.video-library-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-library-thumb {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background:
    radial-gradient(circle at top left, rgba(92, 225, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid var(--line);
}

.video-library-thumb img {
  max-width: 100%;
}

.video-library-thumb img.is-logo {
  width: min(136px, 62%);
  height: auto;
  object-fit: contain;
}

.video-library-thumb img.is-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.video-library-copy {
  padding: 18px;
}

.video-library-copy h3 {
  margin-bottom: 14px;
  font-size: 1.16rem;
  line-height: 1.28;
  text-transform: capitalize;
  text-align: center;
}

.video-library-copy video {
  width: 100%;
  display: block;
  border-radius: 16px;
  background: #02070c;
}

.dealer-top {
  margin-bottom: 14px;
}

.dealer-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dealer-title-row h3 {
  margin-bottom: 0;
  flex: 1 1 auto;
  font-size: 1rem;
}

.dealer-logo {
  width: auto;
  max-width: 136px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 10px;
}

.dealer-logo-wide {
  max-width: 188px;
  height: 52px;
  padding: 4px 10px;
}

.dealer-logo-medium {
  max-width: 156px;
  height: 48px;
  padding: 4px 10px;
}

.dealer-logo-sip {
  max-width: 88px;
  height: 72px;
  padding: 5px;
}

.dealer-logo-dark {
  background: rgba(11, 29, 47, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-badge {
  margin-bottom: 10px;
}

.dealer-card {
  display: grid;
  align-content: start;
  padding: 16px;
}


.dealer-card-soon {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.16);
}


.dealer-badge-soon {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  width: fit-content;
  font-size: 0.8rem;
}

.dealer-map {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(92, 225, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  position: relative;
}

.dealer-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.dealer-map svg {
  width: 100%;
  height: 118px;
  display: block;
  position: relative;
  z-index: 1;
}

.dealer-map img {
  width: 100%;
  height: 118px;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-map-base {
  fill: rgba(187, 202, 219, 0.18);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
}

.dealer-map-focus {
  fill: rgba(92, 225, 255, 0.24);
  stroke: rgba(92, 225, 255, 0.65);
  stroke-width: 2;
}

.dealer-map-island {
  fill: rgba(187, 202, 219, 0.16);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2;
}

.dealer-map-pin {
  fill: var(--accent);
  stroke: rgba(4, 16, 24, 0.8);
  stroke-width: 3;
}

.dealer-map-pin-soft {
  fill: rgba(92, 225, 255, 0.55);
}

.dealer-map-label {
  fill: rgba(241, 247, 255, 0.94);
  font: 700 14px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}

.dealer-map-copy {
  display: grid;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.dealer-map-copy strong {
  font-size: 0.88rem;
}

.dealer-map-copy span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.82rem;
}

.dealer-meta {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 14px;
  list-style: none;
  font-size: 0.88rem;
}

.dealer-meta a,
.dealer-links a {
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
}

.dealer-links a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.dealer-meta a {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--accent);
}

.dealer-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(92, 225, 255, 0.12), transparent 30%),
    var(--panel-strong);
}

.dealer-note h3 {
  margin: 0 0 12px;
}

.dealer-note p:last-child {
  margin-bottom: 0;
}

.dealer-cta {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top left, rgba(92, 225, 255, 0.1), transparent 30%),
    rgba(8, 17, 29, 0.78);
  box-shadow: var(--shadow);
}

.dealer-cta-copy {
  max-width: 560px;
}

.dealer-cta-copy h3 {
  margin-bottom: 12px;
}

.dealer-cta-map {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.dealer-cta-map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.compat-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-section .form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  color: #102235;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 24px;
}

.contact-section .form-card .field span,
.contact-section .form-card .checkbox-field span,
.contact-section .form-card .form-note,
.contact-section .form-card .form-status {
  color: rgba(16, 34, 53, 0.74);
}

.contact-section .form-card .field input,
.contact-section .form-card .field select,
.contact-section .form-card .field textarea {
  border-color: rgba(16, 34, 53, 0.14);
  background: rgba(255, 255, 255, 0.97);
  color: #102235;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-section .form-card .field input::placeholder,
.contact-section .form-card .field textarea::placeholder {
  color: rgba(16, 34, 53, 0.44);
}

.contact-section .form-card .button {
  box-shadow: none;
}

.contact-section .form-card .form-status.is-success {
  color: #0d8b65;
}

.request-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 124px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(171, 198, 216, 0.72);
}

.field-full {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-field input {
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 24px;
}

.form-status.is-success {
  color: #92ffe1;
}

.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 36px;
  padding: 0 0 24px;
}

.footer-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(9, 25, 40, 0.96), rgba(8, 19, 31, 0.94)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand-mark {
  width: min(220px, 72%);
}

.footer-brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-brand h3,
.footer-col h3 {
  margin: 0;
  font-size: 1rem;
}

.footer-brand p,
.footer-col p,
.footer-col li,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-links,
.footer-legal-list,
.footer-company-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(129, 215, 255, 0.14);
}

.footer-panel-home {
  gap: 18px;
  padding: 24px;
}

.footer-grid-home {
  gap: 18px;
}

.footer-grid-home .footer-col {
  gap: 8px;
}

.footer-company-col {
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.footer-legal-list a {
  color: var(--text);
}

.footer-legal-list a:hover {
  color: var(--accent);
}

.footer-legal-notes {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-legal-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(129, 215, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  scroll-margin-top: 140px;
}

.footer-legal-card h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
}

.footer-legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-company-list li {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.footer-company-label {
  color: var(--text);
  white-space: nowrap;
}

.footer-company-value {
  min-width: 0;
  word-break: break-word;
}

.footer-company-value a {
  color: var(--text);
  word-break: break-word;
}

.footer-company-value a:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .topbar {
    padding: 10px 16px;
  }

  .ribbon,
  .compat-grid,
  .module-overview-grid,
  .extra-grid,
  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics,
  .value-grid,
  .detail-grid,
  .form-grid,
  .section-media-grid,
  .content-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .list-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

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

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

  .example-pdf-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1.05fr;
    align-items: start;
  }

  .footer-grid-home {
    grid-template-columns: 1.14fr 0.72fr 0.56fr 1.32fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.08fr 0.92fr;
    min-height: calc(100vh - 210px);
  }

  .hero-metrics,
  .detail-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tutorial-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    align-items: start;
  }

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

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

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

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

  .example-pdf-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .dealer-cta {
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .topbar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    width: min(calc(100% - 18px), var(--max));
    border-radius: 16px;
  }

  .topbar-brand-logo-wrap {
    width: 168px;
    height: 38px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 6px;
    padding-top: 0;
    order: 3;
  }

  .nav a {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .topbar-cta {
    margin-left: 0;
    order: 2;
  }

  .button-small {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .tutorial-media {
    min-height: 220px;
  }

  .video-library-thumb {
    min-height: 88px;
    padding: 10px;
  }

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

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

  .example-pdf-browser {
    grid-template-columns: 1fr;
  }

  .example-pdf-sidebar {
    max-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 34, 53, 0.1);
  }

  .example-pdf-select {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .example-pdf-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .example-pdf-toolbar a {
    white-space: normal;
  }

  .example-pdf-viewer {
    height: 540px;
  }

  .video-folder-thumb {
    min-height: 140px;
    padding: 18px;
  }

  .video-library-copy {
    padding: 14px;
  }

  .video-folder-copy {
    padding: 14px;
  }

  .video-library-copy h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .video-folder-copy h3 {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }

  .video-folder-copy p {
    font-size: 0.88rem;
  }

  .contact-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact-section .section-head {
    margin-bottom: 16px;
  }

  .contact-section .form-card {
    padding: 16px;
    border-radius: 18px;
  }

  .request-form {
    gap: 12px;
  }

  .field {
    gap: 6px;
  }

  .field span,
  .checkbox-field span,
  .form-note,
  .form-status {
    font-size: 0.86rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .field textarea {
    min-height: 96px;
  }

  .form-actions {
    gap: 10px;
  }

  .dealer-title-row {
    align-items: flex-start;
  }

  .dealer-logo {
    max-width: 112px;
    height: 38px;
  }

  .dealer-logo-wide {
    max-width: 148px;
    height: 44px;
  }

  .dealer-logo-medium {
    max-width: 128px;
    height: 40px;
  }

  .dealer-logo-sip {
    max-width: 72px;
    height: 60px;
  }

  .media-stack-examples {
    grid-template-columns: 1fr;
  }

  .media-stack-examples .image-card:last-child {
    grid-column: auto;
  }

  .brand-logo-row {
    justify-content: center;
  }

  .footer-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .footer-panel-home {
    padding: 20px 16px;
  }

  .footer-company-col {
    max-width: none;
    justify-self: stretch;
  }

  .footer-brand-mark {
    width: min(196px, 78%);
  }

  .footer-brand h3,
  .footer-col h3 {
    font-size: 0.96rem;
  }

  .footer-brand p,
  .footer-col p,
  .footer-col li,
  .footer-bottom p {
    font-size: 0.88rem;
  }

  .footer-legal-card {
    padding: 12px 14px;
  }

  .footer-legal-card p {
    font-size: 0.84rem;
  }

  .footer-company-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-company-label {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
