/* ============================================================
   CONTA$ — contas.com
   The FUN way to budget your spending 💸
   Palette: Sunny Yellow · Fresh Green · Periwinkle Blue ·
            Raspberry Pink · Ink Black · warm Paper
   Type: Fredoka (display, chunky+rounded) · Nunito (body)
   income = green · expense = pink
   ============================================================ */

:root {
  /* brand palette */
  --yellow: #F2C13C;
  --yellow-deep: #d9a915;
  --green: #57BE5B;        /* money / positive / income */
  --green-deep: #3ea043;
  --blue: #5C6FE8;
  --blue-deep: #4453cf;
  --pink: #E63E6E;         /* expense / alert / highlight */
  --pink-deep: #cc2657;
  --ink: #1B1B1B;          /* text */
  --ink-soft: #5a5856;
  --paper: #FFFDF7;        /* warm paper */
  --paper-2: #FFF7E6;      /* soft yellow wash */
  --white: #ffffff;

  /* tints (cards / chips) */
  --yellow-tint: #FDF3D6;
  --green-tint: #E2F6E3;
  --blue-tint: #E7EAFC;
  --pink-tint: #FCE2EB;
  --line: #ECE6D6;
  --line-2: #E2DBC6;
  --line-dark: rgba(255,255,255,.16);

  --display: "Fredoka", system-ui, sans-serif;
  --body: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow: 0 2px 0 rgba(27,27,27,.04), 0 18px 40px -22px rgba(27,27,27,.28);
  --shadow-lg: 0 3px 0 rgba(27,27,27,.05), 0 46px 90px -42px rgba(27,27,27,.42);
  --shadow-pop: 0 6px 0 rgba(27,27,27,.12);
  --ease: cubic-bezier(.34,1.56,.64,1); /* springy */
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: normal; }
strong { font-weight: 800; }
/* keep .mono hook alive (used in markup) — render as friendly tabular Fredoka */
.mono { font-family: var(--display); font-weight: 600; font-feature-settings: "tnum"; letter-spacing: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 100px;
  font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 12px; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink);
  background: var(--white); padding: 8px 16px; border-radius: 100px;
  border: 2px solid var(--ink); box-shadow: 0 3px 0 rgba(27,27,27,.12);
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(87,190,91,.28); }

.section-kicker {
  font-family: var(--display); font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; color: var(--blue-deep);
  display: block; margin-bottom: 14px;
}
.section-kicker--light { color: var(--yellow); }

.section-head { max-width: 740px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--display); font-weight: 700; line-height: 1.04;
  font-size: clamp(2rem, 4.6vw, 3.3rem); letter-spacing: -.01em;
}
.section-title--light { color: var(--paper); }
.section-sub { margin-top: 18px; font-size: 1.12rem; color: var(--ink-soft); }
.section-head--center .section-sub { margin-inline: auto; max-width: 580px; }
.section-title--light + .section-sub { color: rgba(255,253,247,.82); }

