/* ===================== AURALIS UI SYSTEM ===================== */

:root {

  /* Brand Colors */
  --auralis-purple: #8d63ff;
  --auralis-blue: #4aa8ff;
  --auralis-cyan: #3fe0ff;

  /* Background gradient (dark mode) */
  --bg-dark-1: #05070d;
  --bg-dark-2: #0a0f1f;
  --bg-dark-3: #0d1228;

  /* Glass Blur */
  --glass-blur: 22px;
  --glass-opacity: 0.18;
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Neon Glows */
  --glow-blue: rgba(90, 150, 255, 0.75);
  --glow-purple: rgba(180, 90, 255, 0.70);
  --glow-cyan: rgba(0, 220, 255, 0.65);

  /* Aurora Colors */
  --aurora-1: rgba(82, 126, 255, 0.32);
  --aurora-2: rgba(255, 77, 201, 0.22);
  --aurora-3: rgba(56, 220, 255, 0.20);

  /* Cards & Radii */
  --radius-card: 16px;         /* Apple Rounded Corners */
  --radius-pill: 28px;
  --radius-field: 12px;

  /* Shadows */
  --shadow-1: 0 8px 22px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 14px 36px rgba(0, 0, 0, 0.45);

  /* Typography */
  --text: rgba(255, 255, 255, 0.92);
  --text-dim: rgba(255, 255, 255, 0.66);
  --text-faint: rgba(255, 255, 255, 0.48);

  /* Layout */
  --container: 1040px;
}

/* ============================================================
  Base
============================================================ */

* { box-sizing: border-box; }

html, body { height: 100%; }

body.page {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 15% -10%, var(--aurora-1), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, var(--aurora-2), transparent 55%),
    radial-gradient(900px 500px at 60% 80%, var(--aurora-3), transparent 55%),
    linear-gradient(180deg, var(--bg-dark-1), var(--bg-dark-2) 40%, var(--bg-dark-3));
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

a { color: inherit; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.main {
  padding: 34px 0 42px;
}

.footer {
  padding: 22px 0;
  border-top: none;
}


.footer-inner {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-note {
  color: var(--text-faint);
}

/* ============================================================
  Footer legal links
============================================================ */

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 12px;
}

.footer-links a {
  text-decoration: none;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================================
  Legal pages
============================================================ */

.legal-shell {
  padding: 34px 0 46px;
}

.legal-card {
  padding: 18px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, var(--glass-opacity));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-1);
}

.legal-title {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.legal-meta {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}

.legal-toc {
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.legal-toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.legal-toc a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 6px;
  text-decoration: none;
  color: var(--text);
  opacity: 0.9;
}

.legal-toc a:hover {
  opacity: 1;
  text-decoration: underline;
}

.legal-card h2 {
  margin: 18px 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-card p, .legal-card li {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.65;
}

.legal-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.legal-divider {
  margin: 18px 0;
  height: 1px;
  background: rgba(255,255,255,0.10);
  border: 0;
}

/* ============================================================
  Navigation
============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.glass-nav {
  background: rgba(10, 14, 28, 0.55);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.nav-left {
  display:flex;
  align-items:center;
  gap: 12px;
}

.logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;

  /* keep your styling */
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(141, 99, 255, 0.25);
}


.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.nav-link-active {
  color: var(--text);
  background: rgba(90, 150, 255, 0.10);
  border-color: rgba(90, 150, 255, 0.22);
}

/* ============================================================
  Buttons
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(74,168,255,0.90), rgba(141,99,255,0.85));
  border-color: rgba(255,255,255,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
}

.btn-card {
  width: 100%;
  margin-top: 12px;
  background: rgba(255,255,255,0.05);
}

/* ============================================================
  Pills / badges
============================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
}

.pill-live {
  border-color: rgba(63,224,255,0.24);
  background: rgba(63,224,255,0.06);
  color: rgba(210, 255, 255, 0.88);
}

/* ============================================================
  Cards
============================================================ */

.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 920px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow-1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(var(--glass-blur));
}

