:root {
  --bg: #dddcc8;
  --bg-deep: #d1d1bc;
  --surface: #f7f3ea;
  --surface-soft: #ede8db;
  --line: #cbc3b1;
  --text: #211b15;
  --muted: #6e6256;
  --accent: #ee7a2f;
  --accent-deep: #d96519;
  --accent-soft: #ffe2cf;
  --shadow: 0 22px 50px rgba(58, 40, 21, 0.08);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1140px;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(243, 238, 220, 0.72), transparent 28%),
    linear-gradient(180deg, #e3e0cb 0%, var(--bg) 42%, #d6d4c0 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
.carousel-dot:focus-visible {
  outline: 2px solid rgba(238, 122, 47, 0.5);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(221, 220, 200, 0.9);
  border-bottom: 1px solid rgba(203, 195, 177, 0.72);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .container {
  min-height: 76px;
  justify-content: flex-start;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.brand-text {
  font-size: 1.12rem;
  line-height: 1;
}

.site-header nav {
  display: none;
}

.button-header-waitlist {
  display: none;
}

.desktop-floating-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 1rem;
  right: max(1.2rem, calc((100vw - 1140px) / 2 + 1.2rem));
  z-index: 30;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  width: auto;
  max-width: none;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(238, 122, 47, 0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.desktop-waitlist-visible .desktop-floating-waitlist {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-link,
.footer-link,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.main-content {
  flex: 1;
}

.hero {
  padding: 2.5rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.78);
  border: 1px solid rgba(221, 208, 191, 0.7);
  color: var(--muted);
  font-size: 0.94rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.25rem, 5.1vw, 4rem);
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.2rem);
}

h3 {
  font-size: 1.02rem;
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.button,
.button-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff7f1;
  box-shadow: 0 16px 28px rgba(238, 122, 47, 0.24);
}

.button:hover,
.button:focus-visible {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.button-muted {
  background: rgba(255, 251, 245, 0.85);
  color: var(--muted);
  border: 1px solid rgba(221, 208, 191, 0.9);
}

.button-muted:hover,
.button-muted:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.supporting-copy {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: unset;
}

.hero-stage {
  max-width: 430px;
  margin: 0 auto;
  padding: 0;
}

.phone-frame {
  width: min(100%, 280px);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.phone-frame img,
.phone-screen {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 30px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: 0 16px 28px rgba(63, 46, 29, 0.09);
}

.phone-screen {
  aspect-ratio: 9 / 19.5;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  color: var(--text);
}

.phone-screen .mock-title {
  font-weight: 700;
  font-size: 1.15rem;
}

.phone-screen .mock-bar {
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.85);
  border: 1px solid rgba(213, 199, 182, 0.72);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.mock-grid span,
.mock-card {
  background: rgba(255, 251, 246, 0.85);
  border: 1px solid rgba(213, 199, 182, 0.72);
  border-radius: 18px;
}

.mock-card {
  min-height: 7rem;
}

.mock-grid span {
  min-height: 82px;
  padding: 0.8rem;
}

.mock-grid strong {
  display: block;
  font-size: 1.1rem;
}

.mock-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.mock-calendar span {
  min-height: 2.3rem;
  border-radius: 12px;
  background: rgba(255, 251, 246, 0.85);
  border: 1px solid rgba(213, 199, 182, 0.72);
}

.mock-calendar span.active {
  background: rgba(238, 122, 47, 0.22);
  border-color: rgba(238, 122, 47, 0.5);
}

.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0 0;
  perspective: 1400px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 14% 12% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 234, 0.96) 0%, rgba(255, 246, 234, 0) 72%);
  filter: blur(8px);
}

.hero-phone {
  margin: 0;
  position: relative;
  z-index: 1;
}

.hero-showcase .phone-frame {
  width: 320px;
}

.hero-showcase .phone-frame img {
  width: min(100%, 286px);
  height: auto;
  max-height: none;
  box-shadow: 0 26px 44px rgba(73, 60, 42, 0.12);
}

.hero-phone-single {
  transform: translateX(-24px) translateY(8px) rotate(-10deg) rotateY(-22deg);
  transform-style: preserve-3d;
}

.hero-phone-single::before,
.hero-phone-single::after {
  content: "";
  position: absolute;
  border-radius: 34px;
  pointer-events: none;
}

.hero-phone-single::before {
  inset: 5% 4% 4% 16%;
  background: rgba(247, 243, 234, 0.5);
  border: 1px solid rgba(203, 195, 177, 0.45);
  transform: translate3d(18px, 14px, -1px);
  z-index: -1;
}

.hero-phone-single::after {
  inset: 18% 8% -6% 18%;
  background: radial-gradient(circle at 50% 40%, rgba(73, 60, 42, 0.16), rgba(73, 60, 42, 0));
  filter: blur(18px);
  transform: translate3d(24px, 18px, -2px);
  z-index: -2;
}

.hero-shot-copy {
  margin-top: 0.8rem;
  text-align: center;
}

.hero-shot-copy strong {
  display: block;
  font-size: 1rem;
}

.hero-shot-copy p {
  margin: 0.35rem auto 0;
  max-width: 18rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 2.35rem 0;
}

.section-shell,
.callout,
.legal-card,
.support-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.8);
  border: 1px solid rgba(221, 208, 191, 0.82);
  box-shadow: var(--shadow);
}

