:root {
  --bg: #f5ede2;
  --bg-deep: #eadbc9;
  --surface: rgba(255, 250, 244, 0.8);
  --surface-strong: rgba(255, 251, 246, 0.95);
  --surface-dark: #5f4332;
  --text: #33231b;
  --text-soft: #6c5546;
  --text-muted: #8f7869;
  --line: rgba(103, 74, 55, 0.14);
  --line-strong: rgba(103, 74, 55, 0.22);
  --accent: #6a4a37;
  --accent-soft: #d8c0a6;
  --bar: #8a5d3b;
  --kitchen: #66764f;
  --owner: #4d5f73;
  --shadow-soft: 0 18px 40px rgba(69, 46, 32, 0.08);
  --shadow: 0 28px 60px rgba(72, 48, 34, 0.12);
  --shadow-strong: 0 42px 80px rgba(62, 40, 28, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1240px;
  --pointer-x: 50%;
  --pointer-y: 18%;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at top left, rgba(216, 192, 166, 0.45), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(123, 150, 102, 0.14), transparent 28%),
    radial-gradient(circle at 75% 75%, rgba(94, 69, 50, 0.08), transparent 18%),
    linear-gradient(180deg, #fbf5ed 0%, #f5ede2 42%, #efe4d8 100%);
  color: var(--text);
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 92%);
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 4px;
  background: rgba(255, 252, 248, 0.4);
  backdrop-filter: blur(12px);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #8f684e 0%, #d7bea1 45%, #5f4332 100%);
  box-shadow: 0 0 24px rgba(106, 74, 55, 0.35);
  transition: width 120ms linear;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 96px;
}

.hero,
.section,
.final-card {
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  padding: 28px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(157, 122, 92, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 240, 0.82), rgba(242, 231, 218, 0.92));
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero::before {
  top: -96px;
  right: -48px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(216, 192, 166, 0.58), transparent 68%);
}

.hero::after {
  left: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(102, 118, 79, 0.18), transparent 72%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(106, 74, 55, 0.14);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-soft);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-icon-svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon-svg circle {
  fill: var(--accent-soft);
  stroke: none;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #3e2c22;
  letter-spacing: -0.03em;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 14px;
}

.topbar-links a {
  position: relative;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.topbar-links a:hover::after {
  transform: scaleX(1);
}

.topbar-links a.topbar-link-active {
  color: var(--accent);
  font-weight: 700;
}

.topbar-links a.topbar-link-active::after {
  transform: scaleX(1);
}

.topbar-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff8f0;
  border: 1px solid rgba(106, 74, 55, 0.12);
  color: var(--accent);
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.topbar-pill::after {
  display: none;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid rgba(106, 74, 55, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-brandseal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(244, 233, 219, 0.96));
  border: 1px solid rgba(106, 74, 55, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 32px rgba(74, 51, 38, 0.12);
}

.hero-brandseal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-brandtext {
  display: grid;
  gap: 4px;
}

.hero-brandtext strong {
  color: #39271d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-brandtext span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: end;
  margin-top: 44px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-label,
.feature-tag,
.pricing-badge,
.showcase-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(106, 74, 55, 0.08);
  border: 1px solid rgba(106, 74, 55, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-card h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 4.9vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #2f211a;
}

.hero-title {
  overflow: hidden;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(120%) skewY(5deg);
  animation: titleReveal 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 120ms;
}

.hero-title-line:nth-child(2) {
  animation-delay: 240ms;
}

.hero-title-line:nth-child(3) {
  animation-delay: 360ms;
}

.hero-title-line:nth-child(4) {
  animation-delay: 480ms;
}

.section h2,
.final-card h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.9rem);
  line-height: 0.98;
}

.hero-text,
.section-heading p,
.final-card p,
.feature-card p,
.benefit-card p,
.pricing-card p,
.faq-list p,
.showcase-card p,
.workflow-card p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 15px;
}

