:root {
  --navy: #0d1148;
  --navy-2: #202680;
  --gold: #ddb21f;
  --gold-2: #f0c83b;
  --cyan: #58c4de;
  --ink: #171a2a;
  --muted: #6d7487;
  --soft: #f4f6fb;
  --line: #e1e5ee;
  --card: #ffffff;
  --shadow: 0 22px 60px rgba(13, 17, 72, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(88, 196, 222, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(221, 178, 31, 0.18), transparent 28rem),
    linear-gradient(180deg, #f8faff 0%, #eef2f8 42%, #ffffff 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(221, 178, 31, 0.8);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 18px;
  padding: 12px 28px;
  color: #fff;
  background: rgba(13, 17, 72, 0.94);
  border-bottom: 3px solid var(--gold);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 315px;
  min-width: 315px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 100%;
  min-height: 66px;
  padding: 7px 10px;
  background: rgba(5, 7, 32, 0.88);
  border: 1px solid rgba(221, 178, 31, 0.38);
  border-radius: 3px;
  box-shadow: 0 12px 28px rgba(5, 7, 32, 0.22);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.site-nav.is-menu-open .nav-toggle-lines {
  background: transparent;
}

.site-nav.is-menu-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-nav.is-menu-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-width: 0;
}

.nav-home-link,
.nav-item {
  position: relative;
  flex: 1 1 0;
  min-width: 112px;
}

.nav-trigger,
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  width: 100%;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-trigger:hover,
.nav-links a:hover,
.nav-item:focus-within .nav-trigger,
.nav-item:hover .nav-trigger {
  color: #fff;
  background: rgba(221, 178, 31, 0.18);
  transform: translateY(-1px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100vw - 32px));
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(221, 178, 31, 0.5);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(13, 17, 72, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav.is-menu-suppressed .nav-item:hover .nav-menu,
.site-nav.is-menu-suppressed .nav-item:focus-within .nav-menu,
.site-nav.is-menu-suppressed .nav-item.is-open .nav-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.nav-menu a {
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.nav-menu a:hover {
  color: var(--navy);
  background: var(--soft);
  transform: translateY(0);
}

.nav-menu strong {
  font-size: 15px;
}

.nav-menu span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-align: justify;
  text-align-last: left;
}

.compact-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 320px;
}

.compact-menu a {
  display: block;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1.15 1 190px;
  min-width: 190px;
}

.nav-actions a {
  flex: 1 1 0;
  white-space: nowrap;
}

.nav-actions .nav-demo {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.nav-actions .nav-demo:hover {
  color: var(--navy);
  background: var(--gold-2);
}

.screenshot-slider {
  position: relative;
  width: 100%;
  height: clamp(430px, 58vw, 820px);
  margin-top: 18px;
  overflow: hidden;
  color: #fff;
  background: #070a2c;
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 28px 70px rgba(13, 17, 72, 0.22);
}

.slider-track,
.slider-slide {
  position: absolute;
  inset: 0;
}

.slider-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03) translateX(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.slider-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1) translateX(0);
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.screenshot-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 10, 44, 0), rgba(7, 10, 44, 0.44));
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 86px;
  place-items: center;
  color: #fff;
  background: rgba(13, 17, 72, 0.82);
  border: 1px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(221, 178, 31, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow span {
  font-size: 54px;
  line-height: 1;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--gold);
  border-color: var(--gold);
  border-radius: 999px;
}

.hero-section {
  padding: 76px 34px 48px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 38px;
  max-width: 1320px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  margin-top: 14px;
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.98;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.image-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action,
.image-button {
  color: #fff;
  background: var(--navy-2);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 28px rgba(13, 17, 72, 0.18);
}

.secondary-action {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.primary-action:hover,
.secondary-action:hover,
.image-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(13, 17, 72, 0.22);
}

.image-button:hover,
.primary-action:hover {
  background: #151b65;
}

.trust-strip {
  margin-top: 24px;
}

.trust-strip span {
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
}

.showcase-frame,
.screen-card,
.tour-card,
.copy-panel,
.feature-card,
.timeline-item,
.final-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  transform: rotate(1.2deg);
}

