/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --amber: #D97706;
  --amber-light: #FEF3C7;
  --cream: #F8F4F0;
  --cream-dark: #EDE8E3;
  --sage: #C7D9BD;
  --sage-light: #E8F0E3;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: rgba(27, 67, 50, 0.12);
  --shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 67, 50, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ===== NAV ===== */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 244, 240, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-texture {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 60%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--green-deep);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Art */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--green-deep);
  opacity: 0.1;
}
.art-ring-1 { width: 340px; height: 340px; }
.art-ring-2 { width: 260px; height: 260px; opacity: 0.2; border-color: var(--amber); }
.art-ring-3 { width: 180px; height: 180px; opacity: 0.15; }

.art-center {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: var(--cream);
  border: 3px solid var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.art-label {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--green-deep);
  background: var(--cream);
  padding: 6px 12px;
  border: 1.5px solid var(--green-deep);
  border-radius: 20px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: var(--shadow);
}
.art-label-tl { top: 30px; left: -10px; }
.art-label-tr { top: 30px; right: -10px; }
.art-label-bl { bottom: 30px; left: -10px; }
.art-label-br { bottom: 30px; right: -10px; }

/* ===== HOW IT WORKS ===== */
.hiw {
  padding: 100px 40px;
  background: var(--green-deep);
  color: var(--cream);
}

.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-header {
  text-align: center;
  margin-bottom: 72px;
}

.hiw-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.hiw-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 72px;
}

.hiw-step {
  padding: 32px 24px;
  border: 1px solid rgba(248, 244, 240, 0.15);
  border-radius: var(--radius);
  position: relative;
}

.hiw-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hiw-step-icon {
  margin-bottom: 16px;
}

.hiw-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.hiw-step-desc {
  font-size: 0.85rem;
  color: rgba(248, 244, 240, 0.65);
  line-height: 1.6;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  padding-top: 100px;
}

.hiw-connector::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(248, 244, 240, 0.2);
}

.hiw-big-stat {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(248, 244, 240, 0.15);
  border-radius: var(--radius);
  background: rgba(248, 244, 240, 0.05);
}

.hiw-big-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--amber);
  margin-right: 12px;
}

.hiw-big-label {
  font-size: 1.1rem;
  color: rgba(248, 244, 240, 0.7);
  font-weight: 400;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 40px;
  background: var(--white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.services-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.services-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.services-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  padding: 28px 24px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-deep);
}

.service-card-wide {
  grid-column: span 2;
}

.service-icon {
  margin-bottom: 16px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.services-note {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 24px;
  border-top: 1px solid var(--border);
}

/* ===== TRUST ===== */
.trust {
  padding: 100px 40px;
  background: var(--sage-light);
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.trust-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--green-deep);
  margin-bottom: 20px;
}

.trust-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.trust-check {
  width: 24px;
  height: 24px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-quote-block {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.trust-quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.4;
}

.trust-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.trust-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatar {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-deep);
}

.trust-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.trust-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-stat {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}

.trust-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.trust-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 40px;
  background: var(--green-deep);
  color: var(--cream);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.closing-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.25;
}

