:root {
  --primary: #0b6f86;
  --accent: #22a6ca;
  --deep: #06475b;
  --bg: #062f3d;
  --card: rgba(4, 47, 61, 0.82);
  --text: #f8fafc;
  --muted: #d5edf4;
  --line: rgba(160, 224, 238, 0.22);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 166, 202, 0.38), transparent 30rem),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 16rem),
    linear-gradient(135deg, var(--bg), var(--deep) 48%, var(--primary));
  color: var(--text);
}

a {
  color: #99f6e4;
}

.shell {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.topbar,
.card,
.panel {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: 24px;
}

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

.brand img {
  max-width: 138px;
  max-height: 68px;
  object-fit: contain;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--deep), var(--accent));
  font-weight: 800;
}

.hero-logo {
  width: min(180px, 45vw);
  margin: 0 0 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px;
  box-shadow: 0 18px 50px rgba(3, 37, 49, 0.35);
}

.trial-pill {
  display: inline-flex;
  width: fit-content;
  margin: 10px 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(160, 224, 238, 0.35);
  border-radius: 999px;
  background: rgba(34, 166, 202, 0.18);
  color: #e7fbff;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  grid-column: 1 / -1;
}

.card,
.panel {
  border-radius: 28px;
  padding: 28px;
}

.eyebrow {
  color: #8be7fb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 0.95;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.price-box {
  position: relative;
  border: 1px solid rgba(160, 224, 238, 0.25);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.price-box--featured {
  border-color: rgba(139, 231, 251, 0.7);
  background:
    radial-gradient(circle at top right, rgba(34, 166, 202, 0.24), transparent 14rem),
    rgba(255, 255, 255, 0.09);
}

.price-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(139, 231, 251, 0.16);
  color: #e7fbff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.price-note {
  margin-top: 0;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: var(--muted);
}

.feature-list li::before {
  content: "✓";
  margin-right: 9px;
  color: #8be7fb;
  font-weight: 900;
}

.pricing-note,
.checkout-summary {
  margin-top: 18px;
  border: 1px solid rgba(160, 224, 238, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 14px 16px;
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #e2e8f0;
  font-weight: 700;
}

input,
select,
textarea,
button {
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.68);
  color: var(--text);
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

button.secondary,
.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

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

.status {
  min-height: 22px;
  color: #a4edff;
  font-weight: 700;
}

.danger {
  color: #fecaca;
}

.room {
  display: grid;
  gap: 16px;
  text-align: center;
}

.live-badge {
  display: inline-flex;
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
  font-weight: 900;
}

.live-badge.on {
  background: rgba(34, 197, 94, 0.22);
  color: #86efac;
}

.hidden {
  display: none !important;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.qr-img {
  width: min(280px, 100%);
  border-radius: 18px;
  background: white;
  padding: 12px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }

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