.i-check { width: 18px; height: 18px; stroke: var(--green-deep); flex: none; }
.stars { color: var(--yellow-deep); letter-spacing: 1px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 100px;
  border: 2px solid var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--solid { background: var(--green); color: var(--ink); box-shadow: var(--shadow-pop); }
.btn--solid:hover { background: var(--green); transform: translate(-1px,-3px); box-shadow: 0 9px 0 rgba(27,27,27,.16); }
.btn--solid:active { transform: translate(0,1px); box-shadow: 0 3px 0 rgba(27,27,27,.14); }
.btn--ghost { background: var(--white); color: var(--ink); box-shadow: var(--shadow-pop); }
.btn--ghost:hover { background: var(--yellow); transform: translate(-1px,-3px); box-shadow: 0 9px 0 rgba(27,27,27,.16); }
.btn--ghost:active { transform: translate(0,1px); box-shadow: 0 3px 0 rgba(27,27,27,.14); }
.btn--lg { padding: 16px 30px; font-size: 1.1rem; }
.btn--block { width: 100%; }
.link-ghost { font-family: var(--display); font-weight: 600; font-size: 1rem; padding: 8px 6px; transition: color .2s; }
.link-ghost:hover { color: var(--pink); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,247,.84);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-stuck { border-color: var(--ink); box-shadow: 0 10px 30px -24px rgba(27,27,27,.5); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }

/* brand uses real logo image on a white chip */
.brand { display: inline-flex; align-items: center; }
.brand__logo {
  height: 34px; width: auto; display: block;
  background: var(--white); padding: 6px 12px; border-radius: 12px;
  border: 2px solid var(--ink); box-shadow: 0 3px 0 rgba(27,27,27,.1);
}
.brand:hover .brand__logo { transform: rotate(-2deg); }
.brand__logo { transition: transform .25s var(--ease); }

.nav__links { display: flex; gap: 26px; margin-left: auto; font-family: var(--display); font-size: 1rem; font-weight: 500; }
.nav__links a { color: var(--ink-soft); position: relative; padding: 4px 2px; transition: color .2s; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:3px; border-radius:3px; background: var(--pink); transition: width .25s var(--ease); }
.nav__links a:nth-child(2)::after { background: var(--green); }
.nav__links a:nth-child(3)::after { background: var(--blue); }
.nav__links a:nth-child(4)::after { background: var(--yellow-deep); }
.nav__links a:nth-child(5)::after { background: var(--pink); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform .3s, opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px var(--pad) 24px; border-bottom: 2px solid var(--ink); background: var(--paper); }
.mobile-menu a { font-family: var(--display); padding: 14px 6px; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(48% 60% at 10% 6%, rgba(242,193,60,.35), transparent 60%),
    radial-gradient(46% 56% at 96% 18%, rgba(92,111,232,.22), transparent 62%),
    radial-gradient(46% 60% at 78% 102%, rgba(230,62,110,.16), transparent 66%),
    var(--paper);
}
/* fun confetti dots backdrop */
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .9; pointer-events: none;
  background-image:
    radial-gradient(circle, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle, var(--pink) 0 4px, transparent 5px),
    radial-gradient(circle, var(--blue) 0 4px, transparent 5px);
  background-size: 280px 280px, 220px 220px, 340px 340px;
  background-position: 8% 30%, 88% 65%, 30% 88%;
  background-repeat: no-repeat;
}

.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.7rem, 6.6vw, 5rem); line-height: .98; letter-spacing: -.02em;
  margin: 22px 0 24px;
}
.hero__title em { color: var(--pink); font-weight: 700; position: relative; display: inline-block; }
.hero__title em::after {
  content:""; position:absolute; left:-2px; right:-2px; bottom:.04em; height:.22em;
  background: var(--yellow); border-radius: 100px; z-index:-1;
  transform: scaleX(0); transform-origin: left; animation: underline .8s var(--ease) .8s forwards;
}
@keyframes underline { to { transform: scaleX(1); } }
.hero__lede { font-size: clamp(1.06rem, 1.6vw, 1.24rem); color: var(--ink-soft); max-width: 540px; }
.hero__lede strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 26px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }

