:root {
  color-scheme: dark;
  --charcoal: #07130f;
  --deep: #0f2b24;
  --green: #1f4d3d;
  --green-soft: #2f6d56;
  --gold: #d4af37;
  --gold-soft: #f2d18a;
  --paper: #f5f5f5;
  --paper-muted: #d7ddd9;
  --ink-muted: #9daca5;
  --line: rgba(242, 209, 138, 0.2);
  --line-green: rgba(176, 211, 194, 0.14);
  --panel: rgba(15, 43, 36, 0.76);
  --panel-strong: rgba(9, 27, 22, 0.9);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.26);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --page-max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--charcoal);
  color: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.1), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(31, 77, 61, 0.74), transparent 32rem),
    linear-gradient(180deg, #07130f 0%, #0b1e19 46%, #07130f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(242, 209, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 209, 138, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), transparent 72%);
}

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

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

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

.section {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px max(16px, calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(242, 209, 138, 0.12);
  background: rgba(7, 19, 15, 0.78);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 1.04rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(242, 209, 138, 0.55);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(15, 43, 36, 0.8)),
    var(--deep);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold-soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta {
  display: none;
  border-color: rgba(242, 209, 138, 0.44);
  background: rgba(242, 209, 138, 0.1);
  color: var(--gold-soft);
}

.button.primary {
  border-color: rgba(242, 209, 138, 0.72);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1b1305;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.24);
}

.button.secondary {
  border-color: rgba(245, 245, 245, 0.24);
  background: rgba(245, 245, 245, 0.06);
  color: var(--paper);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 122px;
  background:
    radial-gradient(circle at 80% 18%, rgba(242, 209, 138, 0.14), transparent 20rem),
    radial-gradient(circle at 60% 56%, rgba(31, 77, 61, 0.94), transparent 34rem),
    linear-gradient(135deg, #07130f 0%, #0f2b24 58%, #07130f 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 209, 138, 0.08), transparent 18% 82%, rgba(242, 209, 138, 0.06)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 84px;
  opacity: 0.6;
}

.hero::after {
  right: -18rem;
  top: -16rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(242, 209, 138, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 64%);
}

.hero-text {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.white-label-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: 4.9rem;
  line-height: 0.92;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(245, 245, 245, 0.76);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin-top: 28px;
}

.hero-capabilities span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(242, 209, 138, 0.2);
  border-radius: 999px;
  background: rgba(5, 15, 12, 0.42);
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-stage {
  position: relative;
  z-index: 2;
  min-height: 560px;
  margin-top: 76px;
}

.product-stage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(28px);
}

.ops-window {
  position: absolute;
  left: 0;
  right: 110px;
  bottom: 38px;
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(242, 209, 138, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(15, 43, 36, 0.96), rgba(7, 19, 15, 0.98)),
    var(--deep);
  box-shadow: var(--shadow);
}

.window-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(242, 209, 138, 0.13);
  color: rgba(245, 245, 245, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.window-bar strong {
  margin-left: auto;
  color: var(--gold-soft);
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.12);
}

.ops-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 400px;
}

.ops-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 14px;
  border-right: 1px solid rgba(242, 209, 138, 0.13);
  background: rgba(5, 15, 12, 0.4);
}

.ops-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(242, 209, 138, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.ops-sidebar span:not(.ops-logo) {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
}

.ops-sidebar .active {
  background: rgba(242, 209, 138, 0.12);
  color: var(--gold-soft);
}

.ops-main {
  display: grid;
  gap: 18px;
  padding: 22px;
}

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

.ops-summary div,
.queue-panel {
  border: 1px solid rgba(242, 209, 138, 0.14);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 245, 0.045);
}

.ops-summary div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
}

.ops-summary p,
.panel-heading p {
  margin: 0;
  color: rgba(245, 245, 245, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-summary strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.ops-summary span {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.queue-panel {
  padding: 16px;
}

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

.panel-heading h2 {
  margin: 5px 0 0;
  color: var(--paper);
  font-size: 1.24rem;
  letter-spacing: 0;
}

.panel-heading > span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(242, 209, 138, 0.22);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.queue-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.queue-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: var(--radius-md);
  background: rgba(7, 19, 15, 0.46);
}

.queue-item.preparing {
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.08);
}

.queue-item span {
  color: var(--gold-soft);
  font-weight: 900;
}

.queue-item h3 {
  margin: 0;
  color: var(--paper);
  font-size: 0.98rem;
  letter-spacing: 0;
}

.queue-item p {
  margin: 5px 0 0;
  color: rgba(245, 245, 245, 0.54);
  font-size: 0.84rem;
}

.queue-item strong {
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.guest-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  min-height: 488px;
  padding: 16px;
  border: 1px solid rgba(242, 209, 138, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(245, 245, 245, 0.96), rgba(230, 225, 210, 0.96)),
    var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  color: var(--deep);
}

.phone-top {
  width: 64px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(15, 43, 36, 0.24);
}

.restaurant-hero {
  height: 138px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(15, 43, 36, 0.72), rgba(212, 175, 55, 0.18)),
    var(--green);
}

