﻿:root {
  --ink: #071B4D;
  --ink-soft: #123A6F;
  --blue: #2563EB;
  --blue-strong: #0756F6;
  --cyan: #38BDF8;
  --cyan-soft: #EAF9FF;
  --surface: #F6FAFF;
  --surface-2: #EEF6FF;
  --card: #FFFFFF;
  --line: #EAF1FF;
  --text: #5F6C83;
  --muted: #8A96A8;
  --income: #7BCFA6;
  --expense: #F3A6A6;
  --transfer: #8EC5FF;
  --warning: #F6C56F;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --shadow-soft: 0 24px 70px rgba(18, 58, 111, 0.12);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 8%, rgba(56,189,248,0.20), transparent 30%),
    radial-gradient(circle at 78% 4%, rgba(37,99,235,0.12), transparent 34%),
    linear-gradient(180deg, #F6FAFF 0%, #EEF6FF 100%);
}
.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: repeating-linear-gradient(125deg, transparent 0 26px, rgba(37,99,235,0.045) 27px 28px);
  mask-image: radial-gradient(circle at 72% 12%, black, transparent 45%);
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(234, 241, 255, .8);
  background: rgba(246, 250, 255, .88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-tile {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  flex: 0 0 auto;
}
.logo-tile img { width: 78%; height: 78%; object-fit: contain; }
.logo-tile-lg { width: 62px; height: 62px; border-radius: 24px; }
.brand-text { display: flex; flex-direction: column; gap: 4px; }
.brand-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #071B4D;
}
.brand-name-lg {
  font-size: 30px;
}
.brand-subtitle {
  color: var(--blue);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #64748B;
  font-weight: 600;
  font-size: 14px;
}
.top-nav a:hover { color: var(--blue); }
.header-cta { padding: 10px 16px; }

.btn {
  border: 0;
  border-radius: 18px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue));
  box-shadow: 0 12px 30px rgba(37, 99, 235, .22);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(37, 99, 235, .28); }
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: var(--surface-2); }
.btn:disabled { opacity: .48; pointer-events: none; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.pill::before { content: "✦"; color: var(--cyan); }

.hero-section {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  padding: 68px 0 64px;
}
.hero-brand { margin-bottom: 28px; }
.hero-copy h1 {
  margin: 0;
  max-width: 48rem;
  color: #071B4D;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero-lead {
  margin: 26px 0 0;
  max-width: 650px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-note { margin: 16px 0 0; color: #718096; font-size: 14px; }
.brand-words {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.brand-words i { color: #cbd5e1; font-style: normal; }

.hero-visual {
  position: relative;
  min-height: 640px;
}
.floating-logo-card {
  position: absolute;
  left: 18px;
  top: 90px;
  z-index: 3;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.floating-logo-card img { width: 74%; height: 74%; object-fit: contain; }
.phone {
  position: absolute;
  border: 1px solid #DDE7F6;
  background: #0b1220;
  padding: 8px;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
}
.phone-screen {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  padding: 18px;
}
.phone-back {
  right: 10px;
  top: 28px;
  width: 270px;
  height: 540px;
  transform: rotate(3deg);
  z-index: 1;
}
.phone-front {
  left: 90px;
  top: 0;
  width: 292px;
  height: 585px;
  transform: rotate(-2deg);
  z-index: 2;
}
.blue-screen { background: var(--surface); }
.speaker { width: 82px; height: 15px; border-radius: 999px; background: #090F1C; margin: 0 auto 20px; }
.screen-header, .app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.screen-header span, .app-topline span { display:block; color: #64748B; font-size: 12px; }
.screen-header strong, .app-topline strong { display:block; margin-top: 4px; color: var(--ink); font-size: 20px; }
.screen-header em {
  font-style: normal;
  color: var(--blue);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}
.budget-card-demo, .month-budget-card, .assistant-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
}
.budget-card-demo { margin-top: 28px; background: var(--surface); }
.budget-card-demo span, .balance-card span { color: #64748B; font-size: 12px; }
.budget-card-demo strong { display:block; margin-top: 10px; font-size: 44px; letter-spacing: -.05em; }
.progress { height: 10px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress b { display:block; height:100%; border-radius: 999px; background: var(--cyan); }
.budget-card-demo .progress { margin-top: 18px; background:#fff; }
.category-bars { margin-top: 22px; display:grid; gap: 15px; }
.category-bars div div { height:8px; background: var(--surface-2); border-radius:999px; overflow:hidden; margin-top: 7px; }
.category-bars b { display:block; height:100%; background: var(--blue); border-radius:999px; }
.category-bars span { font-weight: 600; color: #64748B; font-size: 12px; }
.category-bars i { float:right; color: #94a3b8; font-style:normal; font-size:12px; }
.mini-logo {
  width: 42px; height: 42px; border-radius: 16px; background:#fff; border:1px solid var(--line); display:flex!important; align-items:center; justify-content:center;
}
.mini-logo img { width: 70%; }
.status-chip {
  display:inline-flex;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.balance-card {
  margin-top: 18px;
  border-radius: 26px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue), var(--cyan));
}
.balance-card span { color: rgba(255,255,255,.74); }
.balance-card strong { display:block; margin-top: 8px; font-size: 34px; letter-spacing: -.04em; }
.balance-card small { display:block; margin-top: 8px; color: rgba(255,255,255,.72); }
.month-budget-card { margin-top: 16px; position:relative; }
.month-budget-card strong { display:block; font-size: 14px; }
.month-budget-card span { display:block; color:#64748B; font-size:12px; margin-top:4px; }
.month-budget-card em { position:absolute; top:16px; right:16px; font-style:normal; color:var(--blue); background:var(--surface-2); border-radius:999px; padding:5px 9px; font-size:12px; font-weight:700; }
.month-budget-card .progress { margin-top: 14px; }
.quick-actions { margin-top:16px; display:grid; grid-template-columns: repeat(3, 1fr); gap:9px; }
.quick-actions div { border:1px solid var(--line); background:#fff; border-radius:18px; padding:10px 8px; text-align:center; }
.quick-actions b { margin:0 auto 7px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:12px; color:var(--ink); }
.quick-actions span { display:block; font-size:10px; color:#64748B; font-weight:700; }
.expense { background: rgba(243,166,166,.45); }
.income { background: rgba(123,207,166,.45); }
.transfer { background: rgba(142,197,255,.48); }
.assistant-card { margin-top:16px; }
.assistant-card strong { display:block; font-size:14px; }
.assistant-card span { display:block; margin-top:7px; color:#64748B; font-size:12px; line-height:1.55; }

.section { padding: 82px 0; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align:center; }
.section-heading h2, .diagnostic-aside h2, .early-access-card h2 {
  margin: 0;
  color: #020617;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.section-heading p, .diagnostic-aside p, .early-access-card p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}
.problem-grid, .value-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-grid { grid-template-columns: repeat(4, 1fr); }
.soft-card {
  min-height: 210px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.card-icon {
  width: 48px; height: 48px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 18px;
  background: var(--surface-2);
  font-size: 22px;
}
.soft-card h3 { margin: 20px 0 0; font-size: 18px; }
.soft-card p { margin: 10px 0 0; color: var(--text); font-size:14px; line-height:1.65; }

.diagnostic-section { display:grid; grid-template-columns: .86fr 1.14fr; gap: 38px; align-items:start; }
.diagnostic-aside { position: sticky; top: 100px; }
.check-card, .quiz-card, .early-access-card, .info-box, .lead-form, .result-box, .calculator-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  border-radius: 32px;
}
.check-card { margin-top: 28px; padding: 22px; }
.check-card strong { display:block; margin-bottom: 14px; }
.check-card ul { list-style:none; padding:0; margin:0; display:grid; gap:12px; color: var(--text); font-size:14px; line-height:1.5; }
.check-card li { position:relative; padding-left: 26px; }
.check-card li::before { content:"✓"; position:absolute; left:0; color:var(--cyan); font-weight:800; }
.quiz-card { padding: 26px; }
.quiz-progress-text { display:flex; justify-content:space-between; color:#64748B; font-size:14px; margin-bottom:12px; }
.quiz-progress { height: 9px; background: var(--surface-2); border-radius:999px; overflow:hidden; margin-bottom:28px; }
.quiz-progress b { display:block; height:100%; background: var(--cyan); border-radius:999px; transition: width .25s ease; }
.quiz-title { margin:0; font-size: 26px; line-height:1.18; letter-spacing:-.03em; }
.quiz-helper { margin: 10px 0 0; color: #64748B; }
.options { margin-top: 24px; display:grid; gap: 12px; }
.option {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  text-align:left;
  transition: border-color .18s ease, background .18s ease;
}
.option:hover { background: var(--surface); border-color: #cde2ff; }
.option.active { border-color: var(--blue); background: #EEF6FF; }
.option-inner { display:flex; gap:12px; align-items:flex-start; color:#334155; font-size:14px; line-height:1.55; font-weight:600; }
.option-code { flex:0 0 auto; width:28px; height:28px; display:flex; align-items:center; justify-content:center; border-radius:999px; background:#EEF2F7; color:#64748B; font-size:12px; font-weight:800; }
.option.active .option-code { background:var(--blue); color:#fff; }
.quiz-actions { margin-top: 26px; display:flex; justify-content:space-between; gap: 12px; }

.result-hero {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue), var(--cyan));
  color: #fff;
  padding: 24px;
}
.result-hero small { color: rgba(255,255,255,.74); font-weight:600; }
.result-hero h3 { margin: 7px 0 0; font-size: 30px; letter-spacing:-.04em; }
.result-hero p { margin: 12px 0 0; color: rgba(255,255,255,.82); line-height:1.65; }
.result-box { margin-top: 16px; padding: 22px; background: #EEF6FF; }
.result-box strong { color: var(--blue); font-size:12px; letter-spacing:.12em; text-transform:uppercase; }
.result-box p { color:#475569; line-height:1.7; }
.calculator-card { margin-top:16px; padding: 22px; }
.calculator-card h4 { margin: 8px 0 0; font-size:24px; letter-spacing:-.035em; }
.calculator-card > p { color:var(--text); line-height:1.65; }
.slider-list { display:grid; gap:14px; margin-top:22px; }
.slider-row { background: var(--surface); border-radius:22px; padding:16px; }
.slider-row label { display:flex; justify-content:space-between; gap:16px; color:#475569; font-size:14px; font-weight:600; }
.slider-value { flex:0 0 auto; border:1px solid var(--line); background:#fff; border-radius:999px; padding:6px 10px; color:var(--ink); font-size:12px; }
.slider-row input { width:100%; margin-top:15px; accent-color: var(--blue); }
.calc-highlights { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top:22px; }
.calc-highlight { background: var(--surface-2); border-radius:20px; padding:16px; }
.calc-highlight small { color:#64748B; }
.calc-highlight strong { display:block; margin-top:6px; font-size:20px; }
.calc-result { margin-top:18px; border:1px solid var(--line); border-radius:22px; padding:16px; color:#475569; line-height:1.7; }
.calc-result small { display:block; margin-top:12px; color:#94a3b8; line-height:1.5; }
.back-link { margin-bottom: 18px; color: var(--blue); background: transparent; border:0; font-weight:700; }

.early-access-card { display:grid; grid-template-columns: .9fr 1.1fr; gap: 34px; padding: 32px; }
.info-box { margin-top: 26px; padding: 20px; background: var(--surface); }
.info-box strong, .info-box span { display:block; }
.info-box span { color:var(--text); line-height:1.65; margin-top:8px; font-size:14px; }
.lead-form { padding: 24px; background: var(--surface); }
.lead-form label { display:block; margin-bottom: 18px; }
.lead-form label span { display:block; font-weight:700; font-size:14px; margin-bottom:9px; }
.lead-form input, .lead-form select {
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding: 15px 16px;
  color: var(--ink);
  outline:none;
}
.lead-form input:focus, .lead-form select:focus { box-shadow: 0 0 0 4px rgba(56,189,248,.12); border-color:#cde2ff; }
.form-btn { width:100%; }
.legal-note { color:#94a3b8!important; margin:12px 0 0!important; font-size:12px!important; line-height:1.55!important; }
.lead-success { min-height: 300px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.lead-success img { width:86px; height:86px; object-fit:contain; }
.lead-success h3 { margin: 18px 0 0; font-size:26px; }
.lead-success p { color:var(--text); max-width: 420px; line-height:1.65; }

.site-footer { border-top:1px solid var(--line); background:rgba(255,255,255,.64); padding:32px 0; color:#64748B; text-align:center; font-size:14px; }

@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; gap: 34px; padding-top: 42px; }
  .hero-visual { min-height: 610px; max-width: 560px; width: 100%; margin: 0 auto; }
  .diagnostic-section, .early-access-card { grid-template-columns: 1fr; }
  .diagnostic-aside { position: static; }
  .problem-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .top-nav { display:none; }
  .brand-subtitle { display:none; }
  .header-cta { padding-inline: 12px; }
  .hero-section { min-height: auto; padding: 38px 0 32px; }
  .hero-copy h1 {
  margin: 0;
  max-width: 48rem;
  color: #071B4D;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}
  .hero-actions .btn { width:100%; }
  .brand-words { font-size:10px; }
  .hero-visual { min-height: 520px; transform: scale(.92); transform-origin: top center; margin-bottom: -40px; }
  .floating-logo-card { display:none; }
  .phone-front { left: 10px; }
  .phone-back { right: 5px; }
  .section { padding: 58px 0; }
  .problem-grid, .value-grid, .calc-highlights { grid-template-columns: 1fr; }
  .quiz-card { padding: 18px; border-radius: 26px; }
  .quiz-actions { flex-direction: column-reverse; }
  .quiz-actions .btn { width:100%; }
  .early-access-card { padding: 20px; border-radius: 26px; }
}
@media (max-width: 430px) {
  .hero-visual { transform: scale(.78); min-height: 470px; margin-left: -22px; width: calc(100% + 44px); }
  .hero-copy h1 {
  margin: 0;
  max-width: 48rem;
  color: #071B4D;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}
}



@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 3.75rem;
    line-height: 1;
  }

  .section-heading h2, .diagnostic-aside h2, .early-access-card h2 {
    font-size: 2.25rem;
    line-height: 1.15;
  }
}

/* Cifrino typography normal-style override */
body,
button,
input,
select,
textarea,
.brand,
.brand-name,
.brand-subtitle,
.hero-copy h1,
.hero-lead,
.hero-note,
.brand-words,
.section-heading,
.section-heading h2,
.section-heading p,
.screen-header,
.app-topline,
.budget-card-demo,
.balance-card,
.month-budget-card,
.quick-actions,
.assistant-card,
.soft-card,
.check-card,
.quiz-card,
.option-inner,
.result-box,
.calculator-card,
.info-box,
.lead-form,
.lead-success,
.site-footer,
i,
em,
address,
cite {
  font-style: normal;
}
/* End Cifrino typography normal-style override */

/* Cifrino hard no-italic override */
html,
body,
body *,
button,
input,
select,
textarea,
p,
span,
strong,
small,
label,
a,
h1,
h2,
h3,
h4,
h5,
h6,
i,
em,
address,
cite,
.brand-name,
.brand-subtitle,
.hero-copy h1,
.hero-lead,
.hero-note,
.brand-words,
.section-heading h2,
.section-heading p,
.option-inner,
.result-box,
.calculator-card,
.info-box,
.lead-form,
.lead-success {
  font-style: normal !important;
}

.hero-copy h1 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.04em !important;
}
/* End Cifrino hard no-italic override */

