:root {
  color-scheme: light;
  --ink: #25282b;
  --graphite: #35393d;
  --charcoal: #17191b;
  --muted: #687078;
  --soft: #f7f5f2;
  --soft-2: #eceff1;
  --white: #ffffff;
  --orange: #ff5a17;
  --orange-dark: #d7460c;
  --orange-soft: #fff0e8;
  --line: rgba(37, 40, 43, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(24, 28, 32, 0.16);
  --max: 1180px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@property --snake-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--soft);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--soft) 32rem, #ffffff 72rem),
    var(--soft);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(37, 40, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 40, 43, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

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

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

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

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(37, 40, 43, 0.1);
  box-shadow: 0 10px 32px rgba(24, 28, 32, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  flex: 0 0 auto;
}

.brand img {
  width: 172px;
  height: auto;
  border-radius: 6px;
}

.footer-brand img {
  width: 178px;
}

.site-menu {
  display: none;
  position: absolute;
  top: 74px;
  left: 16px;
  right: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

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

.nav-link {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--graphite);
  border: 1px solid transparent;
  border-radius: 6px;
  background:
    linear-gradient(transparent, transparent) padding-box,
    linear-gradient(transparent, transparent) border-box;
  font-size: 1rem;
  font-weight: 880;
  letter-spacing: 0.035em;
  word-spacing: 0.12em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  animation: snake-orbit 1.9s linear infinite;
  background:
    linear-gradient(var(--orange-soft), var(--orange-soft)) padding-box,
    conic-gradient(from var(--snake-angle), transparent 0 68%, rgba(255, 90, 23, 0.95) 73%, #ffffff 77%, rgba(255, 90, 23, 0.95) 82%, transparent 88%) border-box;
  color: var(--orange-dark);
  outline: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  --button-fill: transparent;
  --button-text: inherit;
  position: relative;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--button-text);
  background:
    linear-gradient(var(--button-fill), var(--button-fill)) padding-box,
    linear-gradient(transparent, transparent) border-box;
  font-weight: 800;
  letter-spacing: 0.02em;
  word-spacing: 0.1em;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  animation: snake-orbit 1.8s linear infinite;
  background:
    linear-gradient(var(--button-fill), var(--button-fill)) padding-box,
    conic-gradient(from var(--snake-angle), transparent 0 66%, rgba(255, 90, 23, 0.98) 72%, #ffffff 76%, rgba(255, 90, 23, 0.98) 82%, transparent 88%) border-box;
  outline: none;
}

.button-primary {
  --button-fill: var(--orange);
  --button-text: var(--white);
  box-shadow: 0 14px 30px rgba(255, 90, 23, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  --button-fill: var(--orange-dark);
}

.button-secondary {
  --button-fill: rgba(255, 255, 255, 0.12);
  --button-text: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  --button-fill: rgba(255, 255, 255, 0.2);
}

.final-cta .button-secondary,
.price-panel .button-secondary {
  --button-fill: var(--white);
  --button-text: var(--ink);
  border-color: var(--line);
}

.button-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orange-dark);
  font-weight: 820;
}

.text-link::after,
.button::after,
.product-card-actions strong::after {
  content: ">";
  font-weight: 900;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 126px 0 76px;
}

.hero-home {
  min-height: 96vh;
}

.product-hero {
  min-height: 90vh;
}

.compact-hero,
.legal-hero {
  min-height: auto;
  padding: 144px 0 82px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.32), transparent 34%),
    linear-gradient(180deg, #363a3e 0%, #191b1d 100%);
}

.hero-media,
.hero-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--charcoal);
}

.hero-media img,
.hero-mosaic img,
.flip-card-front img,
.image-strip img,
.product-visual img,
.brand-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.86fr;
  gap: 0;
}

.hero-mosaic img:nth-child(1) {
  object-position: 52% center;
}

.hero-mosaic img:nth-child(2) {
  object-position: 52% center;
}