.section-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.section-intro p,
.support-card p,
.legal-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-intro-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.preview-intro {
  max-width: 58rem;
  margin-top: 2.1rem;
  margin-bottom: 2.65rem;
}

.focus-grid {
  display: grid;
  gap: 1.35rem;
  margin: 0 auto 5.4rem;
  max-width: 1040px;
}

.focus-card {
  min-height: 10rem;
  padding: 1.15rem 1rem 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.78) 0%, rgba(248, 241, 231, 0.58) 100%);
  border: 1px solid rgba(214, 203, 184, 0.68);
  box-shadow: 0 12px 24px rgba(88, 73, 52, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
}

.focus-card h3 {
  font-size: 1.24rem;
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: none;
}

.focus-card h3 span {
  display: block;
}

.focus-icon {
  width: 3.7rem;
  height: 3.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-radius: 999px;
  background: rgba(238, 122, 47, 0.08);
  box-shadow: inset 0 0 0 1px rgba(238, 122, 47, 0.12);
}

.focus-icon svg {
  width: 2.1rem;
  height: 2.1rem;
}

.focus-money-symbol {
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 700;
}

.preview-heading {
  max-width: 56rem;
  margin-bottom: 2.4rem;
  position: relative;
  padding-top: 2.2rem;
}

.preview-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72rem, calc(100% - 4rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(203, 195, 177, 0) 0%, rgba(203, 195, 177, 0.92) 14%, rgba(238, 122, 47, 0.36) 50%, rgba(203, 195, 177, 0.92) 86%, rgba(203, 195, 177, 0) 100%);
}

.preview-heading p {
  max-width: 35rem;
  margin: 0.95rem auto 0;
}

.preview-copy {
  max-width: 22.5rem;
  margin-bottom: 0;
  position: relative;
  padding-left: 1.6rem;
}

.preview-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 8.25rem;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(203, 195, 177, 0) 0%, rgba(203, 195, 177, 0.94) 22%, rgba(238, 122, 47, 0.34) 50%, rgba(203, 195, 177, 0.94) 78%, rgba(203, 195, 177, 0) 100%);
}

.preview-detail {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.preview-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.95rem;
}

.preview-kicker,
.preview-count {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.preview-kicker {
  color: var(--accent);
  font-weight: 700;
}

.preview-detail h3 {
  font-size: 1.82rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16rem;
}

.preview-detail p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 19.5rem;
}

.feature-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.detail-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(248, 241, 231, 0.8);
  border: 1px solid rgba(221, 208, 191, 0.82);
}

.feature-card p,
.detail-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.carousel {
  max-width: 486px;
  margin: 0;
  padding: 0;
}

.carousel-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.94);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(calc(-50% - 1px));
  background: rgba(248, 241, 231, 0.96);
}