.hero-text {
  max-width: 640px;
  margin-top: 20px;
  font-size: 16px;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #6a4a37, #8a5d3b);
  color: #fff8f0;
  box-shadow: 0 18px 30px rgba(106, 74, 55, 0.2);
}

.button-secondary {
  background: rgba(255, 250, 244, 0.88);
  border: 1px solid rgba(106, 74, 55, 0.14);
  color: var(--accent);
}

.button-secondary:hover {
  border-color: rgba(106, 74, 55, 0.24);
}

.trust-row,
.showcase-stats,
.benefit-grid,
.feature-grid,
.pricing-grid,
.academy-grid,
.metrics-grid,
.workflow-stack {
  display: grid;
  gap: 16px;
}

.trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.trust-item,
.showcase-card,
.benefit-card,
.feature-card,
.pricing-card,
.academy-card,
.final-card,
.faq-list details,
.metric-card,
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.trust-item,
.showcase-card,
.benefit-card,
.feature-card,
.pricing-card,
.metric-card,
.workflow-card,
.faq-list details {
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.trust-item:hover,
.showcase-card:hover,
.benefit-card:hover,
.feature-card:hover,
.pricing-card:hover,
.metric-card:hover,
.workflow-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 18px;
}

.trust-item strong,
.benefit-card strong,
.pricing-card h3,
.feature-card h3,
.academy-copy h3,
.workflow-card h3,
.faq-list summary,
.device-score strong,
.floating-panel strong {
  display: block;
  color: #39271d;
}

.trust-item strong {
  font-size: 15px;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 13px;
}

.hero-showcase {
  display: block;
  perspective: 1200px;
}

.showcase-card {
  position: relative;
  padding: 22px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  isolation: isolate;
}

.hero-logo-aura {
  position: absolute;
  top: 6px;
  left: -18px;
  z-index: 0;
  width: 154px;
  height: 154px;
  padding: 16px;
  border-radius: 38px;
  background: radial-gradient(circle at center, rgba(255, 252, 247, 0.92), rgba(243, 231, 217, 0.72));
  border: 1px solid rgba(106, 74, 55, 0.08);
  box-shadow:
    0 34px 52px rgba(74, 51, 38, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0.78;
  transform: rotate(-7deg);
  filter: saturate(1.04);
}

.hero-logo-aura::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 48px;
  background: radial-gradient(circle, rgba(216, 192, 166, 0.32), transparent 68%);
  z-index: -1;
  animation: glowDrift 6.5s ease-in-out infinite alternate;
}

.hero-logo-aura img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stage-lines {
  position: absolute;
  inset: 78px 24px 130px;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(106, 74, 55, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 74, 55, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 96%);
  opacity: 0.7;
  animation: gridDrift 12s linear infinite;
}

.hero-stage-glow {
  position: absolute;
  top: 32px;
  right: 58px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(206, 176, 146, 0.5), transparent 68%);
  filter: blur(14px);
  opacity: 0.9;
  animation: glowDrift 7s ease-in-out infinite alternate;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  opacity: 0.55;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8f0, #d8c0a6);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.45);
}

.hero-orbit-one {
  top: 54px;
  right: 52px;
  width: 180px;
  height: 180px;
  animation: orbitSpin 14s linear infinite;
}

.hero-orbit-one::before {
  top: 10px;
  left: calc(50% - 7px);
}

.hero-orbit-two {
  bottom: 120px;
  left: 28px;
  width: 132px;
  height: 132px;
  animation: orbitSpinReverse 12s linear infinite;
}

.hero-orbit-two::before {
  bottom: 10px;
  left: calc(50% - 7px);
}

