/* ========================
   SENTH — Landing Page Styles v3
   CTO/CPO pass — app previews, city, urgency
   ======================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050507;
  --surface: #0a0a0f;
  --surface-2: #0e0e14;
  --border: #15151d;
  --border-hover: #222230;
  --muted: #3a3a48;
  --text: #e8e4dc;
  --dim: #8a8690;
  --gold: #d4a843;
  --gold2: #ecc566;
  --gold-dim: rgba(212, 168, 67, 0.08);
  --gold-border: rgba(212, 168, 67, 0.15);
  --warm: #c97c4c;
  --green: #5cb87a;
  --green-dim: rgba(92, 184, 122, 0.08);
  --green-border: rgba(92, 184, 122, 0.15);
  --red: #c44d4d;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold2); }

/* ========================
   Utility
   ======================== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--dim);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Eclipse logo */
.eclipse-logo {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.eclipse-logo .circle-light {
  position: absolute;
  top: 2px;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--text);
  animation: eclipsePulse 5s ease-in-out infinite;
}

.eclipse-logo .circle-dark {
  position: absolute;
  top: 7px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  animation: eclipsePulse 5s ease-in-out infinite reverse;
}

@keyframes eclipsePulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, 0); }
}

.hero-wordmark {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Launch badge */
.hero-launch-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  background: var(--gold-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: 17px;
  color: var(--dim);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
}

/* Waitlist form — stacked layout */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 460px;
}

.form-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--gold);
}

.waitlist-form input[type="email"].error {
  border-color: var(--red);
}

/* City selector */
.city-select {
  padding: 15px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%233a3a48' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  min-width: 140px;
}

.city-select:focus {
  border-color: var(--gold);
  color: var(--text);
}

.city-select option {
  background: var(--surface);
  color: var(--text);
}

.waitlist-form button {
  padding: 15px 24px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  width: 100%;
}

.waitlist-form button:hover { background: var(--gold2); }
.waitlist-form button:active { transform: scale(0.98); }
.waitlist-form button:disabled { opacity: 0.5; cursor: not-allowed; }

/* Urgency line */
.hero-urgency {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* Live counter */
.live-counter {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 400;
}

.live-counter span {
  color: var(--gold);
  font-weight: 600;
}

/* Success state */
.waitlist-success {
  display: none;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.waitlist-success.show { display: block; }

.waitlist-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.waitlist-success .position {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 20px;
  font-weight: 300;
}

.waitlist-success .referral-code {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--dim);
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}

.share-btn:hover {
  border-color: var(--gold-border);
  color: var(--text);
}

/* Duplicate / Error */
.waitlist-duplicate {
  display: none;
  font-size: 14px;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 400;
}
.waitlist-duplicate.show { display: block; }

.waitlist-error {
  display: none;
  font-size: 14px;
  color: var(--red);
  margin-top: 8px;
}
.waitlist-error.show { display: block; }

/* Proof stats */
.proof-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-stat { text-align: center; }

.proof-stat .value {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.proof-stat .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   APP PREVIEW — 3 Phone Screens
   ======================== */
.app-preview {
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.phones-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin-top: 48px;
  padding-bottom: 10px;
}

.preview-phone {
  flex-shrink: 0;
}

.preview-phone-frame {
  width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.phone-featured .preview-phone-frame {
  width: 270px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 168, 67, 0.08);
  transform: translateY(-12px);
}

.preview-phone-frame:hover {
  transform: translateY(-4px);
}

.phone-featured .preview-phone-frame:hover {
  transform: translateY(-16px);
}

.preview-notch {
  width: 80px;
  height: 16px;
  background: var(--surface);
  border-radius: 0 0 10px 10px;
  margin: -12px auto 10px;
}

.preview-screen {
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
}

.phone-featured .preview-screen {
  min-height: 420px;
}

.preview-label {
  margin-top: 16px;
  font-size: 13px;
  color: var(--dim);
  font-weight: 400;
}

/* --- Screen 1: Discover --- */
.screen-discover {
  background: var(--bg);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.discover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.discover-location {
  font-size: 11px;
  color: var(--dim);
}

.discover-time {
  font-size: 10px;
  color: var(--green);
  font-weight: 500;
}

.discover-photo {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a1520 0%, #12101a 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.discover-photo-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.9), transparent);
}

.discover-initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(212, 168, 67, 0.15));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.discover-info {
  text-align: left;
}

.discover-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.discover-intent {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
  padding: 4px 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  display: inline-block;
}

.discover-bio {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
  font-weight: 300;
}

.discover-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
}

.action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: default;
}