/* phone mockup */
.hero__app { position: relative; justify-self: center; }
.phone {
  width: min(330px, 78vw); aspect-ratio: 320 / 660; position: relative;
  background: var(--ink); border-radius: 46px;
  padding: 13px; box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.phone__notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: var(--ink); border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen { position: relative; height: 100%; background: var(--paper); border-radius: 34px; padding: 30px 18px 18px; overflow: hidden; display: flex; flex-direction: column; gap: 13px; }
.app-top { display: flex; justify-content: space-between; align-items: flex-start; }
.app-hello { font-size: .8rem; font-weight: 700; color: var(--ink); }
.app-net { font-size: .74rem; color: var(--ink-soft); margin-top: 6px; }
.app-net__val { font-size: 1.8rem; font-weight: 700; color: var(--ink); line-height: 1.1; font-family: var(--display); }
.app-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); border: 2px solid var(--ink); }
.app-card { border-radius: 18px; padding: 15px; display: flex; flex-direction: column; gap: 8px; border: 2px solid var(--ink); }
.app-card--green { background: var(--green); color: var(--ink); }
.app-card__label { font-size: .76rem; font-weight: 700; }
.app-card__val { font-size: 1.6rem; font-weight: 700; font-family: var(--display); }
.app-bar { height: 9px; border-radius: 100px; background: rgba(27,27,27,.18); overflow: hidden; }
.app-bar i { display: block; height: 100%; background: var(--ink); border-radius: inherit; }
.app-section { font-size: .84rem; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.pill { font-family: var(--display); font-size: .68rem; padding: 4px 9px; border-radius: 100px; font-weight: 600; border: 1.5px solid var(--ink); }
.pill--amber { background: var(--yellow); color: var(--ink); }
.sub-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sub-list li { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; background: var(--white); border: 1.5px solid var(--line-2); border-radius: 14px; padding: 9px 11px; }
.sub-ic { width: 26px; height: 26px; border-radius: 9px; background: var(--blue-tint); color: var(--blue-deep); display: grid; place-items: center; font-weight: 700; font-size: .74rem; flex: none; border: 1.5px solid var(--ink); }
.sub-name { flex: 1; }
.sub-name em { font-size: .66rem; color: var(--pink-deep); font-weight: 700; }
.sub-amt { font-size: .8rem; font-family: var(--display); font-weight: 600; }
.sub-list .is-flag { background: var(--pink-tint); border-color: var(--pink); }
.sub-cancel, .mini-cancel { font-family: var(--display); background: var(--pink); color: #fff; font-size: .7rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: 1.5px solid var(--ink); }
.sub-cancel:hover, .mini-cancel:hover { background: var(--pink-deep); }
.app-save { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; font-weight: 700; background: var(--green-tint); border: 2px solid var(--green); border-radius: 15px; padding: 12px 14px; }
.app-save__val { color: var(--green-deep); font-family: var(--display); font-weight: 700; }

.float-chip { position: absolute; display: inline-flex; align-items: center; gap: 7px; background: var(--white); box-shadow: var(--shadow-pop); border-radius: 100px; padding: 11px 16px; font-family: var(--display); font-size: .9rem; font-weight: 600; border: 2px solid var(--ink); }
.float-chip .mono { color: var(--pink); font-size: 1.05rem; }
.float-chip--1 { top: 10%; left: -9%; background: var(--yellow); animation: floaty 5s ease-in-out infinite; transform: rotate(-4deg); }
.float-chip--2 { bottom: 12%; right: -11%; color: var(--ink); animation: floaty 5.5s ease-in-out infinite .8s; transform: rotate(3deg); }
.float-chip--2 .i-check { stroke: var(--green-deep); }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-4deg); } 50%{ transform: translateY(-10px) rotate(-4deg); } }
.float-chip--2 { animation-name: floaty2; }
@keyframes floaty2 { 0%,100%{ transform: translateY(0) rotate(3deg); } 50%{ transform: translateY(-12px) rotate(3deg); } }

/* ============================================================
   PROMISES (the fun wedge)
   ============================================================ */
