:root {
  --accent: #f0efe8;
  --text: #f0efe8;
  --text-secondary: #9a998f;
  --bg: #0a0a0a;
  --card-bg: #141414;
  --border: #222;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- HERO --- */

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: 0 80px 0 0;
  display: block;
  object-fit: cover;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}


/* --- PHONE SCREENSHOT --- */

.phone-screenshot {
  width: 360px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

/* --- DASHBOARD CARD --- */

.dash-card {
  width: 340px;
  background: var(--card-bg);
  border-radius: 0 80px 0 0;
  padding: 28px 24px 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.dash-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.dash-month {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.dash-amount-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.dash-amount {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.dash-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.dash-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.dash-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.dash-bar-full {
  display: flex;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
}

.dash-bar-spent {
  background: #999999;
  display: flex;
  align-items: center;
  padding: 0 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.dash-bar-remaining {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8px;
  overflow: hidden;
}

.dash-bar-inner {
  font-size: 0.625rem;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
}

.dash-bar-inner--rem {
  color: var(--text-secondary);
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}

.dash-chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.dash-chart-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px 4px 0 0;
}

.dash-chart-bar--active {
  background: #999999;
  opacity: 1;
}

.dash-chart-label {
  font-size: 0.625rem;
  color: var(--text-secondary);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.85;
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* --- SECTION --- */

section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 48px;
}

/* --- FEATURES GRID --- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--card-bg);
  border: none;
  border-top: 3px solid #555;
  border-radius: 0;
  padding: 32px 28px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --- SECTION SEPARATOR --- */

.section-sep {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-sep hr {
  border: none;
  height: 1px;
  background: var(--border);
}

/* --- DIFFERENTIATOR SECTIONS --- */

.diff-section {
  padding: 80px 24px;
}

.diff-row {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 200px;
  align-items: center;
}

.diff-row--reverse {
  grid-template-columns: 1fr auto;
}

.diff-screenshot {
  display: flex;
  justify-content: center;
}

.diff-content {
  max-width: 460px;
}

.diff-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.diff-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- CTA SECTION --- */

.cta-section {
  text-align: center;
  padding: 80px 24px 120px;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* --- PAGE CONTENT (support, privacy) --- */

.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

.page-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.page-section {
  margin-bottom: 40px;
}

.page-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.page-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.page-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.page-section ul {
  list-style: none;
  padding: 0;
}

.page-section ul li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.page-section ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- RESPONSIVE --- */

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    margin: 0 auto 32px;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diff-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 130px 20px 60px;
  }

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

  .feature-card {
    padding: 24px 20px;
  }

  section {
    padding: 80px 20px 60px;
  }

  .diff-section {
    padding: 60px 20px;
  }

  .phone-screenshot {
    width: 280px;
  }

  .dash-card {
    width: 100%;
    max-width: 340px;
  }
}
