:root {
  --purple: #7c3aed;
  --purple-2: #6a2bd8;
  --pink: #ff8ea3;
  --gold: #ffd76c;
  --graphite: #2f2831;
  --bg: #fafafa;
  --muted: #6b6770;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --maxw: 1080px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--graphite);
  font: 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial;
}
a {
  color: var(--purple);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 20px;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid #eee;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.nav a.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}
.nav a.btn.secondary {
  background: #fff;
  color: var(--purple);
  border-color: #ddd;
}
.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.hero {
  padding: 72px 0 36px;
}
.hero .wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--card);
  border: 1px solid #eee;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero .pitch {
  padding: 28px;
}
h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bullets {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bullet .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.hero .legal-cta {
  padding: 24px;
}
.grid-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.link-tile {
  padding: 18px;
  border-radius: 14px;
  border: 1px dashed var(--purple);
  background: #fff;
}
.link-tile:hover {
  border: 1px solid var(--purple);
}
.hero .legal-cta .link-tile strong {
  color: var(--purple);
}

section {
  padding: 42px 0;
}
h2 {
  font-size: 28px;
  margin: 0 0 16px;
}

details.faq {
  border: 1px solid #eee;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}
details + details {
  margin-top: 12px;
}
details[open] {
  border-color: #e0d9f7;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.08);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}

footer {
  border-top: 1px solid #eee;
  padding: 28px 0;
  color: var(--muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.btn-chip {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  background: #fff;
}

.notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff3f4;
  border: 1px solid #ffd4d8;
  color: #7a1a24;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* Store badges row */
.store-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* center badges horizontally */
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 80px;
  padding: 10px 16px;
}

.store-badge:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* Ensure badge images scale to the anchor's 56px height and keep aspect ratio */
.store-badge img {
  height: 100%;
  width: auto;
  display: block;
}

/* Full-screen legal screens (visual mock) */
.screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.screen.active {
  display: block;
}
.screen .screen-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 20px 60px;
}
.screen .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.screen h1 {
  font-size: 32px;
  margin: 8px 0 12px;
}
.close-link {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff;
}

.brand .tagline {
  white-space: normal;
  line-height: 1.1;
  font-weight: 700;
}
@media (max-width: 480px) {
  .brand .tagline {
    display: block;
  }
}
section#faq {
  padding-bottom: 80px;
}

/* Footer + Cookies */
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-cookies {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #ece6ff;
  background: #faf7ff;
  border-radius: 12px;
}
.cookie-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #ece6ff;
  font-size: 12px;
}
.footer-copy {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  color: var(--muted);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1200;
  display: none;
  overflow-y: auto;
  padding: 24px 16px;
}
.cookie-overlay.active {
  display: block;
}
.cookie-panel {
  max-width: 720px;
  margin: auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.cookie-panel .title {
  color: var(--muted);
  text-align: center;
  margin: 4px 0;
}
.cookie-panel h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 6px 0 10px;
  text-align: center;
}
.cookie-panel .rows .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #faf7ff;
  border: 1px solid #ece6ff;
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
}
.cookie-panel .rows details.row {
  background: #fff;
}
.cookie-panel .rows details.row > summary {
  list-style: none;
  cursor: pointer;
}
.cookie-panel .rows details.row > summary::-webkit-details-marker {
  display: none;
}
.cookie-panel .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-panel .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--graphite);
}
.cookie-panel .btn.primary {
  background: var(--purple);
  color: #fff;
  border-color: transparent;
}
.cookie-panel .btn.ghost {
  background: #fff;
  border-color: #ddd;
  color: var(--graphite);
}
.cookie-panel .linkline {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}
.cookie-panel .linkline a {
  color: var(--purple);
  text-decoration: underline;
}
.cookie-panel .sub {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .cookie-panel {
    padding: 16px;
  }
}

/* Scoped styles for the temporary store 'coming soon' modal */
#store-modal .cookie-panel {
  text-align: center; /* center all text inside this dialog */
}
#store-modal .cookie-panel .actions {
  justify-content: center; /* center actions row */
}
/* Make OK button visually larger (approx. 3x wider than typical pill) */
#store-modal .cookie-panel .btn.primary {
  min-width: 220px;
  width: 220px;
  justify-content: center; /* center content inside the button */
}

/* --- Blog layout --- */
.blog-hero {
  padding: 96px 0 40px;
  background: linear-gradient(135deg, #f6f2ff, #ffeaf4);
}
.blog-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--purple);
  margin: 0 0 12px;
}
.blog-hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
}
.blog-hero-subtitle {
  max-width: 620px;
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.blog-list {
  padding: 48px 0 96px;
}
.blog-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.blog-card {
  background: var(--card);
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(124, 58, 237, 0.12);
  text-decoration: none;
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.blog-card-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f7f4ff;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}
.blog-card h2 {
  font-size: 24px;
  margin: 0;
  line-height: 1.3;
}
.blog-card-excerpt {
  margin: 0;
  color: var(--muted);
}
.blog-card-cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--purple);
}

.blog-article {
  padding: 48px 0 120px;
}
.blog-article .container {
  max-width: 820px;
}
.blog-article-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.blog-back {
  color: var(--muted);
  font-size: 14px;
}
.blog-article-meta {
  font-size:14px;
  color:var(--muted);
  border-left:4px solid var(--purple);
  padding-left:10px;
  margin:0 0 18px;
}
.blog-article h1 {
  font-size:36px;
  line-height:1.15;
  margin:0 0 16px
  /* font-size: 40px;
  margin: 0; */
}
.blog-article p {
  margin: 0;
}
.blog-article ul {
  margin: 0;
}
.blog-article-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}
.blog-article-media {
  margin: 12px 0 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}
.blog-article-media img {
  width: 100%;
  display: block;
}
.blog-article-content {
  display: grid;
  gap: 20px;
  font-size: 18px;
}
.blog-article-content h2 {
  font-size: 28px;
  margin:24px 0 12px
}
.blog-article-content blockquote {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--purple);
  background: #faf7ff;
  border-radius: 14px;
  color: var(--graphite);
}
.blog-article-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eee;
  display: grid;
  gap: 12px;
}
.blog-article-share {
  margin: 0;
  color: var(--muted);
}

/* Table styles for blog articles */
.blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  border-radius: 0px;
  overflow: hidden;
  margin: 0px 0;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-article-content table thead {
  background: #f3f4f6;
}

.blog-article-content table thead tr {
  border-bottom: 2px solid #e5e7eb;
}

.blog-article-content table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--graphite);
}

.blog-article-content table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.blog-article-content table tbody tr:last-child {
  border-bottom: none;
}

.blog-article-content table tbody tr:hover {
  background-color: #fafbfc;
}

.blog-article-content table td {
  padding: 12px 16px;
  color: var(--graphite);
}

/* Table footnote styles */
.blog-article-content table + p {
  font-size: 14px;
  color: var(--muted);
  margin-top: -12px;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .blog-hero h1 {
    font-size: 32px;
  }
  .blog-article h1 {
    font-size: 32px;
  }
  .blog-article-content h2 {
    font-size: 24px;
  }
  
  /* Responsive table styles */
  .blog-article-content table {
    font-size: 14px;
  }
  
  .blog-article-content table th,
  .blog-article-content table td {
    padding: 10px 12px;
  }
}