.hero-stage-beam {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-stage-beam-one {
  top: 124px;
  left: 48px;
  width: 180px;
  height: 14px;
  background: linear-gradient(90deg, rgba(255, 249, 242, 0), rgba(255, 249, 242, 0.9), rgba(255, 249, 242, 0));
  animation: beamSweep 9s ease-in-out infinite;
}

.hero-stage-beam-two {
  right: 42px;
  bottom: 180px;
  width: 220px;
  height: 18px;
  background: linear-gradient(90deg, rgba(216, 192, 166, 0), rgba(216, 192, 166, 0.9), rgba(216, 192, 166, 0));
  animation: beamSweepReverse 11s ease-in-out infinite;
}

.device-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: 560px;
  margin: 52px auto 0;
  padding: 16px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 238, 228, 0.8)),
    linear-gradient(180deg, rgba(88, 63, 48, 0.2), rgba(88, 63, 48, 0.04));
  transform:
    perspective(1400px)
    rotateX(var(--hero-rotate-x))
    rotateY(var(--hero-rotate-y))
    translate3d(0, 0, 0);
  box-shadow:
    0 32px 60px rgba(59, 38, 26, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.device-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(106, 74, 55, 0.12));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.device-shell::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: -30%;
  width: 34%;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  filter: blur(2px);
  opacity: 0.7;
  animation: deviceSweep 8.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  pointer-events: none;
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 8px;
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(95, 67, 50, 0.24);
}

.device-status {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}

.device-screen {
  overflow: hidden;
  min-height: 490px;
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(205, 180, 150, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(241, 232, 220, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(90, 62, 46, 0.06);
}

.device-screen-header {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 20px;
  align-items: start;
}

.device-score {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(106, 74, 55, 0.08);
}

.device-score span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.device-hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(106, 74, 55, 0.92), rgba(138, 93, 59, 0.9));
  color: #fff7ef;
  box-shadow: 0 24px 40px rgba(106, 74, 55, 0.18);
}

.device-kicker {
  display: block;
  margin-bottom: 8px;
  opacity: 0.74;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-hero-metric strong {
  display: block;
  max-width: 280px;
  line-height: 1.5;
  font-size: 1rem;
}

.device-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.16);
  border: 1px solid rgba(255, 247, 239, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 247, 239, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pulseBadge 2.2s ease-in-out infinite;
}

.device-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.device-module {
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(106, 74, 55, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.device-module-bar {
  box-shadow: inset 0 3px 0 rgba(138, 93, 59, 0.56);
}

.device-module-kitchen {
  box-shadow: inset 0 3px 0 rgba(101, 118, 79, 0.56);
}

.device-module-owner {
  box-shadow: inset 0 3px 0 rgba(77, 95, 115, 0.56);
}

.showcase-card h2 {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.98;
}

.showcase-stats {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.showcase-stats div,
.signal-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(106, 74, 55, 0.12);
}

.showcase-stats strong {
  display: block;
  margin-bottom: 4px;
}

.showcase-stats span,
.signal-list {
  color: var(--text-soft);
  line-height: 1.7;
}

.signal-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 560px);
  margin: 22px auto 0;
  padding: 16px;
  background: rgba(255, 250, 244, 0.62);
}

.hero-ribbon-card {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  padding: 18px 18px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(106, 74, 55, 0.08);
}

.hero-ribbon-card span {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ribbon-card strong {
  display: block;
  margin-top: 14px;
  color: #39271d;
  line-height: 1.55;
  font-size: 0.96rem;
}

.hero-ribbon-card i {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(106, 74, 55, 0.08);
}

.hero-ribbon-card i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6a4a37, #d8c0a6);
  transform-origin: left;
  animation: ribbonLoad 3.8s ease-in-out infinite;
}

.hero-ribbon-card:nth-child(2) i::before {
  width: 62%;
  animation-delay: 0.4s;
}

.hero-ribbon-card:nth-child(3) i::before {
  width: 54%;
  animation-delay: 0.8s;
}

.signal-marquee {
  position: relative;
  overflow: hidden;
  margin: 20px 0 0;
  border: 1px solid rgba(103, 74, 55, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.72);
  box-shadow: var(--shadow-soft);
}