.card-accent {
  border-color: rgba(141,99,255,0.22);
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(141,99,255,0.18), transparent 60%),
    rgba(255,255,255,0.045);
}



.card-title {
  margin: 10px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card-text {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.card-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
  Existing hero bits (kept for compatibility)
============================================================ */

.hero-badge { display:none; } /* homepage now uses lp-kicker */
.hero-title { display:none; }
.hero-text { display:none; }
.hero-actions { display:none; }

/* ============================================================
  Auth pages (shared)
============================================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 16px 72px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(var(--glass-blur));
}

.auth-brand {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 10px;
}

.auth-brand img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}


.auth-title {
  margin: 8px 0 6px;
  text-align:center;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.auth-subtitle {
  margin: 0 0 18px;
  text-align:center;
  color: var(--text-dim);
  font-size: 14px;
}

.auth-form label {
  display:block;
  margin: 14px 0 6px;
  color: var(--text-dim);
  font-size: 13px;
}

.auth-form input {
  width: 100%;
  padding: 12px 12px;
  border-radius: var(--radius-field);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(90,150,255,0.55);
  box-shadow: 0 0 0 3px rgba(90,150,255,0.18);
}

.auth-form button {
  width: 100%;
  margin-top: 16px;
}

.auth-links {
  margin-top: 14px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.auth-links a {
  color: var(--auralis-blue);
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.msg {
  margin-top: 14px;
  font-size: 13px;
}

.msg.err { color: #ff6b7a; }
.msg.ok  { color: #65ffb5; }

/* ============================================================
  Landing page (homepage)
============================================================ */

.beta-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: middle;
  background: rgba(255, 191, 0, 0.14);
  border: 1px solid rgba(255, 191, 0, 0.35);
}

.landing { padding-top: 28px; }

.lp-hero { padding: 14px 0 28px; }

.lp-hero-grid {
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 920px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
}

.lp-hero-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(var(--glass-blur));
}

.lp-kicker {
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--auralis-cyan);
  box-shadow: 0 0 18px var(--glow-cyan);
}

