/* ============================================================
   BeloteScore Landing Page — Style
   ============================================================ */

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

:root {
  --bg-deep:        #14171c;
  --bg-mid:         #1e2129;
  --bg-card:        rgba(255, 255, 255, 0.07);
  --bg-card-hover:  rgba(255, 255, 255, 0.11);
  --border-glass:   rgba(255, 255, 255, 0.12);
  --accent:         #ff4a43;
  --accent-dim:     rgba(255, 74, 67, 0.18);
  --gold-start:     #f2bf59;
  --gold-end:       #e7a93d;
  --text-primary:   rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.60);
  --text-tertiary:  rgba(255, 255, 255, 0.35);
  --font-main:      -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  --blur:           blur(20px);
  --radius-card:    20px;
  --radius-pill:    999px;
  --transition:     0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3 {
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* --- Gradient Text --- */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

/* ============================================================
   Background Canvas (floating cards)
   ============================================================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--bg-deep) 0%, #12141A 50%, var(--bg-mid) 100%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.card-symbol {
  position: absolute;
  font-size: clamp(3rem, 8vw, 7rem);
  opacity: 0;
  animation: float-card 18s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
  filter: blur(0px);
  /* Parallax offset set by script.js via CSS custom properties */
  translate: var(--px, 0px) var(--py, 0px);
}

.card-symbol.red  { color: rgba(255, 59, 48, 0.18); }
.card-symbol.dark { color: rgba(255, 255, 255, 0.08); }

/* Staggered positions & delays */
.card-symbol:nth-child(1)  { top: 10%;  left: 8%;   animation-delay: 0s;     animation-duration: 16s; font-size: 5rem; }
.card-symbol:nth-child(2)  { top: 25%;  left: 75%;  animation-delay: -4s;    animation-duration: 20s; font-size: 7rem; }
.card-symbol:nth-child(3)  { top: 60%;  left: 15%;  animation-delay: -8s;    animation-duration: 14s; font-size: 4rem; }
.card-symbol:nth-child(4)  { top: 75%;  left: 60%;  animation-delay: -2s;    animation-duration: 18s; font-size: 6rem; }
.card-symbol:nth-child(5)  { top: 45%;  left: 45%;  animation-delay: -10s;   animation-duration: 22s; font-size: 3.5rem; }
.card-symbol:nth-child(6)  { top: 5%;   left: 50%;  animation-delay: -6s;    animation-duration: 17s; font-size: 5.5rem; }
.card-symbol:nth-child(7)  { top: 88%;  left: 30%;  animation-delay: -14s;   animation-duration: 19s; font-size: 4.5rem; }
.card-symbol:nth-child(8)  { top: 38%;  left: 88%;  animation-delay: -3s;    animation-duration: 15s; font-size: 6.5rem; }

@keyframes float-card {
  0%   { opacity: 0; transform: translateY(30px) rotate(-8deg) scale(0.9); }
  15%  { opacity: 1; }
  50%  { transform: translateY(-20px) rotate(6deg) scale(1.05); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(30px) rotate(-8deg) scale(0.9); }
}

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

section {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Glass Card Component
   ============================================================ */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   Top Bar
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(20, 23, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.topbar-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-glass);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   Pill Badge
   ============================================================ */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--border-glass);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.pill-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ============================================================
   Mailchimp Form
   ============================================================ */
.email-form {
  display: flex;
  gap: 8px;
  max-width: none;
  width: 100%;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.email-form input[type="email"]::placeholder {
  color: var(--text-tertiary);
}

.email-form input[type="email"]:focus {
  border-color: rgba(255, 74, 67, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(255, 74, 67, 0.3);
}

.btn-primary:hover {
  background: #ff3a32;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 74, 67, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

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

/* Notify block */
.notify-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.notify-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.notify-label svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* App CTA Button */
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 6px 24px rgba(255, 74, 67, 0.35);
  letter-spacing: 0;
}

.btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255, 74, 67, 0.5);
  background: #ff3a32;
}

.btn-app:active {
  transform: translateY(0);
}

.form-hint {
  margin-top: 0;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-hint span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Form feedback */
.form-message {
  margin-top: 0;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-height: 1.2em;
  text-align: center;
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success { color: #30D158; }
.form-message.error   { color: var(--accent); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 32px rgba(255, 74, 67, 0.22);
  object-fit: cover;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
#features {
  padding: 100px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  padding: 36px 32px;
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
}

/* ============================================================
   APP PREVIEW SECTION
   ============================================================ */
#preview {
  padding: 100px 24px;
}

.preview-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  margin-top: 64px;
  flex-wrap: wrap;
}

/* iPhone frame — pure CSS */
.iphone-frame {
  position: relative;
  width: 280px;
  height: 606px;
  border-radius: 50px;
  background: #1C1C1E;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.iphone-frame:nth-child(2) {
  transform: translateY(-24px);
}


.iphone-screen {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 40px;
}

/* Fallback SVG placeholder */
.iphone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 24px;
}

.iphone-placeholder .suit {
  font-size: 3rem;
  opacity: 0.25;
}

.iphone-placeholder .label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.5;
}

/* Score display mockup (visible when no screenshot) */
.mock-score {
  width: 100%;
  padding: 0 20px;
}

.mock-header {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  margin-top: 50px;
}

.mock-scoreboard {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.mock-team {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
}

.mock-team-name {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-team-score {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.mock-team:first-child .mock-team-score { color: var(--gold-start); }
.mock-team:last-child  .mock-team-score { color: var(--accent); }

.mock-rounds {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-round-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.mock-round-pts {
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   COMMENT ÇA MARCHE
   ============================================================ */
#how {
  padding: 100px 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
  counter-reset: steps;
}

.step-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 100px 24px;
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color var(--transition);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item[open] .faq-question {
  color: var(--text-primary);
}

.faq-answer {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
}

/* Subtle radial glow behind CTA */
#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-glass);
  padding: 32px 24px;
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.footer-inner a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-inner a:hover {
  color: var(--text-secondary);
}

.footer-dot {
  opacity: 0.4;
}

/* ============================================================
   FOOTER LINKS
   ============================================================ */
.footer-link {
  color: var(--text-tertiary);
  font-size: 0.82rem;
  font-family: var(--font-main);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--text-secondary);
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
    padding: 24px;
  }
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  cursor: default;
  z-index: 0;
}

.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: #1e2028;
  border: 1px solid var(--border-glass);
  border-radius: 24px 24px 0 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 90dvh;
  overflow-y: auto;
}

@media (min-width: 600px) {
  .modal-card {
    border-radius: 24px;
    max-height: 80dvh;
  }
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-title-block strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.modal-close:hover {
  background: rgba(255,255,255,0.18);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field > span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.07);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-tertiary);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 59, 48, 0.5);
  background: rgba(255,255,255,0.1);
}

.form-field small {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .topbar {
    padding: 10px 16px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input[type="email"],
  .btn-primary {
    border-radius: 14px;
    width: 100%;
  }

  .preview-phones {
    gap: 16px;
  }

  .iphone-frame {
    width: 200px;
    height: 433px;
    border-radius: 38px;
  }

  .iphone-frame:nth-child(2) {
    transform: translateY(-16px);
  }

  .feature-card {
    padding: 28px 24px;
  }

  .hero-logo img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .preview-phones {
    flex-direction: column;
    align-items: center;
  }

  .iphone-frame:nth-child(2) {
    transform: translateY(0);
  }
}