.signal-marquee::before,
.signal-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 2;
  pointer-events: none;
}

.signal-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(251, 245, 237, 0.95), transparent);
}

.signal-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(251, 245, 237, 0.95), transparent);
}

.section-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.signal-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 16px 0;
  animation: marqueeFlow 28s linear infinite;
}

.signal-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8c0a6, #8f684e);
  box-shadow: 0 0 18px rgba(143, 104, 78, 0.25);
}

.section {
  margin-top: 24px;
  padding: 34px;
  border-radius: 32px;
}

.section-contrast {
  background: rgba(255, 248, 241, 0.74);
  border: 1px solid var(--line);
}

.metrics-section {
  background: transparent;
  border: 0;
  padding-top: 10px;
  padding-bottom: 8px;
}

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

.metric-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.82), rgba(248, 240, 231, 0.88));
}

.metric-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #2f211a;
}

.metric-label {
  display: block;
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.section-heading {
  max-width: 900px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: end;
}

.feature-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-card,
.pricing-card,
.benefit-card {
  padding: 22px;
}

.feature-card ul,
.pricing-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.9;
}

.feature-card h3 {
  margin: 18px 0 0;
  font-size: 1.26rem;
  line-height: 1.34;
}

.feature-bar {
  border-top: 6px solid rgba(138, 93, 59, 0.58);
}

.feature-kitchen {
  border-top: 6px solid rgba(101, 118, 79, 0.58);
}

.feature-owner {
  border-top: 6px solid rgba(77, 95, 115, 0.55);
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.benefit-card {
  min-height: 180px;
}

.benefit-card strong {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.workflow-stack {
  position: relative;
  margin-top: 28px;
  padding-left: 26px;
}

.workflow-stack::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(106, 74, 55, 0.18), rgba(106, 74, 55, 0.04));
}

.workflow-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.9), rgba(247, 239, 229, 0.9));
}

.workflow-card::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6eadc, #8f684e);
  border: 3px solid rgba(255, 249, 242, 0.9);
  box-shadow: 0 0 0 8px rgba(106, 74, 55, 0.06);
}

.workflow-card.is-visible-card {
  border-color: rgba(106, 74, 55, 0.22);
  box-shadow: 0 28px 52px rgba(72, 48, 34, 0.14);
}

.workflow-card.is-visible-card::before {
  box-shadow: 0 0 0 10px rgba(106, 74, 55, 0.1);
}

.workflow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(106, 74, 55, 0.14), rgba(106, 74, 55, 0.06));
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.workflow-card h3 {
  margin: 4px 0 10px;
  font-size: 1.22rem;
}

.academy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.academy-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.86), rgba(248, 240, 230, 0.9));
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.academy-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.academy-media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #6a4a37, #3f2c21);
}

.academy-card[data-theme="bar"] .academy-media {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #8a5d3b, #3f2b20);
}

.academy-card[data-theme="kitchen"] .academy-media {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #66764f, #2f3a28);
}

.academy-card[data-theme="owner"] .academy-media {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #4d5f73, #283240);
}

.academy-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.academy-media iframe,
.academy-media video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.academy-placeholder {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 20px;
  color: rgba(255, 247, 239, 0.95);
}

.academy-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.academy-play::before {
  content: "";
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(255, 247, 239, 0.96);
}

.academy-placeholder strong {
  font-size: 1.1rem;
}

.academy-copy {
  padding: 22px;
}

.academy-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.academy-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(106, 74, 55, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.academy-copy h3 {
  font-size: 1.3rem;
  margin: 0;
}

.academy-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.academy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 600;
}

.academy-link::after {
  content: "→";
}

.pricing-card-highlight {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(241, 229, 214, 0.98));
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 8px;
}

.pricing-price strong {
  color: #39271d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.pricing-price span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.1rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 12px 0 0;
}

.section-final {
  padding: 0;
  background: transparent;
}

