:root {
  --black: #030303;
  --black-soft: #080808;
  --white: #f6f2ee;
  --muted: rgba(246, 242, 238, .68);
  --muted-2: rgba(246, 242, 238, .44);
  --red: #d30000;
  --red-dark: #9d0000;
  --line: rgba(255, 255, 255, .24);
  --line-soft: rgba(255, 255, 255, .13);
  --font-condensed: Oswald, Impact, "Arial Narrow", sans-serif;
  --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(211, 0, 0, .18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .11), transparent 38%),
    linear-gradient(180deg, #030303 0%, #050505 62%, #090202 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 2px, transparent 2px 8px),
    repeating-linear-gradient(45deg, rgba(211, 0, 0, .04) 0 8px, transparent 8px 16px);
  background-size: auto, auto, auto, 8px 100%, 100% 8px, 16px 16px;
  color: var(--white);
  font-family: var(--font-ui);
  isolation: isolate;
}

button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, .10) 25%, transparent 25% 50%, rgba(255, 255, 255, .10) 50% 75%, transparent 75%),
    linear-gradient(-45deg, rgba(211, 0, 0, .08) 25%, transparent 25% 50%, rgba(211, 0, 0, .08) 50% 75%, transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 18%, transparent 82%, rgba(211, 0, 0, .10));
  background-size: 12px 12px, 12px 12px, 100% 100%;
  mix-blend-mode: soft-light;
}

.public-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 18;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.public-admin-entry {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(0, 0, 0, .40);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(211, 0, 0, .48);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.public-admin-entry:hover {
  opacity: .9;
  transform: translateY(-1px);
  background: rgba(0, 0, 0, .54);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(14px, 2vw, 26px);
  font-family: var(--font-condensed);
  font-size: clamp(14px, 1.2vw, 19px);
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.brand i {
  width: .72em;
  height: .72em;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(211, 0, 0, .8);
}

.header-left {
  margin-left: clamp(18px, 3vw, 52px);
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

.header-left button {
  padding: 8px 0;
  background: transparent;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.burger {
  justify-self: center;
  display: grid;
  gap: 8px;
  width: 74px;
  padding: 15px 0;
  background: transparent;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--white);
  opacity: .9;
  transform-origin: center;
  animation: burgerBreath 3.2s ease-in-out infinite;
}

.burger span:nth-child(2) {
  animation-delay: .25s;
}

.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
}

.header-right a,
.header-left button,
.brand {
  text-shadow: 1px 1px 0 rgba(211, 0, 0, .58);
  transition: opacity .2s ease, transform .2s ease;
}

.header-right a:hover,
.header-left button:hover,
.brand:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.smoke-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  mix-blend-mode: screen;
}

.smoke-layer::before {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -16vh;
  height: 42vh;
  pointer-events: none;
  opacity: .44;
  filter: blur(34px);
  background:
    radial-gradient(ellipse at 20% 70%, rgba(255, 255, 255, .30), transparent 38%),
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, .24), transparent 42%),
    radial-gradient(ellipse at 82% 72%, rgba(211, 0, 0, .24), transparent 36%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .12));
  animation: steamBasePulse 6s ease-in-out infinite alternate;
}

.smoke-layer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -52vh;
  width: 175vw;
  height: 132vh;
  border-radius: 50%;
  opacity: 0;
  filter: blur(54px);
  transform: translate3d(-50%, 0, 0) scale(.72);
  will-change: transform, opacity;
  animation: steamCurtainRise 26s linear infinite;
  background:
    radial-gradient(ellipse at 8% 78%, rgba(211, 0, 0, .16), transparent 28%),
    radial-gradient(ellipse at 22% 88%, rgba(255, 255, 255, .23), transparent 34%),
    radial-gradient(ellipse at 46% 76%, rgba(255, 255, 255, .30), transparent 30%),
    radial-gradient(ellipse at 66% 90%, rgba(255, 255, 255, .18), transparent 36%),
    radial-gradient(ellipse at 84% 74%, rgba(211, 0, 0, .14), transparent 30%);
}

.smoke {
  position: absolute;
  bottom: -55vh;
  width: 54vw;
  min-width: 420px;
  height: 70vh;
  border-radius: 50%;
  opacity: 0;
  filter: blur(44px);
  will-change: transform, opacity;
  animation: smokeRise var(--duration, 30s) linear infinite;
  animation-delay: var(--delay, 0s);
  background:
    radial-gradient(circle at 28% 70%, rgba(255, 255, 255, .36), transparent 30%),
    radial-gradient(circle at 55% 62%, rgba(255, 255, 255, .28), transparent 32%),
    radial-gradient(circle at 74% 40%, rgba(255, 255, 255, .30), transparent 30%),
    radial-gradient(circle at 43% 31%, rgba(211, 0, 0, .18), transparent 31%),
    radial-gradient(circle at 83% 80%, rgba(255, 255, 255, .24), transparent 28%);
  transform: translate3d(0, 0, 0) scale(.72) rotate(var(--rotate, 0deg));
}

.smoke-a { left: -25vw; --duration: 27s; --delay: -18s; --rotate: -8deg; }
.smoke-b { left: 2vw; --duration: 34s; --delay: -7s; --rotate: 7deg; }
.smoke-c { left: 32vw; --duration: 30s; --delay: -23s; --rotate: -14deg; }
.smoke-d { right: -20vw; --duration: 38s; --delay: -12s; --rotate: 11deg; }
.smoke-e {
  left: 10vw;
  bottom: -62vh;
  width: 78vw;
  min-width: 720px;
  height: 86vh;
  --duration: 42s;
  --delay: -25s;
  --rotate: 3deg;
  filter: blur(50px);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 96px clamp(18px, 5vw, 80px) 64px;
  overflow: hidden;
  background: transparent;
}

.demo-order-stack {
  display: grid;
  justify-items: center;
  gap: 38px;
  width: min(100%, 560px);
}

.demo-guide {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 18px;
  width: 100%;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(20, 20, 20, .97), rgba(5, 5, 5, .97));
  box-shadow: 0 0 32px rgba(255, 255, 255, .10), 0 20px 60px rgba(0, 0, 0, .48);
  animation: cardIn .58s cubic-bezier(.2, .82, .22, 1) both;
}

.demo-guide[hidden],
#demoAdminCta[hidden] {
  display: none;
}

.demo-guide-number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 24px rgba(211, 0, 0, .32);
}

.demo-guide h2,
.demo-guide h3 {
  font-family: var(--font-condensed);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.demo-guide p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.45;
}

