:root {
  --brand: #6366f1;
  --brand-footer: #6365f2;
  --hero-blue: #23a3e4;
  --pricing-blue: #23a3e4;
  --widget-arc: #7c6df0;
  --yellow: #e9b234;
  --green: #25bc5b;
  --sky: #26a3e5;
  --lavender: #ebeafa;
  --cream: #f8f1df;
  --gray: #f6f6f6;
  --text: #000000;
  --text-muted: #4b5563;
  --white: #ffffff;
  --container: min(1480px, calc(100% - 1.5rem));
  --radius: 8px;
  --radius-lg: 12px;
  --font: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 17px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-weight: 500;
}

svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2.25;
  flex-shrink: 0;
}

/* Bento pagina-layout */

.page {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 28px;
}

.bento-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Beta-banner */

.top-banner {
  background: var(--brand);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9375rem;
}

.top-banner strong {
  font-weight: 500;
}

.top-banner a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Zwevende header */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: var(--container);
  margin: 22px auto 28px;
  overflow: visible;
}

.header-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  overflow: visible;
}

.logo {
  margin-right: 2rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  overflow: visible;
}

.login-link {
  font-size: 1.0625rem;
  font-weight: 500;
}

/* Knoppen */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  padding: 0.6rem 1.15rem;
}

.btn-sm {
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
}

.btn-white {
  background: var(--white);
  color: var(--text);
  padding: 0.7rem 1.35rem;
}

.btn-block {
  width: 100%;
  padding: 0.8rem 1.15rem;
}

/* Mobiele navigatie */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  padding: 0.45rem 0;
  font-weight: 500;
  font-size: 1rem;
}

.site-header.is-open .mobile-nav {
  display: flex;
}

/* Hero */

.hero {
  position: relative;
  background: var(--hero-blue);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("/assets/hero-bg.png") no-repeat center bottom / cover;
  z-index: 0;
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  height: clamp(520px, 60vh, 660px);
  max-height: clamp(520px, 60vh, 660px);
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.75rem, 4vw, 3rem);
  overflow: hidden;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  min-height: 0;
  text-align: left;
  max-width: 34rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero__sub {
  max-width: none;
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero__cta {
  padding: 0.8rem 1.55rem;
  font-size: 1.0625rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero__cta:hover {
  opacity: 1;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.hero__marquee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-self: stretch;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.hero-marquee__col {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.hero-marquee__track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  will-change: transform;
}

.hero-marquee__col--down .hero-marquee__track {
  animation: hero-marquee-down 34s linear infinite;
}

.hero-marquee__col--up .hero-marquee__track {
  animation: hero-marquee-up 38s linear infinite;
  animation-delay: -6s;
}

.hero-marquee__set {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-float-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.hero-float-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
}

.hero-float-card__icon svg {
  width: 18px;
  height: 18px;
}

.hero-float-card__icon--brand {
  background: #ebeafa;
  color: var(--brand);
}

.hero-float-card__icon--brand svg {
  stroke: var(--brand);
}

.hero-float-card__icon--green {
  background: #dcf5e6;
  color: var(--green);
}

.hero-float-card__icon--green svg {
  stroke: var(--green);
}

.hero-float-card__icon--yellow {
  background: var(--cream);
  color: #b45309;
}

.hero-float-card__icon--yellow svg {
  stroke: #d97706;
}

.hero-float-card__icon--sky {
  background: #dff3fc;
  color: var(--sky);
}

.hero-float-card__icon--sky svg {
  stroke: var(--sky);
}

.hero-float-card__icon--lavender {
  background: var(--lavender);
  color: var(--brand);
}

.hero-float-card__icon--lavender svg {
  stroke: var(--brand);
}

.hero-float-card__body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-float-card__body span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #6b7280;
}

@keyframes hero-marquee-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes hero-marquee-up {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee__col--down .hero-marquee__track,
  .hero-marquee__col--up .hero-marquee__track {
    animation: none;
  }
}

/* Features */

.features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.5rem;
  min-height: 100%;
}

.feature-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.feature-card ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 1rem;
}