.final-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(106, 74, 55, 0.94), rgba(74, 51, 38, 0.96));
  color: #fff7ef;
  box-shadow: var(--shadow-strong);
}

.final-card h2,
.final-card p,
.final-card .section-label {
  color: inherit;
}

.final-card .section-label {
  background: rgba(255, 247, 239, 0.12);
  border-color: rgba(255, 247, 239, 0.18);
}

.final-actions {
  justify-content: flex-end;
  align-self: end;
}

.final-card .button-primary {
  background: linear-gradient(135deg, rgba(255, 249, 242, 0.96), rgba(244, 231, 217, 0.94));
  color: var(--accent);
}

.final-card .button-secondary {
  border-color: rgba(255, 247, 239, 0.18);
  background: rgba(255, 247, 239, 0.08);
  color: #fff7ef;
}

.section-contact {
  padding: 0;
  background: transparent;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(106, 74, 55, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(106, 74, 55, 0.96), rgba(74, 51, 38, 0.98));
  color: #fff7ef;
  box-shadow: var(--shadow-strong);
}

.contact-copy h2,
.contact-copy p,
.contact-copy .section-label,
.contact-copy .mini-badge,
.contact-card-top p {
  color: inherit;
}

.contact-copy .section-label,
.contact-note .mini-badge {
  background: rgba(255, 247, 239, 0.12);
  border-color: rgba(255, 247, 239, 0.18);
}

.contact-benefits {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-benefit-card,
.contact-note {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 247, 239, 0.08);
  border: 1px solid rgba(255, 247, 239, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 247, 239, 0.08);
}