.showcase-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.4), transparent 56%);
  animation: shine 5.5s ease-in-out infinite;
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.floating-card {
  position: absolute;
  max-width: 245px;
  padding: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(221, 178, 31, 0.5);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 17, 72, 0.24);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.card-one {
  left: -20px;
  bottom: 52px;
}

.card-two {
  right: -4px;
  top: 34px;
  animation-delay: -1.5s;
}

.business-types,
.section,
.final-cta {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px;
}

.business-types {
  padding-top: 22px;
}

.type-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.type-cloud span {
  padding: 14px 16px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(13, 17, 72, 0.08);
}

.section {
  padding-top: 70px;
}

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

.section-title {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.06;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.glow-line {
  position: relative;
  padding-bottom: 18px;
}

.glow-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(460px, 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-2), var(--gold));
  box-shadow: 0 0 18px rgba(221, 178, 31, 0.65);
  animation: glowSweep 3s ease-in-out infinite;
}

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

.feature-card {
  padding: 22px;
  min-height: 230px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(221, 178, 31, 0.8);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: rgba(221, 178, 31, 0.18);
  border: 1px solid rgba(221, 178, 31, 0.42);
  border-radius: 8px;
  font-size: 26px;
}

.feature-card strong,
.tour-body strong,
.timeline-item strong,
.mini-title {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.feature-card p,
.tour-body p,
.timeline-item p,
.copy-panel li,
.screen-card figcaption,
.final-card p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.split-section.alt .split-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.copy-panel {
  padding: 28px;
}

.mini-title {
  margin-bottom: 16px;
  font-size: 26px;
}

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

.styled-list li {
  padding: 13px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 16px;
}

.screen-card {
  overflow: hidden;
  margin: 0;
}

.screen-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
}

.screen-card figcaption {
  padding: 16px 18px 18px;
  font-weight: 700;
}

.screenshots-section {
  max-width: 1460px;
}

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

.tour-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tour-card.wide {
  grid-column: span 3;
}

.tour-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.tour-card.wide img {
  height: 460px;
}

.tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.step-pill {
  width: max-content;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(221, 178, 31, 0.22);
  border: 1px solid rgba(221, 178, 31, 0.5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.image-button {
  width: max-content;
  margin-top: auto;
  cursor: pointer;
  font: inherit;
}

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

.timeline-item {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
}

.timeline-item span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--navy-2);
  border-radius: 8px;
  font-weight: 900;
}

.final-cta {
  padding-bottom: 70px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(135deg, var(--navy), #080b32);
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.15fr 0.9fr;
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 46px 34px 34px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand .brand-mark {
  width: 300px;
  min-height: 68px;
  flex: 0 0 300px;
  background: rgba(5, 7, 32, 0.92);
}

.footer-brand .brand-logo {
  max-height: 56px;
}

.footer-brand strong,
.site-footer h2 {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  padding-left: 14px;
  border-left: 3px solid rgba(221, 178, 31, 0.8);
}

.powered-message {
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 34px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.industry-hero,
.industry-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 54px 34px;
}

.ecommerce-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1.58fr);
  gap: 24px;
  align-items: center;
  max-width: 1620px;
  margin: 0 auto;
  padding: 42px 34px 30px;
}

.ecommerce-copy h1 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.ecommerce-copy p {
  color: var(--muted);
  font-size: 19px;
}

.ecommerce-visual {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ecommerce-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: top center;
}

.ecommerce-showcase {
  display: grid;
  gap: 24px;
}

.ecommerce-showcase .screen-card img {
  height: min(620px, 48vw);
  min-height: 380px;
  object-position: top center;
}

.ecommerce-payment-grid {
  align-items: stretch;
}

.ecommerce-payment-grid .screen-card img {
  height: 430px;
  object-position: top center;
}

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.industry-copy h1 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.industry-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.industry-visual {
  overflow: hidden;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.industry-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

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

.final-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13, 17, 72, 0.96), rgba(32, 38, 128, 0.94)),
    radial-gradient(circle at 92% 0%, rgba(221, 178, 31, 0.45), transparent 24rem);
}