.feature-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-card li svg {
  width: 13px;
  height: 13px;
  margin-top: 0.35rem;
  stroke-width: 2;
  flex-shrink: 0;
}

.feature-card li + li {
  margin-top: 0.3rem;
}

.feature-card--yellow {
  background: var(--yellow);
}

.feature-card--green {
  background: var(--green);
  color: var(--white);
}

.feature-card--blue {
  background: var(--sky);
  color: var(--white);
}

.feature-more {
  padding: 1.35rem 1.5rem 1.5rem;
  background: var(--cream);
}

.feature-more h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
}

.feature-more__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-more__grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.feature-more__grid svg {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  stroke-width: 2.5;
  color: var(--brand);
  flex-shrink: 0;
}

/* Widget-sectie */

.widget-band.bento-tile {
  position: relative;
  overflow: hidden;
}

.widget-band {
  background: var(--lavender);
  padding: 2.25rem 2.5rem 0;
  text-align: center;
}

.widget-band__arc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: var(--widget-arc);
  border-radius: 100% 100% 0 0;
  z-index: 0;
  pointer-events: none;
}

.widget-band__inner {
  position: relative;
  z-index: 1;
}

.widget-band__inner > h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
}

.widget-band__sub {
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.widget-try {
  display: none;
  position: absolute;
  top: 0.35rem;
  right: calc(100% + 0.15rem);
  flex-direction: row;
  align-items: flex-start;
  gap: 0.15rem;
  color: var(--widget-arc);
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

.widget-try__text {
  margin-top: 0.2rem;
  font-size: 1.35rem;
  font-weight: 500;
  transform: rotate(-4deg);
}

.widget-try__arrow {
  width: 58px;
  height: 42px;
  flex-shrink: 0;
  animation: widget-try-nudge 1.8s ease-in-out infinite;
}

@media (min-width: 961px) {
  .widget-try {
    display: flex;
  }
}

@keyframes widget-try-nudge {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(6px, 4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .widget-try__arrow {
    animation: none;
  }
}

.widget-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 820px;
  padding-bottom: 2.5rem;
}

.widget-stage__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 488px) 1fr;
  gap: 1.5rem 1.25rem;
  align-items: center;
}

.widget-tags {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-self: center;
  padding-block: 1rem;
}

.widget-tags--left {
  align-items: flex-end;
}

.widget-tags--right {
  align-items: flex-start;
}

.widget-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green);
  color: var(--white);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  animation: widget-tag-float-a 4.6s ease-in-out infinite;
  will-change: transform;
}

.widget-tags .widget-tag:nth-child(2) {
  animation-name: widget-tag-float-b;
  animation-duration: 5.3s;
  animation-delay: -1.4s;
}

.widget-tags .widget-tag:nth-child(3) {
  animation-name: widget-tag-float-c;
  animation-duration: 4.9s;
  animation-delay: -2.6s;
}

.widget-tags--right .widget-tag:nth-child(1) {
  animation-delay: -0.8s;
}

.widget-tags--right .widget-tag:nth-child(2) {
  animation-delay: -2.1s;
}

.widget-tags--right .widget-tag:nth-child(3) {
  animation-delay: -3.3s;
}

@keyframes widget-tag-float-a {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes widget-tag-float-b {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(5px, -6px, 0);
  }
}

@keyframes widget-tag-float-c {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-4px, -7px, 0);
  }
}

.widget-tag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.widget-demo-wrap {
  position: relative;
  width: 100%;
  max-width: 488px;
  margin-inline: auto;
  align-self: center;
}

.widget-demo {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  align-self: auto;
}

.widget-fallback {
  align-self: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  transform: none;
}

/* Prijzen */

.pricing {
  background: var(--gray);
  padding: 2.5rem 2.75rem;
}

