/* ============================================================
   KarSafe Landing Page — Design Tokens from App Theme
   ============================================================ */

:root {
  /* Colors — Light */
  --primary: #1E3A5F;
  --primary-light: #2A4F7F;
  --primary-deep: #1E3A5F;
  --accent: #E8913A;
  --accent-hover: #D4802E;
  --bg: #F8F9FB;
  --surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  --glass-fill: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --border-light: #E2E8F0;

  /* Encryption animation colors */
  --enc-red: #DC2626;
  --enc-amber: #E8913A;
  --enc-teal: #0D9488;
  --enc-green: #16A34A;

  /* Typography */
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --xs: 4px;
  --sm: 8px;
  --md: 16px;
  --lg: 24px;
  --xl: 32px;
  --xxl: 48px;

  /* Radius */
  --radius-sm: 8px;
  --radius-btn: 12px;
  --radius-card: 20px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 4px 16px rgba(15, 23, 42, 0.1), 0 8px 32px rgba(15, 23, 42, 0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #5B8DBF;
    --primary-light: #7BA8D4;
    --primary-deep: #1A2E44;
    --accent: #F0A050;
    --accent-hover: #E89040;
    --bg: #0D1117;
    --surface: #161B22;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --glass-fill: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-light: #21262D;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  /* Regulations section — very dark navy */
  .regulations { background: #080E18; }
  .reg-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }


  /* Reality bottom callout */
  .reality-bottom { background: rgba(91, 141, 191, 0.08); border-color: rgba(91, 141, 191, 0.15); }

  /* Screen mockups */
  .showcase-screen { background: #1A1F26; border-color: #21262D; }
  .screen-header { background: #1A2E44; }
  .screen-search-text { background: rgba(255, 255, 255, 0.1); }
  .screen-row { border-color: #21262D; }
  .screen-result { border-color: #21262D; }
  .screen-divider { background: #21262D; }
  .screen-tag { background: rgba(91, 141, 191, 0.12); }
  .screen-tag.accent { background: rgba(240, 160, 80, 0.12); }
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

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

*, *::before, *::after { max-width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.3;
  font-weight: 700;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--lg);
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--glass-fill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-brand img { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--lg);
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

/* Mobile nav toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--xs);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--sm) var(--lg);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.btn-download:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   Hero Section
   ============================================================ */

.hero {
  padding: calc(64px + var(--xxl)) 0 var(--xxl);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--xs) var(--md);
  background: rgba(30, 58, 95, 0.06);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--lg);
}

.hero h1 {
  font-size: 2.75rem;
  letter-spacing: -0.48px;
  margin-bottom: var(--lg);
  color: var(--text-primary);
}

.hero h1 .highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: var(--xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  display: flex;
  gap: var(--xl);
  margin-top: var(--xl);
  padding-top: var(--lg);
  border-top: 1px solid var(--border-light);
  justify-content: center;
}

.hero-stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}

.hero-stat-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}


.enc-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lg);
  padding: var(--xxl) var(--xl);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.enc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--xl);
  width: 100%;
}

.enc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sm);
  opacity: 0.3;
  transition: opacity 0.4s, transform 0.4s;
  flex: 1;
  max-width: 160px;
}

.enc-step.active {
  opacity: 1;
  transform: scale(1.08);
}

.enc-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid currentColor;
  transition: all 0.4s;
}

.enc-step-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.enc-arrow {
  font-size: 1.8rem;
  color: var(--text-secondary);
  opacity: 0.3;
  transition: opacity 0.4s, color 0.4s;
  margin-bottom: 28px;
}

.enc-arrow.active { opacity: 0.7; }

.enc-step[data-step="0"] { color: var(--enc-red); }
.enc-step[data-step="1"] { color: var(--enc-amber); }
.enc-step[data-step="2"] { color: var(--enc-teal); }
.enc-step[data-step="3"] { color: var(--enc-green); }

