/* ==========================================================================
   SourceFlow Beta Landing Page Stylesheet
   ========================================================================== */

/* Design Tokens & Colors (Light Theme Default) */
:root {
  --navy: #07285B;
  --gold: #F5B51B;
  --logo-gold: #E7A100;
  --dark-green: #0F3D2E;
  --bg: #FBFAF8;
  --white: #FFFFFF;
  --text-dark: #08152C;
  --text-muted: #63708A;
  --border: #E5E8EF;
  
  --blue-soft: #EDF4FF;
  --green: #0B7A45;
  --green-soft: #EAF7EF;
  --gold-soft: #FFF4D8;
  --red: #E02424;
  --red-soft: #FDE8E8;
  --orange: #F97316;
  --orange-soft: #FFEDD5;
  
  --shadow-sm: 0 2px 8px rgba(7, 40, 91, 0.04);
  --shadow-md: 0 12px 24px rgba(7, 40, 91, 0.06);
  --shadow-lg: 0 24px 48px rgba(7, 40, 91, 0.1);
  --shadow-mockup: 0 30px 60px rgba(7, 40, 91, 0.15);
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --container-width: 1140px;
  --header-height: 80px;
}

/* Dark Theme Overrides */
@media (prefers-color-scheme: dark) {
  :root {
    --navy: #8EB7FF;
    --bg: #07111F;
    --white: #101B2A;
    --text-dark: #F5F7FB;
    --text-muted: #AAB4C5;
    --border: #243348;
    
    --blue-soft: #10243E;
    --green: #76E0AA;
    --green-soft: #123D2B;
    --gold-soft: #3C2F12;
    --red: #FF7A7A;
    --red-soft: #2D1A1A;
    --orange: #FF9A4B;
    --orange-soft: #2D2013;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.4);
    --shadow-mockup: 0 30px 60px rgba(0, 0, 0, 0.5);
  }
}

/* ==========================================================================
   Base Elements & Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  background-color: var(--bg);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

/* ==========================================================================
   Layout & Container Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 80px 0;
}

/* Background mesh blur vectors */
.bg-blur {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.blur-top-right {
  top: -10vw;
  right: -10vw;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

.blur-bottom-left {
  bottom: 20vw;
  left: -15vw;
  background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
}

@media (prefers-color-scheme: dark) {
  .bg-blur {
    opacity: 0.08;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#main-header {
  height: var(--header-height);
  width: 100%;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 250, 248, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  #main-header {
    background-color: rgba(7, 17, 31, 0.8);
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  height: 40px;
  width: auto;
}

.logo-text {
  height: 22px;
  width: auto;
}

@media (prefers-color-scheme: dark) {
  .logo-text {
    filter: brightness(0) invert(1);
  }
}

#header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--text-dark);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.btn-primary {
  background-color: #F5B51B; /* Using absolute value to match user logo colors */
  color: #08152C;
  box-shadow: 0 4px 14px rgba(245, 181, 27, 0.3);
}

.btn-primary:hover {
  background-color: #E7A100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 181, 27, 0.4);
}

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

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg);
  border-color: var(--text-muted);
}

.btn-text {
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 16px;
}

.btn-text .arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-pulse {
  background-color: var(--green-soft);
  color: var(--green);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--green);
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.announcement-badge {
  display: inline-block;
  background-color: var(--blue-soft);
  color: var(--text-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(7, 40, 91, 0.05);
}

/* Cards */
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 60px 0 100px 0;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
}

#hero-headline {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CSS Phone Mockup Styling */
.hero-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  width: 290px;
  height: 580px;
  background-color: #000000;
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-mockup);
  border: 3px solid #333333;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 20px;
  background-color: #000000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen {
  background-color: #FBFAF8;
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone Screen App Elements */
.app-bar {
  background-color: #07285B;
  color: #FFFFFF;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.app-wallet {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 100px;
}

.app-search {
  background-color: #FFFFFF;
  border: 1px solid #E5E8EF;
  border-radius: var(--radius-sm);
  margin: 10px 12px;
  padding: 8px 10px;
}

.search-placeholder {
  color: #9CA3AF;
  font-size: 0.7rem;
}

.app-product-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E8EF;
  border-radius: var(--radius-md);
  margin: 0 12px;
  padding: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #EAF7EF;
  color: #0B7A45;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 2;
}

.product-image-placeholder {
  height: 120px;
  background-color: #F3F4F6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-icon {
  font-size: 2.2rem;
}

.source-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: #07285B;
  color: #FFFFFF;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
}

.product-info {
  margin-top: 8px;
}

.product-title-en {
  font-size: 0.75rem;
  font-weight: 700;
  color: #08152C;
  line-height: 1.3;
}

.product-title-zh {
  font-size: 0.6rem;
  color: #9CA3AF;
  margin-top: 2px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}

.price-ngn {
  font-size: 0.85rem;
  font-weight: 800;
  color: #08152C;
}

.price-cny {
  font-size: 0.65rem;
  color: #6B7280;
}

