:root {
  --bg: #06101f;
  --bg-2: #0b1f35;
  --surface: #10243a;
  --surface-2: #172d45;
  --surface-soft: rgba(255, 255, 255, 0.07);
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #a7b0c0;
  --muted-2: #7f8aa0;
  --teal: #2dd4bf;
  --teal-dark: #14b8a6;
  --emerald: #10b981;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --indigo: #6366f1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius-card: 8px;
  --radius-control: 12px;
  --radius-pill: 999px;
  --shell: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(45, 212, 191, 0.2), transparent 32rem),
    radial-gradient(circle at 92% 12%, rgba(59, 130, 246, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #071626 46%, #f7faf9 46%, #f7faf9 100%);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--teal);
  color: #04111e;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 16, 31, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--white);
}

.brand img {
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px rgba(45, 212, 191, 0.18);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 8px;
  color: #03131c;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.24);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  color: #03131c;
  background: #5eead4;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  padding: 132px 0 22px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(6, 16, 31, 0.55), rgba(7, 25, 42, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

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

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  animation: pulse 2s infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 850;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: #c6cedb;
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 850;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #03131c;
  background: linear-gradient(135deg, #5eead4, var(--teal));
  box-shadow: 0 18px 40px rgba(45, 212, 191, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(45, 212, 191, 0.32);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #b8c2d2;
  font-size: 13px;
  font-weight: 700;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
}

.hero-visual {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stack {
  position: relative;
  width: min(100%, 530px);
  height: 650px;
}

.phone {
  position: absolute;
  margin: 0;
  width: 300px;
  aspect-ratio: 9 / 18.7;
  border: 10px solid #030913;
  border-radius: 34px;
  overflow: hidden;
  background: #071626;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  right: 32px;
  top: 0;
  transform: rotate(3deg);
  z-index: 2;
  animation: floatMain 7s ease-in-out infinite;
}

.phone-back {
  left: 0;
  top: 90px;
  transform: rotate(-7deg) scale(0.86);
  opacity: 0.76;
  z-index: 1;
  filter: saturate(0.94);
  animation: floatBack 8s ease-in-out infinite;
}

.floating-panel {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  background: rgba(8, 23, 38, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.revenue-panel {
  left: 20px;
  bottom: 92px;
  width: 178px;
  padding: 14px;
}

.panel-label,
.panel-note {
  display: block;
  color: #aeb9ca;
  font-size: 12px;
  font-weight: 750;
}

.revenue-panel strong {
  display: block;
  margin: 3px 0;
  color: var(--white);
  font-size: 27px;
  line-height: 1.1;
}

.status-panel {
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: #052016;
  background: var(--emerald);
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(24px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--line);
}

.hero-bottom span {
  padding: 18px 14px;
  text-align: center;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(74px, 9vw, 128px) 0;
}

.product-section,
.tenant-section,
.feature-section,
.faq-section {
  color: #0f172a;
  background: #f7faf9;
}

.split-section,
.how-section,
.waitlist-section {
  color: var(--text);
  background: linear-gradient(180deg, #071626 0%, #06101f 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p:not(.kicker),
.split-copy p,
.waitlist-copy p,
.faq-intro p {
  color: #5f6b7a;
  font-size: 18px;
}

.split-section .split-copy p,
.how-section .section-heading p:not(.kicker),
.waitlist-copy p {
  color: #b6c0cf;
}

.workflow-grid,
.tenant-grid,
.feature-grid,
.steps {
  display: grid;
  gap: 16px;
}

.workflow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-card,
.tenant-card,
.feature-card,
.step {
  border: 1px solid #dce5e8;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.workflow-card {
  padding: 28px;
  min-height: 270px;
}

.workflow-card p,
.tenant-card p,
.feature-card p,
.step p {
  margin-bottom: 0;
  color: #637083;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: var(--radius-card);
  background: #e6fffb;
  color: var(--teal-dark);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.split-copy {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #d9e2ef;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #0b1f35;
}

.dashboard-preview {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    #0b1f35;
  box-shadow: var(--shadow);
}

.preview-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
}

.preview-header span {
  display: block;
  color: #95a3b8;
  font-size: 14px;
}

.preview-header strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.preview-header img {
  border-radius: var(--radius-card);
}

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

.mini-stat {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-card);
  background: rgba(45, 212, 191, 0.11);
}

.mini-stat.emerald {
  border-color: rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.1);
}

.mini-stat.green {
  border-color: rgba(94, 234, 212, 0.24);
  background: rgba(94, 234, 212, 0.08);
}

.mini-stat.amber {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.1);
}

.mini-stat span,
.action-list small {
  display: block;
  color: #a8b4c6;
  font-size: 13px;
  font-weight: 750;
}

.mini-stat strong {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  line-height: 1;
}

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

.action-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.055);
}

.action-list strong,
.action-list small {
  grid-column: 2;
}

.action-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-card);
  background: rgba(45, 212, 191, 0.16);
}

.action-icon.green {
  background: rgba(16, 185, 129, 0.16);
}

.action-icon.amber {
  background: rgba(245, 158, 11, 0.18);
}

.tenant-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tenant-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.tenant-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  border-radius: var(--radius-card);
  color: #06302e;
  background: #ccfbf1;
  font-weight: 900;
}

