* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0F;
  --bg-elev: #12121C;
  --surface: #1B1B2B;
  --surface-2: #242438;
  --brand: #7C3AED;
  --brand-light: #A78BFA;
  --accent: #3B82F6;
  --text: #F5F5FA;
  --text-dim: #A0A0B8;
  --text-muted: #6B6B80;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Background glow blobs ------------------------------------------------- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: #7C3AED;
  top: -150px;
  right: -100px;
}
.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: #3B82F6;
  bottom: -100px;
  left: -100px;
  opacity: 0.25;
}

main, nav, footer { position: relative; z-index: 1; }

/* Nav ------------------------------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-cta {
  padding: 10px 18px;
  background: var(--brand);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
.nav-cta:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
}

/* Hero ------------------------------------------------------------------ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 140px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--brand-light);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #A78BFA;
  border-radius: 50%;
  box-shadow: 0 0 8px #A78BFA;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-accent {
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
  transition: all 0.2s;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.5);
}
.cta-secondary {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.cta-secondary:hover { color: var(--brand-light); }
.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-cities span { text-transform: uppercase; }
.hero-cities span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--text-muted);
}

/* Phone mockup ---------------------------------------------------------- */
.hero-right { display: flex; justify-content: center; }

/* Real-screenshot phone frame */
.phone-real {
  display: inline-block;
  padding: 10px;
  background: linear-gradient(180deg, #1a1a28, #0a0a12);
  border-radius: 44px;
  box-shadow:
    0 40px 100px rgba(124, 58, 237, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  line-height: 0;
  max-width: 300px;
}
.phone-real img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 34px;
}

/* Hero 3-phone cluster */
.phone-cluster {
  position: relative;
  width: 440px;
  height: 640px;
  margin: 0 auto;
}
.phone-cluster .phone-real {
  position: absolute;
  width: 260px;
  max-width: 260px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.phone-front {
  z-index: 3;
  top: 0;
  left: 50%;
  margin-left: -130px;
}
.phone-back-left {
  z-index: 1;
  top: 60px;
  left: 50%;
  margin-left: -280px;
  transform: rotate(-12deg) scale(0.85);
  opacity: 0.72;
  filter: blur(0.3px);
}
.phone-back-right {
  z-index: 1;
  top: 60px;
  left: 50%;
  margin-left: 20px;
  transform: rotate(12deg) scale(0.85);
  opacity: 0.72;
  filter: blur(0.3px);
}
.phone-cluster:hover .phone-back-left {
  transform: rotate(-14deg) scale(0.87) translateY(-8px);
  opacity: 0.85;
}
.phone-cluster:hover .phone-back-right {
  transform: rotate(14deg) scale(0.87) translateY(-8px);
  opacity: 0.85;
}
.phone-cluster:hover .phone-front {
  transform: translateY(-4px);
}

/* Trust strip ----------------------------------------------------------- */
.trust-strip {
  padding: 40px 24px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-item strong {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}
.trust-item span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Cities ---------------------------------------------------------------- */
.cities {
  padding: 70px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cities-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.cities-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.city {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.city:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}
.city-flag { font-size: 18px; }
.cities-note {
  color: var(--text-muted);
  font-size: 14px;
}

/* FAQ ------------------------------------------------------------------- */
.faq {
  padding: 100px 24px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: rgba(124, 58, 237, 0.35); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--brand-light);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-body {
  padding: 0 24px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}
.faq-body strong { color: var(--text); }

/* Founder note ---------------------------------------------------------- */
.founder {
  padding: 100px 24px;
}
.founder-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-quote {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  quotes: '"' '"';
  font-style: italic;
}
.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-name {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}
.founder-role {
  color: var(--text-muted);
  font-size: 13px;
}

.phone {
  width: 300px;
  height: 620px;
  background: linear-gradient(180deg, #1a1a28, #0a0a12);
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 40px 100px rgba(124, 58, 237, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A0A0F, #151525);
  border-radius: 32px;
  padding: 54px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  padding: 0 8px;
  margin-bottom: 4px;
  font-weight: 500;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px 12px;
  border-bottom: 1px solid var(--border);
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.header-title { flex: 1; min-width: 0; }
.header-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-sub {
  font-size: 10px;
  color: var(--text-muted);
}
.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.msg {
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  max-width: 82%;
  line-height: 1.4;
  position: relative;
}
.msg-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 2px;
}
.msg-their {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-mine {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.activity-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  margin: 4px 0;
  border: 1px solid var(--border);
}
.activity-img {
  height: 70px;
  background: linear-gradient(135deg, #10B981, #3B82F6);
  position: relative;
}
.activity-img::after {
  content: '⛰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
}
.activity-body { padding: 8px 12px; }
.activity-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.activity-meta {
  font-size: 10px;
  color: var(--text-muted);
}
.typing {
  display: flex;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Features -------------------------------------------------------------- */
.features {
  padding: 100px 24px;
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-dim);
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 36px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.feature p {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 15px;
}

/* Gallery --------------------------------------------------------------- */
.gallery {
  padding: 100px 24px 60px;
}
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: start;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.gallery-item .phone-real {
  max-width: 200px;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.gallery-item:nth-child(odd) .phone-real {
  transform: rotate(-2.5deg);
}
.gallery-item:nth-child(even) .phone-real {
  transform: rotate(2.5deg) translateY(24px);
}
.gallery-item:hover .phone-real {
  transform: rotate(0deg) translateY(-10px) scale(1.03);
  z-index: 5;
}
.gallery-caption {
  text-align: center;
}
.gallery-step {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.gallery-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Stats ----------------------------------------------------------------- */
.stats {
  padding: 80px 24px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stat-label {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}

/* Waitlist -------------------------------------------------------------- */
.waitlist {
  padding: 120px 24px;
  position: relative;
}
.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
}
.waitlist h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.waitlist-inner > p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 32px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 15px 20px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus { border-color: var(--brand); }
.waitlist-form button {
  padding: 15px 26px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}
.waitlist-form button:disabled {
  background: #10B981;
  cursor: default;
}
.waitlist-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Footer ---------------------------------------------------------------- */
footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(135deg, #A78BFA, #60A5FA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Legal pages ----------------------------------------------------------- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.legal-page h1 {
  font-size: 44px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.legal-page .updated {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 14px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 40px 0 16px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.legal-page p, .legal-page li {
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}
.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--brand-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page strong { color: var(--text); }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .phone-cluster { width: 380px; }
  .phone-cluster .phone-real { width: 220px; max-width: 220px; }
  .phone-front { margin-left: -110px; }
  .phone-back-left { margin-left: -240px; }
  .phone-back-right { margin-left: 20px; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 64px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-cities { justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .gallery-item:nth-child(5) { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .waitlist-inner { padding: 48px 24px; }
  .waitlist-form { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .bg-glow { opacity: 0.2; }
  .phone-cluster { width: 320px; height: 560px; }
  .phone-cluster .phone-real { width: 200px; max-width: 200px; }
  .phone-front { margin-left: -100px; }
  .phone-back-left { margin-left: -210px; top: 40px; }
  .phone-back-right { margin-left: 10px; top: 40px; }
}

@media (max-width: 600px) {
  .trust-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(5) { grid-column: auto; }
  .gallery-item:nth-child(odd) .phone-real,
  .gallery-item:nth-child(even) .phone-real { transform: none; }
  .founder-quote { font-size: 18px; }
}

@media (max-width: 500px) {
  .phone { width: 260px; height: 540px; }
  .hero h1 { font-size: 40px; }
  .phone-cluster { width: 100%; height: 500px; }
  .phone-cluster .phone-real { width: 180px; max-width: 180px; }
  .phone-front { margin-left: -90px; }
  .phone-back-left { margin-left: -180px; }
  .phone-back-right { margin-left: 0; }
}