.hero-mosaic img:nth-child(3) {
  object-position: 45% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 19, 20, 0.86), rgba(18, 19, 20, 0.62) 44%, rgba(18, 19, 20, 0.14)),
    linear-gradient(0deg, rgba(18, 19, 20, 0.86), transparent 54%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24vh;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 90, 23, 0.28) 48%, transparent 100%),
    linear-gradient(180deg, transparent, var(--soft));
  opacity: 0.86;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 880;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  font-weight: 820;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 3.1rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.1rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy,
.page-hero p,
.section-heading p,
.final-cta-inner p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.section-heading p {
  color: var(--muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 4px;
}

.hero-meta span,
.footer-badges span,
.logo-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.section {
  position: relative;
  padding: 88px 0;
}

.intro-band {
  margin-top: -1px;
  background:
    linear-gradient(180deg, var(--soft) 0%, #ffffff 76%);
}

.band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.16), transparent 34%),
    linear-gradient(180deg, #363a3e 0%, #1b1d20 100%);
}

.band .section-heading p,
.band .mini-card p,
.band .pillar-card p,
.band .spec-list dt,
.band td {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.split-grid h2,
.final-cta-inner h2 {
  max-width: 780px;
}

.trust-grid,
.product-grid,
.pillar-grid,
.applications-grid,
.testimonial-grid,
.feature-grid,
.tech-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.trust-badge,
.mini-card,
.testimonial,
.feature-card,
.overview-panel,
.contact-panel,
.lead-form,
.tech-card,
.compare-table,
.price-panel,
.brand-logo-card,
.final-cta-inner,
.pillar-card,
.kinetic-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.band .mini-card,
.band .feature-card,
.band .compare-table,
.band .pillar-card,
.band .spec-list,
.band .tech-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.trust-badge {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.badge-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 880;
  box-shadow: inset -6px -6px 0 rgba(255, 90, 23, 0.38);
}

.trust-badge h2,
.mini-card h2,
.footer-col h2,
.contact-panel h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.trust-badge p,
.mini-card p,
.testimonial blockquote,
.feature-card p,
.overview-panel p,
.contact-panel p,
.tech-card p,
.legal-content p,
.copy-stack p,
.spec-grid p,
.use-list,
.roadmap p,
.pillar-card p,
.kinetic-panel p {
  color: var(--muted);
}

.product-card {
  min-height: 100%;
  border-radius: var(--radius);
  background: transparent;
  perspective: 1500px;
}

.flip-card-link {
  min-height: 100%;
  display: block;
  color: inherit;
  border-radius: var(--radius);
  outline: none;
}

.flip-card-inner {
  position: relative;
  min-height: 500px;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.product-card:hover .flip-card-inner,
.product-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 28, 32, 0.12);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.flip-card-front {
  justify-content: flex-end;
  color: var(--white);
  background: var(--charcoal);
}

.flip-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 32%, rgba(18, 19, 20, 0.86)),
    linear-gradient(135deg, rgba(255, 90, 23, 0.22), transparent 38%);
  z-index: 1;
}

.flip-card-front img {
  position: absolute;
  inset: 0;
  transition: transform 720ms ease;
}

.product-card:hover .flip-card-front img,
.product-card:focus-within .flip-card-front img {
  transform: scale(1.045);
}

.flip-card-front-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
}

.flip-card-front-copy span,
.card-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 90, 23, 0.38);
  border-radius: 6px;
  color: var(--orange);
  background: rgba(24, 28, 32, 0.54);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.flip-card-front-copy h3 {
  margin-bottom: 0;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.flip-card-back {
  padding: 24px;
  transform: rotateY(180deg);
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.1), transparent 42%),
    var(--white);
}

.flip-card-back::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.flip-card-back p {
  color: var(--muted);
}

.motion-trace {
  position: absolute;
  z-index: 2;
  left: -28%;
  right: -28%;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 23, 0.96), transparent);
  transform: translateX(-28%);
  opacity: 0;
}

.product-card:hover .motion-trace,
.product-card:focus-within .motion-trace {
  animation: trace-flow 1200ms ease;
}

.card-details {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
}

.card-details div {
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.card-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.card-details dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 780;
}

.product-card-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-card-actions span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.product-card-actions strong {
  color: var(--orange-dark);
  white-space: nowrap;
}