.promises { padding: clamp(56px, 8vw, 90px) 0; }
.promises .section-kicker { text-align: center; color: var(--pink-deep); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.promise {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 28px 24px; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative; box-shadow: var(--shadow-pop);
}
.promise:hover { transform: translateY(-6px); box-shadow: 0 12px 0 rgba(27,27,27,.12); }
/* rotate accent colors across the four cards */
.promise:nth-child(1) { background: var(--yellow-tint); }
.promise:nth-child(2) { background: var(--green-tint); }
.promise:nth-child(3) { background: var(--blue-tint); }
.promise:nth-child(4) { background: var(--pink-tint); }
.promise:nth-child(1) .promise__num { color: var(--yellow-deep); }
.promise:nth-child(2) .promise__num { color: var(--green-deep); }
.promise:nth-child(3) .promise__num { color: var(--blue-deep); }
.promise:nth-child(4) .promise__num { color: var(--pink-deep); }
.promise__num { font-family: var(--display); font-size: 2.8rem; font-weight: 700; line-height: 1; display: block; margin-bottom: 14px; }
.promise h3 { font-family: var(--display); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.promise p { font-size: .95rem; color: var(--ink-soft); }
.promise p strong { color: var(--ink); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { background: var(--blue); color: var(--paper); padding: 30px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.trustbar__inner { display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; justify-content: space-between; }
.trust-stat { display: flex; flex-direction: column; }
.trust-stat__n { font-family: var(--display); font-size: 1.9rem; font-weight: 700; line-height: 1; color: var(--yellow); }
.trust-stat__n .stars-sm { color: var(--yellow); font-size: 1.2rem; margin-left: 2px; }
.trust-stat__l { font-size: .86rem; font-weight: 600; color: rgba(255,253,247,.82); margin-top: 6px; }
.trustbar__press { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-left: auto; }
.press-label { font-family: var(--display); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,253,247,.7); }
.press-logo { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: rgba(255,253,247,.92); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: clamp(64px, 9vw, 120px) 0; }
.features .section-head .section-kicker { color: var(--green-deep); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; margin-bottom: clamp(56px, 8vw, 100px); }
.feature-row:last-child { margin-bottom: 0; }
.feature-row--rev .feature-text { order: 2; }
.feature-tag { font-family: var(--display); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: 100px; padding: 5px 14px; box-shadow: 0 3px 0 rgba(27,27,27,.1); }
.feature-row:nth-child(3) .feature-tag { background: var(--pink); color: #fff; }
.feature-row:nth-child(4) .feature-tag { background: var(--blue); color: #fff; }
.feature-text h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.08; letter-spacing: -.01em; margin: 14px 0 16px; }
.feature-text > p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 20px; }
.feature-text em { color: var(--pink-deep); font-weight: 700; }
.feature-text strong { color: var(--green-deep); }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 32px; font-weight: 600; }
.ticks li::before { content:""; position:absolute; left:0; top:2px; width:21px; height:21px; border-radius:50%; background: var(--green); border:2px solid var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15.5 6.5' stroke='%231B1B1B' stroke-width='2.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 13px; background-repeat: no-repeat; background-position: center; }

/* statement / ledger visuals */
.feature-visual { position: relative; }
.statement {
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-pop); position: relative; overflow: hidden;
}
.statement::before { content:""; position:absolute; left:0; top:0; right:0; height:8px; background: linear-gradient(90deg, var(--yellow) 0 25%, var(--green) 25% 50%, var(--blue) 50% 75%, var(--pink) 75% 100%); }
.statement__head { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-weight: 600; margin: 8px 0 18px; font-size: 1.05rem; }
.statement__head .mono { font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.ledger { display: flex; flex-direction: column; }
.ledger__row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 2px dotted var(--line-2); font-size: 1rem; font-weight: 600; }
.ledger__row:last-child { border-bottom: none; }
.ledger__row .mono { font-weight: 600; }
.pos { color: var(--green-deep); }       /* income */
.neg { color: var(--pink); }              /* expense */
.ledger__row--total { border-top: 3px solid var(--ink); border-bottom: none; margin-top: 6px; padding-top: 15px; font-weight: 700; font-size: 1.12rem; }
.ledger__row--total .mono { color: var(--green-deep); }

.radar { list-style: none; display: flex; flex-direction: column; }
.radar li { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 2px dotted var(--line-2); font-size: 1rem; font-weight: 600; }
.radar li:last-child { border-bottom: none; }
.radar li .mono { margin-left: auto; color: var(--ink-soft); }
.radar li em { font-size: .82rem; color: var(--pink-deep); font-weight: 700; }
.radar__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--line-2); border: 2px solid var(--ink); flex: none; }
.radar__dot.is-on { background: var(--pink); }
.radar .is-flag { font-weight: 700; }
.mini-cancel { margin-left: auto; }

.budget { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 14px; padding: 11px 0; font-size: .96rem; font-weight: 700; }
.budget .app-bar { background: var(--paper-2); height: 11px; border: 2px solid var(--ink); }
.budget .app-bar i { background: var(--green); }
.budget .app-bar i.amber { background: var(--pink); }
.budget .mono { color: var(--ink-soft); font-size: .86rem; }
.app-save--inset { margin-top: 14px; color: var(--ink); }

/* ============================================================
   HONEST MATH (bold dark/ink)
   ============================================================ */
