:root {
  --bg: #17120f;
  --bg-2: #1f1914;
  --bg-3: #2a221c;
  --bg-4: #352c24;
  --line: rgba(243, 234, 223, 0.12);
  --line-strong: rgba(243, 234, 223, 0.22);
  --text: #f3eadf;
  --muted: #b3a594;
  --faint: #7d7266;
  --accent: #e2a336;
  --accent-2: #f0d9a0;
  --accent-dark: #8a6114;
  --danger: #c45a4a;
  --ok: #7a9e7e;
  --blue: #8aa4ff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --nav-h: 64px;
  --font: "Onest", system-ui, sans-serif;
  --display: "Onest", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body {
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 8px;
  z-index: 80;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
}

#app {
  min-height: 100vh;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 13px;
  line-height: 1;
}

.brand-name span {
  display: inline;
  margin-left: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.nav-links a,
.menu a {
  padding: 6px 0;
  margin: 0 12px;
  border-radius: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.menu a:hover,
.nav-links a.active {
  color: var(--text);
  background: none;
  border-bottom-color: var(--accent);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  user-select: none;
}

.lang-switch button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.lang-switch button:hover,
.lang-switch button.on {
  color: var(--text);
}

.meet-top .lang-switch {
  flex-shrink: 0;
}

.foot-copy .lang-switch {
  margin: 0 8px;
}

.menu .lang-switch {
  margin: 8px 0 4px;
  padding: 0 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-lg {
  height: 48px;
  padding: 0 22px;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: #1a1408;
}

.btn-primary:hover {
  background: #c9922e;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-text {
  color: var(--muted);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-ok {
  background: var(--ok);
  color: #102016;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% 40%;
  transform: scale(1.08);
  transform-origin: 58% 40%;
  will-change: transform;
  backface-visibility: hidden;
  animation: heroDrift 36s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg video {
    animation: none;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.82) 0%, rgba(23, 18, 15, 0.45) 48%, rgba(23, 18, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(23, 18, 15, 0.2) 0%, rgba(23, 18, 15, 0.15) 40%, rgba(23, 18, 15, 0.88) 100%);
}

.hero > .wrap {
  position: relative;
  z-index: 2;
}

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

.kicker {
  display: inline-block;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  background: none;
}

.pulse {
  display: none;
}

.hero-grid {
  display: block;
}

h1,
.h1 {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lede {
  margin-top: 18px;
  color: var(--text);
  font-size: 18px;
  max-width: 460px;
  line-height: 1.45;
  opacity: 0.86;
}

.hero h1 {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

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

.text-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--text);
}

.meta-row {
  display: none;
}

.board {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 56px 0 64px;
}

.board-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.board-row b {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.board-row h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.board-row p {
  color: var(--muted);
  max-width: 280px;
}

.two-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.two-notes h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.two-notes p {
  color: var(--muted);
  max-width: 420px;
}

.two-notes a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.last-call {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 48px 0 80px;
  border-top: 1px solid var(--line);
}

.last-call p {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  max-width: 640px;
}

.stage {
  background: linear-gradient(180deg, rgba(28, 32, 43, 0.72), rgba(18, 20, 26, 0.78));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  backdrop-filter: blur(18px);
}

.stage-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.r {
  background: #e25c4a;
}
.dot.y {
  background: #e2a336;
}
.dot.g {
  background: #6fbf8a;
}

.call-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 340px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0e1016;
  border: 1px solid var(--line);
}

.tile.wide {
  grid-row: 1 / span 2;
}

.tile-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a3144, #14171f 60%);
}

.tile-bg.a {
  background: linear-gradient(160deg, #3a2c1d, #171410 62%);
}
.tile-bg.b {
  background: linear-gradient(160deg, #1d2f3a, #10151a 62%);
}
.tile-bg.c {
  background: linear-gradient(160deg, #2a1d3a, #141018 62%);
}

.avatar {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-2);
}

.tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 12px;
  font-weight: 700;
  max-width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mic-off {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--danger);
}

.reaction {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 22px;
  animation: pop 1.6s ease infinite;
}

@keyframes pop {
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

.logos {
  padding: 18px 0 8px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  opacity: 0.72;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section.alt {
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.section-h {
  margin-bottom: 28px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 700;
}

.sub {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 22px 0 28px;
  min-height: 0;
}

.card .ico {
  display: none;
}

.card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.check {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  color: var(--text);
  font-weight: 500;
}

.check span {
  color: var(--accent);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: inline;
  flex-shrink: 0;
  font-size: 14px;
  font-family: var(--mono);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 32px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price .badge {
  align-self: flex-start;
}

.price.featured {
  border-color: var(--accent);
  background: transparent;
  transform: none;
}

.price .amt {
  font-family: var(--display);
  font-size: 40px;
  margin: 12px 0 4px;
}

.price .amt small {
  font-size: 16px;
  color: var(--muted);
}

.price ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  color: var(--muted);
}

.price li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.price .btn {
  margin-top: auto;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote {
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 0;
}

.quote p {
  font-size: 18px;
  line-height: 1.4;
  font-family: var(--display);
}

.who {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--display);
}

.faq p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 640px;
}

.cta-band {
  margin: 20px 0 80px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 28px;
  align-items: baseline;
}

.footer .brand {
  margin-right: 12px;
}

.footer b {
  display: none;
}

.footer a {
  display: inline;
  padding: 0;
}

.footer a:hover {
  color: var(--text);
}

.foot-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 12px;
  font-family: var(--mono);
}

.page {
  padding: 56px 0 80px;
}

.page h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.prose {
  max-width: 760px;
  color: var(--muted);
}

.prose h2 {
  color: var(--text);
  font-size: 28px;
  margin: 32px 0 12px;
}

.prose h3 {
  color: var(--text);
  margin: 22px 0 8px;
}

.prose p,
.prose li {
  margin: 10px 0;
}

.auth {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-art {
  background: #17120f url("../assets/enot-phone-hero.png") center / cover no-repeat;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  position: relative;
}

.auth-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 18, 15, 0.82), rgba(23, 18, 15, 0.55));
}

.auth-art > * {
  position: relative;
  z-index: 1;
}

.auth-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.form {
  width: min(440px, 100%);
}

.form h1 {
  font-size: 36px;
  margin: 8px 0 8px;
}

.field {
  margin: 14px 0;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 0 14px;
  outline: none;
}

.field textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
}

.hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.err {
  color: var(--danger);
  font-size: 13px;
  font-weight: 650;
  margin-top: 8px;
}

.okmsg {
  color: var(--ok);
  font-size: 14px;
  font-weight: 650;
  margin-top: 8px;
}

.invite {
  border: 1px solid rgba(226, 163, 54, 0.35);
  background: rgba(226, 163, 54, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0;
}

.invite input {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--display);
}

.sso {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--faint);
  font-size: 12px;
  margin: 16px 0;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.lobby {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  width: min(1100px, calc(100% - 32px));
  margin: 32px auto;
}

.preview {
  background: #090a0d;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transform: scaleX(-1);
  background: #0e1016;
}

.preview .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.preview .ph[hidden] {
  display: none;
}

.lobby-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.meet {
  height: 100dvh;
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr) 88px;
  background: #07080a;
  overflow: hidden;
}

body:has(.meet) {
  overflow: hidden;
  height: 100%;
}

#app:has(.meet) {
  min-height: 0;
  height: 100dvh;
}

