:root {
  --bg: #09090d;
  --bg-elevated: #111118;
  --bg-soft: #16161f;
  --paper: #f4f2ef;
  --paper-deep: #e9e6e2;
  --ink: #101015;
  --white: #ffffff;
  --text: #f7f6f4;
  --muted: #a6a4af;
  --muted-dark: #686672;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 16, 21, 0.13);
  --violet: #6e47ff;
  --violet-deep: #4a23d9;
  --violet-soft: #aa92ff;
  --coral: #ff5b49;
  --mint: #30d8a3;
  --amber: #ffb547;
  --danger: #ff4f5f;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: min(1400px, calc(100vw - 64px));
  --header-height: 82px;
  color-scheme: dark;
  font-family: Inter, "SF Pro Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  background: var(--coral);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(170, 146, 255, 0.85);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), #ff814a, var(--violet));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 13, 0.76);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(82, 47, 255, 0.24);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 650;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(20px, 2vw, 34px);
}

.nav-actions {
  gap: 9px;
}

.nav-links > a {
  position: relative;
  padding: 30px 0;
  transition: color 180ms ease;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links > a:hover {
  color: #fff;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 13px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button svg {
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translate(2px, -2px);
}

.button-primary {
  background: linear-gradient(135deg, #ff654d, #f74142);
  color: #fff;
  box-shadow: 0 16px 40px rgba(242, 64, 62, 0.26), inset 0 1px rgba(255, 255, 255, 0.26);
}

.button-primary:hover {
  box-shadow: 0 22px 48px rgba(242, 64, 62, 0.34), inset 0 1px rgba(255, 255, 255, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 12px;
}

.button-login {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.button-login:hover {
  border-color: rgba(170, 146, 255, 0.38);
  background: rgba(110, 71, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 46px;
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(9, 9, 13, 0.98) 0%, rgba(9, 9, 13, 0.9) 35%, rgba(9, 9, 13, 0.42) 69%, rgba(9, 9, 13, 0.22) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 24%),
    image-set(url("assets/restaurant-hero-1440.webp?v=20260717") type("image/webp") 1x, url("assets/restaurant-hero.jpg?v=20260717") type("image/jpeg") 1x) center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.065); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-one {
  top: 24%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: rgba(91, 43, 255, 0.26);
}

.hero-orb-two {
  bottom: 3%;
  left: 19%;
  width: 340px;
  height: 340px;
  background: rgba(255, 79, 62, 0.13);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(460px, 0.84fr) minmax(550px, 1.16fr);
  align-items: center;
  gap: clamp(26px, 3vw, 62px);
  min-height: 690px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 12px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px var(--mint);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(48, 216, 163, 0.48);
  border-radius: 50%;
  animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
  0% { transform: scale(0.55); opacity: 1; }
  85%, 100% { transform: scale(1.55); opacity: 0; }
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(58px, 6.1vw, 100px);
  font-weight: 830;
  letter-spacing: -0.069em;
  line-height: 0.9;
}

.hero h1 span,
.section-title span,
.final-cta h2 span {
  color: transparent;
  background: linear-gradient(105deg, #ff684e 0%, #ff814a 36%, #a57bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
}

.hero-lead strong {
  color: #fff;
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 0;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: grid;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-right: -13vw;
  perspective: 1600px;
}

.visual-aura {
  position: absolute;
  inset: 2% 3% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 65, 255, 0.34), transparent 63%);
  filter: blur(46px);
}

.product-window {
  position: relative;
  width: min(100%, 920px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: #f8f8fa;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px rgba(255, 255, 255, 0.2);
  transform: rotateY(-6deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform 120ms ease-out;
}

.window-bar {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid #dadce3;
  background: #ecedf1;
  color: #525463;
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5c6cc;
}

.window-dots span:first-child { background: #ff6a62; }
.window-dots span:nth-child(2) { background: #ffc64e; }
.window-dots span:nth-child(3) { background: #35cd73; }

.window-address {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 210px;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.address-lock {
  width: 7px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 1px;
}

.window-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.window-live i,
.live-pill i,
.assistant-online i,
.timeline-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(48, 216, 163, 0.7);
}

.window-screen {
  position: relative;
  height: clamp(480px, 51vw, 680px);
  overflow: hidden;
  background: #f6f6f8;
}

.window-screen img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
}

.screen-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(105, 71, 255, 0.06), transparent);
  transform: translateY(-100%);
  animation: screen-scan 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes screen-scan {
  0%, 18% { transform: translateY(-100%); }
  70%, 100% { transform: translateY(100%); }
}

.floating-signal {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  min-width: 250px;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(17, 17, 24, 0.86);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.floating-signal > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.floating-signal small {
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-signal strong {
  font-size: 11px;
}

.floating-signal b {
  align-self: end;
  color: var(--muted);
  font-size: 9px;
}

.signal-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
}

.signal-icon svg { width: 17px; height: 17px; }
.signal-icon-red { background: rgba(255, 79, 95, 0.16); color: #ff6a77; }
.signal-icon-mint { background: rgba(48, 216, 163, 0.15); color: var(--mint); }
.signal-risk { top: 12%; left: -7%; animation: float-signal 5.8s ease-in-out infinite; }
.signal-performance { right: 12%; bottom: 8%; animation: float-signal 6.4s ease-in-out -2s infinite; }

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

.hero-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hero-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.manifesto {
  background: var(--paper);
  color: var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 80px;
}

.manifesto .section-kicker,
.platform .section-kicker,
.capabilities .section-kicker,
.experience .section-kicker,
.faq .section-kicker {
  color: var(--violet-deep);
}

.section-title {
  max-width: 930px;
  margin: 20px 0 0;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 810;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-title-wide {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(50px, 5.8vw, 94px);
}

.manifesto-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  max-width: 1020px;
  margin: 58px 0 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.manifesto-copy p {
  margin: 0;
  color: #56545e;
  font-size: 17px;
  line-height: 1.75;
}

.platform {
  background: #0b0b10;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 76px;
}

.section-intro {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.gallery {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #14141c, #0c0c11);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.25);
}

.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.gallery-tab {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 720;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.gallery-tab:last-child { border-right: 0; }
.gallery-tab span { color: rgba(255, 255, 255, 0.26); font-size: 9px; }
.gallery-tab:hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.75); }
.gallery-tab.is-active { background: linear-gradient(180deg, rgba(110, 71, 255, 0.18), transparent); color: #fff; box-shadow: inset 0 2px var(--violet-soft); }
.gallery-tab.is-active span { color: var(--violet-soft); }

.gallery-stage {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  align-items: center;
  min-height: 700px;
}

.gallery-copy {
  padding: 58px 34px 58px 58px;
}

.gallery-index {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.gallery-overline {
  margin: 54px 0 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-copy h3 {
  max-width: 470px;
  margin: 16px 0 0;
  font-size: clamp(34px, 3.2vw, 52px);
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.gallery-copy > p:not(.gallery-overline) {
  max-width: 470px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.gallery-copy ul {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.gallery-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.gallery-copy li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 14px rgba(170, 146, 255, 0.6);
}

.gallery-image-wrap {
  position: relative;
  align-self: stretch;
  min-width: 0;
  padding: 52px 0 0 45px;
  overflow: hidden;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  cursor: zoom-in;
}

.gallery-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.gallery-image-wrap img {
  position: relative;
  z-index: 2;
  width: 110%;
  max-width: none;
  height: 650px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px 0 0 0;
  box-shadow: -28px 30px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 160ms ease, transform 300ms ease;
}

.gallery-image-wrap:hover img { transform: scale(1.015); }
.gallery-image-wrap.is-changing img { opacity: 0; transform: translateY(8px); }

.gallery-glow {
  position: absolute;
  top: 15%;
  left: 23%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(100, 63, 255, 0.24);
  filter: blur(90px);
}

.image-zoom {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(9, 9, 13, 0.72);
  color: #fff;
  font-size: 10px;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.capabilities {
  background: var(--paper);
  color: var(--ink);
}

.section-head-centered {
  align-items: flex-end;
}

.capabilities .section-intro,
.experience .section-intro,
.faq .section-intro {
  color: var(--muted-dark);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(390px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.bento-card:hover {
  z-index: 2;
  border-color: rgba(74, 35, 217, 0.24);
  box-shadow: 0 30px 70px rgba(38, 31, 66, 0.12);
  transform: translateY(-6px);
}

.bento-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(110, 71, 255, 0.06);
  filter: blur(15px);
}

.bento-feature {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
}

.bento-feature::before {
  width: 460px;
  height: 460px;
  background: rgba(94, 57, 255, 0.25);
  filter: blur(50px);
}

.bento-audit {
  background: #fff;
}

.bento-quality {
  background: linear-gradient(145deg, #efe9ff, #fff);
}

.bento-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(74, 35, 217, 0.15);
  border-radius: 13px;
  background: rgba(110, 71, 255, 0.09);
  color: var(--violet-deep);
}

.bento-feature .bento-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--violet-soft);
}

.bento-icon svg { width: 21px; height: 21px; }
.bento-number { color: rgba(16, 16, 21, 0.27); font-size: 10px; font-weight: 800; letter-spacing: 0.15em; }
.bento-feature .bento-number { color: rgba(255, 255, 255, 0.3); }

.bento-card h3 {
  position: relative;
  z-index: 2;
  margin: 38px 0 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.bento-card > p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 14px 0 0;
  color: #6a6770;
  font-size: 14px;
  line-height: 1.7;
}

.bento-feature > p { color: rgba(255, 255, 255, 0.58); }

.mini-chart {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  height: 128px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 40px;
}

.chart-line {
  position: absolute;
  inset: 22px 10px 10px;
  border-top: 3px solid;
  border-radius: 50%;
  transform: skewY(-8deg) rotate(-2deg);
}

.chart-line-primary {
  border-color: var(--violet-soft);
  box-shadow: 0 -16px 40px rgba(141, 102, 255, 0.22);
}

.chart-line-muted {
  top: 58px;
  border-color: rgba(255, 255, 255, 0.17);
  transform: skewY(5deg);
}

.chart-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #1a1823;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 14px var(--violet);
}

.chart-point.p1 { left: 18%; top: 61%; }
.chart-point.p2 { left: 55%; top: 43%; }
.chart-point.p3 { right: 12%; top: 18%; }

.live-pill,
.quality-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 99px;
  background: rgba(48, 216, 163, 0.1);
  color: #138460;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-list {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: #fafafa;
}

.audit-list span {
  display: grid;
  grid-template-columns: 7px 62px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  border-bottom: 1px solid rgba(16, 16, 21, 0.08);
  font-size: 9px;
}

.audit-list span:last-child { border-bottom: 0; }
.audit-list i { width: 7px; height: 7px; border-radius: 50%; }
.audit-list b { font-size: 8px; letter-spacing: 0.05em; }
.audit-list em { overflow: hidden; color: #73717a; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.audit-list strong { color: #8a8791; font-size: 8px; }
.risk-high { background: var(--danger); box-shadow: 0 0 8px rgba(255, 79, 95, 0.35); }
.risk-mid { background: var(--amber); }
.risk-low { background: var(--mint); }

.station-bars {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 30px;
  display: grid;
  gap: 13px;
}

.station-bars span {
  display: grid;
  grid-template-columns: 1fr 50px 32px;
  align-items: center;
  gap: 10px;
  font-size: 9px;
}

.station-bars span::before {
  content: "";
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  height: 7px;
  border-radius: 99px;
  background: rgba(16, 16, 21, 0.08);
}

.station-bars i {
  grid-row: 1;
  grid-column: 1;
  width: var(--bar);
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--violet-soft));
}

.station-bars b { grid-column: 2; }
.station-bars em { color: #85828d; font-style: normal; }

.avatars {
  position: absolute;
  bottom: 33px;
  left: 31px;
  display: flex;
}

.avatars span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-left: -9px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: linear-gradient(135deg, #4c28d9, #ff654d);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.avatars span:first-child { margin-left: 0; }
.avatars span:last-child { background: #24232a; }

.product-rank {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  gap: 15px;
}

.product-rank span {
  display: grid;
  grid-template-columns: 28px 1fr 42px;
  align-items: center;
  gap: 9px;
  font-size: 9px;
}

.product-rank b { color: var(--violet-deep); }
.product-rank i { height: 7px; border-radius: 99px; background: linear-gradient(90deg, var(--coral), var(--violet)); transform-origin: left; }
.product-rank span:nth-child(2) i { transform: scaleX(0.72); }
.product-rank span:nth-child(3) i { transform: scaleX(0.5); }

.quality-ring {
  position: absolute;
  right: 31px;
  bottom: 26px;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 86%, rgba(74, 35, 217, 0.09) 86% 100%);
}

.quality-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #f8f6fd;
}

.quality-ring span {
  position: relative;
  z-index: 2;
  display: grid;
  text-align: center;
}

.quality-ring strong { font-size: 17px; letter-spacing: -0.04em; }
.quality-ring small { color: #7e778d; font-size: 8px; text-transform: uppercase; }

.audit-story {
  overflow: hidden;
  background: #0a0a0f;
}

.audit-story::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -15%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: rgba(255, 85, 70, 0.11);
  filter: blur(110px);
}

.audit-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
}

.audit-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.audit-copy .section-intro { margin-top: 32px; }

.audit-benefits {
  display: grid;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.audit-benefits article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.audit-benefits article > strong {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.audit-benefits h3 {
  margin: 0;
  font-size: 17px;
}

.audit-benefits p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.timeline-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(20, 20, 28, 0.86);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.42), 0 0 80px rgba(87, 48, 237, 0.08);
  backdrop-filter: blur(20px);
}

.timeline-head,
.timeline-meta,
.timeline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.timeline-head {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.timeline-head > div { display: grid; gap: 5px; }
.timeline-head span { color: rgba(255, 255, 255, 0.42); font-size: 9px; font-weight: 760; letter-spacing: 0.1em; text-transform: uppercase; }
.timeline-head strong { font-size: 23px; letter-spacing: -0.03em; }

.timeline-state {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 99px;
  background: rgba(48, 216, 163, 0.1);
  color: var(--mint) !important;
}

.timeline-meta {
  padding: 19px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-meta span { display: grid; gap: 5px; font-size: 11px; font-weight: 690; }
.timeline-meta small { color: rgba(255, 255, 255, 0.36); font-size: 8px; letter-spacing: 0.07em; text-transform: uppercase; }

.event-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 18px 28px 18px;
  list-style: none;
}

.event-timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 44px;
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
}

.event-timeline li {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 82px;
}

.event-node {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: #191921;
}

.event-node svg { width: 15px; height: 15px; }
.event-done .event-node { color: var(--mint); }
.event-alert .event-node { border-color: rgba(255, 79, 95, 0.3); background: rgba(255, 79, 95, 0.1); color: #ff6774; box-shadow: 0 0 22px rgba(255, 79, 95, 0.1); }
.event-timeline li > div { display: grid; gap: 6px; }
.event-timeline strong { font-size: 12px; }
.event-timeline small { color: rgba(255, 255, 255, 0.4); font-size: 9px; }
.event-timeline time { color: rgba(255, 255, 255, 0.33); font-size: 9px; font-variant-numeric: tabular-nums; }

.timeline-footer {
  min-height: 68px;
  padding: 15px 28px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-footer > span { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.4); font-size: 9px; }
.timeline-footer > span svg { color: var(--violet-soft); }
.timeline-footer button { display: flex; align-items: center; gap: 7px; border: 0; background: transparent; color: #fff; font-size: 10px; font-weight: 720; cursor: pointer; }

.risk-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(107, 65, 255, 0.15), transparent 27%),
    linear-gradient(145deg, #f2eff8 0%, #f7f5f2 55%, #ece8f5 100%);
  color: var(--ink);
}

.risk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-image: linear-gradient(rgba(54, 40, 88, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(54, 40, 88, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.risk-glow {
  position: absolute;
  top: 16%;
  right: -10%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(103, 62, 255, 0.12);
  filter: blur(120px);
}

.risk-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
}

.risk-section .section-kicker {
  color: var(--violet-deep);
}

.risk-copy .section-title {
  font-size: clamp(48px, 4.7vw, 78px);
}

.risk-copy .section-intro {
  margin-top: 30px;
  color: var(--muted-dark);
}

.risk-principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 15px;
  margin-top: 32px;
  padding: 17px;
  border: 1px solid rgba(74, 35, 217, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.risk-principle > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: rgba(110, 71, 255, 0.1);
  color: var(--violet-deep);
}

.risk-principle svg { width: 19px; height: 19px; }
.risk-principle p { margin: 0; color: #676370; font-size: 12px; line-height: 1.65; }
.risk-principle strong { color: var(--ink); }

.risk-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 27px;
  border-top: 1px solid var(--line-dark);
}

.risk-factors article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 20px 15px 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.risk-factors article:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.risk-factors article > span {
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.risk-factors article > div { display: grid; gap: 5px; }
.risk-factors strong { font-size: 11px; }
.risk-factors small { color: #787581; font-size: 9px; line-height: 1.5; }

.risk-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 27px;
  background: #111118;
  color: #fff;
  box-shadow: 0 50px 110px rgba(37, 24, 78, 0.25), inset 0 1px rgba(255, 255, 255, 0.04);
}

.risk-console::before {
  content: "";
  position: absolute;
  top: -230px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(104, 62, 255, 0.25);
  filter: blur(90px);
}

.risk-console-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.risk-console-head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.risk-console-head > div > div { display: grid; gap: 4px; }
.risk-console-head strong { font-size: 12px; }
.risk-console-head small { color: rgba(255, 255, 255, 0.35); font-size: 8px; }

.risk-console-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 10px;
  background: rgba(110, 71, 255, 0.18);
  color: var(--violet-soft);
}

.risk-console-icon svg { width: 18px; height: 18px; }

.risk-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.risk-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(48, 216, 163, 0.7);
}

.risk-overview {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr 110px;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.risk-score-ring {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#ff5b49 0 78%, rgba(255, 255, 255, 0.08) 78% 100%);
  box-shadow: 0 0 45px rgba(255, 82, 68, 0.1);
}

.risk-score-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background: #15151e;
}

.risk-score-ring > div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
}

.risk-score-ring strong { font-size: 38px; letter-spacing: -0.07em; }
.risk-score-ring small { color: rgba(255, 255, 255, 0.34); font-size: 8px; }

.risk-profile { min-width: 0; }
.risk-band { display: inline-flex; padding: 6px 8px; border-radius: 7px; background: rgba(255, 79, 95, 0.13); color: #ff7180; font-size: 8px; font-weight: 820; letter-spacing: 0.08em; text-transform: uppercase; }
.risk-profile h3 { margin: 11px 0 0; font-size: 24px; letter-spacing: -0.04em; }
.risk-profile p { margin: 5px 0 0; color: rgba(255, 255, 255, 0.38); font-size: 9px; }
.risk-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.risk-tags span { padding: 5px 7px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; color: rgba(255, 255, 255, 0.55); font-size: 7px; }

.risk-confidence {
  display: grid;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.risk-confidence small { color: rgba(255, 255, 255, 0.35); font-size: 7px; text-transform: uppercase; }
.risk-confidence strong { font-size: 24px; letter-spacing: -0.04em; }
.risk-confidence > span { display: block; height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, 0.08); }
.risk-confidence > span i { display: block; width: 84%; height: 100%; border-radius: 99px; background: var(--mint); }

.risk-components {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.risk-components > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
}

.risk-components span { overflow: hidden; color: rgba(255, 255, 255, 0.38); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.risk-components strong { color: rgba(255, 255, 255, 0.65); font-size: 8px; }
.risk-components i { grid-column: 1 / -1; height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, 0.08); }
.risk-components b { display: block; width: var(--score); height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--violet), var(--coral)); }

.followup-panel {
  position: relative;
  padding: 23px 28px 28px;
}

.followup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.followup-head > div { display: grid; gap: 4px; }
.followup-head strong { font-size: 11px; }
.followup-head small { color: rgba(255, 255, 255, 0.35); font-size: 8px; }
.followup-head button { display: flex; align-items: center; gap: 6px; padding: 0; border: 0; background: transparent; color: var(--violet-soft); font-size: 8px; pointer-events: none; }

.followup-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.followup-list > div {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 13px;
  border-bottom: 1px solid var(--line);
}

.followup-list > div:last-child { border-bottom: 0; }
.followup-level { display: inline-flex; justify-content: center; padding: 6px 7px; border-radius: 6px; font-size: 7px; font-weight: 820; letter-spacing: 0.05em; text-transform: uppercase; }
.level-priority { background: rgba(255, 79, 95, 0.12); color: #ff7582; }
.level-check { background: rgba(255, 181, 71, 0.11); color: var(--amber); }
.level-watch { background: rgba(110, 71, 255, 0.13); color: var(--violet-soft); }
.followup-list p { display: grid; gap: 4px; min-width: 0; margin: 0; }
.followup-list p strong { overflow: hidden; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.followup-list p small { overflow: hidden; color: rgba(255, 255, 255, 0.34); font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.followup-list em { color: rgba(255, 255, 255, 0.55); font-size: 11px; font-style: normal; font-weight: 780; text-align: right; }

.risk-followup-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.risk-followup-flow article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.risk-followup-flow article:last-child { border-right: 0; }
.risk-followup-flow article > svg { width: 24px; height: 24px; margin-top: 38px; color: var(--violet-deep); }
.flow-step { position: absolute; top: 27px; right: 25px; color: rgba(16, 16, 21, 0.25); font-size: 9px; font-weight: 760; letter-spacing: 0.1em; }
.risk-followup-flow h3 { margin: 20px 0 0; font-size: 19px; letter-spacing: -0.035em; }
.risk-followup-flow p { margin: 12px 0 0; color: #777480; font-size: 11px; line-height: 1.65; }

.experience {
  background: var(--paper);
  color: var(--ink);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: #dedce1;
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.showcase-card:hover {
  box-shadow: 0 30px 70px rgba(29, 26, 42, 0.14);
  transform: translateY(-5px);
}

.showcase-large {
  grid-row: span 2;
  min-height: 1138px;
}

.showcase-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(23, 20, 33, 0.1);
  backdrop-filter: blur(12px);
}

.showcase-label span { color: var(--violet-deep); font-size: 8px; font-weight: 820; letter-spacing: 0.12em; text-transform: uppercase; }
.showcase-label strong { font-size: 11px; }

.showcase-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 70px rgba(16, 16, 21, 0.08);
  pointer-events: none;
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-card:hover img { transform: scale(1.025); }

.assistant-section {
  overflow: hidden;
  background: #0b0b10;
}

.assistant-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 2%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: rgba(103, 63, 255, 0.15);
  filter: blur(110px);
}

.assistant-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.assistant-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #15151e;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.35);
}

.assistant-header {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.assistant-mark,
.assistant-avatar {
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--violet), #3d1dbb);
  color: #fff;
  box-shadow: 0 10px 25px rgba(84, 47, 227, 0.25);
}

.assistant-mark { width: 42px; height: 42px; }
.assistant-mark svg { width: 19px; height: 19px; }
.assistant-header > div { display: grid; gap: 4px; }
.assistant-header strong { font-size: 12px; }
.assistant-header small { color: rgba(255, 255, 255, 0.4); font-size: 8px; }
.assistant-online { display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.52); font-size: 8px; font-weight: 720; text-transform: uppercase; }

.assistant-messages {
  display: grid;
  gap: 26px;
  min-height: 400px;
  align-content: center;
  padding: 44px 32px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 19px 19px;
}

.message {
  max-width: 86%;
  font-size: 12px;
  line-height: 1.65;
}

.message-user {
  justify-self: end;
  padding: 13px 16px;
  border: 1px solid rgba(170, 146, 255, 0.2);
  border-radius: 15px 15px 3px 15px;
  background: rgba(110, 71, 255, 0.18);
}

.message-assistant {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
}

.assistant-avatar { width: 32px; height: 32px; border-radius: 9px; }
.assistant-avatar svg { width: 14px; height: 14px; }
.message-assistant p { margin: 0; color: rgba(255, 255, 255, 0.7); }
.message-assistant p strong { color: #fff; }
.message-assistant button { display: flex; align-items: center; gap: 7px; margin-top: 15px; padding: 0; border: 0; background: transparent; color: var(--violet-soft); font-size: 9px; font-weight: 750; cursor: pointer; }

.assistant-input {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: center;
  gap: 12px;
  margin: 0 20px 20px;
  padding: 9px 9px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.assistant-input button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--violet);
  color: #fff;
  cursor: pointer;
}

.assistant-input svg { width: 15px; height: 15px; }
.assistant-copy .section-intro { margin-top: 28px; }

.assistant-points {
  display: grid;
  gap: 18px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.assistant-points li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 13px;
}

.assistant-points li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgba(48, 216, 163, 0.1);
  color: var(--mint);
}

.assistant-points svg { width: 15px; height: 15px; }
.assistant-points div { display: grid; gap: 5px; }
.assistant-points strong { font-size: 13px; }
.assistant-points small { color: var(--muted); font-size: 11px; line-height: 1.55; }

.outcomes {
  background: var(--ink);
}

.outcomes-head {
  max-width: 980px;
  margin-bottom: 88px;
}

.outcome-list {
  border-top: 1px solid var(--line);
}

.outcome-list article {
  display: grid;
  grid-template-columns: 80px 0.75fr 1.25fr;
  align-items: center;
  gap: 30px;
  min-height: 155px;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, padding 200ms ease;
}

.outcome-list article:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.outcome-list span { color: rgba(255, 255, 255, 0.27); font-size: 10px; font-weight: 760; letter-spacing: 0.12em; }
.outcome-list h3 { margin: 0; font-size: clamp(22px, 2.1vw, 32px); letter-spacing: -0.035em; }
.outcome-list p { max-width: 600px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(70px, 8vw, 140px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-heading .section-intro { margin-top: 28px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--violet-deep);
  font-size: 13px;
  font-weight: 760;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 2px;
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }

.faq-list details p {
  max-width: 680px;
  margin: -8px 0 0;
  padding: 0 60px 32px 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(rgba(9, 9, 13, 0.74), rgba(9, 9, 13, 0.92)), image-set(url("assets/restaurant-hero-1440.webp?v=20260717") type("image/webp") 1x, url("assets/restaurant-hero.jpg?v=20260717") type("image/jpeg") 1x) center 44% / cover no-repeat;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(circle at 50% 40%, rgba(104, 61, 255, 0.28), transparent 32%), linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 80%, transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
  padding: 110px 0;
  text-align: left;
}

.final-cta h2 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(55px, 6vw, 92px);
  font-weight: 830;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.contact-copy > p {
  max-width: 640px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-details > * {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 19px 16px 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > *:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.contact-details > *:last-child {
  grid-column: 1 / -1;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
}

.contact-details a {
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: var(--violet-soft);
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(18, 18, 25, 0.88);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
}

.contact-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-form-head > div {
  display: grid;
  gap: 10px;
}

.contact-form-head > div > span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form h3 {
  max-width: 450px;
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.form-response {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 99px;
  background: rgba(48, 216, 163, 0.1);
  color: var(--mint);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-response i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px rgba(48, 216, 163, 0.7);
}

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

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

.form-grid label > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-grid input,
.form-grid select {
  height: 48px;
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 108px;
  padding: 13px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(170, 146, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(110, 71, 255, 0.12);
}

.form-grid select {
  color-scheme: dark;
}

.form-span {
  grid-column: 1 / -1;
}

.consent-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--violet);
}

.consent-row a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(48, 216, 163, 0.2);
  background: rgba(48, 216, 163, 0.09);
  color: #8be9c9;
}

.form-status.is-error {
  border: 1px solid rgba(255, 79, 95, 0.22);
  background: rgba(255, 79, 95, 0.09);
  color: #ff9ca5;
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.29);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.button-light:hover { background: #f1f0ee; }

.site-footer {
  background: #08080c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.6fr);
  gap: 70px;
  padding: 82px 0 70px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-column a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.27);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  height: min(92vh, 980px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: #111117;
  color: #fff;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.7);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(9, 9, 13, 0.74);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close svg { width: 19px; height: 19px; }

.lightbox-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  object-position: top;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1220px) {
  :root { --shell: min(calc(100% - 48px), 1160px); }
  .primary-nav { gap: 24px; }
  .nav-links { gap: 18px; }
  .hero { min-height: 840px; }
  .hero-layout { grid-template-columns: minmax(430px, 0.92fr) minmax(460px, 1.08fr); min-height: 630px; }
  .hero-visual { margin-right: -20vw; }
  .product-window { width: 820px; }
  .window-screen { height: 560px; }
  .signal-risk { left: 3%; }
  .signal-performance { right: 5%; }
  .gallery-stage { grid-template-columns: 0.72fr 1.28fr; }
  .gallery-copy { padding-left: 42px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 1; }
  .showcase-card { min-height: 500px; }
  .showcase-large { min-height: 1018px; }
}

@media (max-width: 1020px) {
  :root { --header-height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 15, 21, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(20px);
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links { display: grid; gap: 0; }
  .nav-links > a { padding: 15px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nav-links > a::after { display: none; }
  .nav-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 10px; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 70px); }
  .hero-backdrop { background: linear-gradient(90deg, rgba(9, 9, 13, 0.98), rgba(9, 9, 13, 0.8)), linear-gradient(0deg, var(--bg), transparent 35%), image-set(url("assets/restaurant-hero-1440.webp?v=20260717") type("image/webp") 1x, url("assets/restaurant-hero.jpg?v=20260717") type("image/jpeg") 1x) 65% center / cover no-repeat; }
  .hero-layout { grid-template-columns: 1fr; gap: 80px; min-height: auto; }
  .hero-copy { max-width: 800px; }
  .hero h1 { font-size: clamp(62px, 10vw, 96px); }
  .hero-visual { width: 100%; margin: 0; }
  .product-window { width: 100%; transform: none; }
  .window-screen { height: 620px; }
  .signal-risk { top: -25px; left: 25px; }
  .signal-performance { right: 25px; bottom: -28px; }
  .hero-bottom { margin-top: 70px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-copy { margin-left: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 30px; }
  .gallery-stage { grid-template-columns: 1fr; }
  .gallery-copy { padding: 45px; }
  .gallery-overline { margin-top: 32px; }
  .gallery-image-wrap { min-height: 590px; padding-top: 42px; border-top: 1px solid var(--line); border-left: 0; }
  .gallery-image-wrap img { height: 580px; }
  .audit-layout { grid-template-columns: 1fr; }
  .audit-copy { max-width: 760px; }
  .timeline-card { max-width: 760px; width: 100%; margin: auto; }
  .risk-layout { grid-template-columns: 1fr; }
  .risk-copy { max-width: 790px; }
  .risk-console { max-width: 900px; width: 100%; margin-inline: auto; }
  .risk-followup-flow { grid-template-columns: repeat(2, 1fr); }
  .risk-followup-flow article:nth-child(2) { border-right: 0; }
  .risk-followup-flow article:nth-child(-n + 2) { border-bottom: 1px solid var(--line-dark); }
  .assistant-layout { grid-template-columns: 1fr; }
  .assistant-demo { order: 2; }
  .assistant-copy { max-width: 780px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 800px; }
  .footer-main { grid-template-columns: 1.25fr repeat(2, 0.75fr); }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 100px 0; }
  .brand-copy small { letter-spacing: 0.11em; }
  .hero { padding-bottom: 35px; }
  .hero-layout { gap: 65px; }
  .hero h1 { margin-top: 20px; font-size: clamp(50px, 15vw, 74px); line-height: 0.94; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { gap: 18px; }
  .hero-proof > div { padding: 0; border-right: 0; }
  .hero-proof strong { font-size: 19px; }
  .hero-proof span { font-size: 8px; }
  .window-bar { grid-template-columns: 65px 1fr 55px; padding-inline: 10px; }
  .window-address { min-width: 0; width: 100%; padding-inline: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .window-screen { height: 400px; }
  .floating-signal { min-width: 210px; grid-template-columns: 34px 1fr auto; }
  .signal-risk { top: -30px; left: -5px; }
  .signal-performance { right: -5px; bottom: -34px; }
  .hero-bottom { display: grid; margin-top: 76px; }
  .signal-strip { flex-wrap: wrap; gap: 10px; }
  .section-title { font-size: clamp(42px, 13vw, 64px); }
  .section-title-wide { font-size: clamp(44px, 13vw, 68px); }
  .manifesto-copy { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .gallery { border-radius: 21px; }
  .gallery-tabs { grid-template-columns: repeat(2, 1fr); }
  .gallery-tab { min-height: 68px; border-bottom: 1px solid var(--line); }
  .gallery-tab:nth-child(2) { border-right: 0; }
  .gallery-tab:nth-child(3), .gallery-tab:nth-child(4) { border-bottom: 0; }
  .gallery-copy { padding: 35px 26px; }
  .gallery-copy h3 { font-size: 34px; }
  .gallery-image-wrap { min-height: 430px; padding: 28px 0 0 24px; }
  .gallery-image-wrap img { height: 430px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(390px, auto); }
  .bento-card { padding: 27px; }
  .audit-layout { gap: 65px; }
  .timeline-meta { display: grid; grid-template-columns: repeat(3, 1fr); }
  .event-timeline li { grid-template-columns: 34px 1fr; }
  .event-timeline time { display: none; }
  .timeline-footer { align-items: flex-start; flex-direction: column; }
  .risk-factors { grid-template-columns: 1fr; }
  .risk-factors article:nth-child(even) { padding-left: 0; border-left: 0; }
  .risk-overview { grid-template-columns: 106px 1fr; padding: 22px 19px; }
  .risk-score-ring { width: 96px; height: 96px; }
  .risk-score-ring strong { font-size: 31px; }
  .risk-confidence { grid-column: 1 / -1; padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .risk-components { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .followup-panel { padding: 20px; }
  .followup-list > div { grid-template-columns: 75px 1fr 25px; gap: 8px; }
  .risk-followup-flow { grid-template-columns: 1fr; }
  .risk-followup-flow article { min-height: 225px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .risk-followup-flow article:last-child { border-bottom: 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card,
  .showcase-large { min-height: 540px; grid-row: auto; }
  .assistant-messages { min-height: 360px; padding: 34px 20px; }
  .message { max-width: 95%; }
  .outcome-list article { grid-template-columns: 40px 1fr; gap: 18px; padding: 30px 0; }
  .outcome-list p { grid-column: 2; }
  .outcome-list article:hover { padding-inline: 0; }
  .faq-list summary { min-height: 90px; font-size: 17px; }
  .faq-list details p { padding-right: 20px; }
  .final-cta { min-height: 680px; }
  .final-cta h2 { font-size: clamp(50px, 14vw, 76px); }
  .contact-layout { gap: 65px; padding: 90px 0; }
  .contact-form { padding: 26px 20px; }
  .contact-form-head { align-items: start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .lightbox { width: 96vw; height: 88vh; border-radius: 14px; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .nav-actions { grid-template-columns: 1fr; }
  .hero h1 { font-size: 50px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof > div:last-child { grid-column: 1 / -1; }
  .floating-signal { min-width: 195px; }
  .floating-signal b { display: none; }
  .signal-performance { right: -10px; }
  .gallery-tab { padding: 12px 8px; font-size: 10px; }
  .timeline-meta { grid-template-columns: 1fr 1fr; }
  .timeline-meta span:last-child { grid-column: 1 / -1; }
  .assistant-header { grid-template-columns: 38px 1fr; }
  .assistant-online { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .product-window { transform: none !important; }
}
