/* ─── CSS custom properties override for very large screens ─────────────── */
@media (min-width: 1800px) {
  :root { --tab-max: 1760px; }
}
@media (min-width: 2400px) {
  :root { --tab-max: 2000px; }
}

/* ─── Gradient text ─────────────────────────────────────────────────────── */
.grad {
  background: linear-gradient(105deg, var(--purple) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Homepage tab bar ─────────────────────────────────────────────────── */
.home-tabs {
  position: fixed;
  z-index: 90;
  top: 68px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 max(24px, calc((100vw - 1400px) / 2));
  background: rgba(3,4,5,.94);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.home-tabs::-webkit-scrollbar { display: none; }

.h-tab {
  appearance: none;
  border: 0;
  background: none;
  color: #737579;
  font-family: var(--label-font);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 22px;
  height: 100%;
  position: relative;
  transition: color .2s ease;
  flex-shrink: 0;
}
.h-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  opacity: 0;
  transition: opacity .22s ease;
}
.h-tab:hover  { color: #c4c5c9; }
.h-tab.active { color: #f5f5f7; }
.h-tab.active::after { opacity: 1; }

/* ─── Main panel area ───────────────────────────────────────────────────── */
.tabs-main { padding-top: 114px; /* topbar 68px + tabbar 46px */ }
.tab-panel  { display: none; }
.tab-panel.active { display: block; }

/* ═══ FEATURE SECTION ═══════════════════════════════════════════════════
   Two-column layout: image on one side, text on the other.
   .feat-section--flip reverses the order.
   Text and image are ALWAYS in separate columns — never overlapping.
   ─────────────────────────────────────────────────────────────────────── */
.feat-section {
  width: min(var(--max, 1400px), calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
}
.feat-section--flip { direction: rtl; }
.feat-section--flip > * { direction: ltr; }

/* Image column */
.feat-section__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feat-section__img img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 44px 110px rgba(0,0,0,.68), 0 0 0 1px rgba(255,255,255,.07);
}
/* Wide images (iPad/landscape screenshots) */
.feat-section__img--wide img {
  max-width: 100%;
  border-radius: 20px;
}

/* Text column */
.feat-section__text .eyebrow { margin-bottom: 12px; }
.feat-section__text h2 {
  margin: 0 0 24px;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .97;
}
.feat-section__text p {
  color: #a8abb2;
  font-size: clamp(.93rem, 1.1vw, 1.06rem);
  line-height: 1.78;
  margin: 0 0 16px;
  max-width: 560px;
}
.feat-section__text p:last-of-type { margin-bottom: 0; }
.feat-section__text .plain-link    { display: inline-block; margin-top: 20px; }

/* Platform badges */
.platform-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-family: var(--label-font);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c0c2c8;
}
.platform-badge--soon {
  border-color: rgba(168,150,255,.38);
  color: var(--purple);
  background: rgba(168,150,255,.08);
}

/* ═══ iPAD / WIDE SHOWCASE ══════════════════════════════════════════════
   Full-width image below a label block. Image always below, text above.
   ─────────────────────────────────────────────────────────────────────── */
.ipad-showcase {
  width: min(var(--max, 1400px), calc(100% - 64px));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ipad-showcase__label {
  max-width: 820px;
  margin-bottom: 48px;
}
.ipad-showcase__label h2 {
  margin: 12px 0 20px;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .97;
}
.ipad-showcase__label p {
  color: #a8abb2;
  font-size: clamp(.93rem, 1.1vw, 1.06rem);
  line-height: 1.77;
  max-width: 640px;
  margin: 0;
}
.ipad-showcase__img { display: block; }
.ipad-showcase__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 44px 110px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.07);
}

/* ── A E T H Y R screenshot grid ──────────────────────────────────────────
   Scoped to the Aethyr panel. .ipad-showcase__img sets width:100% on its
   image, which is right for one landscape tablet shot and wrong for a
   portrait phone one — it would render a 1256px screenshot at 1400px. These
   sit in a responsive grid instead and never exceed their natural width. */
.aethyr-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 28px;
  margin-top: 48px;
}
.aethyr-shots figure { margin: 0; }
.aethyr-shots img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.07);
}
.aethyr-shots figcaption {
  margin-top: 14px;
  color: #a8abb2;
  font-size: .88rem;
  line-height: 1.6;
}
.aethyr-shots figcaption strong {
  display: block;
  color: #e8eaee;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — from 4K down to small phones
   Each breakpoint listed explicitly for clarity.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Very large / 4K (≥ 2400px) ────────────────────────────────────────── */
@media (min-width: 2400px) {
  .feat-section  { padding: 160px 0; gap: 120px; }
  .feat-section__img img { max-width: 400px; border-radius: 36px; }
  .feat-section__text h2 { font-size: 5rem; }
  .feat-section__text p  { font-size: 1.18rem; }
  .ipad-showcase  { padding: 140px 0; }
  .ipad-showcase__label h2 { font-size: 5rem; }
  .h-tab { font-size: .72rem; padding: 0 28px; }
}

/* ── Wide / QHD (1600–2400px) ───────────────────────────────────────────── */
@media (min-width: 1600px) and (max-width: 2399px) {
  .feat-section { padding: 140px 0; }
  .feat-section__img img { max-width: 360px; }
}

/* ── Standard laptop / desktop (1024–1600px) ─────────────────────────────── */
/* Default styles cover this range */

/* ── iPad landscape / small laptop (768–1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  .feat-section { padding: 90px 0; gap: 48px; }
  .feat-section__img img { max-width: 280px; }
  .feat-section__text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
  .ipad-showcase { padding: 80px 0; }
}

/* ── iPad portrait / large phone (600–900px) — stack to single column ─────── */
@media (max-width: 900px) {
  .feat-section {
    grid-template-columns: 1fr;
    padding: 72px 0;
    gap: 36px;
  }
  /* Always show image first regardless of flip */
  .feat-section--flip { direction: ltr; }
  .feat-section--flip .feat-section__img { order: -1; }

  .feat-section__img img { max-width: 280px; }
  .feat-section__text h2 { font-size: clamp(2rem, 5vw, 3rem); }
  .feat-section__text p  { max-width: 100%; }

  .ipad-showcase { padding: 60px 0; }
  .ipad-showcase__label { margin-bottom: 32px; }

  .home-tabs { padding: 0 16px; }
}

/* ── Phones (≤ 600px) ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .tabs-main { padding-top: 114px; }

  .home-tabs { padding: 0 6px; }
  .h-tab { padding: 0 12px; font-size: .58rem; letter-spacing: .13em; }

  .feat-section {
    width: calc(100% - 40px);
    padding: 56px 0;
    gap: 28px;
  }
  .feat-section__img img { max-width: 240px; border-radius: 22px; }
  .feat-section__text h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .feat-section__text p  { font-size: .94rem; }

  .ipad-showcase {
    width: calc(100% - 40px);
    padding: 48px 0;
  }
  .ipad-showcase__label h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .ipad-showcase__img img { border-radius: 14px; }
}

/* ── Very small phones (≤ 390px) ────────────────────────────────────────── */
@media (max-width: 390px) {
  .h-tab { padding: 0 9px; font-size: .55rem; }
  .feat-section { width: calc(100% - 28px); }
  .feat-section__img img { max-width: 200px; }
}

/* ═══ FEATURE GRID ═══════════════════════════════════════════════════════
   Overview grid on Home — feature tiles with screenshot + name + tagline.
   ─────────────────────────────────────────────────────────────────────── */
.feat-grid {
  width: min(var(--max, 1400px), calc(100% - 64px));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.feat-grid__label {
  text-align: center;
  margin-bottom: 56px;
}
.feat-grid__label .eyebrow { margin-bottom: 12px; }
.feat-grid__label h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.05em;
  margin: 0 0 16px;
}
.feat-grid__label p {
  color: #a8abb2;
  font-size: clamp(.93rem, 1.1vw, 1.05rem);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
}
.feat-grid__tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feat-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, transform .22s ease;
}
.feat-tile:hover {
  border-color: rgba(168,150,255,.35);
  transform: translateY(-2px);
}
.feat-tile__img {
  width: 100%;
  aspect-ratio: 9/17;
  overflow: hidden;
}
.feat-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.feat-tile__body {
  padding: 16px 18px 20px;
}
.feat-tile__name {
  font-family: var(--label-font);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 5px;
}
.feat-tile__desc {
  font-size: .88rem;
  color: #c0c2c8;
  line-height: 1.55;
  margin: 0;
}

