/* Design tokens */
:root {
  --brand: #cb6ce6;
  --brand-2: #cb6ce6;
  --text-1: #0f172a;
  --text-2: #475569;
  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #eef2ff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1120px;
  --transition: 200ms ease;
}


storelogos{

  width: 100px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);


}

html[data-theme="dark"] {
  --brand: #cb6ce6;
  --brand-2: #cb6ce6;
  --text-1: #e2e8f0;
  --text-2: #94a3b8;
  --surface-1: #0b1220;
  --surface-2: #0f172a;
  --surface-3: #111827;
  --border: #1f2937;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Global */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text-1);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(108, 99, 255, 0.08), transparent),
              radial-gradient(1000px 500px at 110% -20%, rgba(76, 157, 255, 0.10), transparent),
              var(--surface-1);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface-1) 70%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.logo { height: 67px; width: auto; }
.light-only { display: inline-block; }
.dark-only { display: none; }
html[data-theme="dark"] .light-only { display: none; }
html[data-theme="dark"] .dark-only { display: inline-block; }

.nav { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.menu { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.menu a {
  color: var(--text-2);
  padding: 8px 10px;
  border-radius: 10px;
}
.menu a:hover { color: var(--brand); background: var(--surface-2); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-1);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.theme-toggle:hover { background: var(--surface-2); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 25%, transparent);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, var(--surface-1));
  border-color: color-mix(in srgb, var(--brand) 30%, var(--border));
}
.btn-secondary:hover { background: color-mix(in srgb, var(--brand) 18%, var(--surface-1)); }
.btn-ghost {
  color: var(--text-1);
  background: transparent;
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-2); }

/* Hero */
.hero { padding: 56px 0 40px; }
.grid-two {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
}
.lead { font-size: 18px; color: var(--text-2); margin-bottom: 20px; }
.cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 12px; align-items: center; }
.cta img {
  max-height: 44px;
  width: auto;
}
.trust { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.hero-visual { display: grid; place-items: center; }
.phone-mock {
  width: min(360px, 85%);
  aspect-ratio: 9/18.5;
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-3) 60%, var(--surface-1)), var(--surface-2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.notch {
  width: 40%;
  height: 16px;
  margin: 0 auto 10px;
  background: var(--surface-1);
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--border);
  border-top: 0;
}
.screen {
  height: calc(100% - 26px);
  background: var(--surface-1);
  border-radius: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.event-list { list-style: none; padding: 0; margin: 0; }
.event-list li {
  padding: 14px;
  display: grid;
  gap: 4px;
  border-bottom: 1px dashed var(--border);
}
.event-list li strong { font-size: 15px; }
.event-list li span { font-size: 13px; color: var(--text-2); }

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: var(--surface-2); }
.section-title {
  font-size: clamp(22px, 3.4vw, 32px);
  margin: 0 0 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--border);
  background: var(--surface-1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 22px; }
.card h3 { margin: 8px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--text-2); }

.video-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  color: var(--text-2);
  background: repeating-linear-gradient(45deg, var(--surface-1), var(--surface-1) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
}
.video-placeholder .play { font-weight: 600; color: var(--text-2); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.price-card {
  border: 1px solid var(--border);
  background: var(--surface-1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.price-card.highlight { outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent); }
.price-card .price { font-size: 28px; font-weight: 700; margin: 8px 0 10px; }
.price-card .price span { font-size: 14px; font-weight: 500; color: var(--text-2); }
.price-card ul { margin: 0 0 14px; padding-left: 18px; color: var(--text-2); }

/* FAQ accordion */
.accordion { display: grid; gap: 10px; }
.accordion-item {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-1);
  color: var(--text-1);
  cursor: pointer;
}
.accordion-item .accordion-panel {
  grid-column: 1 / -1;
  color: var(--text-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}
.accordion-item[aria-expanded="true"] .accordion-panel { max-height: 140px; }

/* Auth Form */
.auth-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 24px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.auth-form .section-title {
    text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-1);
}

.form-group input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-1);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}

.auth-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Final CTA */
.cta-final { text-align: center; }
.cta-final h2 { margin: 0 0 10px; font-size: clamp(22px, 3.4vw, 32px); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: var(--surface-1);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--text-2); }
.footer-links a:hover { color: var(--brand); }
.copyright {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Reveal animations */
.will-reveal { opacity: 0; transform: translateY(8px); transition: opacity 320ms ease, transform 320ms ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .grid-two { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px 14px;
    transform-origin: top center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease, visibility 220ms ease;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    visibility: hidden;
  }
  .menu.open {
    max-height: 240px;
    padding-top: 10px;
    padding-bottom: 14px;
    border-width: 1px;
    visibility: visible;
  }
}

@media (max-width: 600px) {
  .event-list li { padding: 12px; }
  .header-actions .btn-ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