.final-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 34px solid rgba(221, 178, 31, 0.15);
  border-radius: 50%;
}

.final-card .section-kicker,
.final-card p,
.final-title {
  position: relative;
  z-index: 1;
}

.final-card .section-kicker {
  color: var(--gold-2);
}

.final-title {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.06;
}

.final-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(5, 7, 28, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  width: min(1280px, 96vw);
  object-fit: contain;
  background: #fff;
  border: 2px solid rgba(221, 178, 31, 0.8);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 52px;
  height: 52px;
  color: #fff;
  background: var(--navy-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

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

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

@keyframes shine {
  0%, 42% {
    transform: translateX(-120%);
  }
  72%, 100% {
    transform: translateX(120%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowSweep {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(221, 178, 31, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 13px rgba(221, 178, 31, 0.9));
  }
}

@media (max-width: 1180px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-item {
    flex: 1 1 150px;
  }

  .nav-menu {
    left: auto;
    right: 0;
  }

  .hero-grid,
  .industry-hero,
  .ecommerce-hero,
  .split-grid,
  .split-section.alt .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

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

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

  .tour-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: sticky;
    align-items: stretch;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 10px 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav .brand-mark {
    width: 220px;
    min-height: 52px;
    flex: 0 1 220px;
    padding: 5px 8px;
  }

  .site-nav .brand-logo {
    max-height: 42px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 7px;
    justify-content: flex-start;
  }

  .site-nav.is-menu-open .nav-links {
    display: grid;
  }

  .nav-item {
    min-width: 0;
  }

  .nav-home-link {
    min-width: 0;
  }

  .nav-trigger,
  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
    text-align: left;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .nav-actions .nav-demo {
    justify-content: center;
    min-height: 44px;
    font-size: 14px;
  }

  .ecommerce-hero,
  .industry-section {
    padding: 34px 16px;
  }

  .ecommerce-copy h1 {
    font-size: 34px;
  }

  .ecommerce-copy p {
    font-size: 16px;
  }

  .ecommerce-showcase .screen-card img,
  .ecommerce-payment-grid .screen-card img {
    height: 68vw;
    min-height: 260px;
  }

  .ecommerce-visual img {
    height: auto;
    max-height: none;
  }

  .screenshot-slider {
    height: 70vw;
    min-height: 330px;
    max-height: 520px;
    margin-top: 12px;
  }

  .slider-arrow {
    width: 42px;
    height: 66px;
  }

  .slider-arrow span {
    font-size: 42px;
  }

  .slider-dots {
    right: 12px;
    bottom: 10px;
    gap: 6px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.is-active {
    width: 22px;
  }

  .nav-menu,
  .compact-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 6px 0 4px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.is-open .nav-menu {
    display: grid;
  }

  .site-nav.is-menu-suppressed .nav-item.is-open .nav-menu {
    display: none;
  }

  .hero-section,
  .industry-hero,
  .industry-section,
  .business-types,
  .section,
  .final-cta,
  .footer-grid,
  .footer-bottom {
    padding-inline: 16px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.04;
  }

  .hero-text,
  .final-card p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .image-button {
    width: 100%;
  }

  .showcase-frame {
    transform: none;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .feature-grid,
  .industry-feature-grid,
  .footer-grid,
  .timeline,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .tour-card.wide {
    grid-column: auto;
  }

  .screen-card img,
  .industry-visual img,
  .tour-card img,
  .tour-card.wide img {
    height: 220px;
  }

  .copy-panel,
  .final-card {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-nav {
    padding-inline: 10px;
  }

  .site-nav .brand-mark {
    width: 188px;
    min-height: 48px;
    flex-basis: 188px;
  }

  .site-nav .brand-logo {
    max-height: 38px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-trigger,
  .nav-links a {
    min-height: 40px;
    padding: 8px 9px;
  }

  .hero-title,
  .industry-hero h1 {
    font-size: 32px;
  }

  .trust-strip span {
    width: 100%;
  }
}