.lp-kicker span {
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-title {
  margin: 0 0 10px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

@media (max-width: 520px) {
  .lp-title { font-size: 38px; }
}

.lp-lede {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.lp-actions {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.lp-metrics { display:grid; gap: 10px; }

.lp-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.lp-metric .k {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-metric .v {
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.lp-section { margin-top: 26px; }

.lp-section-title {
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.lp-grid-3 {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 920px) {
  .lp-grid-3 { grid-template-columns: 1fr; }
}

.lp-mini {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.lp-mini h3 { margin: 0 0 8px; font-size: 15px; }

.lp-mini p {
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}

.lp-faq details {
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 12px 14px;
}

.lp-faq details + details { margin-top: 10px; }

.lp-faq summary { cursor: pointer; font-weight: 600; }

.lp-faq summary::marker { color: var(--auralis-blue); }

.lp-faq p {
  margin: 10px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.lp-cta {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(77, 142, 255, 0.16), rgba(141, 99, 255, 0.12));
  border: 1px solid rgba(255,255,255,0.12);
}

.lp-cta h2 { margin: 0 0 8px; font-size: 18px; }

.lp-cta p {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

/* Kill stray horizontal divider on homepage */
body > hr,
main > hr,
.homepage hr,
.page hr {
  display: none !important;
}

footer,
.footer {
  border-top: none !important;
}

/* ============================================================
   WRITING LAB + TRAINER UI (missing module styles)
   ============================================================ */

.page-writing .vision-layout {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.writing-main {
  padding-top: 28px;
  padding-bottom: 40px;
}

.glass-sidebar {
  flex: 0 0 360px;
  width: 360px;
  position: sticky;
  top: 92px;
  padding: 18px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, var(--glass-opacity));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-1);
}

.module-stack {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-card {
  padding: 18px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, var(--glass-opacity));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-1);
}

.module-card .module-title {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.panel-title {
  margin: 0 0 8px;
  font-size: 20px;
}

.panel-subtitle {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.5;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.field-group label {
  font-size: 12px;
  color: var(--text-dim);
}

.glass-field,
.field-group select,
.field-group input,
.field-group textarea {
  width: 100%;
}

.field-group select,
.field-group input,
.field-group textarea {
  border-radius: var(--radius-field);
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
}

.field-group select:focus,
.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(141, 99, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(141, 99, 255, 0.14);
}

.mode-toggle {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mode-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.mode-btn-active {
  background: rgba(141, 99, 255, 0.22);
  border-color: rgba(141, 99, 255, 0.45);
}

.task-output,
.feedback-output {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}

.task-chart-wrapper {
  margin-top: 14px;
}

.task-diagram {
  margin-top: 14px;
}

.editor-wrapper {
  position: relative;
}

.answer-textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
}

.word-counter-chip {
  margin-top: 10px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: var(--text-dim);
}

.glass-btn {
  width: 100%;
}

.disclaimer-box {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: var(--radius-field);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.5;
}

/* Responsive: collapse sidebar */
@media (max-width: 980px) {
  .page-writing .vision-layout {
    flex-direction: column;
  }
  .glass-sidebar {
    position: relative;
    top: auto;
    width: 100%;
    flex: 1 1 auto;
  }
}

/* ============================================================
   WRITING LAB overrides (softer glass, no dark slabs)
   ============================================================ */

.page-writing .glass-card,
.page-writing .glass-sidebar {
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(255, 77, 201, 0.10), transparent 60%),
    radial-gradient(900px 320px at 90% 0%, rgba(74, 168, 255, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
/* Editor (textarea) — glass, readable, not white */
.page-writing .answer-textarea {
  background:
    radial-gradient(700px 240px at 20% 10%, rgba(255, 77, 201, 0.08), transparent 60%),
    radial-gradient(700px 240px at 80% 0%, rgba(74, 168, 255, 0.08), transparent 60%),
    rgba(10, 14, 28, 0.28);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 14px;
  font-size: 14px;
  line-height: 1.65;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.35);
}

.page-writing .answer-textarea:focus {
  border-color: rgba(255, 77, 201, 0.40);
  box-shadow:
    0 0 0 4px rgba(255, 77, 201, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.35);
}

/* Floating label stays subtle */
.page-writing .floating-label {
  color: rgba(255, 255, 255, 0.60);
}

/* ============================================================
   SELECT (dropdown) – force dark + consistent glass styling
   ============================================================ */

/* Closed select control */
.page-writing select,
.page-trainer select,
.page-writing .glass-sidebar select,
.page-trainer .glass-sidebar select {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border-radius: var(--radius-field);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  outline: none;

  /* reduce OS/light dropdown mismatches where supported */
  color-scheme: dark;

  /* consistent arrow + remove default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* custom chevron */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.72) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.72) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.14), rgba(255,255,255,0.14));
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%,
    calc(100% - 34px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 18px;
  background-repeat: no-repeat;
}

.page-writing select:focus,
.page-trainer select:focus {
  border-color: rgba(255, 77, 201, 0.40);
  box-shadow: 0 0 0 4px rgba(255, 77, 201, 0.14);
}

/* Dropdown list items (limited support across browsers, but helps Firefox/Chromium) */
.page-writing select option,
.page-trainer select option {
  background: #0a0f1f;
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================================
  Pricing page
============================================================ */

.pricing-shell {
  padding-top: 28px;
}

.pricing-hero {
  padding: 14px 0 18px;
}

.pricing-hero-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(var(--glass-blur));
}

.pricing-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing-title {
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.pricing-lede {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-status {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.pricing-status-label {
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.pricing-pill.is-pro {
  border-color: rgba(141,99,255,0.28);
  background: rgba(141,99,255,0.12);
}

.pricing-notice {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-cards {
  margin-top: 16px;
}

.plan-price {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.plan-price-main {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.plan-price-sub {
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 12px;
}

.plan-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-footnote {
  margin: 12px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.55;
}