.pricing__layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(380px, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.pricing__intro h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.pricing__sub {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.45;
}

.pricing__card-wrap {
  display: flex;
  flex-direction: column;
}

.pricing__note {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  text-align: center;
}

.pricing-card {
  background: var(--pricing-blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem 2rem;
}

.pricing-card__head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.pricing-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.pricing-card__price {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1.25rem;
  font-size: 0.9375rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.pricing-card__features svg {
  width: 15px;
  height: 15px;
  margin-top: 0.12rem;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* FAQ */

.faq {
  background: var(--cream);
  padding: 2.5rem 2.75rem;
}

.faq__inner {
  width: 100%;
  max-width: min(880px, 76%);
  margin-inline: auto;
}

.faq h2 {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.faq__sub {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  font-weight: 500;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  background: var(--white);
  padding: 0.85rem 1.15rem 0.9rem;
}

.faq-item__body p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq-item__body p:last-child {
  margin-bottom: 0;
}

.faq-item__body a {
  color: var(--brand);
  font-weight: 500;
}

/* Demo CTA */

.demo-cta {
  position: relative;
  background: var(--lavender);
  padding: 2.5rem 2.75rem;
  overflow: hidden;
}

.demo-cta::before,
.demo-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.12);
  pointer-events: none;
}

.demo-cta::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
}

.demo-cta::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
}

.demo-cta__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.demo-cta__copy {
  padding-right: 0.5rem;
}

.demo-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.demo-cta__sub {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.demo-cta__form-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.demo-form input:not(.form-honeypot) {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 0.75rem 0.95rem;
  background: var(--white);
  font-size: 0.9375rem;
}

.demo-form input:focus {
  outline: 2px solid var(--brand);
  outline-offset: 0;
  border-color: transparent;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-success,
.form-error {
  margin: 0;
  font-size: 0.9375rem;
}

.form-success {
  color: #166534;
}

.form-error {
  color: #b91c1c;
}

.demo-form.is-submitting {
  opacity: 0.7;
  pointer-events: none;
}

/* Footer */

.site-footer {
  background: var(--brand-footer);
  color: var(--white);
  padding: 2.25rem 2rem;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
}

.footer-nav a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--white);
}

.site-credit {
  margin: 0;
  padding: 0 1rem 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text);
}

.site-credit a {
  color: inherit;
  text-decoration: none;
}

.site-credit a:hover {
  text-decoration: underline;
}

.site-credit strong {
  font-weight: 600;
}

.lang-dropdown {
  position: relative;
  z-index: 210;
}

.lang-flag {
  display: block;
  width: 22px;
  height: 16px;
  min-width: 22px;
  max-width: none;
  flex-shrink: 0;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 0;
}

.lang-dropdown__toggle:hover {
  opacity: 0.8;
}

.lang-dropdown.is-open .lang-dropdown__toggle {
  opacity: 1;
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 200;
}

.lang-dropdown__menu li {
  margin: 0;
}

.lang-dropdown__menu[hidden] {
  display: none;
}

.lang-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.lang-dropdown__option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-dropdown__option.is-active {
  opacity: 0.35;
}

/* Responsive */

@media (max-width: 960px) {
  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .nav-primary,
  .header-actions .login-link,
  .header-actions .btn {
    display: none;
  }

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

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

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

  .hero__layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 300px);
    height: auto;
    max-height: none;
    padding: 2rem 1.5rem;
  }

  .hero__copy {
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .hero__marquee {
    height: 300px;
    max-height: 300px;
  }

  .pricing__layout,
  .demo-cta__layout {
    grid-template-columns: 1fr;
  }

  .pricing-card__features {
    grid-template-columns: 1fr;
  }

  .widget-stage {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .widget-band__arc {
    height: 110px;
  }

  .widget-stage__content {
    grid-template-columns: 1fr;
  }

  .widget-tags {
    align-self: center;
    padding-block: 0;
  }

  .widget-tags--left,
  .widget-tags--right {
    align-items: center;
  }

  .widget-tags--right {
    order: 3;
  }

  .widget-demo {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .widget-tag {
    animation: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1480px, calc(100% - 1rem));
  }

  .site-header {
    margin: 16px auto 20px;
  }

  .hero__layout {
    padding: 1.75rem 1.15rem;
  }

  .hero__marquee {
    height: 260px;
    max-height: 260px;
    gap: 0.75rem;
  }

  .widget-band,
  .pricing,
  .faq,
  .demo-cta {
    padding-inline: 1.15rem;
  }
}