.table-link {
  color: var(--orange-dark);
  font-weight: 820;
  white-space: nowrap;
}

.product-switcher {
  position: sticky;
  top: 74px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.switcher-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  overflow-x: visible;
  padding: 18px 0;
  scrollbar-width: thin;
}

.switcher-inner a {
  position: relative;
  min-width: 104px;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 8px 14px 13px;
  border: 0;
  border-radius: 0;
  color: var(--graphite);
  background: transparent;
  font-size: 1.05rem;
  font-weight: 880;
  text-align: center;
  letter-spacing: 0.015em;
  line-height: 1.18;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.switcher-inner a::before,
.switcher-inner a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  background: var(--orange);
  transform: translateX(-50%);
  pointer-events: none;
}

.switcher-inner a::before {
  width: 0;
  height: 2px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 90, 23, 0.45);
  transition: width 260ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.switcher-inner a::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0;
}

.switcher-inner a span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.switcher-inner a:hover,
.switcher-inner a:focus-visible,
.switcher-inner a.is-active {
  color: var(--orange-dark);
  transform: translateY(-2px);
  outline: none;
}

.switcher-inner a:hover::before,
.switcher-inner a:focus-visible::before,
.switcher-inner a.is-active::before {
  width: min(94px, 92%);
}

.switcher-inner a:hover::after,
.switcher-inner a:focus-visible::after,
.switcher-inner a.is-active::after {
  opacity: 1;
  animation: quick-chicken-dot 860ms cubic-bezier(0.2, 0.72, 0.2, 1) infinite alternate;
}

.switcher-inner a:hover span,
.switcher-inner a:focus-visible span,
.switcher-inner a.is-active span {
  color: var(--orange-dark);
}

.split-grid,
.spec-grid,
.contact-grid,
.faq-layout,
.detail-grid {
  display: grid;
  gap: 28px;
}

.copy-stack > *:last-child {
  margin-bottom: 0;
}

.overview-panel,
.kinetic-panel,
.contact-panel,
.lead-form,
.compare-table,
.price-panel,
.final-cta-inner,
.mini-card,
.feature-card,
.tech-card,
.pillar-card {
  padding: 22px;
}

.overview-panel strong {
  color: var(--ink);
}

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

.feature-card,
.tech-card,
.pillar-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.tech-card::after,
.pillar-card::after,
.kinetic-panel::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.feature-card span,
.tech-card span,
.pillar-card span {
  color: var(--orange-dark);
  font-weight: 880;
}

.band .feature-card span,
.band .pillar-card span {
  color: var(--orange);
}

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