.variants-row {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.variant-pill {
  font-size: 0.55rem;
  padding: 3px 6px;
  border-radius: 100px;
  border: 1px solid #E5E8EF;
  background-color: #FBFAF8;
  color: #63708A;
}

.variant-pill.selected {
  background-color: #EDF4FF;
  color: #07285B;
  border-color: #07285B;
}

.app-add-btn {
  width: 100%;
  background-color: #E7A100;
  color: #08152C;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  cursor: default;
}

.app-bottom-tabs {
  background-color: #FFFFFF;
  border-top: 1px solid #E5E8EF;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.tab-item {
  font-size: 0.6rem;
  font-weight: 600;
  color: #9CA3AF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tab-item.active {
  color: #07285B;
}

/* ==========================================================================
   Disclaimer Section
   ========================================================================== */
.disclaimer-wrap {
  padding: 40px 0;
}

.disclaimer-card {
  padding: 40px;
  border-left: 6px solid var(--gold);
  background-color: var(--white);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.warning-icon {
  font-size: 2.5rem;
  color: #E7A100;
}

.disclaimer-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.disclaimer-item .item-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bullet {
  font-size: 1rem;
}
.bullet.red { color: var(--red); }
.bullet.orange { color: var(--orange); }
.bullet.blue { color: #3B82F6; }

/* ==========================================================================
   Download Steps Section
   ========================================================================== */
.download-steps {
  background-color: rgba(7, 40, 91, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
}

.step-card.step-disabled {
  opacity: 0.65;
  background-color: rgba(229, 232, 239, 0.1);
  border-style: dashed;
}

.step-card.step-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
}

@media (prefers-color-scheme: dark) {
  .step-number {
    background-color: var(--gold);
    color: #08152C;
  }
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

.btn-link {
  align-self: flex-start;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.btn-link .arrow {
  margin-left: 4px;
}

.btn-link:hover {
  color: #E7A100;
}

/* ==========================================================================
   What to Look Out For Checklist
   ========================================================================== */
.testing-checklist {
  padding: 80px 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.checklist-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.checklist-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.checklist-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Feedback Section & Form
   ========================================================================== */
.feedback-area {
  background-color: rgba(7, 40, 91, 0.02);
  border-top: 1px solid var(--border);
  padding: 85px 0;
}

.feedback-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feedback-text h2 {
  font-size: 2.2rem;
  font-weight: 850;
  margin-bottom: 16px;
}

.feedback-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.feedback-channels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.channel {
  display: flex;
  gap: 16px;
}

.channel-icon {
  font-size: 1.6rem;
  margin-top: 4px;
}

.channel strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.channel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.feedback-card {
  padding: 40px;
}

.feedback-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--bg);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E7A100;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
#main-footer {
  background-color: #07285B;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (prefers-color-scheme: dark) {
  #main-footer {
    background-color: #03080F;
  }
}

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

.footer-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.environment-label {
  color: #F5B51B;
  font-weight: 600;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet Layout (1024px and below) */
@media (max-width: 1024px) {
  #hero-headline {
    font-size: 2.8rem;
  }
  
  .hero-container {
    gap: 40px;
  }
  
  .disclaimer-grid,
  .steps-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feedback-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile Layout (768px and below) */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  #main-header {
    height: auto;
    padding: 15px 0;
  }
  
  .header-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  #header-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .logo-mark {
    height: 32px;
  }
  
  .logo-text {
    height: 18px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  #hero-headline {
    font-size: 2.2rem;
  }
  
  .disclaimer-card {
    padding: 24px;
  }
  
  .disclaimer-grid,
  .steps-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feedback-card {
    padding: 24px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-legal {
    text-align: center;
  }
}

/* Inline SVG Icon Styling */
.icon {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}

.card-icon svg {
  stroke: var(--navy);
  width: 42px;
  height: 42px;
}

.channel-icon svg {
  stroke: var(--navy);
  width: 32px;
  height: 32px;
}

.warning-icon svg {
  stroke: #E7A100;
  width: 48px;
  height: 48px;
}

.search-placeholder svg {
  stroke: #9CA3AF;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
}

.product-image-placeholder svg {
  stroke: #9CA3AF;
  width: 44px;
  height: 44px;
}

.app-bottom-tabs .tab-item svg {
  stroke: currentColor;
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
}

/* Footer Link Style */
.footer-link {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px dashed var(--gold);
}

.footer-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ==========================================================================
   Interactive TestFlight Modal Styling
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 17, 31, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 440px;
  padding: 36px 30px 30px 30px;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-dark);
}

.modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.modal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions .btn {
  flex: 1;
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Card Header Platform Badges */
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-header-row .step-number {
  margin-bottom: 0;
}

.platform-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-indicator svg {
  width: 14px;
  height: 14px;
}

.platform-indicator.iOS {
  background-color: var(--blue-soft);
  color: var(--text-dark);
}

.platform-indicator.Android {
  background-color: var(--green-soft);
  color: var(--green);
}
