:root {
  --bg: #ffffff;
  --bg-soft: #f4f5f5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #231f20;
  --muted: #5f6368;
  --line: rgba(35, 31, 32, 0.1);
  --teal: #06b38c;
  --teal-deep: #00a3ce;
  --teal-soft: #cce8dd;
  --purple: #5a2f92;
  --purple-light: #7352a2;
  --blue-soft: #e8f6fb;
  --shadow: 0 18px 44px rgba(35, 31, 32, 0.08);
  --shadow-soft: 0 10px 28px rgba(35, 31, 32, 0.05);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 163, 206, 0.06), transparent 22%),
    radial-gradient(circle at top right, rgba(204, 232, 221, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 58%, #f4f5f5 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.36;
  z-index: -1;
}

.site-shell::before {
  top: -10rem;
  left: -8rem;
  background: rgba(0, 163, 206, 0.1);
}

.site-shell::after {
  right: -8rem;
  bottom: -8rem;
  background: rgba(204, 232, 221, 0.26);
}

.topbar,
.section,
.hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 31, 32, 0.06);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-stack {
  display: grid;
  gap: 0.12rem;
}

.brand-logo {
  height: 1.65rem;
  width: auto;
  object-fit: contain;
}

.brand-tagline {
  font-size: 0.72rem;
  line-height: 1.1;
  color: var(--muted);
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy {
  display: none;
}

.nav {
  display: inline-flex;
  gap: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.menu-toggle__icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--burger {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: block;
}

.mobile-menu {
  width: min(calc(100% - 1rem), var(--max));
  margin: 0.65rem auto 0;
  padding: 0.85rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
}

.mobile-menu__nav {
  display: grid;
  gap: 0.2rem;
}

.mobile-menu__nav a {
  padding: 0.8rem 0.35rem;
  border-bottom: 1px solid rgba(35, 31, 32, 0.06);
  color: var(--ink);
}

.mobile-menu__nav a:last-child {
  border-bottom: 0;
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 0.8rem;
}

.mobile-menu[hidden] {
  display: none !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(90, 47, 146, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(90, 47, 146, 0.26);
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(22, 48, 60, 0.08);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: center;
  padding: 2.6rem 0 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--teal-deep);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.section-heading h2,
.device-copy h2,
.cta__copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero__lead,
.section-heading,
.problem-card p,
.feature-card p,
.workflow-panel p,
.device-copy p,
.cta__copy p,
.device-note p {
  color: var(--muted);
}

.hero__lead {
  margin: 1.15rem 0 0;
  max-width: 50ch;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.45rem 0 1.35rem;
}

.hero__facts {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero__facts li {
  position: relative;
  padding-left: 1.2rem;
}

.hero__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 1.2rem 0 0 1.2rem;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.5rem 2.5rem -1.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 42%, rgba(0, 163, 206, 0.12), transparent 26%),
    radial-gradient(circle at 70% 46%, rgba(132, 205, 180, 0.12), transparent 24%),
    radial-gradient(circle at 52% 55%, rgba(0, 163, 206, 0.07), transparent 34%);
  filter: blur(42px);
  opacity: 0.82;
  z-index: -1;
  pointer-events: none;
}

.hero-card,
.problem-card,
.feature-card,
.workflow,
.device-frame,
.gallery-card,
.cta,
.lead-form,
.device-note {
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-card--glass {
  position: relative;
  padding: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-card--glass::after {
  content: none;
}

.hero-card__image {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 30px 36px rgba(35, 31, 32, 0.14));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.hero-stats article {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 31, 32, 0.07);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--teal-deep));
}

.hero-stats strong,
.problem-card h3,
.feature-card h3,
.workflow-panel h3 {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: 4.6rem 0;
}

.section--dark {
  width: 100%;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at left top, rgba(0, 163, 206, 0.18), transparent 30%),
    linear-gradient(180deg, #4e2d84 0%, #5a2f92 100%);
  color: #f8fafb;
}

.section--dark .section-heading,
.section--dark .problem-card p {
  color: rgba(248, 250, 251, 0.74);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.device-copy h2,
.cta__copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.section-heading--compact {
  max-width: 42rem;
}

.problem-grid,
.feature-grid,
.gallery {
  display: grid;
  gap: 1rem;
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.impact-intro {
  max-width: 34rem;
}

.impact-intro h2 {
  margin: 0;
  font-size: clamp(2.35rem, 3.7vw, 4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.impact-intro p:last-child {
  margin: 1rem 0 0;
  color: rgba(248, 250, 251, 0.76);
  line-height: 1.68;
  max-width: 34rem;
}

.impact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.impact-pills span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.problem-card {
  min-height: auto;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.problem-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.problem-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex: 0 0 auto;
}

.problem-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.problem-card__header h3 {
  margin: 0;
}

.workflow {
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(35, 31, 32, 0.06);
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.workflow-tab {
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 48, 60, 0.06);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.workflow-tab.is-active {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
}

.workflow-panels {
  position: relative;
  min-height: 16rem;
}

.workflow-panel {
  display: none;
  padding: 1.35rem;
  border-radius: calc(var(--radius-lg) - 10px);
  background: var(--surface-strong);
  border: 1px solid rgba(35, 31, 32, 0.06);
}

.workflow-panel.is-active {
  display: block;
}

.workflow-panel ul {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.section--tint {
  width: 100%;
  margin: 0;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(204, 232, 221, 0.5), rgba(232, 246, 251, 0.5));
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  position: relative;
}

.feature-card::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.device-layout,
.cta {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 1.4rem;
  align-items: center;
}

.cta > * {
  min-width: 0;
}

.mode-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.mode-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(35, 31, 32, 0.06);
}

.mode-item strong {
  min-width: 8rem;
}

.mode-item span {
  color: var(--muted);
  text-align: right;
}

.device-frame {
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.device-frame img,
.gallery-card img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 12px);
  object-fit: cover;
}

.device-note {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(204, 232, 221, 0.72);
}

.device-note p,
.form-note,
.form-success {
  margin: 0;
}

.section--gallery {
  width: 100%;
  margin: 0;
  padding-inline: max(1rem, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(244, 245, 245, 0.96), rgba(232, 246, 251, 0.55));
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(24rem, 0.96fr) minmax(0, 1.04fr);
  gap: 1.2rem;
  align-items: start;
}

.gallery-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 0.45rem 0 0;
}

.gallery-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.85rem, 1.9vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.gallery-summary {
  margin: 0;
  color: var(--muted);
  max-width: 31rem;
  line-height: 1.68;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 47, 146, 0.12);
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.gallery-points {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.2rem;
}

.gallery-point {
  display: grid;
  gap: 0.35rem;
  padding: 0.92rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(35, 31, 32, 0.06);
}

.gallery-point strong {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.gallery-point span {
  color: var(--muted);
  line-height: 1.55;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.gallery-hero,
.gallery-detail {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 48, 60, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.gallery-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gallery-media--hero {
  min-height: 27rem;
  padding: 1.35rem 1.35rem 0.15rem;
}

.gallery-media--hero img {
  max-width: min(100%, 36rem);
  max-height: 28rem;
}

.gallery-media--detail {
  min-height: 12rem;
  padding: 0.95rem 0.95rem 0.25rem;
}

.gallery-media--detail img {
  max-width: min(100%, 16.5rem);
  max-height: 11rem;
}

.gallery-hero figcaption,
.gallery-detail figcaption {
  padding: 0.95rem 1rem 1.05rem;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section--cta {
  padding-bottom: 6.5rem;
}

.cta {
  padding: 1.05rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(135deg, rgba(90, 47, 146, 0.98), rgba(0, 163, 206, 0.88)),
    #5a2f92;
  color: #f8fafb;
}

.cta__copy {
  padding: 2rem;
}

.cta__copy h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.35vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.cta__copy p {
  color: rgba(248, 250, 251, 0.76);
}

.cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta__links a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.24em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lead-form {
  padding: 1.35rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  width: 100%;
  max-width: 100%;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.lead-form span {
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 33, 38, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(90, 47, 146, 0.55);
  box-shadow: 0 0 0 4px rgba(90, 47, 146, 0.12);
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-success {
  min-height: 1.3rem;
  margin-top: 0.7rem;
  color: var(--purple);
  font-weight: 700;
}

.footer {
  width: 100%;
  padding: 1.6rem max(1rem, calc((100% - var(--max)) / 2)) 2rem;
  background:
    linear-gradient(180deg, rgba(244, 245, 245, 0.35), rgba(255, 255, 255, 0.95));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
}

.footer__brand,
.footer__column {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer__logo {
  height: 1.95rem;
  width: auto;
  object-fit: contain;
}

.footer__title,
.footer__label {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.footer__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
}

.footer__text,
.footer__link {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer__link {
  text-decoration: none;
  transition: color 160ms ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--ink);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.95rem;
  color: var(--muted);
  font-size: 0.84rem;
}

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

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

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .hero,
  .device-layout,
  .cta,
  .impact-layout,
  .gallery-layout,
  .problem-grid,
  .feature-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .gallery-copy h2,
  .gallery-summary,
  .gallery-copy {
    max-width: none;
  }

  .gallery-stage,
  .gallery-rail {
    grid-template-columns: 1fr;
  }

  .gallery-media--hero {
    min-height: 22rem;
  }

  .gallery-media--hero img {
    max-height: 23rem;
  }

  .gallery-media--detail {
    min-height: 15rem;
  }

  .gallery-media--detail img {
    max-height: 13rem;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    height: 1.1rem;
    max-width: 5.4rem;
  }

  .brand-tagline {
    display: none;
  }

  .topbar {
    width: min(calc(100% - 1rem), var(--max));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0.8rem;
    border-radius: 1.1rem;
    top: 0.45rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    flex: 0 0 auto;
  }

  .button--ghost {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .topbar .button--ghost {
    width: auto;
    min-height: 2.5rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
    white-space: nowrap;
    box-shadow: none;
  }

  .brand {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    gap: 0.55rem;
    overflow: hidden;
  }

  .brand-stack {
    gap: 0;
    min-width: 0;
  }

  .hero {
    padding-top: 1.5rem;
    gap: 1.15rem;
  }

  .hero__copy {
    padding-inline: 0.2rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.97;
  }

  .section,
  .section--dark {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section--tint,
  .section--gallery {
    padding-inline: 1.2rem;
  }

  .workflow-tabs,
  .cta__links,
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions {
    gap: 0.65rem;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 2.95rem;
  }

  .hero__lead,
  .hero__facts,
  .section-heading,
  .device-copy p,
  .cta__copy p,
  .workflow-panel p,
  .problem-card p,
  .feature-card p {
    font-size: 0.95rem;
  }

  .hero__visual {
    padding: 0.25rem 0 0;
    gap: 0.75rem;
  }

  .hero__visual::before {
    inset: -1rem -0.85rem 2.6rem -0.85rem;
    filter: blur(34px);
  }

  .hero-card__image {
    max-width: 92%;
    margin-inline: auto;
  }

  .hero-stats {
    gap: 0.6rem;
  }

  .hero-stats article {
    padding: 0.85rem 0.9rem 0.9rem;
  }

  .hero-stats strong,
  .problem-card h3,
  .feature-card h3,
  .workflow-panel h3 {
    font-size: 0.98rem;
  }

  .mode-item {
    flex-direction: column;
  }

  .mode-item span {
    text-align: left;
  }

  .cta__copy,
  .lead-form {
    padding: 1.2rem;
  }

  .cta {
    gap: 0.9rem;
  }

  .section-heading h2,
  .device-copy h2,
  .cta__copy h2,
  .impact-intro h2,
  .gallery-copy h2 {
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
    line-height: 1.02;
  }

  .impact-intro {
    max-width: none;
  }

  .workflow-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-layout {
    gap: 0.9rem;
  }

  .gallery-copy {
    gap: 0.75rem;
    padding-top: 0;
  }

  .gallery-media--hero {
    min-height: 18rem;
  }

  .gallery-media--hero img {
    max-height: 18.5rem;
  }

  .gallery-media--detail {
    min-height: 10rem;
  }

  .gallery-media--detail img {
    max-height: 8.7rem;
  }

  .cta__links a {
    width: 100%;
  }

  .lead-form input,
  .lead-form textarea {
    font-size: 16px;
  }

  .footer {
    padding-bottom: 1.4rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }
}

@media (max-width: 430px) {
  .topbar,
  .section,
  .hero {
    width: min(calc(100% - 1.4rem), var(--max));
  }

  .section--tint,
  .section--gallery {
    width: 100%;
    padding-inline: 1.35rem;
  }

  .topbar {
    padding: 0.65rem 0.72rem;
    gap: 0.55rem;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }

  .brand {
    min-width: 0;
    justify-self: start;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.8vw, 2.55rem);
  }

  .hero {
    padding-top: 1.15rem;
    gap: 1rem;
  }

  .hero__copy {
    padding-inline: 0.1rem;
  }

  .hero__lead {
    line-height: 1.5;
  }

  .hero__facts {
    gap: 0.45rem;
  }

  .hero__facts li {
    padding-left: 1rem;
  }

  .hero-stats article,
  .problem-card,
  .feature-card,
  .gallery-point {
    border-radius: 1rem;
  }

  .gallery-tag {
    min-height: 2.15rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.8rem;
  }

  .lead-form,
  .cta__copy,
  .footer__grid {
    padding: 0.95rem;
  }
}