.product-detail {
  background:
    linear-gradient(180deg, #ffffff, var(--soft) 78%, #ffffff);
}

.product-visual,
.brand-logo-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-visual {
  min-height: 520px;
  max-height: none;
  aspect-ratio: 0.86;
  display: grid;
  place-items: center;
}

.product-visual img {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.brand-logo-card {
  max-width: 860px;
  margin-inline: auto;
  padding: 18px;
}

.brand-logo-card img {
  object-fit: contain;
  background: var(--white);
}

.brand-logo-section {
  overflow: hidden;
  background: #ffffff;
}

.brand-reveal-card {
  position: relative;
  isolation: isolate;
  width: min(920px, 100%);
  min-height: 470px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  margin-inline: auto;
  padding: 42px 22px 34px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  overflow: hidden;
  outline: none;
}

.brand-reveal-card::before,
.brand-reveal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.brand-reveal-card::before {
  border: 1px solid rgba(255, 90, 23, 0.24);
  box-shadow:
    0 22px 70px rgba(24, 28, 32, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.brand-reveal-card::after {
  inset: auto 14% 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 23, 0.95), rgba(159, 166, 173, 0.8), transparent);
  transform: scaleX(0.32);
}

.brand-reveal-card:hover::before,
.brand-reveal-card:focus-visible::before,
.brand-reveal-card:hover::after,
.brand-reveal-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand-reveal-stage {
  position: relative;
  z-index: 1;
  width: min(310px, 100%);
  min-height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition:
    width 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    gap 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.brand-reveal-mark,
.brand-reveal-wordmark {
  flex: 0 0 auto;
  object-fit: contain;
  background: #ffffff;
  transition:
    width 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    max-width 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.brand-reveal-mark {
  width: min(255px, 68vw);
  height: auto;
}

.brand-reveal-wordmark {
  width: 0;
  max-width: 0;
  height: auto;
  opacity: 0;
  transform: translateX(-22px) scale(0.96);
}

.brand-reveal-card:hover .brand-reveal-stage,
.brand-reveal-card:focus-visible .brand-reveal-stage {
  width: min(760px, 100%);
  gap: 26px;
  transform: translateY(-12px);
}

.brand-reveal-card:hover .brand-reveal-mark,
.brand-reveal-card:focus-visible .brand-reveal-mark {
  width: min(176px, 28vw);
  transform: translateX(0) scale(0.94);
}

.brand-reveal-card:hover .brand-reveal-wordmark,
.brand-reveal-card:focus-visible .brand-reveal-wordmark {
  width: min(500px, 56vw);
  max-width: min(500px, 56vw);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.brand-reveal-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--graphite);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 320ms ease 80ms,
    transform 420ms cubic-bezier(0.2, 0.72, 0.2, 1) 80ms;
}

.brand-reveal-card:hover .brand-reveal-copy,
.brand-reveal-card:focus-visible .brand-reveal-copy {
  opacity: 1;
  transform: translateY(0);
}

.brand-reveal-url {
  color: var(--orange-dark);
  font-size: 1.25rem;
  font-weight: 880;
}

.brand-reveal-tagline {
  color: var(--graphite);
  font-size: 1.05rem;
  font-weight: 760;
}

.image-strip {
  display: grid;
  gap: 16px;
}

.image-strip figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: 0 18px 50px rgba(24, 28, 32, 0.1);
}

.image-strip img {
  transition: transform 700ms ease;
}

.image-strip figure:hover img {
  transform: scale(1.025);
}

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

.kinetic-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.1), transparent 44%),
    var(--white);
}

.kinetic-line {
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 2px;
  overflow: hidden;
  background: rgba(37, 40, 43, 0.08);
}

.kinetic-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: kinetic-scan 2800ms ease-in-out infinite;
}

.price-panel {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.08), transparent 40%),
    var(--white);
}

.pricing-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.pricing-panel {
  display: grid;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.09), transparent 42%),
    var(--white);
  box-shadow: 0 18px 48px rgba(24, 28, 32, 0.1);
}

.pricing-panel p {
  color: var(--muted);
}

.pricing-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 90, 23, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 232, 0.76));
}

.pricing-card span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.pricing-card strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.contact-pricing-card strong {
  font-size: 1.55rem;
}

.table-wrap {
  overflow-x: auto;
}

th,
td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--graphite);
  font-size: 0.9rem;
}

td {
  color: var(--muted);
}

td a {
  color: var(--ink);
  font-weight: 820;
}

.band th {
  color: rgba(255, 255, 255, 0.9);
}

.band td a {
  color: var(--white);
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.spec-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.band .spec-list {
  border-color: var(--line-dark);
}

.band .spec-list dd {
  color: var(--white);
}

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

.use-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.use-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 23, 0.12);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact-grid {
  align-items: start;
}

.contact-panel dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-panel dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--graphite);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(37, 40, 43, 0.16);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(255, 90, 23, 0.48);
  outline-offset: 2px;
}

.lead-form button {
  margin-top: 18px;
}

