/* ============================================================
   SafeFinly Site — App-aligned brand system
   Palette source: SafeFinly app (BrandPalette copper + neutral UI)
   ============================================================ */

:root {
  --bg: #000000;
  --bg-soft: #0b0b0c;
  --bg-elevated: #141416;

  --surface: rgba(11, 11, 12, 0.82);
  --surface-strong: rgba(20, 20, 22, 0.94);
  --surface-muted: rgba(255, 255, 255, 0.03);

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(122, 53, 7, 0.42);

  --text: #ffffff;
  --text-soft: #d1d5db;
  --text-muted: #9ca3af;

  --accent: #7a3507;
  --accent-2: #93582b;
  --accent-3: #ac7c50;
  --accent-soft: #dec399;
  --accent-ivory: #f7e6bd;
  --accent-glow: rgba(122, 53, 7, 0.24);

  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.32);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.2);

  --container: 1300px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  font-feature-settings: 'cv11' 1, 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at 10% 12%, rgba(122, 53, 7, 0.24), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(247, 230, 189, 0.08), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(122, 53, 7, 0.16), transparent 42%),
    linear-gradient(180deg, #050505 0%, #020202 44%, #000000 100%);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, black 32%, transparent 86%);
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.shell {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px) saturate(150%);
  background: rgba(0, 0, 0, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.58rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  color: var(--accent);
}

.brand-name .accent {
  color: var(--accent-ivory);
}

.brand-tagline {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-mark {
  letter-spacing: -0.08em;
}

.brand-mark .mark {
  display: inline-block;
  font-weight: 800;
}

.brand-mark .mark.accent {
  color: var(--accent-ivory);
}

.brand-mark .mark.base {
  color: #ffffff;
}

.brand-mark .mark.blend {
  background: linear-gradient(90deg, var(--accent-ivory), #ffffff 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  padding: 98px 0 60px;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  width: 920px;
  height: 660px;
  left: 50%;
  top: -220px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(72px);
  background:
    radial-gradient(circle at center, rgba(122, 53, 7, 0.32), transparent 70%),
    radial-gradient(circle at 64% 36%, rgba(247, 230, 189, 0.08), transparent 62%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 22px;
  align-items: stretch;
}

.card,
.hero-visual,
.page-banner,
.footer-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 48%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card::before,
.hero-visual::before,
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(247, 230, 189, 0.12), transparent 26%),
    linear-gradient(320deg, rgba(122, 53, 7, 0.14), transparent 32%);
}

.hero-copy {
  padding: 48px;
  animation: fadeUp 0.72s ease 0.08s both;
}

.hero-visual {
  padding: 28px;
  height: 100%;
  animation: fadeUp 0.72s ease 0.24s both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 230, 189, 0.26);
  background: rgba(122, 53, 7, 0.34);
  color: var(--accent-ivory);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-ivory);
  box-shadow: 0 0 8px rgba(247, 230, 189, 0.52);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero h1,
.page-hero h1 {
  margin-top: 22px;
  font-size: clamp(2.7rem, 5.7vw, 4.95rem);
  line-height: 0.92;
  max-width: 11ch;
  background: linear-gradient(160deg, #ffffff 0%, #f7e6bd 46%, rgba(247, 230, 189, 0.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 40rem;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.76;
}

.hero-actions,
.page-actions,
.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 180ms ease;
  white-space: nowrap;
}

.button-primary {
  color: var(--accent-ivory);
  background: linear-gradient(132deg, var(--accent), var(--accent-2) 55%, var(--accent-3));
  border-color: rgba(247, 230, 189, 0.16);
  box-shadow:
    0 10px 34px rgba(122, 53, 7, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 42px rgba(122, 53, 7, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-kpi {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 180ms ease;
}

.hero-kpi:hover {
  border-color: var(--border-accent);
  background: rgba(255, 255, 255, 0.055);
}

.hero-kpi strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.03rem;
  letter-spacing: -0.03em;
}

.hero-kpi span {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.48;
}

.mockup-frame {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
}

.mockup-brand span,
.mockup-brand .mark.accent {
  color: var(--accent-ivory);
}

.mockup-brand .mark.base {
  color: #ffffff;
}

.mockup-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247, 230, 189, 0.24);
  background: rgba(122, 53, 7, 0.34);
  color: var(--accent-ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mockup-balance {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(122, 53, 7, 0.5), rgba(122, 53, 7, 0.12));
  border: 1px solid rgba(247, 230, 189, 0.18);
}

.mockup-balance-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.mockup-balance-amount {
  display: block;
  font-size: 2.34rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.mockup-balance-amount em {
  font-style: normal;
  font-size: 1.48rem;
  color: #e5e7eb;
}

.mockup-balance-sub {
  display: block;
  margin-top: 10px;
  font-size: 0.79rem;
  color: var(--accent-ivory);
  font-weight: 600;
}

.mockup-budgets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-budget-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-budget-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
}

.mockup-budget-top span:last-child {
  color: var(--text);
  font-weight: 700;
}

.mockup-track {
  height: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.mockup-fill {
  height: 100%;
  width: var(--w, 50%);
  border-radius: var(--radius-pill);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent-ivory), var(--accent-3));
  animation: barFill 1.3s cubic-bezier(0.34, 1.2, 0.64, 1) calc(0.64s + var(--delay, 0s)) both;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: auto;
}

.mockup-stat {
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-stat-val {
  display: block;
  font-size: 1.24rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.mockup-stat-val.accent {
  color: var(--accent-ivory);
}

.mockup-stat-key {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.section {
  padding: 38px 0;
}

.section-tinted {
  position: relative;
  margin: 12px 0;
  padding: 58px 0;
}

.section-tinted::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(122, 53, 7, 0.2) 0%, rgba(122, 53, 7, 0.08) 100%);
  border-top: 1px solid rgba(247, 230, 189, 0.16);
  border-bottom: 1px solid rgba(247, 230, 189, 0.16);
}

.stat-band {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.stat-band-item {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-soft);
}

.stat-band-item:first-child {
  background: linear-gradient(160deg, rgba(122, 53, 7, 0.58), rgba(122, 53, 7, 0.22));
}

.stat-band-value {
  font-size: clamp(2.15rem, 3.8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.stat-band-value.accent {
  color: var(--accent-ivory);
}

.stat-band-label {
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.statement-section {
  padding: 74px 0 56px;
  text-align: center;
}

.statement-section h2 {
  margin: 0 auto 24px;
  max-width: 16ch;
  font-size: clamp(2.36rem, 5.5vw, 4.95rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  background: linear-gradient(160deg, #ffffff 22%, rgba(247, 230, 189, 0.84));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statement-section p {
  max-width: 39rem;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.78;
}

.section-card.card-accent-line {
  border-left: 2px solid rgba(247, 230, 189, 0.4);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.benefit-card-featured {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, rgba(122, 53, 7, 0.54), rgba(122, 53, 7, 0.1)),
    var(--surface);
  border: 1px solid rgba(247, 230, 189, 0.22);
  box-shadow: 0 0 56px rgba(122, 53, 7, 0.26);
}

.benefit-card-featured h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.benefit-card-featured p {
  color: var(--text-soft);
  line-height: 1.74;
  font-size: 0.93rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin-top: 18px;
  max-width: 14ch;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 0.95;
}

.section-head p {
  max-width: 34rem;
  color: var(--text-soft);
  line-height: 1.74;
}

.feature-grid,
.benefit-grid,
.platform-grid,
.app-feature-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.section-card,
.benefit-card,
.platform-card,
.legal-card,
.faq-item,
.pricing-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: 190ms ease;
}

.section-card:hover,
.benefit-card:hover,
.platform-card:hover,
.faq-item:hover,
.pricing-card:hover {
  background: rgba(255, 255, 255, 0.058);
  border-color: rgba(247, 230, 189, 0.24);
  box-shadow: var(--shadow-md), 0 0 36px rgba(122, 53, 7, 0.2);
}

.section-card h3,
.benefit-card h3,
.platform-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.section-card p,
.benefit-card p,
.platform-card p,
.faq-item p,
.legal-card p,
.legal-card li,
.footer-card p,
.pricing-features li {
  color: var(--text-soft);
  line-height: 1.74;
  font-size: 0.92rem;
}

.icon-chip {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--accent-ivory);
  background: rgba(122, 53, 7, 0.5);
  border: 1px solid rgba(247, 230, 189, 0.24);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.proof-panel {
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015) 60%),
    var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.proof-panel h2 {
  margin: 18px 0 14px;
  max-width: 14ch;
  font-size: clamp(1.78rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.proof-panel p {
  color: var(--text-soft);
  line-height: 1.74;
  font-size: 0.94rem;
}

.proof-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.proof-stack article {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-stack strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.proof-stack p {
  margin: 0;
  font-size: 0.88rem;
}

.platform-card a,
.legal-card a,
.faq-item a,
table a,
.footer-bottom a {
  color: var(--accent-ivory);
  font-weight: 700;
}

.page-hero {
  padding: 68px 0 28px;
}

.page-layout {
  display: grid;
  gap: 20px;
}

.page-banner {
  padding: 44px;
}

.page-banner h1 {
  max-width: 15ch;
}

.page-banner p {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.faq-list,
.legal-grid {
  display: grid;
  gap: 14px;
}

.faq-item h2,
.legal-card h2 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.faq-item p {
  margin-top: 10px;
}

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-bottom: 12px;
}

.legal-card h3 {
  margin: 16px 0 10px;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
  color: var(--accent-soft);
}

.legal-card ul,
.pricing-features {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.74;
}

.notice {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 230, 189, 0.24);
  background: rgba(122, 53, 7, 0.34);
  color: var(--accent-ivory);
  font-size: 0.87rem;
  line-height: 1.65;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

th {
  color: #ffffff;
  font-weight: 600;
}

td {
  color: var(--text-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.pricing-card {
  padding: 32px;
}

.pricing-card.pricing-featured {
  background:
    linear-gradient(150deg, rgba(122, 53, 7, 0.58), rgba(122, 53, 7, 0.16)),
    var(--surface);
  border-color: rgba(247, 230, 189, 0.3);
  box-shadow: 0 0 80px rgba(122, 53, 7, 0.3);
}

.pricing-plan {
  display: block;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-featured .pricing-plan {
  color: var(--accent-ivory);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pricing-price em {
  font-style: normal;
  font-size: 1.4rem;
  color: var(--text-soft);
}

.pricing-period {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.pricing-annual {
  display: block;
  min-height: 1.2em;
  margin-top: 4px;
  color: var(--accent-ivory);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-sep {
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-featured .pricing-sep {
  background: rgba(247, 230, 189, 0.24);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-ivory);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
}

.pricing-features li.dim {
  opacity: 0.4;
}

.pricing-features li.dim::before {
  content: '–';
  color: var(--text-muted);
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.cta-card {
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(122, 53, 7, 0.48), rgba(122, 53, 7, 0.12)),
    var(--surface-strong);
  border: 1px solid rgba(247, 230, 189, 0.24);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -84px;
  transform: translateX(-50%);
  width: 530px;
  height: 214px;
  filter: blur(32px);
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(247, 230, 189, 0.22), transparent 70%);
}

.cta-card h2 {
  margin: 20px auto 18px;
  max-width: 17ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-card .eyebrow {
  display: inline-flex;
}

.cta-card .page-actions {
  justify-content: center;
}

.pricing-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  color: #1f1306;
  background: var(--accent-ivory);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.site-footer {
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}

.footer-card {
  padding: 28px;
}

.footer-card h3 {
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.88rem;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 28px;
  padding: 20px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 150ms ease;
}

.footer-bottom a:hover {
  color: var(--accent-ivory);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.09s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.27s;
}

.reveal-delay-4 {
  transition-delay: 0.36s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes barFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .benefit-grid,
  .proof-grid,
  .platform-grid,
  .footer-grid,
  .app-feature-grid,
  .pricing-grid,
  .feature-grid-6 {
    grid-template-columns: 1fr;
  }

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

  .hero-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--container), calc(100% - 28px));
  }

  .topbar-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding: 70px 0 44px;
  }

  .hero-copy,
  .page-banner,
  .hero-visual,
  .section-card,
  .benefit-card,
  .platform-card,
  .legal-card,
  .faq-item,
  .footer-card,
  .proof-panel,
  .pricing-card {
    padding: 26px;
  }

  .cta-card {
    padding: 36px 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.56rem;
    max-width: none;
  }

  .section-head h2,
  .proof-panel h2,
  .cta-card h2 {
    max-width: none;
    font-size: 2rem;
  }

  .hero-kpis,
  .mockup-stats,
  .stat-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .statement-section h2 {
    font-size: 2.4rem;
  }

  .benefit-card-featured {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .hero-kpis,
  .mockup-stats,
  .feature-grid,
  .stat-band-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .pricing-cta {
    width: 100%;
  }
}