.honest { position: relative; background: var(--ink); color: var(--paper); padding: clamp(64px, 9vw, 116px) 0; overflow: hidden; }
.honest::before { content:""; position:absolute; inset:0; z-index:0;
  background: radial-gradient(50% 70% at 82% 0%, rgba(92,111,232,.4), transparent 60%), radial-gradient(46% 60% at 8% 100%, rgba(87,190,91,.22), transparent 60%); }
/* confetti dots */
.honest__grain { position:absolute; inset:0; z-index:0; opacity:.5; pointer-events:none;
  background-image:
    radial-gradient(circle, var(--yellow) 0 3px, transparent 4px),
    radial-gradient(circle, var(--pink) 0 3px, transparent 4px);
  background-size: 200px 200px, 260px 260px;
  background-position: 12% 20%, 80% 70%;
  background-repeat: no-repeat;
}
.honest .container { position: relative; z-index: 1; }
.honest .section-kicker--light { color: var(--yellow); }
.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 34px); align-items: center; max-width: 880px; margin-inline: auto; }
.compare__card { background: rgba(255,255,255,.06); border: 2px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px; position: relative; }
.compare__card--us { background: var(--white); color: var(--ink); border-color: var(--ink); box-shadow: 0 10px 0 var(--green-deep); }
.compare__card h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; margin-bottom: 18px; }
.compare__card--them h3 { color: rgba(255,253,247,.66); }
.ribbon { position: absolute; top: -15px; left: 30px; font-family: var(--display); background: var(--green); color: var(--ink); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: 6px 14px; border-radius: 100px; border: 2px solid var(--ink); }
.receipt { font-family: var(--body); }
.receipt__row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; font-size: .96rem; font-weight: 600; }
.receipt__row .mono { font-family: var(--display); }
.receipt__row em { font-size: .78rem; opacity: .72; font-weight: 600; }
.compare__card--them .receipt__row { color: rgba(255,253,247,.88); }
.receipt__rule { border-top: 2px dotted currentColor; opacity: .3; margin: 6px 0; }
.receipt__row--bad span:last-child { color: #ff8fb0; }
.receipt__row--total { font-weight: 700; font-size: 1.2rem; padding-top: 12px; }
.compare__card--them .receipt__row--total { color: #fff; border-top: 2px solid rgba(255,255,255,.3); }
.compare__card--us .receipt__row--total { border-top: 3px solid var(--ink); color: var(--green-deep); }
.receipt__row--win span:last-child { color: var(--green-deep); }
.compare__vs { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--yellow); }
.honest__foot { text-align: center; max-width: 580px; margin: 44px auto 0; color: rgba(255,253,247,.82); font-size: 1.12rem; font-family: var(--display); font-weight: 500; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: clamp(64px, 9vw, 116px) 0; }
.how .section-kicker { color: var(--blue-deep); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 28px 26px; background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-pop); transition: transform .25s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step__n { font-family: var(--display); font-size: 1.4rem; color: #fff; font-weight: 700; display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--ink); margin-bottom: 14px; }
.step:nth-child(1) .step__n { background: var(--yellow); color: var(--ink); }
.step:nth-child(2) .step__n { background: var(--green); color: var(--ink); }
.step:nth-child(3) .step__n { background: var(--pink); }
.step h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 600; margin: 0 0 10px; }
.step p { color: var(--ink-soft); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(64px, 9vw, 116px) 0; background: var(--paper-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.pricing .section-kicker { color: var(--pink-deep); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 820px; margin: 0 auto; }
.plan { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 34px; display: flex; flex-direction: column; box-shadow: var(--shadow-pop); transition: transform .25s var(--ease); }
.plan:hover { transform: translateY(-5px); box-shadow: 0 12px 0 rgba(27,27,27,.12); }
.plan--feature { background: var(--green); color: var(--ink); position: relative; box-shadow: 0 8px 0 var(--green-deep); }
.plan--feature:hover { box-shadow: 0 14px 0 var(--green-deep); }
.plan__badge { position: absolute; top: -15px; right: 24px; font-family: var(--display); background: var(--pink); color: #fff; font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: 6px 14px; border-radius: 100px; border: 2px solid var(--ink); }
.plan__name { font-family: var(--display); font-size: 1.4rem; font-weight: 600; }
.plan__price { font-family: var(--display); margin: 14px 0 4px; display: flex; align-items: baseline; gap: 8px; }
.plan__price .mono { font-size: 3.2rem; font-weight: 700; letter-spacing: -.01em; }
.plan__per { font-size: .98rem; color: var(--ink-soft); font-family: var(--body); font-weight: 700; }
.plan--feature .plan__per { color: rgba(27,27,27,.7); }
.plan__tag { font-size: .95rem; color: var(--ink-soft); margin-bottom: 22px; font-weight: 600; }
.plan--feature .plan__tag { color: rgba(27,27,27,.82); }
.plan__tag .mono { color: inherit; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; font-size: .98rem; font-weight: 600; }
.plan__list li { position: relative; padding-left: 30px; }
.plan__list li::before { content:""; position:absolute; left:0; top:3px; width:19px; height:19px; border-radius:50%; border:2px solid var(--ink);
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15.5 6.5' stroke='%231B1B1B' stroke-width='2.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.plan--feature .plan__list li::before { background-color: var(--yellow); }
.plan--feature .plan__list strong { color: var(--pink-deep); }
.plan__list strong { color: var(--green-deep); }
.plan--feature .btn--solid { background: var(--ink); color: #fff; }
.plan--feature .btn--solid:hover { background: var(--pink); }
.pricing__note { text-align: center; margin-top: 26px; color: var(--ink-soft); font-size: .98rem; font-weight: 600; max-width: 540px; margin-inline: auto; }

/* ============================================================
   SECURITY (bold blue)
   ============================================================ */
.security { background: var(--blue); color: var(--paper); padding: clamp(64px, 9vw, 116px) 0; }
.security .section-kicker--light { color: var(--yellow); }
.security__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.security__copy .btn { margin-top: 26px; }
.security__grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.security__grid li { background: var(--white); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 4px 0 rgba(27,27,27,.18); }
.security__grid strong { font-family: var(--display); font-size: 1.06rem; color: var(--blue-deep); font-weight: 600; }
.security__grid li:nth-child(2) strong { color: var(--green-deep); }
.security__grid li:nth-child(3) strong { color: var(--pink-deep); }
.security__grid li:nth-child(4) strong { color: var(--yellow-deep); }
.security__grid span { font-size: .92rem; color: var(--ink-soft); font-weight: 600; }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes { padding: clamp(64px, 9vw, 116px) 0; }
.quotes .section-kicker { color: var(--yellow-deep); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow-pop); transition: transform .25s var(--ease); }
.quote:hover { transform: translateY(-5px) rotate(-1deg); }
.quote:nth-child(1) { background: var(--yellow-tint); }
.quote:nth-child(2) { background: var(--green-tint); }
.quote:nth-child(3) { background: var(--pink-tint); }
.quote blockquote { font-family: var(--display); font-size: 1.18rem; line-height: 1.4; font-weight: 500; }
.quote figcaption { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: .95rem; }
.quote figcaption em { color: var(--ink-soft); font-weight: 500; }
.q-av { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; flex: none; border: 2px solid var(--ink); }
.quote:nth-child(1) .q-av { background: var(--yellow-deep); }
.quote:nth-child(2) .q-av { background: var(--green-deep); }
.quote:nth-child(3) .q-av { background: var(--pink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(64px, 9vw, 116px) 0; background: var(--paper-2); border-top: 2px solid var(--ink); }
.faq .section-kicker { color: var(--blue-deep); }
.faq__inner { max-width: 820px; margin-inline: auto; }
.accordion { display: flex; flex-direction: column; gap: 14px; }
.ac { background: var(--white); border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-pop); transition: box-shadow .25s, transform .2s; }
.ac[open] { box-shadow: 0 8px 0 var(--blue); transform: translateY(-2px); }
.ac summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--display); font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ac summary::-webkit-details-marker { display: none; }
.ac__icon { position: relative; width: 20px; height: 20px; flex: none; }
.ac__icon::before, .ac__icon::after { content:""; position:absolute; background: var(--pink); border-radius: 3px; transition: transform .3s var(--ease); }
.ac__icon::before { left: 0; top: 9px; width: 20px; height: 3px; }
.ac__icon::after { left: 9px; top: 0; width: 3px; height: 20px; }
.ac[open] .ac__icon::after { transform: rotate(90deg) scaleX(0); }
.ac__body { padding: 0 24px 22px; color: var(--ink-soft); font-weight: 600; }
.ac__body p strong { color: var(--green-deep); }

/* ============================================================
   FINAL CTA (sunny yellow)
   ============================================================ */
.cta { position: relative; background: var(--yellow); color: var(--ink); padding: clamp(72px, 10vw, 130px) 0; overflow: hidden; text-align: center; border-top: 2px solid var(--ink); }
.cta::before { content:""; position:absolute; inset:0;
  background: radial-gradient(50% 70% at 50% 0%, rgba(255,255,255,.5), transparent 62%); }
/* confetti dots */
.cta__grain { position:absolute; inset:0; opacity:.85; pointer-events:none;
  background-image:
    radial-gradient(circle, var(--pink) 0 6px, transparent 7px),
    radial-gradient(circle, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle, var(--blue) 0 5px, transparent 6px);
  background-size: 300px 300px, 260px 260px, 360px 360px;
  background-position: 6% 24%, 92% 72%, 70% 8%;
  background-repeat: no-repeat;
}
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta__title { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.7rem); line-height: 1.04; letter-spacing: -.01em; }
.cta__title em { color: var(--pink); position: relative; }
.cta__sub { margin: 20px auto 36px; color: rgba(27,27,27,.78); font-size: 1.14rem; font-weight: 600; max-width: 500px; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 16px; border: 2px solid var(--ink); transition: transform .2s var(--ease), background .2s; box-shadow: 0 5px 0 rgba(27,27,27,.25); }
.store-badge:hover { transform: translateY(-3px); background: #000; }
.store-badge svg { color: #fff; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: left; font-family: var(--display); font-weight: 600; font-size: 1.08rem; }
.store-badge small { font-size: .66rem; font-weight: 500; opacity: .8; }
.cta__micro { margin-top: 26px; display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 700; color: rgba(27,27,27,.72); }
.cta__micro .i-check { stroke: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,253,247,.72); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
/* footer logo on a white chip since footer is dark */
.brand--footer .brand__logo { height: 30px; }
.footer__tag { margin-top: 16px; font-family: var(--display); font-weight: 500; color: rgba(255,253,247,.78); }
.footer__mono { margin-top: 8px; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--yellow); }
.footer__col h4 { color: var(--paper); font-family: var(--display); font-size: .86rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; padding: 6px 0; font-size: .96rem; font-weight: 600; transition: color .2s; }
.footer__col:nth-of-type(1) a:hover { color: var(--green); }
.footer__col:nth-of-type(2) a:hover { color: var(--blue); }
.footer__col:nth-of-type(3) a:hover { color: var(--pink); }
.footer__base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: .84rem; font-weight: 600; color: rgba(255,253,247,.52); }
.footer__disclaimer { max-width: 620px; text-align: right; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-soft), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip, .hero__title em::after { animation: none !important; }
  .hero__title em::after { transform: scaleX(1); }
  .brand:hover .brand__logo, .quote:hover, .promise:hover, .step:hover, .plan:hover, .btn:hover, .ac[open] { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__app { margin-top: 24px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row--rev { grid-template-columns: 1fr; }
  .feature-row--rev .feature-text { order: 0; }
  .feature-visual { order: -1; }
  .security__inner { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__disclaimer { text-align: left; }
}

@media (max-width: 720px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .mobile-menu.is-open { display: flex; }
  .plans { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare__vs { transform: rotate(90deg); justify-self: center; }
  .trustbar__inner { gap: 20px; }
  .trustbar__press { width: 100%; margin-left: 0; }
  .footer__base { flex-direction: column; }
  .float-chip--1 { left: 0; }
  .float-chip--2 { right: 0; }
}

@media (max-width: 480px) {
  .promise-grid, .security__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__cta .btn { flex: 1; }
}