h1,
h2,
p {
  margin: 0;
}

.order-card {
  position: relative;
  z-index: 8;
  width: min(100%, 560px);
  min-height: 560px;
  padding: clamp(22px, 2.4vw, 36px);
  background: linear-gradient(145deg, var(--red) 0%, #c90000 56%, #b90000 100%);
  box-shadow:
    22px 30px 0 rgba(0, 0, 0, .38),
    0 40px 150px rgba(0, 0, 0, .76),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  animation: cardIn .72s cubic-bezier(.2, .82, .22, 1) both;
}

.order-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  pointer-events: none;
}

.card-label {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  opacity: .78;
}

.card-head {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.card-venue {
  margin-bottom: 10px;
  font-family: var(--font-condensed);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .84;
}

.card-head h1 {
  max-width: 390px;
  font-family: var(--font-condensed);
  font-size: clamp(50px, 5.2vw, 84px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.card-head p {
  max-width: 320px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 700;
}

.card-head .card-venue + h1 {
  margin-top: 0;
}

.field-block {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  animation: fieldIn .48s ease both;
}

.field-block:nth-of-type(1) { animation-delay: .08s; }
.field-block:nth-of-type(2) { animation-delay: .14s; }
.field-block:nth-of-type(3) { animation-delay: .20s; }
.field-block:nth-of-type(4) { animation-delay: .26s; }
.field-block:nth-of-type(5) { animation-delay: .32s; }

.field-title,
.input-box span {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-condensed);
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.segmented,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice,
.chip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(0, 0, 0, .16);
  color: var(--white);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.choice::after,
.chip::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, .48), transparent 34%);
  transition: opacity .24s ease;
}

.choice.pressed::after,
.chip.pressed::after {
  opacity: .55;
}

.choice {
  min-width: 145px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.chip {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.choice:hover,
.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .78);
  background: rgba(0, 0, 0, .28);
}

.choice.active,
.chip.active {
  border-color: var(--white);
  background: var(--white);
  color: #060606;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
}

.double-field {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 10px;
}

.input-box {
  display: block;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .36);
  padding: 13px 14px;
  background: rgba(0, 0, 0, .16);
}

.input-box:has(input[type="time"]) {
  cursor: pointer;
}

.time-field {
  cursor: pointer;
}

.time-field .input-box {
  pointer-events: none;
}

.time-field .input-box input {
  pointer-events: auto;
}

.ready-time-field .input-box {
  pointer-events: auto;
}

.ready-time-field .ready-time-input {
  margin-top: 10px;
  width: 100%;
  max-width: none;
}

.ready-time-field .ready-time-input[hidden] {
  display: none !important;
}

.input-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.input-box input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .7;
}

.input-box:has(input[type="time"]):hover {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(0, 0, 0, .22);
}

.time-field:hover .input-box {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(0, 0, 0, .22);
}

.submit-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  padding: 17px 18px;
  border: 2px solid var(--white);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.submit-btn span {
  text-transform: none;
}

.submit-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .24);
  background: var(--white);
  color: var(--black);
}

.submit-btn b {
  font-family: var(--font-ui);
  font-size: 24px;
}

.lead-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  justify-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s ease;
}

.lead-sheet.visible {
  pointer-events: auto;
  opacity: 1;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(7px);
}

.lead-card {
  position: relative;
  width: min(100% - 32px, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, .98), rgba(5, 5, 5, .98)),
    linear-gradient(145deg, rgba(211, 0, 0, .18), transparent 64%);
  box-shadow: 22px 28px 0 rgba(211, 0, 0, .55), 0 -36px 130px rgba(0, 0, 0, .82);
  max-height: 0;
  padding: 0 22px;
  opacity: 0;
  transform: translateY(36px) scale(.985);
  transition:
    transform .30s cubic-bezier(.2, .82, .22, 1),
    max-height .34s ease,
    opacity .24s ease,
    padding .34s ease,
    margin-bottom .34s ease,
    border-color .24s ease;
}