.form-status {
  margin: 14px 0 0;
  color: var(--orange-dark);
  min-height: 24px;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.honey {
  display: none;
}

.legal-content {
  max-width: 820px;
}

.legal-content section + section {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.final-cta {
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, transparent, #ffffff 46%),
    var(--soft);
}

.final-cta-inner {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 23, 0.9), rgba(255, 90, 23, 0.32) 38%, transparent 64%),
    linear-gradient(180deg, #34383d, #181a1c);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  border-top: 1px solid rgba(37, 40, 43, 0.08);
  background: #f0f2f3;
}

.footer-grid {
  display: grid;
  gap: 30px;
  padding: 54px 0 34px;
}

.footer-lead p {
  max-width: 440px;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badges span {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--line);
}

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

.footer-col a {
  color: var(--muted);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--orange-dark);
  outline: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(37, 40, 43, 0.1);
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(7px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 640ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes trace-flow {
  0% {
    opacity: 0;
    transform: translateX(-28%);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes kinetic-scan {
  0% {
    transform: translateX(-80%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-80%);
  }
}

@keyframes snake-orbit {
  to {
    --snake-angle: 360deg;
  }
}

@keyframes quick-chicken-dot {
  0% {
    transform: translateX(-54px) scale(0.82);
  }
  100% {
    transform: translateX(47px) scale(1);
  }
}

@media (min-width: 620px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .flip-card-inner {
    min-height: 520px;
  }

  .product-grid,
  .pillar-grid,
  .applications-grid,
  .testimonial-grid,
  .feature-grid,
  .trust-grid,
  .values-grid,
  .tech-grid,
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-flip .product-card:nth-child(5) {
    width: calc((100% - 18px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .price-panel {
    padding: 32px;
  }

  .pricing-panel {
    padding: 32px;
  }

  .spec-list div {
    grid-template-columns: 0.9fr 1.2fr;
  }

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

  .span-2 {
    grid-column: span 2;
  }

  .brand img {
    width: 186px;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-link {
    min-height: 40px;
    padding: 8px 8px;
    font-size: 0.96rem;
  }

  .hero,
  .page-hero {
    padding-top: 148px;
  }

  .section {
    padding: 104px 0;
  }

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

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

  .product-grid-flip .product-card {
    width: 100%;
    grid-column: span 2;
  }

  .product-grid-flip .product-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .product-grid-flip .product-card:nth-child(5) {
    grid-column: 4 / span 2;
    justify-self: stretch;
  }

  .pricing-panel {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .split-grid,
  .spec-grid,
  .contact-grid,
  .faq-layout,
  .detail-grid {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .detail-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

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

  .footer-grid {
    grid-template-columns: 1.45fr 0.7fr 0.72fr 0.82fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  h1 {
    font-size: 5.25rem;
  }

  .hero-content {
    margin-bottom: 5vh;
  }

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

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

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-grid-flip .product-card:nth-child(5) {
    width: 100%;
  }

  .image-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 859px) {
  .site-header:not(.is-scrolled):not(.is-open) {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
  }

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

  .hero-mosaic img:nth-child(2),
  .hero-mosaic img:nth-child(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .brand img {
    width: 146px;
  }

  .hero,
  .hero-home,
  .product-hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 19, 20, 0.9), rgba(18, 19, 20, 0.54)),
      linear-gradient(0deg, rgba(18, 19, 20, 0.88), transparent 48%);
  }

  .button {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .flip-card-inner {
    min-height: 540px;
  }

  .product-card-actions {
    align-items: start;
    flex-direction: column;
  }

  .brand-logo-card {
    padding: 10px;
  }

  .product-visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .product-visual-lift-pro {
    aspect-ratio: 0.8;
  }

  .brand-reveal-card {
    min-height: 410px;
    padding: 34px 14px 30px;
  }

  .brand-reveal-stage {
    min-height: 230px;
  }

  .brand-reveal-card:hover .brand-reveal-stage,
  .brand-reveal-card:focus-visible .brand-reveal-stage {
    gap: 12px;
  }

  .brand-reveal-card:hover .brand-reveal-mark,
  .brand-reveal-card:focus-visible .brand-reveal-mark {
    width: min(112px, 26vw);
  }

  .brand-reveal-card:hover .brand-reveal-wordmark,
  .brand-reveal-card:focus-visible .brand-reveal-wordmark {
    width: min(250px, 58vw);
    max-width: min(250px, 58vw);
  }

  .brand-reveal-url {
    font-size: 1.08rem;
  }

  .brand-reveal-tagline {
    font-size: 0.96rem;
  }

  .hero-meta span {
    width: 100%;
  }

  .product-switcher {
    top: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .product-card:hover .flip-card-inner,
  .product-card:focus-within .flip-card-inner {
    transform: none;
  }
}
