/**
 * COSMA QUIZ - Main Stylesheet
 */

:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --secondary: #3B82F6;
  --accent: #F472B6;
  --bg-dark: #0F0A1A;
  --bg-card: #1A1425;
  --bg-card-hover: #251D35;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --border-color: rgba(124, 58, 237, 0.3);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0F0A1A 0%, #1A1425 50%, #0F172A 100%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

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

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { color: var(--text-secondary); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.page-content {
  flex: 1;
  padding: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 250ms ease;
  width: 100%;
  min-height: 56px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.5);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}
.btn-outline:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--primary);
}

.btn-apple-pay, .btn-google-pay {
  background: white;
  color: black;
  font-weight: 700;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.input {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 150ms ease;
}
.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}
.input::placeholder { color: var(--text-muted); }

.progress-bar {
  height: 4px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
  transition: width 400ms ease;
}

.quiz-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.back-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
}
.back-btn:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.quiz-question {
  text-align: center;
  margin-bottom: 1.25rem;
}
.quiz-question h2 { margin-bottom: 0.5rem; }
.quiz-question .descriptor {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 150ms ease;
  text-align: left;
}
.answer-option:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
}
.answer-option.selected {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--primary);
}
.answer-option .emoji { font-size: 1.25rem; flex-shrink: 0; }
.answer-option .text { font-size: 0.95rem; color: var(--text-primary); }

.gender-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gender-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 150ms ease;
}
.gender-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
}
.gender-card.selected {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.gender-card .emoji { font-size: 3rem; }
.gender-card .label { font-weight: 500; color: var(--text-primary); }

.feedback-screen {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.feedback-screen.has-bg-image {
  background: transparent;
}
.feedback-screen .icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
.feedback-screen h2 { color: white; margin-bottom: 1rem; }
.feedback-screen p { color: rgba(255, 255, 255, 0.9); max-width: 300px; }
.feedback-screen .btn {
  margin-top: 2rem;
  background: white;
  color: var(--primary-dark);
}

.feedback-screen.has-bg-image .btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}
.loading-moon {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 2rem;
}
.loading-moon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pulse 2s ease-in-out infinite;
}
.loading-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-light);
}
.loading-bars {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loading-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loading-bar-item .label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 140px;
  text-align: left;
}
.loading-bar-item .bar {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.loading-bar-item .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-full);
  transition: width 50ms linear;
}
.loading-bar-item .percent {
  font-size: 0.875rem;
  color: var(--text-muted);
  width: 40px;
  text-align: right;
}

.popup-question-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 400px;
  display: none;
  justify-content: center;
  animation: fadeInUp 0.3s ease-out;
}

.popup-question-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.popup-question-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.popup-buttons {
  display: flex;
  gap: 0.75rem;
}

.popup-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
  background: #1a1a2e;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}
.countdown-left {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.countdown-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.3;
}
.countdown-timer {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f472b6;
  font-family: 'JetBrains Mono', monospace;
}
.countdown-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  min-height: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

.reveal-hero {
  text-align: center;
  margin-bottom: 2rem;
}
.reveal-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.reveal-soulmate-image {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
  border: 3px solid rgba(139, 92, 246, 0.4);
  position: relative;
}
.reveal-soulmate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.soulmate-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 10, 26, 0.25);
}
.lock-icon {
  font-size: 2.5rem;
}
@media (max-width: 400px) {
  .reveal-soulmate-image {
    width: 240px;
    height: 240px;
  }
}
.reveal-soulmate-image-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
  border: 3px solid rgba(139, 92, 246, 0.4);
  position: relative;
}
.reveal-soulmate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.feature-item .icon { font-size: 1.25rem; }
.feature-item .text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.payment-section { margin: 2rem 0; }
.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.guide-section, .trust-section, .reviews-section, .faq-section {
  margin: 2rem 0;
  padding: 1.5rem 0;
}
.guide-section h3, .trust-section h3, .reviews-section h3, .faq-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.guide-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.guide-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rating-display {
  text-align: center;
  margin-bottom: 1.5rem;
}
.rating-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.rating-stars { font-size: 1.5rem; margin: 0.5rem 0; }
.rating-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card-hover);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 600;
  color: var(--text-primary);
}
.review-stars { font-size: 0.875rem; }
.review-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  cursor: pointer;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 200ms ease;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 200ms ease;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  padding: 0 1.25rem 1rem;
  max-height: 200px;
}

.footer-legal {
  padding: 2rem 0;
  text-align: center;
}
.footer-legal p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

.success-page {
  text-align: center;
  padding: 2rem 0;
}
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.success-message {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.success-details {
  text-align: left;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.success-details h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.success-details ul {
  list-style: none;
  padding: 0;
}
.success-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.success-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

.trust-screen {
  text-align: center;
  padding: 1rem 0;
}
.trust-screen h2 { margin-bottom: 1.5rem; }
.reviews { margin-bottom: 1.5rem; }
.trust-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.media-logos {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.date-inputs {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.input-group { margin-bottom: 1.5rem; }

.fade-in {
  animation: fadeIn 300ms ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.text-center { text-align: center; }
.mb-lg { margin-bottom: 1.5rem; }

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.landing-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.landing-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 10, 26, 0.7), rgba(15, 10, 26, 0.95));
}

.landing-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 480px;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.trust-badge .icon {
  color: var(--primary-light);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-primary);
}

.landing-hero h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.landing-hero .subheadline {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-chip {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-primary);
}

.mini-review {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.mini-review .stars {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.mini-review .quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mini-review .author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.landing-cta {
  margin-bottom: 1.5rem;
}

.landing-cta .btn {
  width: 100%;
  max-width: 320px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.landing-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.landing-legal a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.landing-legal a:hover {
  color: var(--primary-light);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

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

/* ============================================
   MOBILE-FIRST RESPONSIVE STYLES
   ============================================ */

/* Small phones (< 375px) */
@media (max-width: 374px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }
  .landing-content { padding: 1.5rem 1rem; }
  .answer-option { padding: 0.75rem 0.875rem; }
  .gender-card { padding: 1.25rem 0.75rem; }
  .gender-card .emoji { font-size: 2.5rem; }
}

/* Default mobile (375px - 480px) - Base styles above */

/* Larger phones and small tablets (481px+) */
@media (min-width: 481px) {
  .container { max-width: 420px; }
  .landing-content { max-width: 420px; }
  h1 { font-size: 2rem; }
  .answer-option { padding: 1rem 1.25rem; }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .container { max-width: 480px; }
  .landing-content { max-width: 480px; padding: 2.5rem 2rem; }
  h1 { font-size: 2.25rem; }
  .quiz-question { margin-bottom: 1.5rem; }
  .answer-options { gap: 0.625rem; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .container { max-width: 520px; }
  .landing-content { max-width: 520px; }
}