.lead-sheet.visible .lead-card {
  max-height: 900px;
  padding: 22px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-sheet.is-closing .lead-card {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(26px) scale(.96);
  border-color: rgba(255, 255, 255, 0);
}

.lead-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lead-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-header h2 {
  font-family: var(--font-condensed);
  font-size: clamp(32px, 4vw, 60px);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.lead-copy {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.lead-message {
  min-height: 20px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-message.error {
  color: var(--red);
}

.lead-message.success {
  color: #7ef1a8;
}

.close-btn {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.close-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lead-form.is-submitted {
  display: none !important;
}

.lead-copy.is-submitted {
  display: none !important;
}

.lead-field {
  display: block;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 13px 14px;
  background: rgba(0, 0, 0, .18);
}

.lead-field span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-condensed);
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.lead-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.lead-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 18px;
  border: 2px solid var(--white);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.lead-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .24);
  background: var(--white);
  color: var(--black);
}

.lead-submit.pressed {
  transform: translate(-1px, -1px) scale(.99);
}

.demo-guide-step-two {
  margin-top: 28px;
  padding: 22px;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  border-radius: 0;
  box-shadow: none;
}

.demo-guide-step-two .demo-guide-number {
  width: 54px;
  height: 54px;
}

.demo-guide-step-two h3 {
  font-size: clamp(22px, 3vw, 32px);
}

.demo-guide-step-two p {
  font-size: 16px;
}

.lead-submit b {
  font-family: var(--font-ui);
  font-size: 24px;
}

.shake {
  animation: shake .25s ease-in-out;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fieldIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes smokeRise {
  0% {
    transform: translate3d(-4vw, 30vh, 0) scale(.72) rotate(var(--rotate, 0deg));
    opacity: 0;
  }
  10% { opacity: .22; }
  38% { opacity: .58; }
  68% { opacity: .30; }
  100% {
    transform: translate3d(5vw, -122vh, 0) scale(1.55) rotate(calc(var(--rotate, 0deg) + 18deg));
    opacity: 0;
  }
}

@keyframes steamBasePulse {
  from {
    transform: translateY(0) scaleX(1);
    opacity: .30;
  }
  to {
    transform: translateY(-5vh) scaleX(1.08);
    opacity: .52;
  }
}

@keyframes steamCurtainRise {
  0% {
    transform: translate3d(-52%, 32vh, 0) scale(.72) rotate(-2deg);
    opacity: 0;
  }
  14% { opacity: .28; }
  44% { opacity: .48; }
  76% { opacity: .18; }
  100% {
    transform: translate3d(-48%, -118vh, 0) scale(1.34) rotate(4deg);
    opacity: 0;
  }
}

@keyframes burgerBreath {
  0%, 100% { transform: scaleX(1); opacity: .9; }
  50% { transform: scaleX(.72); opacity: .62; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
    grid-template-columns: auto 1fr auto;
  }

  .header-left {
    margin-left: 18px;
  }

  .burger {
    justify-self: end;
  }

  .hero {
    padding-top: 98px;
  }

  .order-card {
    margin-top: 78px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 58px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-left {
    margin-left: 12px;
  }

  .header-right a {
    font-size: 12px;
  }

  .header-left button {
    font-size: 12px;
  }

  .burger {
    width: 58px;
    gap: 7px;
  }

  .hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 14px 24px;
  }

  .smoke-layer {
    z-index: 1;
    opacity: 1;
  }

  .smoke {
    min-width: 320px;
    width: 78vw;
    filter: blur(46px);
  }

  .smoke-layer::before,
  .smoke-layer::after {
    width: 205vw;
  }

  .order-card {
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 24px 18px 20px;
    box-shadow: 10px 13px 0 rgba(0, 0, 0, .40), 0 28px 90px rgba(0, 0, 0, .72);
  }

  .order-card::before {
    inset: 9px;
  }

  .card-head h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .card-head p {
    font-size: 13px;
  }

  .field-block {
    margin-top: 16px;
  }

  .double-field {
    grid-template-columns: 1fr;
  }

  .segmented,
  .chips {
    gap: 8px;
  }

  .choice {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding: 12px 12px;
  }

  .chip {
    padding: 9px 11px;
    font-size: 12px;
  }

  .submit-btn {
    position: sticky;
    bottom: 12px;
    margin-top: 22px;
    padding: 15px 15px;
    font-size: 19px;
  }

  .sheet-card {
    width: 100%;
    margin-bottom: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    box-shadow: 0 -24px 90px rgba(0, 0, 0, .76);
  }

  .sheet-header {
    padding: 18px 16px 12px;
  }

  pre {
    padding: 16px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    display: none;
  }

  .header-left {
    margin-left: 8px;
  }

  .order-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .chip {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
.field-title em,
.input-box em { color: #ffdf7e; font-style: normal; margin-left: 4px; }
.form-message { min-height: 22px; color: rgba(255,255,255,.82); font-size: 14px; margin: 12px 0 0; }
.form-message.error { color: #ff9b9b; }
.form-message.success { color: #bdf7c8; }
.header-left a { color: inherit; text-decoration: none; }
.theme-preview .hero {
  min-height: calc(100dvh - 24px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}
.theme-preview .order-card {
  min-height: calc(100dvh - 24px);
}
.theme-preview .card-head {
  margin-bottom: 18px;
}
.admin-body { min-height: 100vh; background: #101115; color: #f7f1e8; font-family: Inter, system-ui, sans-serif; }
.admin-mobile-bar,
.admin-nav-overlay { display: none; }
.admin-nav { position: sticky; top: 0; z-index: 10; display: flex; gap: 16px; align-items: center; padding: 18px 28px; background: rgba(15,15,18,.86); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-nav a { color: #f7f1e8; text-decoration: none; font-weight: 800; font-size: 14px; }
.admin-nav-link img { display: none; }
.admin-nav form { margin-left: auto; }
.admin-nav button, .admin-button, .admin-card button { border: 0; border-radius: 14px; background: #f3c769; color: #17120a; font-weight: 900; padding: 12px 18px; cursor: pointer; text-decoration: none; display: inline-flex; }
.demo-mode-notice { width: min(1120px, calc(100% - 32px)); box-sizing: border-box; margin: 18px auto -16px; padding: 12px 16px; border: 1px solid rgba(243,199,105,.42); border-radius: 12px; color: rgba(247,241,232,.82); background: rgba(243,199,105,.07); font-size: 14px; font-weight: 700; }
.admin-shell { width: min(1120px, calc(100% - 32px)); margin: 34px auto; }
.admin-panel, .admin-card { border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.07); box-shadow: 0 28px 90px rgba(0,0,0,.35); padding: 28px; }
.admin-auth { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.admin-card { width: min(430px, 100%); }
.admin-panel h1, .admin-card h1 { margin: 0 0 12px; font-size: clamp(30px, 5vw, 54px); font-family: Oswald, Inter, sans-serif; text-transform: uppercase; }
.admin-panel a { color: #ffdf7e; }
.admin-card p, .muted { color: rgba(255,255,255,.62); }
.admin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-card label, .settings-form label { display: grid; gap: 8px; margin: 14px 0; font-weight: 800; }
.admin-card input, .settings-form input, .settings-form textarea, .settings-form select { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(0,0,0,.24); color: #fff; padding: 13px 14px; font: inherit; outline: none; }
.settings-form textarea { resize: vertical; line-height: 1.5; }
.settings-form select { appearance: none; }
.alert { border-radius: 16px; padding: 13px 16px; margin: 14px 0; font-weight: 800; }
.alert.error { background: rgba(255,82,82,.16); color: #ffafaf; }
.alert.success { background: rgba(75,225,120,.16); color: #bdf7c8; }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 24px 0; }
.stats div { border-radius: 22px; background: rgba(0,0,0,.24); padding: 22px; }
.stats b { display: block; font-size: 42px; }
.stats span { color: rgba(255,255,255,.62); }
.stats.stats--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.statistics-hero {
  background:
    radial-gradient(circle at top left, rgba(243,199,105,.12), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.08), transparent 20%),
    rgba(255,255,255,.07);
}
.statistics-hero .statistics-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}
.statistics-hero .statistics-head .muted {
  max-width: 620px;
  margin-top: 10px;
  line-height: 1.55;
}
.statistics-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 18px;
}
.statistics-chart {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    rgba(0,0,0,.20);
  box-shadow: 0 28px 90px rgba(0,0,0,.26);
  padding: 22px;
}
.statistics-chart--wide {
  grid-column: 1 / -1;
}
.statistics-chart h2 {
  margin: 0;
  font-size: 26px;
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
}
.statistics-chart p {
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}
.chart-frame {
  position: relative;
  min-height: 280px;
  margin-top: 18px;
  border-radius: 22px;
  padding: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(243,199,105,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.10));
  border: 1px solid rgba(255,255,255,.08);
}
.chart-frame canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.chart-empty {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.62);
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
  padding: 24px;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 800;
}
.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f3c769;
  flex: 0 0 auto;
}
.statistics-note {
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.date-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 20px; }
.date-filter-chip { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.18); color: rgba(255,255,255,.78); font-size: 14px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.date-filter-chip:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); color: #fff; }
.date-filter-chip.active { background: #f3c769; color: #17120a; border-color: transparent; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.checkline { display: inline-flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 10px !important; margin-right: 18px !important; }
.checkline input { width: 18px !important; height: 18px; }
.group-editor { border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(0,0,0,.18); padding: 20px; margin: 20px 0; }
.group-editor-head { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
.group-editor-head .checkline { margin-right: 0 !important; }
.group-editor-head .remove-custom-field { margin-left: auto; }
.group-editor code { color: #ffdf7e; }
.orders-list { display: grid; gap: 16px; }
.order-item { border-radius: 20px; background: rgba(0,0,0,.22); padding: 18px; }
.order-ticket {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(0,0,0,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.order-ticket::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #f3c769 0%, #ff8f5a 100%);
}
.order-ticket > * {
  position: relative;
  z-index: 1;
}
.order-ticket .order-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.order-ticket .order-title-block {
  min-width: 0;
}
.order-ticket .order-eyebrow {
  margin-bottom: 8px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.order-ticket h3 {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.order-ticket .order-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.order-ticket .order-status.new {
  background: rgba(243,199,105,.14);
  color: #ffd97e;
  border: 1px solid rgba(243,199,105,.26);
}
.order-ticket .order-status.done {
  background: rgba(126,241,168,.12);
  color: #bdf7c8;
  border: 1px solid rgba(126,241,168,.24);
}
.order-ticket .order-status.admin {
  background: rgba(243,199,105,.14);
  color: #ffd97e;
  border: 1px solid rgba(243,199,105,.26);
}
.order-statuses {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.order-ticket .order-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.order-ticket .order-meta,
.order-ticket .order-field {
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 13px;
}
.order-ticket .order-meta span,
.order-ticket .order-field span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.order-ticket .order-meta b,
.order-ticket .order-field b {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}
.order-ticket .order-link {
  color: #ffdf7e;
  font-weight: 900;
}
.order-ticket .order-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.order-ticket .order-details .muted {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.10);
}
.order-ticket .actions-row {
  margin-top: 14px;
}
.order-item pre { white-space: pre-wrap; overflow: auto; border-radius: 14px; padding: 14px; background: rgba(0,0,0,.28); }
.order-processor { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.order-processor b { color: #9de6b5; }
.order-source-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 12px 0 18px; }
.order-source-filters > span { margin-right: 4px; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
@media (max-width: 720px) {
  .admin-body.admin-menu-open {
    overflow: hidden;
  }

  .admin-mobile-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(15,15,18,.94);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
  }

  .admin-mobile-bar__title {
    min-width: 0;
    overflow: hidden;
    color: #f7f1e8;
    font-family: Oswald, Inter, sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.035em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .admin-mobile-menu-toggle {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    margin-left: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(243,199,105,.42);
    border-radius: 999px;
    background: rgba(243,199,105,.10);
    color: #f3c769;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
  }

  .admin-mobile-menu-toggle__icon {
    width: 16px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
  }

  .admin-nav-overlay {
    position: fixed;
    z-index: 35;
    inset: 0;
    display: block;
    background: rgba(0,0,0,.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
  }

  .admin-nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .admin-nav {
    display: grid;
    position: fixed;
    z-index: 40;
    top: 72px;
    right: 12px;
    left: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: auto;
    max-height: calc(100dvh - 84px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(24,25,28,.98), rgba(10,11,13,.98));
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s step-end;
  }

  .admin-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition: opacity .18s ease, transform .18s ease;
  }

  .admin-nav::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100px;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255,255,255,.09);
    pointer-events: none;
  }

  .admin-nav-link {
    min-width: 0;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 6px 10px;
    color: rgba(247,241,232,.86) !important;
    font-size: clamp(11px, 3.5vw, 14px) !important;
    font-weight: 700 !important;
    line-height: 1.1;
    letter-spacing: -.03em;
    text-align: center;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
  }

  .admin-nav-link img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: .94;
  }

  .admin-nav-link.is-active {
    color: #f3c769 !important;
    background: rgba(243,199,105,.07);
  }

  .admin-nav-link.is-active img {
    filter: sepia(1) saturate(1.8) hue-rotate(345deg) brightness(1.08);
  }

  .admin-nav-link--showcase {
    grid-column: 3 / span 2;
    position: relative;
  }

  .admin-nav form {
    grid-column: 3 / span 2;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .admin-nav button {
    min-width: 96px;
    min-height: 48px;
    justify-content: center;
    margin: auto;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 16px;
  }

  .admin-nav:has(.admin-nav-link--employees):not(:has(form)) .admin-nav-link--employees {
    grid-column: 1 / span 2;
  }

  .admin-nav:has(.admin-nav-link--showcase):not(:has(.admin-nav-link--employees)) .admin-nav-link--showcase {
    grid-column: 1 / -1;
  }

  .grid-2,
  .stats,
  .statistics-grid,
  .stats.stats--wide {
    grid-template-columns: 1fr;
  }

  .statistics-chart--wide {
    grid-column: auto;
  }

  .statistics-chart {
    min-width: 0;
    padding: 16px;
    border-radius: 22px;
  }

  .statistics-chart h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .statistics-chart p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .chart-frame,
  .chart-empty {
    min-height: 0;
    height: 248px;
    margin-top: 14px;
    padding: 10px;
    border-radius: 20px;
  }

  .chart-legend {
    gap: 8px;
  }

  .chart-legend span {
    max-width: 100%;
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .statistics-note {
    font-size: 13px;
    line-height: 1.4;
  }

  .order-ticket .order-meta-grid,
  .order-ticket .order-details {
    grid-template-columns: 1fr;
  }

  .order-ticket .order-item-head {
    flex-direction: column;
  }

  .order-statuses {
    justify-content: flex-start;
  }

  .order-ticket .order-status {
    align-self: flex-start;
  }

  .admin-panel,
  .admin-card {
    padding: 20px;
    border-radius: 22px;
  }
}
.auth-link { margin-top: 16px; font-size: 14px; }
.auth-link a { color: #ffdf7e; font-weight: 900; }
.admin-card textarea, .settings-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(0,0,0,.24); color: #fff; padding: 13px 14px; font: inherit; outline: none; resize: vertical; }
.panel-gap { margin-top: 24px; }
.admin-panel h2 { margin: 0 0 16px; font-size: 28px; font-family: Oswald, Inter, sans-serif; text-transform: uppercase; }
.actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; align-items: center; }
.password-reset-form input { flex: 1 1 240px; min-width: 220px; }
.admin-button.secondary { background: rgba(255,255,255,.14); color: #fff; }
.admin-button.danger { background: #ff6b6b; color: #220000; }
.actions-row form { margin: 0; }

/* Employee management */
.employees-panel { padding: clamp(22px, 3vw, 34px); }
.employees-heading { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.employees-heading h1 { margin-bottom: 4px; }
.employee-create { padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(0,0,0,.18); }
.employee-create h2 { margin: 0 0 5px; font-size: 24px; font-family: Oswald, Inter, sans-serif; text-transform: uppercase; }
.employee-form { display: grid; grid-template-columns: minmax(160px, .8fr) minmax(190px, 1fr) minmax(190px, 1fr) auto auto; gap: 14px; align-items: end; margin-top: 18px; }
.employee-picker { grid-template-columns: minmax(240px, 420px) auto; }
.employee-field { display: grid; gap: 7px; min-width: 0; font-size: 13px; font-weight: 800; color: var(--muted); }
.employee-field input, .employee-field select { width: 100%; min-width: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(0,0,0,.34); color: var(--white); padding: 12px 13px; font: inherit; outline: 0; }
.employee-field input:focus, .employee-field select:focus { border-color: #f3c769; box-shadow: 0 0 0 3px rgba(243,199,105,.14); }
.employee-check { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; white-space: nowrap; font-weight: 800; }
.employee-check input { width: 17px; height: 17px; accent-color: #f3c769; }
.employee-form .admin-button { min-height: 44px; justify-content: center; white-space: nowrap; }
.employees-list { display: grid; gap: 14px; margin-top: 22px; }
.restaurant-admin-profile { margin-top: 22px; }
.employee-section-title { margin-bottom: 12px; }
.employee-section-title h2 { margin: 0 0 3px; font: 700 22px Oswald, Inter, sans-serif; text-transform: uppercase; }
.employee-filter-check { white-space: normal; max-width: 190px; }
.admin-profile-card { border-color: rgba(243,199,105,.28); }
.employee-card { padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(0,0,0,.26); }
.employee-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.employee-card h3 { margin: 0; font-size: 18px; overflow-wrap: anywhere; }
.employee-card p { margin-top: 4px; color: var(--muted); font-size: 14px; }
.employee-status { flex: 0 0 auto; border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 800; }
.employee-status.active { background: rgba(85,190,119,.16); color: #9de6b5; }
.employee-status.inactive { background: rgba(255,107,107,.14); color: #ffaaaa; }
.employee-edit-form { grid-template-columns: minmax(150px, .75fr) minmax(190px, 1fr) minmax(210px, 1.15fr) auto auto; margin-top: 18px; }
.employees-empty { padding: 24px 0 4px; }

@media (max-width: 720px) {
  .employee-form, .employee-edit-form, .employee-picker { grid-template-columns: 1fr; }
  .employee-check { min-height: 30px; }
  .employee-form .admin-button { width: 100%; }
  .employee-card-head { align-items: flex-start; }
}
.landing-body {
  background:
    radial-gradient(circle at top left, rgba(243, 199, 105, .18), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .09), transparent 24%),
    linear-gradient(180deg, #090909 0%, #120f0b 48%, #0b0b0d 100%);
}
.landing-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 12px);
  mix-blend-mode: soft-light;
}
.landing-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 28px;
}
.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}
.landing-nav-links a {
  color: rgba(255,255,255,.78);
}
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: stretch;
}
.landing-copy,
.landing-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}
.landing-copy {
  padding: clamp(26px, 4vw, 42px);
}
.landing-pill,
.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(243, 199, 105, .12);
  color: #ffd98a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.landing-copy h1 {
  margin: 18px 0 16px;
  max-width: 12ch;
  font-family: Oswald, Inter, sans-serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.landing-lead {
  max-width: 58ch;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}
.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 900;
}
.landing-cta.primary {
  background: #f3c769;
  color: #17120a;
}
.landing-cta.secondary {
  background: rgba(255,255,255,.10);
  color: #fff;
}
.landing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.landing-metrics div {
  border-radius: 22px;
  background: rgba(0,0,0,.26);
  padding: 18px;
}
.landing-metrics b {
  display: block;
  font-size: 28px;
}
.landing-metrics span {
  color: rgba(255,255,255,.62);
}
.landing-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}
.landing-card {
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(243,199,105,.16), rgba(0,0,0,.24));
  padding: 22px;
}
.landing-card h2,
.landing-features h3 {
  margin: 12px 0 10px;
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.landing-card p,
.landing-features p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.landing-features {
  display: grid;
  gap: 12px;
}
.landing-features article {
  border-radius: 20px;
  background: rgba(0,0,0,.24);
  padding: 18px 18px 20px;
}
.landing-features h3 {
  font-size: 22px;
}
.custom-fields-toolbar { margin: 20px 0 0; display: flex; justify-content: flex-start; }
.settings-logout {
  display: flex;
  margin: 0 0 14px;
}
.settings-logout button {
  min-height: 48px;
  padding: 10px 28px;
  border: 0;
  border-radius: 999px;
  background: #f3c769;
  color: #17120a;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
.settings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.settings-header h1 {
  margin-bottom: 0;
}
.settings-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.settings-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .16);
}
.settings-content[hidden],
.settings-footer[hidden] {
  display: none !important;
}
.settings-form.is-collapsed {
  padding-bottom: 28px;
}
.remove-custom-field {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.42);
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.remove-custom-field:hover {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
}
.settings-form { padding-bottom: 112px; }
.settings-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: 14px 0;
  background: #101115;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -12px 30px rgba(0,0,0,.28);
}
.settings-footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.settings-footer .admin-button {
  min-width: 220px;
  justify-content: center;
}
.view-preview-kicker {
  margin-bottom: 6px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.view-config {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.view-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.view-section-head h2 {
  margin: 0 0 8px;
}
.view-section-head p {
  margin: 0;
}
.view-carousel-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.view-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.view-theme-card {
  scroll-snap-align: start;
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: rgba(0,0,0,.20);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.view-theme-card:focus-within {
  outline: 3px solid #f3c769;
  outline-offset: 3px;
}
.view-theme-select {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}
.view-theme-card:hover {
  z-index: 2;
  background: rgba(255,255,255,.08);
}
.view-theme-card.active {
  z-index: 1;
  border-color: #f3c769;
  background: rgba(243,199,105,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
}
.view-theme-frame {
  position: relative;
  overflow: hidden;
  height: min(580px, 68dvh);
  border-radius: 20px;
  background: #0f1115;
  border: 1px solid rgba(255,255,255,.08);
}
.view-theme-iframe {
  width: 166.666%;
  height: 166.666%;
  border: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.6);
  transform-origin: top left;
  background: #0f1115;
}
.view-theme-preview {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: var(--preview-background);
  overflow: hidden;
}
.view-theme-preview span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--preview-accent);
}
.view-theme-preview-panel {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.10);
}
.view-theme-preview-panel strong {
  font-size: 20px;
  font-family: Oswald, Inter, sans-serif;
  text-transform: uppercase;
}
.view-theme-preview-panel p,
.view-theme-copy p {
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.5;
}
.view-theme-copy h3 {
  margin: 0;
  font-family: Oswald, Inter, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
.view-apply-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}
.view-apply-bar input[type="hidden"] {
  display: none;
}
.view-apply-copy {
  display: grid;
  gap: 4px;
}
.view-apply-copy b {
  font-size: 18px;
  font-weight: 900;
}
.view-apply-copy span {
  color: rgba(255,255,255,.64);
}
@media (min-width: 721px) {
  .view-carousel-actions {
    display: none;
  }

  .view-carousel {
    cursor: grab;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    scroll-snap-type: none;
    padding-bottom: 14px;
  }

  .view-carousel::-webkit-scrollbar {
    display: none;
  }

  .view-carousel.dragging {
    cursor: grabbing;
  }

  .view-theme-card {
    scroll-snap-align: unset;
  }
}
@media (max-width: 720px) {
  .public-nav {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .public-admin-entry {
    width: 100%;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }
  .landing-copy h1 {
    max-width: 100%;
  }
  .landing-metrics {
    grid-template-columns: 1fr;
  }
  .landing-nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .settings-header {
    align-items: center;
  }
  .settings-logout {
    margin-bottom: 12px;
  }
  .settings-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .admin-shell {
    margin: 16px auto;
  }

  .demo-mode-notice {
    margin-bottom: 16px;
  }

  .view-config.panel-gap {
    margin-top: 10px;
  }
  .view-section-head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .view-section-head h2 {
    margin: 0;
    font-size: 22px;
  }
  .view-carousel-actions {
    gap: 8px;
  }
  .view-apply-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .view-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 16px;
    padding-inline: 16px;
    margin-inline: -16px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .view-carousel::-webkit-scrollbar {
    display: none;
  }
  .view-theme-card {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    height: 75dvh;
  }
  .view-theme-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .view-theme-frame {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
  }
  .view-theme-copy {
    display: none;
  }
  .view-apply-bar {
    padding: 0;
  }
  .theme-preview .hero {
    padding-top: 0;
    padding-bottom: 8px;
  }
  .theme-preview .hero {
    min-height: calc(100dvh - 8px);
  }
  .theme-preview .order-card {
    min-height: calc(100dvh - 8px);
  }
}
@media (max-width: 720px) and (hover: none) and (pointer: coarse) {
  .view-theme-frame {
    height: min(68dvh, 580px);
  }
}

/* Landing page */
.landing-body {
  min-width: 320px;
  background: #020202;
  color: #f5f5f5;
}

.landing-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 72% 23%, rgba(175, 0, 0, .16), transparent 24%), #020202;
}

.landing-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.landing-shell {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.landing-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 50px; }
.landing-brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-condensed); font-size: 29px; font-weight: 700; letter-spacing: -.055em; }
.landing-brand > span:last-child > span { color: #d8d8d8; }
.landing-brand-mark { width: 15px; height: 15px; border-radius: 50%; background: #e00000; box-shadow: 0 0 18px rgba(255, 0, 0, .85); }
.landing-menu { display: grid; align-content: center; gap: 5px; width: 50px; height: 50px; padding: 14px 12px; border: 1px solid #3c3c3c; border-radius: 50%; transition: .2s ease; }
.landing-menu:hover { background: #151515; transform: rotate(4deg); }
.landing-menu span { height: 2px; background: #eee; }

.landing-hero { position: relative; display: grid; grid-template-columns: 50% 50%; align-items: center; min-height: 770px; padding: 62px 0 72px; overflow: hidden; }
.landing-hero-copy { position: relative; z-index: 3; padding-top: 30px; }
.landing-divider { width: 60px; height: 4px; margin: 0 0 25px; background: #ed0000; box-shadow: 0 0 18px rgba(237, 0, 0, .5); }
.landing-hero h1 { margin: 0; font-family: var(--font-condensed); font-size: clamp(70px, 7.1vw, 108px); font-weight: 700; line-height: .89; letter-spacing: -.065em; text-transform: uppercase; }
.landing-hero h1 span { color: #d40000; }
.landing-lead { margin-top: 26px; color: #969696; font-size: 16px; line-height: 1.55; }
.landing-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 34px; }
.landing-btn { display: inline-flex; align-items: center; gap: 48px; min-height: 62px; padding: 0 25px 0 29px; background: linear-gradient(110deg, #a90000, #ec0808); box-shadow: 0 12px 42px rgba(215, 0, 0, .28); font-family: var(--font-condensed); font-size: 20px; font-weight: 600; text-transform: uppercase; transition: transform .2s, filter .2s; }
.landing-btn span { font-family: Arial, sans-serif; font-size: 34px; font-weight: 300; }
.landing-btn:hover { transform: translateY(-3px); filter: brightness(1.15); }
.landing-tg-link { display: inline-flex; align-items: center; gap: 48px; min-height: 62px; padding: 0 25px 0 29px; border: 1px solid rgba(255,255,255,.7); background: transparent; color: #fff; font-family: var(--font-condensed); font-size: 20px; font-weight: 600; text-transform: uppercase; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.landing-tg-link span { font-family: Arial, sans-serif; font-size: 34px; font-weight: 300; }
.landing-tg-link:hover { transform: translateY(-3px); border-color: #fff; background: rgba(255,255,255,.08); }

.landing-hero-art { position: relative; width: 100%; height: 670px; }
.landing-sphere { position: absolute; width: 520px; height: 520px; left: 0; top: 78px; border-radius: 50%; background: radial-gradient(circle at 43% 35%, #f00000 0, #b50000 47%, #590000 78%, #170000 100%); box-shadow: inset -70px -30px 100px rgba(0, 0, 0, .64), 0 0 70px rgba(205, 0, 0, .18); }
.landing-orbit { position: absolute; z-index: 1; border: 1px solid rgba(235, 235, 235, .43); border-radius: 50%; }
.landing-orbit-a { width: 610px; height: 230px; left: -28px; top: 210px; transform: rotate(-42deg); }
.landing-orbit-b { width: 450px; height: 290px; left: 60px; top: 278px; border-color: rgba(238, 0, 0, .72); transform: rotate(48deg); }

.landing-phone { position: relative; z-index: 2; border: 3px solid #464646; border-radius: 42px; background: linear-gradient(135deg, #555, #0b0b0b 13%, #0c0c0c 83%, #777); padding: 11px; box-shadow: 22px 28px 38px rgba(0, 0, 0, .72), inset 0 0 0 2px #080808; }
.landing-phone::after { content: ""; position: absolute; top: 72px; right: -6px; width: 4px; height: 75px; border-radius: 4px; background: #595959; box-shadow: 0 84px 0 #444; }
.landing-phone-hero { position: absolute; width: 308px; height: 640px; left: 164px; top: 12px; transform: rotate(7deg); }
.landing-phone-screen { height: 100%; overflow: hidden; border: 1px solid #272727; border-radius: 31px; background: linear-gradient(145deg, #090909, #030303); }
.phone-head { display: flex; align-items: center; justify-content: space-between; height: 58px; padding: 0 20px; border-bottom: 1px solid #1a1a1a; font-family: var(--font-condensed); font-size: 10px; }
.phone-head b { display: flex; align-items: center; gap: 5px; }
.phone-head i { width: 7px; height: 7px; border-radius: 50%; background: #e00000; }
.phone-head span { font-size: 18px; line-height: 1; }
.phone-content { padding: 18px 18px 16px; }
.phone-content h2 { margin: 0; font-family: var(--font-condensed); font-size: 22px; line-height: 1; text-transform: uppercase; }
.phone-content > p { margin: 5px 0 0; color: #aaa; font-size: 10px; }
.phone-group { margin-top: 20px; }
.phone-group > b { display: block; margin-bottom: 8px; color: #bcbcbc; font-family: var(--font-condensed); font-size: 9px; font-weight: 500; text-transform: uppercase; }
.phone-group > div { display: flex; flex-wrap: wrap; gap: 7px; }
.phone-group span { padding: 7px 12px; border: 1px solid #3c3c3c; border-radius: 8px; color: #b9b9b9; font-size: 8px; white-space: nowrap; }
.phone-group span.active { border-color: #cd0000; background: #cd0000; color: #fff; }
.phone-content > a { display: flex; align-items: center; justify-content: center; gap: 70px; height: 52px; margin-top: 21px; background: linear-gradient(100deg, #b90000, #ef0909); font-family: var(--font-condensed); font-size: 16px; font-weight: 600; text-transform: uppercase; }

.landing-steps { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid #303030; }
.landing-step { position: relative; min-height: 300px; padding: 30px 28px; border-right: 1px solid #303030; }
.landing-step:last-child { border-right: 0; }
.landing-step-top { display: flex; align-items: flex-start; justify-content: space-between; height: 69px; }
.landing-step-top strong { color: #d40000; font-family: var(--font-condensed); font-size: 31px; line-height: 1; }
.landing-step-top img { width: 50px; height: 50px; object-fit: contain; }
.landing-step h2 { max-width: 9.5ch; margin: 26px 0 0; font-family: var(--font-condensed); font-size: 23px; font-weight: 600; line-height: 1.04; letter-spacing: -.03em; text-transform: uppercase; }
.landing-step p { margin: 15px 0 0; color: #858585; font-size: 13px; line-height: 1.45; }
.landing-step-arrow { position: absolute; right: 23px; bottom: 19px; color: #c9c9c9; font-size: 26px; font-weight: 200; }

.landing-product { display: grid; grid-template-columns: 26% 20% 54%; min-height: 450px; margin-top: 30px; border: 1px solid #2b2b2b; overflow: hidden; }
.landing-product-copy { position: relative; z-index: 2; padding: 45px 0 30px 28px; }
.landing-eyebrow { display: flex; align-items: center; gap: 10px; color: #b9b9b9; font-family: var(--font-condensed); font-size: 16px; text-transform: uppercase; }
.landing-eyebrow img { width: 31px; height: 31px; }
.landing-product h2 { margin: 17px 0 0; font-family: var(--font-condensed); font-size: 29px; font-weight: 600; line-height: 1.05; text-transform: uppercase; }
.landing-product p { margin: 16px 0 0; color: #8b8b8b; font-size: 13px; line-height: 1.6; }
.landing-phone-small { align-self: end; width: 185px; height: 410px; margin-left: 2px; border-radius: 30px; padding: 7px; }
.landing-phone-small .landing-phone-screen { border-radius: 23px; }
.landing-phone-small .phone-head { height: 42px; padding: 0 12px; font-size: 7px; }
.landing-phone-small .phone-content { padding: 12px; }
.landing-phone-small .phone-content h2 { font-size: 14px; }
.landing-phone-small .phone-content > p { font-size: 6px; }
.landing-phone-small .phone-group { margin-top: 13px; }
.landing-phone-small .phone-group > b { margin-bottom: 5px; font-size: 6px; }
.landing-phone-small .phone-group > div { gap: 4px; }
.landing-phone-small .phone-group span { padding: 5px 6px; border-radius: 5px; font-size: 5px; }
.landing-phone-small .phone-content > a { height: 35px; margin-top: 14px; gap: 38px; font-size: 10px; }
.landing-product-crm { position: relative; padding: 43px 22px 0 22px; overflow: hidden; }
.landing-product-crm > p { max-width: 370px; }
.crm-window { display: grid; grid-template-columns: 118px 1fr; width: 100%; height: 285px; margin: 24px 0 0; border: 1px solid #343434; border-radius: 13px 13px 0 0; overflow: hidden; background: #111; box-shadow: 0 20px 50px #000; font-size: 8px; }
.crm-window aside { display: flex; flex-direction: column; gap: 15px; padding: 17px 13px; border-right: 1px solid #252525; background: #090909; color: #777; }
.crm-window aside b { margin-bottom: 14px; color: #eee; font-family: var(--font-condensed); font-size: 10px; }
.crm-window aside i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: red; }
.crm-main { padding: 17px; }
.crm-title { display: flex; justify-content: space-between; align-items: center; }
.crm-title b { font-size: 17px; }.crm-title button { padding: 7px 10px; border-radius: 4px; background: #d50000; color: white; font-size: 7px; }
.crm-tabs { display: flex; gap: 25px; margin: 17px 0; padding-bottom: 11px; border-bottom: 1px solid #292929; color: #777; }
.crm-row { display: grid; grid-template-columns: .8fr .8fr 1.25fr .55fr; gap: 7px; margin-bottom: 3px; padding: 10px 8px; border-radius: 5px; background: #191919; color: #aaa; }
.crm-label { background: transparent; color: #5d5d5d; text-transform: uppercase; }
.crm-row em { color: #e9cb00; font-style: normal; }.crm-row em.green { color: #68c516; }

.landing-benefits { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 30px; border: 1px solid #2b2b2b; }
.landing-benefit { display: flex; gap: 18px; min-height: 155px; padding: 29px 25px; border-right: 1px solid #2b2b2b; }
.landing-benefit:last-child { border-right: 0; }
.landing-benefit img { flex: 0 0 48px; width: 48px; height: 48px; }
.landing-benefit h3 { margin: 0; font-family: var(--font-condensed); font-size: 20px; font-weight: 500; line-height: 1.05; text-transform: uppercase; }
.landing-benefit p { margin: 12px 0 0; color: #858585; font-size: 12px; line-height: 1.5; }

@media (max-width: 1000px) {
  .landing-shell { width: min(940px, calc(100% - 40px)); }
  .landing-hero { min-height: 680px; }
  .landing-hero h1 { font-size: clamp(64px, 8vw, 82px); }
  .landing-hero-art { height: 590px; transform: scale(.88); transform-origin: center; }
  .landing-sphere { left: -40px; }
  .landing-phone-hero { left: 105px; }
  .landing-step { min-height: 280px; padding: 25px 20px; }
  .landing-step h2 { font-size: 20px; }
  .landing-product { grid-template-columns: 29% 20% 51%; }
  .landing-benefit { padding: 24px 17px; }
}

@media (max-width: 760px) {
  .landing-shell { width: min(100% - 28px, 560px); padding-top: 14px; }
  .landing-brand { font-size: 23px; }.landing-brand-mark { width: 12px; height: 12px; }.landing-menu { width: 44px; height: 44px; }
  .landing-hero { display: flex; flex-direction: column; min-height: 0; padding: 70px 0 50px; }
  .landing-hero-copy { width: 100%; padding: 0; }
  .landing-hero h1 { font-size: clamp(55px, 16.4vw, 86px); }
  .landing-lead { font-size: 14px; }.landing-lead br { display: none; }
  .landing-hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .landing-btn { min-height: 56px; gap: 24px; padding: 0 19px; font-size: 17px; }
  .landing-tg-link { min-height: 56px; gap: 24px; padding: 0 19px; font-size: 17px; }
  .landing-hero-art { width: 100%; height: 590px; margin-top: 35px; transform: none; }
  .landing-sphere { width: 430px; height: 430px; left: 50%; top: 80px; transform: translateX(-50%); }
  .landing-orbit-a { left: 50%; top: 190px; transform: translateX(-50%) rotate(-42deg) scale(.8); }
  .landing-orbit-b { left: 50%; top: 260px; transform: translateX(-50%) rotate(48deg) scale(.8); }
  .landing-phone-hero { width: 261px; height: 550px; left: 50%; top: 0; transform: translateX(-44%) rotate(6deg); }
  .landing-phone-hero .phone-content { padding: 15px; }.landing-phone-hero .phone-group { margin-top: 15px; }.landing-phone-hero .phone-content > a { height: 45px; }
  .landing-steps { grid-template-columns: 1fr 1fr; }
  .landing-step { min-height: 260px; border-bottom: 1px solid #303030; }
  .landing-step:nth-child(2n) { border-right: 0; }
  .landing-step:last-child { grid-column: 1 / -1; min-height: 220px; border-bottom: 0; }
  .landing-step:last-child h2 { max-width: none; }
  .landing-product { grid-template-columns: 1fr; min-height: 0; }
  .landing-product-copy { min-height: 300px; padding: 34px 28px; }
  .landing-phone-small { justify-self: center; width: 210px; height: 440px; margin: -165px 0 0 32%; }
  .landing-product-crm { min-height: 530px; padding: 38px 24px 0; border-top: 1px solid #2b2b2b; }
  .crm-window { width: 680px; transform: scale(.72); transform-origin: top left; }
  .landing-benefits { grid-template-columns: 1fr 1fr; }
  .landing-benefit:nth-child(2) { border-right: 0; }.landing-benefit:nth-child(-n+2) { border-bottom: 1px solid #2b2b2b; }
}

@media (max-width: 480px) {
  .landing-hero h1 { font-size: clamp(44px, 12.2vw, 56px); letter-spacing: -.07em; }
  .landing-hero-actions { display: grid; gap: 14px; }
  .landing-btn { width: 100%; justify-content: space-between; gap: 12px; padding-inline: 18px; font-size: 15px; }
  .landing-tg-link { width: 100%; justify-content: space-between; gap: 12px; padding-inline: 18px; font-size: 15px; }
  .landing-hero-art { height: 545px; }
  .landing-sphere { width: 350px; height: 350px; }
  .landing-phone-hero { width: 242px; height: 515px; }
  .landing-steps, .landing-benefits { grid-template-columns: 1fr; }
  .landing-step, .landing-step:last-child { grid-column: auto; min-height: 215px; border-right: 0; }
  .landing-benefit { min-height: 130px; border-right: 0; border-bottom: 1px solid #2b2b2b; }
  .landing-benefit:last-child { border-bottom: 0; }
  .landing-phone-small { margin-left: 22%; }
  .crm-window { transform: scale(.58); }
  .landing-product-crm { min-height: 455px; }
}

/* Cookie notice */
.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 42px);
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(610px, calc(100% - 28px));
  padding: 15px 16px 15px 20px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-left: 3px solid var(--red);
  background: rgba(8, 8, 8, .92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .55), 0 0 26px rgba(211, 0, 0, .12);
  color: var(--white);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 28px));
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

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

.cookie-banner.is-closing {
  transform: translateY(calc(100% + 28px));
  opacity: 0;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: var(--red);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.cookie-banner-button:hover {
  background: #ef0909;
  transform: translateY(-1px);
}

.cookie-banner-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .cookie-banner-button {
    width: 100%;
  }
}