.action-pass {
  color: var(--dim);
}

.action-like {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

/* --- Screen 2: Chat --- */
.screen-chat {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.chat-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(212, 168, 67, 0.15));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.chat-header-info {
  text-align: left;
}

.chat-header-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.chat-header-countdown {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
}

.chat-messages {
  padding: 12px;
  flex: 1;
}

.msg {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 8px;
  max-width: 85%;
  line-height: 1.5;
}

.msg-them {
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}

.msg-you {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--gold-border);
  border-bottom-right-radius: 4px;
  margin-left: auto;
  color: var(--text);
}

.chat-date-card {
  margin: 0 12px 12px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(201, 124, 76, 0.06));
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.date-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.date-card-details {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 10px;
  font-weight: 300;
}

.date-card-btn {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- Screen 3: Vanish --- */
.screen-vanish {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}

.vanish-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.vanish-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.vanish-subtitle {
  font-size: 13px;
  color: var(--dim);
  font-weight: 300;
  margin-bottom: 24px;
}

.vanish-list {
  width: 100%;
  text-align: left;
}

.vanish-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--dim);
  font-weight: 300;
  border-bottom: 1px solid var(--border);
}

.vanish-item:last-child {
  border-bottom: none;
}

.vanish-check {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.vanish-footer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* ========================
   PROBLEMS
   ======================== */
.problems { text-align: center; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.problem-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.3s;
}

.problem-card:hover { border-color: var(--border-hover); }

.problem-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(196, 77, 77, 0.06);
  border: 1px solid rgba(196, 77, 77, 0.1);
  font-size: 16px;
  line-height: 1;
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.problem-card p {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ========================
   FEATURES
   ======================== */
.features { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--gold-border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ========================
   SAFETY
   ======================== */
.safety { text-align: center; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.safety-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 0.3s;
}

.safety-card:hover {
  border-color: var(--green-border);
}

.safety-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  line-height: 1;
}

.safety-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.safety-card p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ========================
   PRIVACY
   ======================== */
.privacy-section { text-align: center; }

.privacy-section .privacy-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  margin-bottom: 36px;
}

.privacy-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--dim);
  font-weight: 400;
  line-height: 1.4;
}

.privacy-check .check-icon {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 700;
}

/* ========================
   BOTTOM CTA
   ======================== */
.bottom-cta {
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.bottom-cta .section-title {
  max-width: 480px;
  margin: 0 auto 10px;
}

.bottom-cta .section-subtitle {
  margin: 0 auto 36px;
  text-align: center;
}

.bottom-cta .waitlist-form {
  margin: 0 auto 10px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--dim); }

.footer-social {
  display: flex;
  gap: 6px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.footer-social a:hover {
  border-color: var(--border-hover);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: var(--muted);
  transition: fill 0.2s;
}

.footer-social a:hover svg {
  fill: var(--dim);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .hero {
    min-height: auto;
    padding: 80px 20px 40px;
  }

  .form-row { flex-direction: column; }
  .city-select { min-width: 100%; }

  .proof-stats { gap: 24px; }

  .phones-showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .phone-featured .preview-phone-frame {
    transform: none;
    width: 260px;
  }

  .phone-featured .preview-phone-frame:hover {
    transform: translateY(-4px);
  }

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

  .problems-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .privacy-checks {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-phone-frame { width: 210px; }
  .phone-featured .preview-phone-frame { width: 240px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .preview-phone-frame { width: 220px; }
}
