/* Cashnova landing — cashnovaclaim.com */

:root {
  --bg: #F5FBF7;
  --bg-2: #EFF8F2;
  --ink: #0B1A11;
  --soft: #405A4C;
  --muted: #6D8879;
  --line: #DDECE2;
  --card: #FFFFFF;
  --brand: #0E7A2E;
  --brand-2: #076B24;
  --brand-3: #0A5A1E;
  --accent: #22C55E;
  --accent-2: #16A34A;
  --brand-soft: #DCFCE7;
  --brand-soft-2: #ECFDF3;
  --gold: #C08E2B;
  --gold-soft: #FBF3DE;
  --danger: #B91C1C;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 8px 24px -12px rgba(11, 26, 17, 0.12), 0 1px 2px rgba(11, 26, 17, 0.04);
  --shadow-phone: 0 40px 80px -30px rgba(11, 26, 17, 0.35), 0 8px 24px -12px rgba(11, 26, 17, 0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }

body {
  font-family: 'Manrope', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Layout */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245, 251, 247, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.01em; color: var(--ink);
  font-size: 18px;
}
.brand-icon {
  height: 36px; width: 36px; border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15,122,46,0.25), inset 0 0 0 1px rgba(255,255,255,0.35);
  background: var(--brand);
}
.brand-icon img { height: 100%; width: 100%; object-fit: cover; }

/* App Store button */
.btn-appstore {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: #FFFFFF;
  font-weight: 700; font-size: 14px;
  transition: background 160ms ease, transform 120ms ease;
  border: 0; cursor: pointer;
}
.btn-appstore:hover { background: var(--brand); text-decoration: none; }
.btn-appstore:active { transform: translateY(1px); }
.btn-appstore svg { height: 15px; width: 15px; fill: currentColor; }

.btn-appstore-lg {
  padding: 15px 26px; font-size: 15.5px;
}
.btn-appstore-lg svg { height: 18px; width: 18px; }

/* Hero */
.hero {
  padding: 64px 0 40px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: clamp(44px, 6vw, 68px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 20px; color: var(--ink);
}
.hero h1 .accent { color: var(--brand); }
.hero .lede {
  font-size: 19px; color: var(--soft); max-width: 480px;
  margin: 0 0 32px; line-height: 1.55;
}
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.laurel {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink); font-weight: 700; font-size: 12.5px;
}
.laurel .txt { display: flex; flex-direction: column; align-items: center; line-height: 1.15; }
.laurel .txt strong { font-size: 13px; font-weight: 800; }
.laurel .txt .small { font-size: 10px; letter-spacing: 0.06em; color: var(--soft); font-weight: 600; text-transform: uppercase; }
.laurel .stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-top: 2px; }
.laurel svg { height: 44px; width: 22px; fill: var(--ink); }

.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 480px;
}
.hero-phone {
  width: 100%; max-width: 380px;
  border-radius: 40px;
  box-shadow: var(--shadow-phone);
  transform: rotate(-3deg);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-phone:hover { transform: rotate(-1deg) translateY(-4px); }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, var(--brand-soft) 0%, rgba(255,255,255,0) 60%);
  z-index: -1;
}

/* Section */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-2); }
.section-tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand); font-weight: 700; font-size: 12.5px;
  margin-bottom: 12px;
}
.section-h2 {
  font-weight: 800; font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 12px;
  color: var(--ink);
}
.section-sub {
  color: var(--soft); font-size: 17px; max-width: 620px;
  margin: 0 0 40px;
}

/* Features grid */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 32px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: #C9DFCF;
}
.feature-ico {
  height: 44px; width: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft);
  color: var(--brand); margin-bottom: 16px;
}
.feature-ico svg { height: 22px; width: 22px; }
.feature h3 {
  font-size: 17px; font-weight: 700; margin: 0 0 8px;
  color: var(--ink); letter-spacing: -0.005em;
}
.feature p {
  font-size: 14.5px; color: var(--soft); margin: 0; line-height: 1.55;
}

/* How it works */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 32px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; width: 32px; border-radius: 10px;
  background: var(--ink); color: #FFFFFF;
  font-weight: 800; font-size: 14px; margin-bottom: 14px;
}
.step h3 {
  font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink);
}
.step p {
  font-size: 14.5px; color: var(--soft); margin: 0; line-height: 1.55;
}

/* Disclosure strip */
.disclosure {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}
.disclosure p {
  color: var(--muted); font-size: 13.5px; margin: 0;
  max-width: 780px;
}
.disclosure strong { color: var(--soft); font-weight: 700; }