.meet-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #101218;
}

.meet-title {
  font-weight: 800;
  font-size: 14px;
}

.meet-top .spacer {
  flex: 1;
}

.pill {
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 57, 54, 0.16);
  color: #ffb4ab;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meet-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 0;
}

.pill.timer {
  background: rgba(226, 163, 54, 0.16);
  color: var(--accent-2);
}

.pill.timer.warn {
  background: rgba(226, 57, 54, 0.16);
  color: #ffb4ab;
}

.meet-top img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.meet-stage {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-height: 0;
}

.meet-stage[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

.meet-stage[data-count="3"],
.meet-stage[data-count="4"] {
  grid-template-columns: 1fr 1fr;
}

.meet-stage[data-count="5"],
.meet-stage[data-count="6"],
.meet-stage[data-count="7"],
.meet-stage[data-count="8"] {
  grid-template-columns: 1fr 1fr 1fr;
}

.remote-tile video {
  transform: none;
}

.local-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0e1016;
  border: 1px solid var(--line);
  min-height: 0;
}

.local-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.local-tile.mirror-off video {
  transform: none;
}

.local-tile.blur video {
  filter: blur(16px) saturate(1.1);
}

.local-tile.studio video {
  filter: contrast(1.15) saturate(0.85) brightness(1.05);
}