.enc-step[data-step="0"] .enc-step-icon { background: rgba(220, 38, 38, 0.08); }
.enc-step[data-step="1"] .enc-step-icon { background: rgba(232, 145, 58, 0.08); }
.enc-step[data-step="2"] .enc-step-icon { background: rgba(13, 148, 136, 0.08); }
.enc-step[data-step="3"] .enc-step-icon { background: rgba(22, 163, 74, 0.08); }

.enc-tagline {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================================
   Reality Check Section
   ============================================================ */

.reality {
  padding: var(--xxl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
  margin-bottom: var(--xl);
}

.reality-grid .reality-card:nth-child(n+4) {
  /* Second row cards exist naturally in the grid */
}

.reality-card {
  padding: var(--xl);
  background: var(--bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
}

.reality-icon {
  font-size: 2rem;
  margin-bottom: var(--md);
}

.reality-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sm);
  color: var(--text-primary);
}

.reality-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.reality-bottom {
  font-size: 1.05rem;
  color: var(--text-primary);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  padding: var(--lg);
  background: rgba(30, 58, 95, 0.04);
  border-radius: var(--radius-card);
  border: 1px solid rgba(30, 58, 95, 0.08);
}

/* Stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--xl);
  padding: var(--xl);
  margin-bottom: var(--xl);
  background: var(--bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: var(--xs);
  max-width: 160px;
}

.stat-source {
  font-size: 0.7rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
}

/* Mobile overrides are consolidated at the end of the file */

/* ============================================================
   Features Section
   ============================================================ */

.features {
  padding: var(--xxl) 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: var(--sm);
}

.section-title {
  font-size: 2rem;
  margin-bottom: var(--md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: var(--xl);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--md);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sm);
}

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

/* ============================================================
   App Showcase Section
   ============================================================ */

.showcase {
  padding: var(--xxl) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lg);
}

.showcase-card {
  text-align: center;
}

.showcase-card h3 {
  font-size: 1.1rem;
  margin-top: var(--lg);
  margin-bottom: var(--sm);
}

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

/* Mock phone screens */
.showcase-screen {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.screen-header {
  padding: var(--md) var(--lg);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--sm);
}

.screen-search-icon { opacity: 0.6; }

.screen-search-text {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: var(--xs) var(--sm);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
}

.screen-body {
  padding: var(--md) var(--lg);
}

.screen-row {
  display: flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--sm) 0;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.screen-row:last-of-type { border-bottom: none; }

.screen-icon { font-size: 1.1rem; width: 24px; text-align: center; }

.screen-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--sm) 0;
}

.screen-tag {
  display: inline-block;
  padding: 2px var(--sm);
  background: rgba(30, 58, 95, 0.06);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: var(--xs);
  margin-top: var(--sm);
}

.screen-tag.accent {
  background: rgba(232, 145, 58, 0.1);
  color: var(--accent);
}

/* Search results */
.screen-result {
  display: flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.screen-result:last-child { border-bottom: none; }
.screen-result.faded { opacity: 0.45; }

.screen-result-icon {
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.screen-result-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.screen-result-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Export screen */
.screen-export-summary {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

.screen-export-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.screen-export-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.screen-annexure {
  display: flex;
  align-items: center;
  gap: var(--sm);
  font-size: 0.8rem;
  color: var(--text-primary);
  padding: var(--sm) 0;
}

.screen-check {
  margin-left: auto;
  color: var(--success);
  font-weight: 700;
}

.screen-btn {
  margin-top: var(--md);
  padding: var(--sm) var(--md);
  background: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Mobile overrides are consolidated at the end of the file */

/* ============================================================
   Regulations Section
   ============================================================ */

.regulations {
  padding: var(--xxl) 0;
  background: var(--primary);
  color: #fff;
}

.regulations .section-label { color: var(--accent); }
.regulations .section-title { color: #fff; }
.regulations .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--lg);
}

.reg-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: var(--xl);
}

.reg-card .reg-years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sm);
}