.feature-marquee {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 22px;
  scrollbar-width: none;
}

.feature-marquee::-webkit-scrollbar {
  display: none;
}

.feature-marquee span {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid #dce5e8;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #314055;
  font-size: 13px;
  font-weight: 800;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 24px;
}

.how-section {
  position: relative;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  padding: 28px;
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #04111e;
  background: var(--teal);
  font-weight: 900;
}

.step p {
  color: #b5c0cf;
}

.waitlist-section {
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.16), transparent 26rem),
    rgba(255, 255, 255, 0.055);
}

.waitlist-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.075);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: #d8e2ee;
  font-size: 13px;
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--white);
  background: rgba(4, 13, 24, 0.64);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.waitlist-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}

.waitlist-form input::placeholder {
  color: #7d8898;
}

.form-note {
  margin: 12px 0 0;
  color: #9facbd;
  font-size: 13px;
}

.form-note.is-success {
  color: #8ff5df;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

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

.faq-item {
  border: 1px solid #dce5e8;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #637083;
}

.footer {
  padding: 28px 0;
  color: #c7d0dd;
  background: #06101f;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: #9facbd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  color: #9facbd;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(45, 212, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes floatBack {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg) scale(0.86);
  }
  50% {
    transform: translateY(12px) rotate(-6deg) scale(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 570px;
  }

  .phone-stack {
    width: min(100%, 560px);
    height: 570px;
  }

  .phone-main {
    right: 42px;
  }

  .workflow-grid,
  .tenant-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 15% 0%, rgba(45, 212, 191, 0.18), transparent 26rem),
      linear-gradient(180deg, var(--bg) 0%, #071626 38%, #f7faf9 38%, #f7faf9 100%);
  }

  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 66px 14px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(6, 16, 31, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .trust-row span {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 20px;
  }

  .phone-stack {
    height: 500px;
  }

  .phone {
    width: min(70vw, 260px);
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-main {
    right: 10px;
  }

  .phone-back {
    left: 2px;
    top: 82px;
  }

  .revenue-panel {
    left: 0;
    bottom: 80px;
    width: 156px;
  }

  .status-panel {
    right: 4px;
    bottom: 24px;
  }

  .hero-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid,
  .tenant-grid,
  .feature-grid,
  .steps,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card,
  .tenant-card,
  .feature-card,
  .step {
    min-height: auto;
    padding: 22px;
  }

  .icon-box,
  .card-number,
  .step span {
    margin-bottom: 24px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-grid {
    padding: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 455px;
  }

  .phone-stack {
    height: 455px;
  }

  .phone {
    width: 226px;
  }

  .phone-main {
    right: -6px;
  }

  .phone-back {
    left: -12px;
  }

  .floating-panel {
    display: none;
  }
}