.side {
  border-left: 1px solid var(--line);
  background: #101218;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  flex: 1;
  height: 44px;
  font-weight: 700;
  color: var(--muted);
}

.tabs button.on {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.side-body {
  flex: 1;
  overflow: auto;
  padding: 14px;
}

.people .row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.chip {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #2a2418;
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}

.chat {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.msgs {
  flex: 1;
  overflow: auto;
}

.msg {
  background: var(--bg-3);
  border-radius: 12px;
  padding: 8px 10px;
  margin: 8px 0;
  font-size: 13px;
}

.msg b {
  display: block;
  font-size: 11px;
  color: var(--accent-2);
}

.chat-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.chat-form input {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0 10px;
}

.dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #101218;
}

.ctrl {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bg-4);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text);
}

.ctrl:hover {
  background: #2c3140;
}

.ctrl svg {
  width: 22px;
  height: 22px;
}

.ctrl.off {
  background: #3a1c1c;
  color: #ffb4ab;
}

.ctrl.leave {
  width: auto;
  padding: 0 16px;
  background: var(--danger);
  color: #fff;
  font-weight: 800;
}

.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 20px;
}

.modal {
  width: min(480px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #222632;
  border: 1px solid var(--line-strong);
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 60;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}

.table th {
  color: var(--muted);
  font-size: 12px;
}

.status-ok {
  color: var(--ok);
  font-weight: 800;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.search {
  display: flex;
  gap: 10px;
  margin: 22px 0 28px;
}

.search input {
  flex: 1;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 0 16px;
}

.jobs .job {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-left: auto;
}

.menu {
  display: none;
}

.tiny {
  font-size: 12px;
  color: var(--faint);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius);
  background: rgba(226, 163, 54, 0.14);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-h,
  .split,
  .auth,
  .lobby,
  .price-grid,
  .cards,
  .stats,
  .quotes,
  .cta-band,
  .foot-grid,
  .help-grid,
  .meet-main,
  .board-row,
  .two-notes,
  .last-call {
    grid-template-columns: 1fr;
  }

  .last-call {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .nav-cta .btn-text {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }

  .price.featured {
    transform: none;
  }

  .cta-band,
  .auth-art {
    padding: 24px;
  }

  .meet {
    grid-template-rows: 52px 1fr 96px;
    height: 100dvh;
  }

  .meet-stage,
  .meet-stage[data-count="2"],
  .meet-stage[data-count="3"],
  .meet-stage[data-count="4"],
  .meet-stage[data-count="5"],
  .meet-stage[data-count="6"],
  .meet-stage[data-count="7"],
  .meet-stage[data-count="8"] {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }

  .side.open {
    display: flex;
    position: absolute;
    inset: 52px 0 96px;
    z-index: 5;
  }
}

@media (max-width: 640px) {
  .call-grid,
  .row-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 48px;
  }

  .foot-copy {
    flex-direction: column;
  }
}