.contact-benefit-card span {
  display: inline-block;
  color: rgba(255, 247, 239, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-benefit-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.contact-benefit-card p,
.contact-note ul {
  margin: 10px 0 0;
  color: rgba(255, 247, 239, 0.82);
  line-height: 1.75;
  font-size: 14px;
}

.contact-note {
  margin-top: 18px;
}

.contact-note ul {
  padding-left: 18px;
}

.contact-form-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(245, 236, 226, 0.98));
  border: 1px solid rgba(106, 74, 55, 0.1);
  box-shadow:
    0 24px 44px rgba(47, 33, 26, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.plan-table-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.plan-table {
  display: grid;
  gap: 10px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.plan-row-head .plan-cell {
  background: linear-gradient(135deg, rgba(106, 74, 55, 0.94), rgba(138, 93, 59, 0.92));
  color: #fff7ef;
  border-color: rgba(255, 247, 239, 0.06);
}

.plan-cell {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(106, 74, 55, 0.1);
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.plan-cell-feature {
  color: #39271d;
  font-weight: 700;
}

.contact-card-top {
  display: grid;
  gap: 12px;
}

.contact-card-top p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.demo-form {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: #433025;
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(106, 74, 55, 0.14);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.form-field textarea {
  resize: vertical;
  min-height: 132px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(106, 74, 55, 0.34);
  box-shadow:
    0 0 0 4px rgba(216, 192, 166, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.form-footnote {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.demo-form-status {
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.demo-form-status.is-success {
  color: #446137;
}

.demo-form-status.is-error {
  color: #8b4339;
}

.bot-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-demo-bar {
  position: fixed;
  inset: auto 12px 14px;
  z-index: 40;
  display: none;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.76);
  border: 1px solid rgba(106, 74, 55, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(63, 44, 32, 0.18);
}

.mobile-demo-bar .button {
  min-height: 50px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 320ms ease,
    visibility 320ms ease;
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
}

.page-transition-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 248, 240, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(38, 25, 17, 0.9), rgba(73, 50, 36, 0.94));
  backdrop-filter: blur(16px);
}

.page-transition-ring,
.page-transition-ring::before,
.page-transition-ring::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 239, 0.18);
}

.page-transition-ring {
  width: min(56vw, 540px);
  height: min(56vw, 540px);
  animation: transitionSpin 14s linear infinite;
}

.page-transition-ring::before {
  inset: 34px;
  animation: transitionSpinReverse 10s linear infinite;
}

.page-transition-ring::after {
  inset: 88px;
  animation: transitionPulse 2.8s ease-in-out infinite;
}

.page-transition-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.page-transition-logo {
  position: relative;
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  padding: 16px;
  border-radius: 34%;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(245, 235, 221, 0.94));
  border: 1px solid rgba(255, 247, 239, 0.18);
  box-shadow:
    0 42px 86px rgba(20, 12, 8, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: scale(0.78) rotate(-8deg);
}

.page-transition-logo::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 34%;
  background: radial-gradient(circle, rgba(216, 192, 166, 0.28), transparent 68%);
  filter: blur(10px);
}

.page-transition-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-transition-copy {
  text-align: center;
  color: rgba(255, 247, 239, 0.92);
}

.page-transition-copy strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.page-transition-copy span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.page-transition.is-leaving .page-transition-logo {
  animation: transitionLogoIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-transition.is-entering .page-transition-logo {
  animation: transitionLogoOut 840ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.page-transition.is-entering .page-transition-copy {
  animation: transitionCopyOut 700ms ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-tilt] {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  transform-style: preserve-3d;
}

[data-tilt].is-tilting {
  box-shadow: var(--shadow-strong);
}

.button.is-magnetic {
  box-shadow: 0 24px 42px rgba(106, 74, 55, 0.22);
}

@keyframes glowDrift {
  from {
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  to {
    transform: translate3d(12px, -10px, 0) scale(1.08);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 1px 0 rgba(255, 247, 239, 0.12), 0 0 0 0 rgba(255, 247, 239, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 247, 239, 0.12), 0 0 0 14px rgba(255, 247, 239, 0);
  }
}

@keyframes floatPanelOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes floatPanelTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes floatPanelThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes marqueeFlow {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 56px, 56px 0;
  }
}

@keyframes beamSweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(120px, 0, 0);
    opacity: 0.6;
  }
}

@keyframes beamSweepReverse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.24;
  }
  50% {
    transform: translate3d(-140px, 0, 0);
    opacity: 0.56;
  }
}

@keyframes deviceSweep {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  14% {
    opacity: 0.65;
  }
  38% {
    transform: translateX(360%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    transform: translateX(360%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ribbonLoad {
  0%,
  100% {
    transform: scaleX(0.85);
    opacity: 0.82;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes transitionSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes transitionSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes transitionPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

@keyframes transitionLogoIn {
  0% {
    transform: scale(0.72) rotate(-12deg);
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2) rotate(0deg);
    opacity: 1;
  }
}

@keyframes transitionLogoOut {
  0% {
    transform: scale(1.16) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.64) rotate(8deg);
    opacity: 0;
  }
}

@keyframes transitionCopyOut {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .showcase-card,
  .button,
  .trust-item,
  .feature-card,
  .benefit-card,
  .pricing-card,
  .metric-card,
  .workflow-card,
  .academy-card,
  .faq-list details,
  .scroll-progress span,
  .hero-stage-glow,
  .hero-orbit,
  .signal-track,
  .device-pulse,
  .hero-title-line,
  .device-shell::after,
  .hero-stage-lines,
  .hero-stage-beam,
  .hero-ribbon-card i::before,
  .page-transition-ring,
  .page-transition-ring::before,
  .page-transition-ring::after,
  .page-transition-logo {
    transition: none;
    transform: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split-heading,
  .feature-grid,
  .pricing-grid,
  .benefit-grid,
  .final-card,
  .metrics-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .academy-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-highlight {
    transform: none;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 18px;
  }

  .contact-shell {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 14px, var(--max-width));
    padding-top: 12px;
    padding-bottom: 132px;
  }

  .hero,
  .section,
  .final-card {
    border-radius: 24px;
    padding: 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .topbar-links,
  .hero-actions,
  .final-actions {
    width: 100%;
  }

  .topbar-links {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .topbar-links::-webkit-scrollbar,
  .hero-ribbon::-webkit-scrollbar {
    display: none;
  }

  .topbar-links a {
    white-space: nowrap;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.74);
    border: 1px solid rgba(106, 74, 55, 0.1);
  }

  .topbar-links a::after {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

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

  .hero-brandline {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 24px;
    padding: 10px 12px;
  }

  .hero-brandseal {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .hero-brandtext strong {
    font-size: 1.62rem;
  }

  .hero-brandtext span {
    font-size: 12px;
  }

  .hero-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-showcase {
    order: 1;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 15px;
  }

  .workflow-card {
    grid-template-columns: 1fr;
  }

  .workflow-index {
    min-height: 64px;
  }

  .device-screen-header {
    grid-template-columns: 1fr;
  }

  .device-hero-metric {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 6px;
  }

  .hero-logo-aura {
    top: -2px;
    left: 8px;
    width: 98px;
    height: 98px;
    padding: 10px;
    border-radius: 28px;
    opacity: 0.64;
  }

  .hero-stage-lines {
    inset: 42px 6px 118px;
    background-size: 38px 38px;
  }

  .hero-stage-glow {
    top: 18px;
    right: 20px;
    width: 220px;
    height: 220px;
  }

  .hero-orbit-one {
    top: 22px;
    right: 18px;
    width: 124px;
    height: 124px;
  }

  .hero-orbit-two {
    left: 6px;
    bottom: 108px;
    width: 90px;
    height: 90px;
  }

  .hero-stage-beam-one {
    top: 104px;
    left: 14px;
    width: 110px;
  }

  .hero-stage-beam-two {
    right: 14px;
    bottom: 166px;
    width: 140px;
  }

  .device-shell {
    width: 100%;
    min-height: auto;
    margin-top: 14px;
    padding: 12px;
  }

  .device-topbar {
    min-height: 28px;
    padding: 0 4px;
  }

  .device-status {
    padding: 7px 10px;
    font-size: 10px;
  }

  .device-screen {
    min-height: auto;
    padding: 18px;
  }

  .device-score {
    padding: 14px;
  }

  .device-hero-metric {
    padding: 16px;
    border-radius: 20px;
  }

  .device-hero-metric strong {
    max-width: none;
    font-size: 0.95rem;
  }

  .device-pulse {
    min-width: 52px;
    min-height: 52px;
    align-self: flex-start;
  }

  .device-module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .device-module {
    padding: 12px 10px;
    font-size: 11px;
    text-align: center;
  }

  .showcase-card h2 {
    font-size: 1.74rem;
  }

  .hero-ribbon {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px;
    gap: 12px;
  }

  .hero-ribbon-card {
    min-height: 112px;
    scroll-snap-align: start;
  }

  .signal-track {
    gap: 10px;
  }

  .metric-card,
  .feature-card,
  .benefit-card,
  .pricing-card,
  .academy-copy,
  .showcase-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section h2,
  .final-card h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .workflow-stack {
    padding-left: 18px;
  }

  .workflow-card::before {
    left: -29px;
  }

  .contact-shell {
    padding: 20px;
    gap: 18px;
    border-radius: 24px;
  }

  .contact-form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .plan-table-card {
    padding: 12px;
    border-radius: 24px;
    overflow-x: auto;
  }

  .plan-table {
    min-width: 720px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .mobile-demo-bar {
    display: block;
  }

  .section-actions {
    flex-direction: column;
  }

  .page-transition-ring {
    width: min(86vw, 420px);
    height: min(86vw, 420px);
  }

  .page-transition-ring::before {
    inset: 22px;
  }

  .page-transition-ring::after {
    inset: 58px;
  }

  .page-transition-logo {
    width: min(50vw, 168px);
    height: min(50vw, 168px);
    border-radius: 28%;
  }
}