/* Apple Watch tiles — shaped like the actual watch face, not a phone crop */
.feat-tile__img.watch-face {
  aspect-ratio: 400/476;
  max-width: 210px;
  margin: 18px auto 0;
  border-radius: 46px;
  border: 3px solid rgba(255,255,255,.08);
  background: #000;
}
.feat-tile__img.watch-face img {
  object-fit: contain;
  object-position: center;
  border-radius: 43px;
}

/* ═══ FOUNDER PAGE ══════════════════════════════════════════════════════
   Leo's page — story, pledge, press contact.
   ─────────────────────────────────────────────────────────────────────── */
.founder-page {
  width: min(820px, calc(100% - 64px));
  margin: 0 auto;
  padding: 80px 0 140px;
}
.founder-hero {
  text-align: center;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 72px;
}
.founder-hero img.founder-orb {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: block;
}
.founder-hero h1 {
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .95;
  margin: 12px 0 28px;
}
.founder-hero p.founder-lead {
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  color: #a8abb2;
  line-height: 1.82;
  max-width: 620px;
  margin: 0 auto;
}
.founder-story h2 {
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.04em;
  margin: 48px 0 18px;
}
.founder-story > p {
  color: #a8abb2;
  font-size: clamp(.97rem, 1.1vw, 1.07rem);
  line-height: 1.87;
  margin: 0 0 22px;
}
p.pull-quote {
  font-family: var(--display-font);
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -.03em;
  color: #f5f5f7;
  line-height: 1.38;
  border-left: 3px solid rgba(168,150,255,.55);
  padding-left: 28px;
  margin: 44px 0 !important;
}
.founder-pledge {
  margin-top: 56px;
  padding: 36px 40px;
  background: rgba(111,207,151,.05);
  border: 1px solid rgba(111,207,151,.2);
  border-radius: 20px;
}
.founder-pledge h3 {
  font-family: var(--label-font);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6fcf97;
  margin: 0 0 18px;
}
.founder-pledge p {
  color: #a8abb2;
  font-size: .97rem;
  line-height: 1.78;
  margin: 0 0 14px;
}
.founder-pledge p:last-child { margin-bottom: 0; }
.founder-contact {
  margin-top: 60px;
  padding: 52px 56px;
  background: rgba(168,150,255,.06);
  border: 1px solid rgba(168,150,255,.22);
  border-radius: 24px;
  text-align: center;
}
.founder-contact h2 {
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}
.founder-contact p {
  color: #a8abb2;
  font-size: clamp(.96rem, 1.1vw, 1.04rem);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 32px;
}
.founder-contact .contact-email {
  display: inline-block;
  font-family: var(--label-font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(168,150,255,.4);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.founder-contact .contact-email:hover {
  background: rgba(168,150,255,.1);
  border-color: rgba(168,150,255,.7);
}

/* Responsive for new components */
@media (max-width: 1200px) {
  .feat-grid__tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .feat-grid__tiles { grid-template-columns: repeat(3, 1fr); }
  .founder-contact { padding: 40px 40px; }
}
@media (max-width: 900px) {
  .feat-grid__tiles { grid-template-columns: repeat(2, 1fr); }
  .founder-contact { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .feat-grid { width: calc(100% - 40px); padding: 72px 0; }
  .feat-grid__tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-tile__body { padding: 12px 14px 16px; }
  .feat-tile__name { font-size: .52rem; }
  .feat-tile__desc { font-size: .84rem; }
  .founder-page { width: calc(100% - 40px); padding: 56px 0 100px; }
  .founder-contact { padding: 28px 22px; }
  .founder-pledge { padding: 28px 22px; }
  p.pull-quote { font-size: clamp(1.1rem, 5vw, 1.5rem); padding-left: 18px; }
}
@media (max-width: 390px) {
  .feat-grid__tiles { gap: 8px; }
}

/* ═══ WATCH SHOWCASE ═════════════════════════════════════════════════════
   Five watch-face tiles — responsive, replacing a fragile inline 3-col style.
   ─────────────────────────────────────────────────────────────────────── */
.watch-tiles {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .watch-tiles { grid-template-columns: repeat(3, 1fr); max-width: 720px; } }
@media (max-width: 600px)  { .watch-tiles { grid-template-columns: repeat(2, 1fr); max-width: none; } }

/* ═══ BRAND SWITCHER ═════════════════════════════════════════════════════
   Two-way toggle in the topbar, replacing the old static wordmark.
   "adhd" = the existing Aethyr ADHD site, untouched.
   "aethyr" = the new unrestricted Aethyr app panel below.
   ─────────────────────────────────────────────────────────────────────── */
.brand-tabs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 3px;
}
.brand-tab {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--label-font);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  white-space: nowrap;
  color: #8b8d92;
  padding: 9px 18px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.brand-tab span { color: var(--purple); transition: color .2s ease; }
.brand-tab:hover { color: #d5d6da; }
.brand-tab.active { color: #101114; background: #f5f5f7; }
.brand-tab.active span { color: #101114; }

/* Nav links are brand-specific; only the active brand's set shows.
   Three brands now: Aethyr ADHD iOS, Aethyr ADHD Android, A E T H Y R.
   The two ADHD tabs share a nav — both stores, both sets of pages — so
   only A E T H Y R swaps its links out. */
.primary-nav a[data-brand="aethyr"] { display: none; }
body.brand-aethyr .primary-nav a[data-brand="adhd"] { display: none; }
body.brand-aethyr .primary-nav a[data-brand="aethyr"] { display: inline-block; }

/* On the Android tab, lead with Google Play rather than the App Store. */
body.brand-android .primary-nav .nav-cta--play { order: -1; background: #f5f5f7; color: #101114; border-color: transparent; font-weight: 700; }
body.brand-android .primary-nav .nav-cta--ios { background: transparent; color: #e8eaee; border: 1px solid rgba(255,255,255,.28); font-weight: 600; }

/* The AETHYR panel has no sub-tabs of its own — hide the ADHD sub-tab bar
   and reclaim the vertical space it would otherwise reserve. */
body.brand-aethyr .home-tabs { display: none; }
body.brand-aethyr .tabs-main { padding-top: 68px; }
@media (max-width: 900px) {
  body.brand-aethyr .tabs-main { padding-top: 64px; }
}

@media (max-width: 900px) {
  .brand-tabs { padding: 2px; }
  .brand-tab { font-size: .62rem; letter-spacing: .13em; padding: 8px 12px; }
}
@media (max-width: 600px) {
  .brand-tab { font-size: .56rem; padding: 7px 9px; }
}

/* ═══ CAPABILITY GRID ════════════════════════════════════════════════════
   Text-only feature tiles for the AETHYR panel — no app screenshots,
   since it doesn't have its own screens yet.
   ─────────────────────────────────────────────────────────────────────── */
.capability-grid {
  width: min(var(--max, 1400px), calc(100% - 64px));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.capability-grid__label { text-align: center; margin-bottom: 56px; }
.capability-grid__label .eyebrow { margin-bottom: 12px; }
.capability-grid__label h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.05em;
  margin: 0 0 16px;
}
.capability-grid__label p {
  color: #a8abb2;
  font-size: clamp(.93rem, 1.1vw, 1.05rem);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.72;
}
.capability-grid__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.capability-tile {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 26px 24px;
  transition: border-color .22s ease, transform .22s ease;
}
.capability-tile:hover {
  border-color: rgba(168,150,255,.35);
  transform: translateY(-2px);
}
.capability-tile__name {
  font-family: var(--label-font);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 10px;
}
.capability-tile__desc {
  font-size: .92rem;
  color: #c0c2c8;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1200px) { .capability-grid__tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .capability-grid__tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .capability-grid { width: calc(100% - 40px); padding: 72px 0; }
  .capability-grid__tiles { grid-template-columns: 1fr; gap: 12px; }
}

/* ═══ PRICING CARDS ══════════════════════════════════════════════════════
   Monthly / yearly plan pair for the AETHYR panel.
   ─────────────────────────────────────────────────────────────────────── */
.price-cards-wrap {
  width: min(var(--max, 1400px), calc(100% - 64px));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.price-cards-wrap .eyebrow { margin-bottom: 12px; }
.price-cards-wrap h2 {
  font-family: var(--display-font);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.05em;
  margin: 0 0 48px;
}
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.price-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
}
.price-card--year {
  border-color: rgba(168,150,255,.4);
  background: rgba(168,150,255,.06);
}
.price-card__badge {
  position: absolute;
  top: -13px;
  right: 28px;
  background: var(--purple);
  color: #101114;
  font-family: var(--label-font);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card__name {
  font-family: var(--label-font);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c0c2c8;
  margin: 0 0 18px;
}
.price-card__amount {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -.04em;
  margin: 0;
}
.price-card__amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #8b8d92;
  letter-spacing: 0;
}
.price-card__desc {
  margin-top: 18px;
  color: #a8abb2;
  font-size: .9rem;
  line-height: 1.65;
}
.price-cards-note {
  max-width: 620px;
  margin: 28px auto 0;
  color: #7d8087;
  font-size: .84rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .price-cards-wrap { width: calc(100% - 40px); padding: 72px 0; }
  .price-cards { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 30px 24px; }
}

/* ── App icon above the hero headline ─────────────────────────────────────
   Circle-cropped PNGs with real transparency, so they sit on the dark
   ground without a visible tile edge. */
.hero-appicon{
  display:block; width:84px; height:84px;
  margin:0 0 22px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.55));
}
@media (max-width:640px){ .hero-appicon{ width:66px; height:66px; margin-bottom:16px; } }

/* ── Brand tabs: three apps, so each needs its platform stated ────────────
   The platform is a quieter second line at phone width, inline above it. */
.brand-tab b{
  font-weight:600; font-style:normal; opacity:.62;
  letter-spacing:.06em; font-size:.86em; margin-left:.15em;
}
.brand-tab.active b{ opacity:.7; }
@media (max-width:820px){
  .brand-tabs{ flex-wrap:wrap; }
  .brand-tab{ font-size:.72rem; padding-inline:12px; }
  .brand-tab b{ font-size:.8em; }
}

/* ── Brand bar on the inner pages ─────────────────────────────────────────
   index.html switches panels in place; every other page is a real document,
   so there the tabs are links back to the right panel. Same pill, same
   sizing — a visitor should not be able to tell the difference. */
.brand-tabs a.brand-tab{
  display:inline-flex; align-items:center;
  text-decoration:none; white-space:nowrap;
}
@media (max-width:900px){
  .topbar .brand-tabs{ position:static; transform:none; margin-right:auto; }
}