.closing-body {
  font-size: 0.95rem;
  color: rgba(248, 244, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 0.82rem;
  color: rgba(248, 244, 240, 0.5);
  font-style: italic;
}

.closing-badge {
  background: rgba(248, 244, 240, 0.1);
  border: 1px solid rgba(248, 244, 240, 0.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}

.badge-top {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 244, 240, 0.5);
  margin-bottom: 8px;
}

.badge-city {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.badge-sub {
  font-size: 0.85rem;
  color: rgba(248, 244, 240, 0.55);
  margin-bottom: 28px;
}

.badge-cta {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  background: var(--green-deep);
  border-top: 1px solid rgba(248, 244, 240, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

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

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--cream);
  font-size: 1rem;
}

.footer-mission {
  font-size: 0.85rem;
  color: rgba(248, 244, 240, 0.5);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 244, 240, 0.1);
  font-size: 0.75rem;
  color: rgba(248, 244, 240, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-art { width: 260px; height: 260px; }
  .art-ring-1 { width: 260px; height: 260px; }
  .art-ring-2 { width: 200px; height: 200px; }
  .art-ring-3 { width: 140px; height: 140px; }
  .art-label-tr { right: -5px; }
  .art-label-br { right: -5px; }

  .hiw-steps { grid-template-columns: 1fr; gap: 16px; }
  .hiw-connector { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }

  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 20px 80px; }
  .hiw, .services, .trust, .closing { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .trust-stats-row { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== WAITLIST SECTION ===== */
.waitlist-section {
  padding: 80px 40px;
  background: var(--sage-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.waitlist-inner {
  max-width: 800px;
  margin: 0 auto;
}

.waitlist-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}

.waitlist-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green-deep);
  margin-bottom: 12px;
  max-width: 600px;
}

.waitlist-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.waitlist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waitlist-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.waitlist-input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.waitlist-input:focus {
  border-color: var(--green-deep);
  background: var(--white);
}

.waitlist-services {
  margin-bottom: 28px;
}

.waitlist-services-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.waitlist-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.waitlist-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.waitlist-check-label input[type="checkbox"] {
  display: none;
}

.waitlist-check-text {
  padding: 7px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--cream);
  transition: all 0.15s;
  user-select: none;
  cursor: pointer;
}

.waitlist-check-label input[type="checkbox"]:checked + .waitlist-check-text {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

.waitlist-check-label:hover .waitlist-check-text {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.waitlist-check-label input[type="checkbox"]:checked + .waitlist-check-text {
  color: var(--cream);
}

.waitlist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--green-deep);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.waitlist-btn:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

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

.waitlist-btn-arrow {
  font-size: 1.1rem;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #F0F7F4;
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.waitlist-success-icon {
  width: 28px;
  height: 28px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.waitlist-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #B91C1C;
  font-size: 0.85rem;
}

/* Closing section waitlist button */
.closing-waitlist-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 24px;
  background: var(--amber);
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.closing-waitlist-btn:hover {
  background: #E78B00;
  transform: translateY(-1px);
}

/* ===== PWA INSTALL BANNER ===== */
#nl-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--green-deep);
  color: var(--cream);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 -4px 24px rgba(27,67,50,0.2);
  flex-wrap: wrap;
}

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

.nl-install-cta {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  min-height: 44px;
  min-width: 80px;
}

.nl-install-later {
  background: transparent;
  color: rgba(249,247,242,0.6);
  border: none;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  padding: 10px 8px;
  min-height: 44px;
}

/* ===== MOBILE HAMBURGER NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide desktop nav items on mobile */
.nav-become-pro { display: inline-flex; }

/* ===== MOBILE-FIRST RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-tagline { display: none; }
  .nav-become-pro { display: none; }
  .nav-open .nav-become-pro { display: inline-flex; }
  .nav-inner { flex-wrap: wrap; }

  /* Full-width CTAs */
  .closing-waitlist-btn, .closing-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Single column grids */
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .closing-inner { grid-template-columns: 1fr !important; gap: 40px; }
  .trust-stats-row { grid-template-columns: 1fr !important; }

  /* Padding adjustments */
  .hero { padding: 60px 20px 80px; }
  .hiw { padding: 72px 20px; }
  .closing { padding: 72px 20px; }
  .waitlist-section { padding: 60px 20px; }
  .waitlist-card { padding: 28px 20px; }
  .waitlist-fields { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav-logo-mark svg { width: 24px; height: 24px; }
  .nav-brand { font-size: 1rem; }
  .art-label { display: none; }
}

/* Touch targets: minimum 44px */
button, a, input, select, label[for], [role="button"] {
  min-height: 44px;
}

/* Ensure tap-friendly padding on interactive elements */
.nav-become-pro, .btn-primary, .btn-ghost, .filter-chip {
  padding-top: 10px;
  padding-bottom: 10px;
}