/* ==========================================================================
   ELEVATOR, PLEASE! — Official Marketing Website Styles
   Deployable to Cloudflare Pages (Pure Static CSS)
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #121826;
  --bg-tertiary: #1b2337;
  --bg-elevated: rgba(27, 35, 55, 0.7);
  --bg-glass: rgba(18, 24, 38, 0.85);
  --bg-glass-hover: rgba(27, 35, 55, 0.9);

  --accent-gold: #f5b041;
  --accent-gold-glow: rgba(245, 176, 65, 0.35);
  --accent-amber: #e67e22;
  --accent-cyan: #00d7ff;
  --accent-cyan-glow: rgba(0, 215, 255, 0.3);
  --accent-green: #2ecc71;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #fbbf24;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(245, 176, 65, 0.2);
  --border-highlight: rgba(245, 176, 65, 0.5);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(245, 176, 65, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --max-width: 1200px;
  --header-height: 72px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 176, 65, 0.12), transparent),
    radial-gradient(circle at 90% 20%, rgba(0, 215, 255, 0.05), transparent 40%),
    radial-gradient(circle at 10% 70%, rgba(230, 126, 34, 0.06), transparent 50%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Accessibility: Focus Visible --- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 12px var(--accent-gold-glow);
  border: 1px solid rgba(245, 176, 65, 0.3);
}

.brand-name {
  background: linear-gradient(135deg, #fff 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.2rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b0f19 !important;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px var(--accent-gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 40px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(245, 176, 65, 0.5);
  color: #0b0f19 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
  padding: 4rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  background: rgba(245, 176, 65, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
  animation: pulse-indicator 2s infinite ease-in-out;
}

@keyframes pulse-indicator {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 80%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.hero-actions {
  margin-bottom: 1.75rem;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b0f19;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--accent-gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 176, 65, 0.5);
  color: #0b0f19;
}

/* Vertical Store Badges */
.store-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
  min-height: 48px;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.store-badge-img {
  width: 180px;
  height: 53px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.feature-banner-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transition: transform 0.3s ease;
}

.feature-banner-card:hover {
  transform: translateY(-4px);
}

.feature-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Section Shared Styles --- */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-cyan);
  background: rgba(0, 215, 255, 0.1);
  border: 1px solid rgba(0, 215, 255, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.gameplay-lead-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Gameplay Loop Flow --- */
.gameplay-section {
  background: rgba(18, 24, 38, 0.4);
}

.gameplay-flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.flow-step {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.flow-step:hover {
  transform: translateY(-2px);
  border-color: var(--border-glass);
}

.flow-step.highlight-step {
  border-color: var(--border-highlight);
  background: radial-gradient(circle at 50% 50%, rgba(245, 176, 65, 0.08), transparent), var(--bg-secondary);
  box-shadow: 0 0 16px var(--accent-gold-glow);
}

.flow-badge {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0b0f19;
  background: var(--accent-gold);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 130px;
  text-align: center;
}

.flow-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.flow-connector {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-cyan);
  padding: 0.35rem 0;
  line-height: 1;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 176, 65, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(245, 176, 65, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.feature-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Challenges Directory --- */
.challenges-section {
  background: radial-gradient(circle at 50% 50%, rgba(245, 176, 65, 0.05), transparent 70%);
}

.directory-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 2px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
}

.directory-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.directory-icon {
  font-size: 1.4rem;
}

.directory-title {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.directory-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.directory-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.directory-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(4px);
  background: var(--bg-elevated);
}

.directory-floor {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: #000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(245, 176, 65, 0.4);
}

.directory-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Endless Mode Section --- */
.endless-box {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.endless-copy {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 1.25rem auto 2rem;
}

.endless-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(245, 176, 65, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.endless-icon {
  color: var(--accent-gold);
}

/* --- Screenshots Showcase (Portrait Fixed) --- */
.gallery-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.portrait-gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.portrait-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.portrait-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 176, 65, 0.15);
}

.portrait-img-wrapper {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portrait-caption {
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Privacy / Local-First Section --- */
.privacy-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.privacy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 600px;
  margin: 2rem auto 1.75rem;
  text-align: left;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
}

.pillar-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  color: var(--accent-green);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-supporting-copy {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.privacy-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.policy-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  padding: 0.4rem 0.2rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.policy-link:hover {
  text-decoration: underline;
  color: #fff;
}

.link-divider {
  color: var(--text-muted);
}

/* --- Download CTA Section --- */
.cta-section {
  padding: 5rem 0 6rem;
}

.cta-box {
  background: radial-gradient(circle at 50% 0%, rgba(245, 176, 65, 0.2), transparent 70%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.cta-app-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 24px var(--accent-gold-glow);
  border: 2px solid var(--accent-gold);
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

.cta-store-buttons-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  padding: 3.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-col {
  max-width: 360px;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links-group {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.2rem 0;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.65rem;
  }

  .portrait-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .directory-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .cta-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

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

  /* Mobile Portrait Screenshot Horizontal Scroll Snap */
  .portrait-gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .portrait-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  .flow-step {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .flow-badge {
    width: 100%;
  }
}