.carousel-stage {
  position: relative;
  max-width: 486px;
  margin: 0;
  padding: 0 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-button-prev {
  left: 0;
}

.carousel-button-next {
  right: 0;
}

.carousel-viewport {
  width: 100%;
  min-height: 37rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: relative;
  width: 100%;
  min-height: 37rem;
}

.preview-card {
  display: none;
  padding: 0.35rem 0;
  text-align: center;
}

.preview-card.is-active {
  display: block;
}

.preview-card .phone-frame {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  position: relative;
  isolation: isolate;
}

.preview-card .phone-frame::before {
  content: "";
  position: absolute;
  inset: 8% -18% 10% -22%;
  background: radial-gradient(circle at 50% 48%, rgba(247, 243, 234, 0.94) 0%, rgba(226, 223, 203, 0.76) 38%, rgba(221, 220, 200, 0) 72%);
  filter: blur(22px);
  z-index: 0;
}

.preview-card .phone-frame img {
  width: min(100%, 338px);
  height: auto;
  max-height: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 44px rgba(73, 60, 42, 0.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(221, 208, 191, 0.9);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.two-column {
  display: grid;
  gap: 1rem;
}

.callout {
  padding: 1.5rem;
}

.callout p {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(248, 241, 231, 0.86);
  border: 1px solid rgba(221, 208, 191, 0.82);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-size: 0.98rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 17, 0.28);
  backdrop-filter: blur(10px);
}

.waitlist-dialog {
  position: relative;
  width: min(calc(100% - 2rem), 440px);
  margin: 8vh auto 0;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid rgba(221, 208, 191, 0.9);
  box-shadow: 0 28px 60px rgba(40, 30, 18, 0.16);
}

.waitlist-dialog h2 {
  font-size: 1.5rem;
}

.waitlist-copy,
.waitlist-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.waitlist-copy {
  margin: 0.7rem 0 0;
}

.waitlist-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(221, 208, 191, 0.9);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.95);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.waitlist-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(221, 208, 191, 0.95);
  border-radius: 16px;
  background: rgba(250, 244, 236, 0.7);
  color: var(--text);
  font: inherit;
}

.field input:focus {
  outline: 2px solid rgba(238, 122, 47, 0.25);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-phone-single,
  .desktop-floating-waitlist,
  .button,
  .button-muted,
  .carousel-button {
    transform: none !important;
  }
}

.waitlist-submit {
  width: 100%;
  margin-top: 0.2rem;
}

.waitlist-status {
  min-height: 1.4rem;
  margin: -0.1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.waitlist-status[data-state="success"] {
  color: #4e6e2f;
}

.waitlist-status[data-state="error"] {
  color: #b14d2f;
}

.waitlist-note {
  margin: 0.1rem 0 0;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  padding: 3.25rem 0 1.5rem;
}

.page-hero p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-card,
.support-card {
  padding: 1.65rem;
}

.legal-card + .legal-card,
.support-card + .support-card {
  margin-top: 1rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.75rem;
}

.legal-section {
  margin-top: 1.8rem;
}

.legal-section h2 {
  font-size: 1.2rem;
}

.legal-section ul,
.support-card ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.legal-section li,
.support-card li {
  margin: 0.45rem 0;
}

.contact-box {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(248, 241, 231, 0.9);
  border: 1px solid rgba(221, 208, 191, 0.82);
}

.small-note {
  font-size: 0.93rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .hero-grid,
  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 470px;
  }

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

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

  .focus-grid {
    grid-template-columns: repeat(4, minmax(0, 220px));
    justify-content: center;
  }

  .preview-layout {
    display: grid;
    grid-template-columns: minmax(0, 548px) minmax(320px, 420px);
    max-width: min(1140px, calc(100vw - 5.5rem));
    margin: 0 auto;
    gap: clamp(3.2rem, 5vw, 5.4rem);
    align-items: center;
    justify-content: center;
    padding: 1.85rem 2.5rem;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.34) 0%, rgba(248, 241, 231, 0.16) 100%);
    border: 1px solid rgba(214, 203, 184, 0.44);
    box-shadow: 0 16px 36px rgba(88, 73, 52, 0.03);
  }

  .preview-layout .carousel {
    max-width: 548px;
  }

  .preview-layout .carousel-stage {
    max-width: 548px;
  }

  .preview-copy {
    min-height: 37rem;
    max-width: 25rem;
    display: flex;
    align-items: center;
  }

}