.restaurant-hero img {
  width: 72%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.phone-kicker {
  margin: 18px 0 0;
  color: #7c6220;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-phone h2 {
  margin: 6px 0 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.phone-copy {
  margin: 8px 0 0;
  color: #4b6259;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pwa-menu {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pwa-menu div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 43, 36, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.pwa-menu span,
.pwa-menu strong {
  font-size: 0.82rem;
  font-weight: 850;
}

.guest-phone button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--deep);
  color: var(--gold-soft);
  font-weight: 900;
}

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

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.white-label-copy h2,
.final-cta h2 {
  font-size: 3rem;
  line-height: 1.03;
}

.section-heading p:not(.eyebrow),
.white-label-copy p,
.final-cta p {
  margin: 20px 0 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 1.03rem;
  line-height: 1.75;
}

.problem-section {
  position: relative;
}

.problem-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.problem-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list span,
.technical-list span,
.steps span {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.problem-list h3,
.platform-features h3,
.package-card h3,
.steps h3,
.white-label-panel h3,
.technical-list h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.problem-list p,
.platform-features p,
.package-card p,
.steps p,
.white-label-panel p,
.technical-list p {
  margin: 8px 0 0;
  color: rgba(245, 245, 245, 0.62);
  line-height: 1.68;
}

.platform-section,
.technical-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(212, 175, 55, 0.09), transparent 24rem),
    linear-gradient(180deg, rgba(15, 43, 36, 0.72), rgba(7, 19, 15, 0.92));
}

.platform-layout,
.technical-layout {
  display: grid;
  gap: 54px;
}

.platform-features {
  display: grid;
  gap: 16px;
}

.platform-features article,
.package-card,
.steps article,
.white-label-panel article,
.technical-list article {
  border: 1px solid var(--line-green);
  border-radius: var(--radius-md);
  background: rgba(245, 245, 245, 0.045);
}

.platform-features article {
  padding: 22px;
}

.packages-section {
  position: relative;
}

.package-row {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.package-card {
  min-height: 220px;
  padding: 24px;
}

.package-card.growth,
.package-card.white {
  border-color: rgba(242, 209, 138, 0.3);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(245, 245, 245, 0.04)),
    rgba(245, 245, 245, 0.045);
}

.package-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.comparison-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid rgba(242, 209, 138, 0.18);
  border-radius: var(--radius-md);
  background: rgba(5, 15, 12, 0.62);
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(242, 209, 138, 0.12);
}

.comparison-table thead th {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--paper);
  font-weight: 850;
}

.comparison-table td {
  color: rgba(245, 245, 245, 0.62);
  font-weight: 750;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(242, 209, 138, 0.04), rgba(31, 77, 61, 0.18)),
    var(--charcoal);
}

.process-layout {
  display: grid;
  gap: 42px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(242, 209, 138, 0.28);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
}

.white-label-section {
  display: grid;
  gap: 42px;
}

.white-label-copy {
  max-width: 660px;
}

.white-label-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(242, 209, 138, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 209, 138, 0.13), transparent 18rem),
    rgba(15, 43, 36, 0.5);
}

.white-label-panel article {
  padding: 22px;
  background: rgba(5, 15, 12, 0.36);
}

.technical-layout {
  grid-template-columns: 1fr;
}

.technical-list {
  display: grid;
  gap: 12px;
}

.technical-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(5, 15, 12, 0.36);
}

.final-cta {
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 68px 28px;
  border: 1px solid rgba(242, 209, 138, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 209, 138, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(15, 43, 36, 0.98), rgba(5, 15, 12, 0.98));
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.final-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid rgba(242, 209, 138, 0.12);
  background: rgba(5, 15, 12, 0.72);
}

.footer-inner {
  display: grid;
  gap: 14px;
  padding: 30px 0;
  color: rgba(245, 245, 245, 0.62);
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:last-child {
  width: max-content;
  color: var(--gold-soft);
  font-weight: 850;
}

@media (min-width: 720px) {
  .page-shell {
    width: min(var(--page-max), calc(100% - 56px));
  }

  .package-row,
  .steps,
  .white-label-panel,
  .technical-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

@media (min-width: 940px) {
  .nav-links,
  .nav-cta {
    display: inline-flex;
  }

  .platform-layout,
  .technical-layout,
  .process-layout,
  .white-label-section {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .platform-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-features article:first-child,
  .platform-features article:nth-child(2) {
    min-height: 176px;
  }

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

@media (min-width: 1120px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .product-stage {
    min-height: 720px;
  }

  .ops-window {
    right: 0;
    bottom: 128px;
  }

  .guest-phone {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-capabilities {
    justify-content: flex-start;
  }

  .product-stage {
    display: grid;
    gap: 24px;
    min-height: 0;
    margin-top: 54px;
  }

  .product-stage::before {
    display: none;
  }

  .ops-window,
  .guest-phone {
    position: relative;
    inset: auto;
    transform: none;
  }

  .ops-window {
    min-height: 0;
  }

  .guest-phone {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .ops-body {
    grid-template-columns: 1fr;
  }

  .ops-sidebar {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 209, 138, 0.13);
  }

  .ops-logo {
    flex: 0 0 42px;
    margin-bottom: 0;
  }

  .ops-sidebar span:not(.ops-logo) {
    flex: 0 0 auto;
  }

  .ops-summary {
    grid-template-columns: 1fr;
  }

  .queue-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading h2,
  .white-label-copy h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .problem-list article,
  .technical-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .final-cta {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .ops-main {
    padding: 16px;
  }

  .guest-phone {
    width: min(260px, calc(100vw - 46px));
  }

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