﻿@font-face{font-family:'PT Serif';font-weight:400;font-style:normal;font-display:swap;src:url('fonts/pt-serif-400.woff2') format('woff2')}
@font-face{font-family:'PT Serif';font-weight:700;font-style:normal;font-display:swap;src:url('fonts/pt-serif-700.woff2') format('woff2')}
/* Rollup Money design system
   Font roles:
   Display: IBM Plex Sans for h1-h4, display text, card titles, plan names,
   buttons/CTAs, badges, pills, eyebrows and navigation actions.
   Body: DM Sans as the default for paragraphs, descriptions, lists, inputs,
   mock UI text, footer text and all remaining interface copy. */
:root {
  color-scheme: dark;
  --font-display: "IBM Plex Sans", sans-serif;
  --font-brand: 'PT Serif', Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --color-ink: #ffffff;
  --color-ink-soft: rgba(255, 255, 255, .78);
  --color-ink-muted: rgba(255, 255, 255, .52);
  --color-ink-faint: rgba(255, 255, 255, .34);
  --color-bg: #000000;
  --color-surface: rgba(255, 255, 255, .035);
  --color-surface-strong: rgba(255, 255, 255, .07);
  --color-border: rgba(255, 255, 255, .10);
  --color-brand: #1C8362;
  --color-brand-hover: #369B77;
  --color-gold: #F3A504;
  --color-danger: #BA4A4A;
  --color-blue: #034365;

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-focus: 0 0 0 3px rgba(28, 131, 98, .28);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 4rem;
}

[data-theme="light"] {
  color-scheme: light;
  --color-ink: #151515;
  --color-ink-soft: #2a2a2a;
  --color-ink-muted: #6b6355;
  --color-ink-faint: #8a8173;
  --color-bg: #f9f6f0;
  --color-surface: #ffffff;
  --color-surface-strong: #f2ede4;
  --color-border: #e0d8cc;
  --color-brand: #33605A;
  --color-brand-hover: #3d7a72;
  --color-gold: #FFC100;
}

html {
  font-family: var(--font-body);
  letter-spacing: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
label,
input,
textarea,
select,
small,
figcaption,
footer,
.body-copy,
.card-description,
.mock-ui,
.form-field,
.field-label {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
.display,
.display-title,
.section-title,
.card-title,
.plan-name,
.brand-wordmark,
.eyebrow,
.pill,
.save-badge,
.save-badge-gold,
.game-badge,
button,
.btn,
.cta,
.cta-pulse,
.app-btn-v2,
.bill-btn,
.lang-btn,
.lang-select,
.dot-btn,
.submit-btn,
.nav-action {
  font-family: var(--font-display);
}

h1,
h2,
h3,
h4,
.display,
.display-title,
.section-title {
  letter-spacing: 0;
  line-height: 1.05;
}

.display {
  font-weight: 700;
}

.brand-wordmark {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: -.01em;
}

.brand-wordmark .brand-wordmark-light {
  font-weight: 300;
}

.eyebrow,
.pill,
.save-badge,
.save-badge-gold,
.game-badge {
  font-weight: 700;
  letter-spacing: .08em;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: var(--text-xs);
  line-height: 1.1;
  background: rgba(28, 131, 98, .16);
  color: var(--color-ink);
}

.pill-gold {
  background: rgba(243, 165, 4, .16);
  color: var(--color-gold);
}

.btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.btn:active,
.cta:active {
  transform: scale(.98);
}

.btn-primary,
.cta-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(28, 131, 98, .22);
}

.btn-primary:hover,
.cta-primary:hover {
  background: var(--color-brand-hover);
}

.btn-secondary,
.cta-secondary {
  background: var(--color-surface-strong);
  color: var(--color-ink);
  border-color: var(--color-border);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink-soft);
  border-color: transparent;
}

.btn-gold {
  background: var(--color-gold);
  color: #050505;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.card-title {
  font-weight: 700;
  color: var(--color-ink);
}

.card-description {
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea,
select {
  font-family: var(--font-body);
}

.form-control {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  background: var(--color-surface);
  color: var(--color-ink);
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.alert,
.toast {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: var(--color-surface);
  color: var(--color-ink-soft);
}

.tabs {
  display: inline-flex;
  gap: .25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: .25rem;
}

.tab {
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink-muted);
  padding: .5rem .75rem;
  font-weight: 700;
}

.tab[aria-selected="true"],
.tab.active {
  background: var(--color-brand);
  color: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.table th {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
}

.table th,
.table td {
  border-bottom: 1px solid var(--color-border);
  padding: .75rem;
}