@media (max-width: 759px) {
  .site-header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 0;
  }

  .site-header .container {
    min-height: unset;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 0;
  }

  .brand {
    gap: 0.58rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 0;
    transform: none;
  }

  .brand-text {
    font-size: 1rem;
    white-space: nowrap;
  }

  .button-header-waitlist {
    display: inline-flex;
    position: static;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.68rem 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(238, 122, 47, 0.18);
    white-space: nowrap;
  }

  .desktop-floating-waitlist {
    display: none !important;
  }

  .hero {
    padding-top: 1.1rem;
    padding-bottom: 2rem;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    max-width: 11.5ch;
  }

  .lead {
    max-width: 28rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-stage {
    max-width: 244px;
  }

  .hero-showcase .phone-frame {
    width: 220px;
  }

  .hero-showcase .phone-frame img {
    width: min(100%, 214px);
    height: auto;
    max-height: none;
  }

  .hero-phone-single {
    transform: translateX(0) translateY(0);
  }

  .hero-phone-single::before {
    inset: 6% 2% 4% 10%;
    transform: translate3d(10px, 10px, -1px);
  }

  .hero-phone-single::after {
    inset: 18% 8% -6% 14%;
    transform: translate3d(14px, 14px, -2px);
  }

  .section-shell,
  .callout,
  .legal-card,
  .support-card {
    padding: 1.35rem;
  }

  .carousel {
    width: 100%;
    padding: 0;
  }

  .carousel-stage {
    max-width: 100%;
    padding: 0 1rem;
  }

  .carousel-button {
    width: 36px;
    height: 36px;
  }

  .preview-card .phone-frame {
    width: min(100%, 100%);
    min-height: 0;
    margin: 0 auto;
    padding: 0;
  }

  .preview-card .phone-frame img {
    width: min(100%, 264px);
    height: auto;
    max-height: none;
  }

  .carousel-viewport {
    min-height: 0;
  }

  .carousel-track,
  .preview-card {
    min-height: 0;
  }

  .preview-card {
    padding: 0;
  }

  .preview-card .phone-frame::before {
    inset: 10% -12% 6% -12%;
    filter: blur(16px);
  }

  .carousel-dots {
    margin-top: 0.3rem;
  }

  .preview-detail {
    min-height: 0;
    margin-top: 0.35rem;
    align-items: center;
    text-align: center;
  }

  .preview-copy {
    padding-left: 0;
  }

  .preview-copy::before {
    display: none;
  }

  .preview-meta {
    justify-content: center;
  }

  .preview-layout {
    padding: 0.55rem 0.8rem 0.75rem;
    border-radius: 26px;
  }

  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 3rem;
  }

  .focus-card {
    min-height: 7.7rem;
    padding: 1rem 0.8rem 0.9rem;
    gap: 0.65rem;
  }

  .focus-card h3 {
    font-size: 1.03rem;
    line-height: 0.96;
  }

  .focus-icon {
    width: 3rem;
    height: 3rem;
  }

  .focus-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .focus-money-symbol {
    font-size: 1.9rem;
  }

  .preview-heading {
    margin-bottom: 0.7rem;
    padding-top: 1rem;
  }

  .preview-heading p {
    margin-top: 0.7rem;
  }

  .preview-meta {
    margin-bottom: 0.6rem;
  }

  .preview-detail h3 {
    font-size: 1.48rem;
    max-width: 14rem;
  }

  .preview-detail p {
    margin-top: 0.6rem;
    font-size: 0.96rem;
  }

  .callout {
    padding: 1.05rem 1rem;
  }

  .callout h2 {
    font-size: 1.28rem;
  }

  .callout p {
    font-size: 0.91rem;
  }

  .waitlist-dialog {
    margin-top: 5vh;
    padding: 1.2rem;
  }
}

@media (min-width: 641px) {
  .button-header-waitlist {
    display: none !important;
  }
}
