:root {
  --bg: #f7f4fb;
  --bg-deep: #eee7fa;
  --surface: #ffffff;
  --surface-soft: #f3eefb;
  --surface-strong: #e8ddfc;
  --text: #1b102c;
  --text-muted: #4f4365;
  --accent: #5b2e91;
  --accent-strong: #4c1d95;
  --accent-soft: #7c3aed;
  --accent-glow: #a78bfa;
  --gold: #c9a34e;
  --border: #e1d8f2;
  --border-strong: #cbbbe8;
  --success: #176f56;
  --shadow: rgba(36, 16, 66, 0.14);
  --shadow-strong: rgba(23, 7, 46, 0.24);
  --hero-start: #2d114e;
  --hero-mid: #5b2e91;
  --hero-end: #7c3aed;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --pill: 999px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.28), transparent 24rem),
    radial-gradient(circle at bottom left, rgba(91, 46, 145, 0.14), transparent 28rem),
    var(--bg);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 244, 251, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(225, 216, 242, 0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  width: 188px;
  max-width: 42vw;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav a,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.nav a:hover,
.chip-link:hover,
.cta-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 2rem auto 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--hero-start), var(--hero-mid) 55%, var(--hero-end));
  box-shadow: 0 20px 48px var(--shadow-strong);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  pointer-events: none;
  width: 16rem;
  height: 16rem;
  top: -7rem;
  right: -3rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.8rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.hero .eyebrow {
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 700;
}

.hero p {
  margin: 0.95rem 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.hero-copy {
  max-width: 38rem;
}

.hero-support {
  align-self: stretch;
}

.hero-panel {
  padding: 1.15rem 1.15rem 1.05rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.02rem;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-list {
  display: grid;
  gap: 0.8rem;
}

.hero-list-item {
  display: grid;
  gap: 0.22rem;
  padding: 0.82rem 0.92rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-list-item strong {
  color: #fff;
  font-size: 0.98rem;
}

.hero-list-item span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-weight: 700;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 800;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.cta-primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(20, 7, 38, 0.18);
}

.cta-primary:hover {
  transform: translateY(-1px);
}

.cta-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 1rem 0 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.section-heading p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.showcase-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.device-card {
  padding: 1.2rem;
}

.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.device-header h3 {
  margin: 0;
  font-size: 1.18rem;
}

.device-shell {
  position: relative;
  width: min(100%, 328px);
  margin: 0 auto;
  border-radius: 42px;
  background: #111;
  box-shadow: 0 24px 46px rgba(19, 9, 34, 0.24);
}

.device-shell.ios {
  padding: 14px 12px 22px;
}

.device-shell.android {
  padding: 12px 10px 18px;
}

.device-shell.ios::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 38%;
  height: 5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.device-shell.android::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 58px;
  height: 5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  z-index: 2;
}

.device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #f7f4fb;
  aspect-ratio: 360 / 772;
}

.device-screen img {
  width: 100%;
  height: auto;
}

.device-shell.ios .device-screen {
  border-radius: 34px;
}

.device-shell.ios .device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.device-shell.android .device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-note {
  margin: 0.9rem auto 0;
  max-width: 320px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 600;
}

.store-row {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 62px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid #d5cede;
  background: linear-gradient(180deg, rgba(236, 231, 244, 0.88), rgba(225, 219, 234, 0.88));
  color: #6d6480;
  cursor: default;
  pointer-events: none;
}

.store-badge .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  color: #55506a;
  flex: 0 0 42px;
  font-size: 1.15rem;
  font-weight: 800;
}

.store-badge .label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge .label small {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7d748f;
  font-weight: 800;
}

.store-badge .label strong {
  font-size: 1rem;
  color: #49415b;
}

.store-badge .status {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 800;
  color: #8a8299;
}

.card,
.prose-card,
.info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px var(--shadow);
}

.card {
  padding: 1.35rem;
}

.card .kicker,
.meta-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  border-radius: var(--pill);
  background: var(--surface-soft);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3,
.prose-card h2 {
  margin: 0.95rem 0 0.5rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.card p,
.card li,
.prose-card p,
.prose-card li,
.note,
.fine-print,
.info-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 600;
}

.card ul,
.prose-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
}

.card li + li,
.prose-card li + li {
  margin-top: 0.45rem;
}

.card .link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.card .link-row a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  padding: 1.2rem 1.25rem;
}

.info-card h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.05rem;
}

.prose-wrap {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
  align-items: start;
}

.prose-card {
  padding: clamp(1.3rem, 2.4vw, 2rem);
}

.prose-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
}

.prose-card .intro {
  margin: 1rem 0 1.2rem;
  font-size: 1rem;
}

.prose-card h2 {
  margin-top: 2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.prose-card h3 {
  margin: 1.2rem 0 0.35rem;
  font-size: 1rem;
}

.prose-card p {
  margin: 0.7rem 0 0;
}

.prose-card .updated {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.aside-stack {
  display: grid;
  gap: 1rem;
}

.aside-card {
  position: sticky;
  top: 108px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px var(--shadow);
}

.aside-card h3 {
  margin: 0.75rem 0 0.45rem;
}

.aside-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.aside-card li + li {
  margin-top: 0.42rem;
}

.contact-block {
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.contact-block a {
  color: var(--accent);
  font-weight: 800;
}

.footer {
  padding: 2rem 0 3rem;
  color: var(--text-muted);
}

.footer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px var(--shadow);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
}

.banner-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(201, 163, 78, 0.12);
  border: 1px solid rgba(201, 163, 78, 0.32);
  color: var(--text);
  font-weight: 700;
}

.banner-note strong {
  color: var(--accent);
}

@media (max-width: 900px) {
  .topbar-inner,
  .section-heading,
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .prose-wrap {
    grid-template-columns: 1fr;
  }

  .aside-card {
    position: static;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .topbar-inner {
    min-height: 78px;
  }

  .brand-wordmark {
    width: 144px;
  }

  .hero {
    margin-top: 1.2rem;
    border-radius: 28px;
  }

  .hero h1,
  .prose-card h1 {
    max-width: none;
  }
}