.reg-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sm);
  color: #fff;
}

.reg-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  padding: var(--xxl) 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: var(--md);
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--xl);
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--md);
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sm);
  padding: var(--md) var(--xl);
  background: var(--text-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.store-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.store-btn svg { width: 24px; height: 24px; }

.store-btn-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  text-align: left;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: var(--xl) 0;
  border-top: 1px solid var(--border-light);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sm);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-brand img { width: 24px; height: 24px; opacity: 0.5; }

.footer-links {
  display: flex;
  gap: var(--lg);
  list-style: none;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

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

/* ============================================================
   Responsive — Tablet (<=1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-content { max-width: 100%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .reality-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Responsive — Mobile (<=768px)
   ============================================================ */

@media (max-width: 768px) {
  /* Global */
  .container { padding: 0 var(--md); }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* Nav — mobile hamburger menu */
  .nav-toggle { display: block; }
  .nav .container { height: 56px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: var(--md);
    gap: var(--sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links .btn-download {
    width: 100%;
    justify-content: center;
    margin-top: var(--sm);
  }

  /* Hero */
  .hero { padding-top: calc(56px + var(--xl)); min-height: auto; padding-bottom: var(--xl); }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 1rem; }
  .hero-cta .btn-download { width: 100%; justify-content: center; }

  /* Hero stats */
  .hero-stat {
    flex-direction: column;
    gap: var(--md);
    align-items: center;
  }

  /* Encryption animation */
  .enc-flow { padding: var(--md); }
  .enc-steps { gap: var(--sm); }
  .enc-step { max-width: none; }
  .enc-step-icon { width: 44px; height: 44px; font-size: 1.1rem; }
  .enc-step-label { font-size: 0.7rem; }
  .enc-arrow { font-size: 1rem; margin-bottom: 16px; }
  .enc-tagline { font-size: 0.8rem; }

  /* Stats bar */
  .stats-bar {
    flex-direction: column;
    gap: var(--lg);
    padding: var(--lg);
  }
  .stat-divider { width: 60px; height: 1px; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { max-width: 100%; }

  /* Reality grid */
  .reality-grid { grid-template-columns: 1fr; }
  .reality-bottom { font-size: 0.95rem; padding: var(--md); }

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

  /* Showcase grid */
  .showcase-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* Regulations grid */
  .reg-grid { grid-template-columns: 1fr; }
  .reg-card .reg-years { font-size: 2rem; }

  /* CTA */
  .cta-section h2 { font-size: 1.5rem; }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links { flex-direction: column; gap: var(--sm); }
}

/* ============================================================
   Responsive — Small Mobile (<=400px)
   ============================================================ */

@media (max-width: 400px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.9rem; }

  /* Encryption animation — stack vertically on very small screens */
  .enc-steps { flex-wrap: wrap; gap: var(--xs); }
  .enc-arrow { display: none; }
  .enc-step { width: 45%; }

  .stat-number { font-size: 1.3rem; }

  .feature-card, .reality-card, .reg-card { padding: var(--md); }
}

/* ============================================================
   Dark Mode Overrides — MUST be last to win cascade
   ============================================================ */

@media (prefers-color-scheme: dark) {
  /* Nav download button — accent with dark text */
  .btn-download {
    background: var(--accent) !important;
    color: #0D1117 !important;
  }
  .btn-download:hover {
    background: var(--accent-hover) !important;
    color: #0D1117 !important;
  }

  /* Store buttons — solid with dark text, visible icons */
  .store-btn {
    background: #F8FAFC !important;
    color: #0D1117 !important;
    border: none !important;
  }
  .store-btn:hover {
    background: #E2E8F0 !important;
    color: #0D1117 !important;
  }
  .store-btn svg {
    fill: #0D1117 !important;
  }
  .store-btn-sub {
    color: #374151 !important;
    opacity: 1 !important;
  }
}
