/*
Template: Cosonix One-Page Theme Live Demo Gateway
Author: Fluent-Themes
Restructured for buyer-focused Envato preview flow.
*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,400,300,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Dosis:300,700,600);

:root {
  --font-heading: 'Dosis', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --cta: #ECAE1A;
  --cta-hover: #DB9E1A;
  --accent: #D6B161;
  --accent-deep: #B28A5A;
  --dark: #101010;
  --dark-2: #181818;
  --heading: #242424;
  --body: #4D4D4D;
  --muted: #777777;
  --bg: #F8F8F8;
  --bg-soft: #F2F1EE;
  --card: #FFFFFF;
  --border: #E7E7E7;
  --shadow: 0 18px 45px rgba(0, 0, 0, .10);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, .08);
  --radius: 22px;
  --radius-sm: 12px;
  --container: 1170px;
  --container-x: 24px;
  --section-y: 88px;
  --official-demo-bar-height: 42px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--body);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease; }
a:hover { text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 16px; font-family: var(--font-body); letter-spacing: .01em; line-height: 1.75; }
h1, h2, h3, h4 { color: inherit; font-family: var(--font-heading); font-weight: 700; line-height: 1.08; margin: 0; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container {
  width: min(var(--container), calc(100% - (var(--container-x) * 2)));
  margin: 0 auto;
}
.section { padding: var(--section-y) 0; scroll-margin-top: 120px; }
.section-muted { background: var(--bg); }
.section-dark { color: #fff; background: var(--dark); }
.section-header { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-header h2,
.section-copy h2 { color: var(--heading); font-size: clamp(30px, 4vw, 44px); letter-spacing: .005em; }
.section-dark .section-header h2,
.section-dark .section-copy h2 { color: #fff; }
.section-lead { max-width: 760px; margin: 16px auto 0; color: var(--muted); font-size: 17px; }
.section-dark .section-lead { color: rgba(255, 255, 255, .76); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-dark .eyebrow,
.hero .eyebrow,
.final-cta .eyebrow { color: var(--accent); }
.eyebrow:before { content: ''; width: 24px; height: 2px; background: currentColor; border-radius: 999px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5000;
  transform: translateY(-160%);
  background: #fff;
  color: var(--heading);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.btn-primary { color: #fff; background: var(--cta); border-color: var(--cta); box-shadow: 0 10px 24px rgba(236, 174, 26, .28); }
.btn-primary:hover, .btn-primary:focus { color: #fff; background: var(--cta-hover); border-color: var(--cta-hover); transform: translateY(-2px); }
.btn-secondary { color: #fff; background: rgba(255, 255, 255, .10); border-color: rgba(255, 255, 255, .36); }
.btn-secondary:hover, .btn-secondary:focus { color: #fff; background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .65); transform: translateY(-2px); }
.btn-light { color: var(--heading); background: #fff; border-color: #fff; }
.btn-light:hover, .btn-light:focus { color: var(--heading); transform: translateY(-2px); }
:focus-visible { outline: 3px solid rgba(236, 174, 26, .6); outline-offset: 3px; }

.official-demo-bar {
  display: none;
  z-index: 1200;
  color: #f8f8f8;
  background: linear-gradient(90deg, #0f0f0f, #201b10 48%, #0f0f0f);
  border-bottom: 1px solid rgba(214, 177, 97, .28);
  font-family: var(--font-body);
  font-size: 13px;
}
.official-demo-bar-referrer-untrusted .official-demo-bar { display: block; }
.official-demo-bar__inner {
  width: min(var(--container), calc(100% - 32px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.official-demo-bar a { color: var(--accent); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@media (min-width: 1025px) {
  .official-demo-bar { position: sticky; top: 0; }
  .official-demo-bar-referrer-untrusted .site-header { top: var(--official-demo-bar-height, 42px); }
}
@media (max-width: 1024px) {
  .official-demo-bar { position: relative; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  color: #fff;
  background: rgba(16, 16, 16, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  color: #fff;
}
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand strong { display: block; color: #fff; font-size: 24px; line-height: 1; letter-spacing: .02em; }
.brand small { display: block; margin-top: 3px; color: rgba(255, 255, 255, .66); font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.desktop-nav > a,
.nav-dropdown-toggle {
  position: relative;
  color: rgba(255, 255, 255, .80);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
}
.desktop-nav > a:hover,
.desktop-nav > a.active,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover { color: #fff; background: rgba(255, 255, 255, .09); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle:after { content: '▾'; margin-left: 6px; color: var(--accent); font-size: 10px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  color: var(--heading);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}
.nav-dropdown-menu a:hover { color: var(--heading); background: var(--bg); }
.header-cta { flex: 0 0 auto; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 999px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
  display: none;
  padding: 0 var(--container-x) 22px;
  background: rgba(16, 16, 16, .98);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.mobile-drawer a:not(.btn) {
  display: block;
  color: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 14px 2px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
}
.mobile-drawer .btn { width: 100%; margin-top: 16px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 92px;
  background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.84)), url(../images/demo-image.jpg) center center / cover no-repeat;
}
.hero:before, .hero:after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(214, 177, 97, .20);
  filter: blur(80px);
  pointer-events: none;
}
.hero:before { top: -150px; left: -110px; }
.hero:after { right: -160px; bottom: -160px; background: rgba(236, 174, 26, .16); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: 58px;
  align-items: center;
}
.hero h1 { max-width: 760px; color: #fff; font-size: clamp(42px, 5vw, 64px); letter-spacing: .005em; }
.hero-subtitle { max-width: 680px; margin-top: 20px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-proof li {
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(214,177,97,.36);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
}
.hero-visual { border-radius: 28px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 14px; box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.hero-visual-main img { width: 100%; border-radius: 20px; }
.hero-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.hero-mini-grid img { aspect-ratio: 16/10; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; opacity: .88; }

.feature-strip { background: #fff; border-bottom: 1px solid var(--border); }
.feature-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
}
.feature-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
}
.feature-strip span:before { content: '✓'; color: var(--cta); font-weight: 900; }

.split-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr); gap: 48px; align-items: center; }
.section-copy p:not(.eyebrow) { font-size: 16px; color: var(--body); }
.section-dark .section-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.check-card, .trust-panel, .showcase-panel, .info-card, .demo-card, .use-case-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.check-card { padding: 32px; }
.check-card h3, .trust-panel h3 { color: var(--heading); font-size: 26px; margin-bottom: 18px; }
.check-list { display: grid; gap: 13px; }
.check-list li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: var(--body);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  color: #fff;
  background: var(--cta);
  font-size: 12px;
  font-weight: 900;
}

.benefit-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 34px; align-items: stretch; }
.card-grid { display: grid; gap: 20px; }
.benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card { padding: 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.info-card:hover, .demo-card:hover, .use-case-grid article:hover { transform: translateY(-4px); border-color: rgba(236,174,26,.42); box-shadow: var(--shadow); }
.card-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--dark);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}
.info-card h3 { color: var(--heading); font-size: 23px; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0; }
.showcase-panel { position: relative; overflow: hidden; padding: 12px; }
.showcase-panel img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: 16px; }
.showcase-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  color: #fff;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(8px);
}
.showcase-caption strong { display: block; font-size: 22px; }
.showcase-caption span { display: block; color: rgba(255,255,255,.75); font-family: var(--font-body); font-size: 14px; line-height: 1.6; margin-top: 3px; }

.demo-chip-nav {
  position: sticky;
  top: 84px;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -16px auto 34px;
  padding: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  max-width: max-content;
}
.official-demo-bar-referrer-untrusted .demo-chip-nav { top: calc(84px + var(--official-demo-bar-height, 0px)); }
.demo-chip {
  color: var(--heading);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.demo-chip:hover, .demo-chip.active { color: #fff; background: var(--dark); border-color: var(--dark); }
.demo-group {
  scroll-margin-top: 150px;
  margin-top: 34px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 30px;
}
.demo-group + .demo-group { margin-top: 36px; }
.demo-group-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}
.demo-group-header h3 { color: var(--heading); font-size: clamp(28px, 3vw, 38px); }
.demo-group-header p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 15.5px; margin: 12px 0 0; }
.proof-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; max-width: 390px; }
.proof-pills li {
  color: var(--heading);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 11px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
}
.demo-card-grid { display: grid; gap: 22px; }
.demo-card-grid.two-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.demo-card-grid.three-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.demo-card { overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.demo-card > img { width: 100%; aspect-ratio: 16/9.35; object-fit: cover; background: #eee; }
.demo-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.demo-label {
  align-self: flex-start;
  color: var(--accent-deep);
  background: rgba(214,177,97,.14);
  border-radius: 999px;
  padding: 6px 9px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.demo-card h4 { color: var(--heading); font-size: 24px; margin: 14px 0 10px; }
.demo-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 16px; }
.demo-card ul { display: grid; gap: 7px; margin-bottom: 20px; }
.demo-card li { position: relative; padding-left: 18px; color: var(--body); font-family: var(--font-body); font-size: 13.5px; line-height: 1.55; }
.demo-card li:before { content: '•'; position: absolute; left: 2px; color: var(--cta); font-weight: 900; }
.demo-card .btn { margin-top: auto; align-self: flex-start; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-card .icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: var(--cta);
  padding: 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.use-case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.use-case-grid article { padding: 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.use-case-grid h3 { color: var(--heading); font-size: 22px; margin-bottom: 8px; }
.use-case-grid p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0; }

.compatibility-section {
  background: linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.84)), url(../images/banner-bg.jpg) center center / cover no-repeat;
}
.compatibility-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.compatibility-badges span {
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(214,177,97,.34);
  border-radius: 999px;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
}
.trust-panel {
  padding: 32px;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.trust-panel h3 { color: #fff; }
.check-list-dark li { color: rgba(255,255,255,.80); }
.trust-panel .btn { margin-top: 24px; }

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.84)), url(../images/banner-bg.jpg) center center / cover no-repeat;
}
.final-cta__inner { max-width: 820px; }
.final-cta h2 { color: #fff; font-size: clamp(34px, 5vw, 54px); }
.final-cta p { max-width: 720px; margin: 18px auto 0; color: rgba(255,255,255,.78); font-size: 17px; }
.price-chip {
  display: inline-flex;
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(214,177,97,.38);
  border-radius: 999px;
  padding: 10px 16px;
  margin-top: 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
}
.centered-actions { justify-content: center; }

.site-footer {
  color: rgba(255,255,255,.72);
  background: var(--dark);
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 36px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.75; }
.footer-logo { min-width: 0; margin-bottom: 16px; }
.site-footer h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.site-footer nav a { display: block; color: rgba(255,255,255,.68); font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; margin: 0 0 10px; }
.site-footer nav a:hover, .footer-bottom a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 46px;
  padding-top: 22px;
  font-family: var(--font-body);
  font-size: 13px;
}
.footer-bottom p { color: rgba(255,255,255,.62); font-size: 13px; margin: 0; }
.footer-bottom a { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-drawer.open { display: block; }
  .hero-grid, .split-grid, .benefit-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 680px; }
  .demo-card-grid.three-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .demo-chip-nav { top: 84px; }
  .official-demo-bar-referrer-untrusted .demo-chip-nav { top: 84px; }
}

@media (max-width: 760px) {
  :root { --container-x: 18px; --section-y: 60px; }
  body { font-size: 15px; }
  .official-demo-bar__inner { justify-content: flex-start; align-items: flex-start; flex-direction: column; gap: 5px; min-height: 0; padding: 10px 0; text-align: left; font-size: 12.5px; }
  .nav-wrap { min-height: 66px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 21px; }
  .brand small { display: none; }
  .hero { padding: 72px 0 62px; }
  .hero h1 { font-size: clamp(34px, 11vw, 44px); }
  .hero-subtitle { font-size: 15.5px; }
  .hero-actions, .centered-actions { flex-direction: column; }
  .btn { width: 100%; min-height: 46px; }
  .hero-proof { display: none; }
  .hero-mini-grid { display: none; }
  .section-header { margin-bottom: 32px; }
  .section-header h2, .section-copy h2 { font-size: clamp(28px, 8vw, 36px); }
  .section-lead { font-size: 15px; }
  .check-card, .trust-panel, .info-card { padding: 22px; }
  .benefit-grid, .feature-grid, .use-case-grid, .demo-card-grid.two-cards, .demo-card-grid.three-cards { grid-template-columns: 1fr; }
  .showcase-panel img { min-height: 260px; }
  .showcase-caption { position: static; margin-top: 12px; color: var(--heading); background: #fff; border-color: var(--border); }
  .showcase-caption span { color: var(--muted); }
  .demo-chip-nav {
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 18px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .demo-group { padding: 20px; border-radius: 22px; }
  .demo-group-header { grid-template-columns: 1fr; align-items: start; }
  .proof-pills { justify-content: flex-start; max-width: none; }
  .demo-card .btn { width: 100%; }
  .compatibility-badges span { flex: 1 1 auto; text-align: center; }
  .price-chip { border-radius: 18px; line-height: 1.5; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .feature-strip span { width: 100%; justify-content: center; }
  .demo-card-body { padding: 18px; }
  .hero-visual { padding: 9px; border-radius: 20px; }
  .hero-visual-main img { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