/* Pricing CTA card */
.pricing-cta {
  background: linear-gradient(135deg, var(--brand-3) 0%, var(--brand) 50%, var(--accent) 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 52px 44px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 44px; align-items: center;
  box-shadow: 0 30px 60px -30px rgba(15,122,46,0.4);
}
.pricing-cta h2 {
  font-weight: 800; font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 12px;
  color: #FFFFFF;
}
.pricing-cta p {
  font-size: 16.5px; color: rgba(255,255,255,0.9);
  margin: 0 0 26px; line-height: 1.55; max-width: 460px;
}
.pricing-cta .plan-tile {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 20px 22px;
}
.pricing-cta .plans { display: flex; flex-direction: column; gap: 12px; }
.pricing-cta .plan-tile .plan-head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.pricing-cta .plan-tile .plan-price {
  font-size: 20px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.01em;
}
.pricing-cta .plan-tile .plan-meta { font-size: 12.5px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.pricing-cta .btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF; color: var(--brand-3);
  padding: 15px 26px; border-radius: 999px;
  font-weight: 800; font-size: 15.5px;
  transition: transform 120ms ease, background 160ms ease;
}
.pricing-cta .btn-cta:hover { background: #F0FDF4; text-decoration: none; }
.pricing-cta .btn-cta:active { transform: translateY(1px); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: #FFFFFF;
  margin-top: 40px;
}
.footer .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; gap: 20px; flex-wrap: wrap;
}
.footer .brand { font-size: 15px; }
.footer .brand-icon { height: 30px; width: 30px; border-radius: 8px; }
.footer nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.footer nav a { color: var(--soft); }
.footer nav a:hover { color: var(--ink); text-decoration: none; }
.footer .copy { color: var(--muted); font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-phone-wrap { min-height: unset; }
  .hero-phone { max-width: 320px; transform: rotate(-2deg); }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-cta { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .header .row { height: 60px; }
  .brand span:last-child { display: none; }
  .footer .row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* Legal pages typography */
.legal-page main { max-width: 760px; margin: 0 auto; padding: 40px 24px 96px; }
.legal-page .eyebrow { margin-bottom: 8px; }
.legal-page h1 {
  font-weight: 800; font-size: clamp(34px, 4.6vw, 46px);
  line-height: 1.05; letter-spacing: -0.02em; margin: 8px 0 8px;
}
.legal-page .lede { color: var(--soft); font-size: 16.5px; margin: 0; }
.legal-page .updated { color: var(--muted); font-size: 13.5px; margin: 6px 0 0; }
.legal-page hr.rule { border: 0; border-top: 1px solid var(--line); margin: 32px 0 24px; }
.legal-page h2 {
  font-weight: 800; font-size: 22px; margin: 32px 0 8px; color: var(--ink);
  letter-spacing: -0.01em;
}
.legal-page h3 { font-size: 16px; margin: 20px 0 4px; font-weight: 700; }
.legal-page p, .legal-page ul, .legal-page ol { font-size: 15.5px; }
.legal-page ul, .legal-page ol { padding-left: 22px; }
.legal-page li { margin: 4px 0; }
.legal-page .callout {
  background: var(--brand-soft-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 12px; padding: 16px 18px; margin: 22px 0;
  font-size: 14.5px; color: var(--soft);
}
.legal-page a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--soft); font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.back-link:hover { color: var(--ink); }

/* Support form */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin-top: 20px;
}
.form-notice.hidden { display: none; }
.form-notice {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px;
  font-size: 13px; color: var(--soft); margin-bottom: 14px;
}
.form-notice code {
  background: #FFFFFF; padding: 2px 6px; border-radius: 4px;
  border: 1px solid var(--line); font-size: 12px; font-family: 'SF Mono', ui-monospace, monospace;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink);
}
.field .req { color: var(--danger); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 14.5px;
  padding: 11px 13px; border-radius: 10px;
  border: 1px solid var(--line); background: #FFFFFF; color: var(--ink);
  outline: none; transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,122,46,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 4px; flex-wrap: wrap;
}
.form-actions .hint { font-size: 12.5px; color: var(--muted); }
.btn-send {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #FFFFFF;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px; border: 0; cursor: pointer;
  transition: background 160ms ease;
}
.btn-send:hover { background: var(--brand-2); }
.btn-send:disabled { opacity: 0.5; cursor: not-allowed; }
.form-alert { border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-top: 14px; }
.form-alert.success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.form-alert.error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.form-alert.hidden { display: none; }
.honeypot { position: absolute; left: -9999px; }
