/*
 * PriceTrue marketing site.
 *
 * Ported from design/website/website.template.html. Every value here — colour,
 * radius, clamp(), keyframe — comes from that file. The design is the specification,
 * so nothing is "tidied up" on the way in.
 */

/*
 * Inter, self-hosted. The design ships these subsets, and serving them ourselves keeps
 * a privacy-first site from calling a third-party font host on every visit.
 *
 * latin-ext carries the Turkish letters (ş ğ ı İ ç ö ü), so it is not optional here.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --navy: #0b1d3a;
  --orange: #ff8a1f;
  --coral: #ff4b3e;
  --pink: #f81752;
  --success: #12b76a;
  --danger: #f04438;
  --bg: #f7f8fa;
  --canvas: #edeff3;
  --fill: #f2f4f7;
  --fill-strong: #e4e7ec;
  --text: #101828;
  --text-body: #344054;
  --text-secondary: #475467;
  --text-muted: #667085;
  --text-faint: #98a2b3;
  --border: rgba(11, 29, 58, 0.07);
  --border-soft: rgba(11, 29, 58, 0.06);
  --border-strong: rgba(11, 29, 58, 0.08);
  --brand-gradient: linear-gradient(100deg, #ff8a1f, #ff4b3e 55%, #f81752);
  --shell: 1160px;
}

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

body {
  background: #fff;
  color: var(--text);
  font-family: Inter, -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--coral); }

img { display: block; }

.page { min-height: 100vh; overflow-x: hidden; }
.shell { max-width: var(--shell); margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* ── Motion ─────────────────────────────────────────────────────────────── */
@keyframes wScan {
  0% { transform: translateY(-42px); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(42px); opacity: 0; }
}
@keyframes wGlow { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.9; } }
@keyframes wFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes wFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes wDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(26px, -14px) scale(1.12); }
  66% { transform: translate(-18px, 10px) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes wSheen { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(100deg, #fff7f0, #ffefe6 24%, #ffe9ec 48%, #f4f1fb 72%, #fff7f0);
  background-size: 280% 100%;
  animation: wFlow 22s ease-in-out infinite;
  overflow: hidden;
}
.nav__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.nav__glow--left {
  top: -70px; left: 8%; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.3), rgba(255, 138, 31, 0) 70%);
  animation: wDrift 19s ease-in-out infinite;
}
.nav__glow--right {
  top: -90px; right: 14%; width: 210px; height: 210px;
  background: radial-gradient(circle, rgba(248, 23, 82, 0.22), rgba(248, 23, 82, 0) 70%);
  animation: wDrift 25s ease-in-out infinite reverse;
}
.nav__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px clamp(14px, 3vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 16px);
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: inherit; flex: none; }
.nav__brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav__wordmark { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.nav__spacer { flex: 1; }
.nav__link { font-size: 15px; font-weight: 600; color: var(--text-secondary); white-space: nowrap; flex: none; }
.nav__link:hover { color: var(--text); }
.lang { display: flex; background: rgba(255, 255, 255, 0.72); border-radius: 10px; padding: 3px; flex: none; }
.lang a {
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.lang a.is-active {
  font-weight: 700;
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(11, 29, 58, 0.1);
}
.nav__cta {
  flex: none;
  padding: 10px clamp(13px, 3.4vw, 16px);
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.nav__cta:hover { color: #fff; transform: translateY(-1px); }
.nav__cta span { position: relative; z-index: 2; }
.nav__cta::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  animation: wSheen 4.6s ease-in-out infinite;
}
.nav__cta--short { display: none; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; }
.hero__glow--a {
  top: -180px; right: -140px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255, 75, 62, 0.42), rgba(255, 138, 31, 0) 68%);
}
.hero__glow--b {
  bottom: -220px; left: -160px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.24), rgba(255, 138, 31, 0) 70%);
}
.hero__inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 20px clamp(0px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: wGlow 2s ease-in-out infinite; }
.badge span { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.hero h1 {
  margin: 20px 0 0;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: pretty;
}
.hero__body {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
  text-wrap: pretty;
}
.stores { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  border-radius: 14px;
  color: #fff;
  transition: transform 0.2s ease;
}
.store:hover { color: #fff; transform: translateY(-2px); }
.store--primary {
  background: var(--brand-gradient);
  background-size: 180% 100%;
  animation: wFlow 9s ease-in-out infinite;
  box-shadow: 0 12px 30px rgba(248, 23, 82, 0.34);
}
.store--secondary { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); }
.store__small { display: block; font-size: 11px; font-weight: 600; opacity: 0.8; }
.store--secondary .store__small { opacity: 0.7; }
.store__name { display: block; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.stats { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 22px; }
.stat__n { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat__l { margin-top: 2px; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.55); }

/* Hero phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: calc(-1 * clamp(0px, 3vw, 40px));
  animation: wFloat 7s ease-in-out infinite;
}
.phone {
  width: min(320px, 86vw);
  border-radius: 42px 42px 0 0;
  background: var(--bg);
  border: 9px solid var(--navy);
  border-bottom: 0;
  box-shadow: 0 -8px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  padding-bottom: 8px;
}
.phone__notch { height: 26px; display: flex; align-items: center; justify-content: center; background: var(--bg); }
.phone__notch div { width: 74px; height: 20px; border-radius: 99px; background: var(--navy); }
.phone__head { padding: 6px 14px 0; display: flex; align-items: center; justify-content: space-between; }
.phone__head img { width: 26px; height: 26px; }
.avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.phone__greet { padding: 14px 14px 0; }
.phone__greet small { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.phone__greet strong { display: block; margin-top: 1px; font-size: 19px; font-weight: 800; letter-spacing: -0.025em; }
.phone__card {
  margin: 12px 14px 0;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
}
.saved { display: flex; justify-content: center; padding: 2px 0 10px; }
.saved__frame { position: relative; padding: 13px 22px; }
.saved__label { font-size: 10px; font-weight: 600; color: var(--text-muted); }
.saved__amount { margin-top: 1px; font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.phone__cta {
  height: 44px;
  border-radius: 12px;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.phone__list {
  margin: 14px 14px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px;
}
.phone__list b { font-size: 13px; font-weight: 700; }
.phone__list small { display: block; margin-top: 2px; font-size: 11px; font-weight: 500; color: var(--text-muted); }
.progress { height: 5px; border-radius: 99px; background: var(--canvas); overflow: hidden; margin-top: 9px; }
.progress > div { height: 100%; border-radius: 99px; background: linear-gradient(90deg, #ff8a1f, #ff4b3e); }
.phone__tiles { margin: 14px 14px 0; display: flex; gap: 8px; }
.phone__tile { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 11px; }
.phone__tile--dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.phone__tile b { font-size: 11px; font-weight: 700; }
.phone__tile span { display: block; margin-top: 8px; font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.phone__tabs {
  margin-top: 16px; height: 54px;
  border-top: 1px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: space-around;
  position: relative;
}
.phone__tab { width: 34px; height: 4px; border-radius: 99px; background: var(--fill-strong); }
.phone__tab--active { background: var(--coral); }
.phone__scan {
  width: 44px; height: 44px; border-radius: 50%; margin-top: -16px;
  background: var(--brand-gradient);
  box-shadow: 0 6px 18px rgba(248, 23, 82, 0.4), 0 0 0 4px #fff;
}

/* Scan brackets — the logo motif, reused at every size. */
.brackets { position: relative; }
.brackets::before, .brackets::after,
.brackets > .brackets__b, .brackets > .brackets__c { content: ''; position: absolute; }
.brackets::before {
  top: 0; left: 0;
  border-top: 3px solid var(--orange); border-left: 3px solid var(--orange);
}
.brackets::after {
  top: 0; right: 0;
  border-top: 3px solid var(--coral); border-right: 3px solid var(--coral);
}
.brackets > .brackets__b {
  bottom: 0; left: 0;
  border-bottom: 3px solid var(--orange); border-left: 3px solid var(--orange);
}
.brackets > .brackets__c {
  bottom: 0; right: 0;
  border-bottom: 3px solid var(--pink); border-right: 3px solid var(--pink);
}
.brackets--18::before, .brackets--18::after,
.brackets--18 > .brackets__b, .brackets--18 > .brackets__c { width: 18px; height: 18px; }
.brackets--18::before { border-radius: 7px 0 0 0; }
.brackets--18::after { border-radius: 0 7px 0 0; }
.brackets--18 > .brackets__b { border-radius: 0 0 0 7px; }
.brackets--18 > .brackets__c { border-radius: 0 0 7px 0; }
.brackets--28::before, .brackets--28::after,
.brackets--28 > .brackets__b, .brackets--28 > .brackets__c { width: 28px; height: 28px; }
.brackets--28::before { border-radius: 10px 0 0 0; }
.brackets--28::after { border-radius: 0 10px 0 0; }
.brackets--28 > .brackets__b { border-radius: 0 0 0 10px; }
.brackets--28 > .brackets__c { border-radius: 0 0 10px 0; }

.scanline {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 138, 31, 0), #ff8a1f, rgba(248, 23, 82, 0));
  animation: wScan 2.4s ease-in-out infinite;
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { max-width: var(--shell); margin: 0 auto; padding: clamp(56px, 8vw, 104px) 20px 0; }
.section--narrow { max-width: 820px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--pink); }
.kicker--orange { color: var(--orange); }
.section h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 620px;
  text-wrap: pretty;
}

/* How it works */
.steps {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
.step {
  background: var(--bg);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11, 29, 58, 0.08); }
.step__head { display: flex; align-items: center; gap: 10px; }
.step__n {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.step__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.step p { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--text-muted); text-wrap: pretty; }
.mock { margin-top: 20px; height: 200px; border-radius: 16px; box-sizing: border-box; }
.mock--camera {
  background: linear-gradient(160deg, #132b4c, #081426 60%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mock--card { background: #fff; border: 1px solid var(--border); padding: 18px; }
.shelf-label {
  position: absolute; inset: 18px;
  background: #fff; border-radius: 6px;
  padding: 10px 12px; box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: space-between;
}
.shelf-label__brand { font-size: 8px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.shelf-label__name { font-size: 10px; font-weight: 600; }
.shelf-label__price { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; }
.barcode { display: flex; gap: 1.5px; align-items: flex-end; }
.barcode i { display: block; background: var(--text); }
.result__brand { font-size: 11px; font-weight: 600; color: var(--text-faint); }
.result__name { font-size: 14px; font-weight: 700; }
.result__prices { margin-top: 10px; display: flex; align-items: flex-end; gap: 8px; }
.result__price { font-size: 30px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.result__was { font-size: 13px; font-weight: 600; color: var(--text-faint); text-decoration: line-through; padding-bottom: 3px; }
.verdict {
  margin-top: 14px;
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(18, 183, 106, 0.09);
}
.verdict__tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; flex: none;
}
.verdict__label { font-size: 11px; font-weight: 800; letter-spacing: 0.05em; color: var(--success); }
.verdict__sub { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.tiles { margin-top: 12px; display: flex; gap: 8px; }
.tile { flex: 1; background: var(--bg); border-radius: 10px; padding: 9px 11px; }
.tile small { font-size: 10px; font-weight: 600; color: var(--text-faint); }
.tile b { display: block; margin-top: 1px; font-size: 14px; font-weight: 700; }
.basket__label { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.basket__total { font-size: 30px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; }
.basket__bar { margin-top: 8px; height: 6px; border-radius: 99px; background: var(--fill-strong); overflow: hidden; }
.basket__bar > div { height: 100%; border-radius: 99px; background: linear-gradient(90deg, #ff8a1f, #ff4b3e); }
.basket__budget { margin-top: 4px; font-size: 11px; font-weight: 500; color: var(--text-faint); }
.basket__rows { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.basket__row { display: flex; align-items: center; justify-content: space-between; }
.basket__row > div:first-child { font-size: 12px; font-weight: 600; }
.basket__right { display: flex; align-items: center; gap: 8px; }
.pill { font-size: 9px; font-weight: 700; padding: 3px 7px; border-radius: 99px; }
.pill--good { background: rgba(18, 183, 106, 0.1); color: var(--success); }
.pill--high { background: rgba(240, 68, 56, 0.1); color: var(--danger); }
.basket__amount { font-size: 13px; font-weight: 800; }

/* Features */
.features {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 20px);
}
.feature {
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(11, 29, 58, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 29, 58, 0.09);
  border-color: rgba(248, 23, 82, 0.28);
}
.feature__n {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(248, 23, 82, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--pink);
}
.feature__title { margin-top: 14px; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.feature p { margin: 7px 0 0; font-size: 14px; line-height: 1.55; color: var(--text-muted); text-wrap: pretty; }

/* Price history panel */
.panel {
  margin-top: clamp(20px, 2.5vw, 28px);
  border-radius: 22px;
  background: var(--navy);
  padding: clamp(24px, 3.5vw, 40px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.panel__glow {
  position: absolute; top: -140px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 62, 0.34), rgba(255, 138, 31, 0) 70%);
}
.panel__copy { position: relative; }
.panel h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: pretty;
}
.panel p { margin: 12px 0 0; font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, 0.66); max-width: 420px; text-wrap: pretty; }
.chart { position: relative; background: #fff; border-radius: 18px; padding: 20px; }
.chart__head { display: flex; align-items: baseline; justify-content: space-between; }
.chart__label { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.chart__price { margin-top: 1px; font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.chart__range {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 99px;
  background: rgba(18, 183, 106, 0.1);
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em; color: var(--success);
}
.chart svg { width: 100%; height: 112px; display: block; margin-top: 12px; }
.segmented { margin-top: 6px; display: flex; gap: 4px; background: var(--fill); border-radius: 10px; padding: 3px; }
.segmented > div { flex: 1; text-align: center; padding: 7px 0; font-size: 12px; font-weight: 600; color: var(--text-muted); }
.segmented > div.is-active { border-radius: 8px; background: #fff; font-weight: 700; color: var(--text); box-shadow: 0 1px 3px rgba(11, 29, 58, 0.1); }

/* Family / best split */
.family {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.family h2 { max-width: none; }
.family__body { margin: 16px 0 0; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; color: var(--text-muted); max-width: 460px; text-wrap: pretty; }
.points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.point { display: flex; align-items: flex-start; gap: 11px; }
.point__tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(18, 183, 106, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex: none; margin-top: 2px;
}
.point span { font-size: 15px; line-height: 1.5; font-weight: 500; color: var(--text-body); }
.split { background: var(--bg); border: 1px solid var(--border); border-radius: 22px; padding: clamp(18px, 2.5vw, 24px); }
.split__head { display: flex; align-items: center; justify-content: space-between; }
.split__title { font-size: 15px; font-weight: 700; }
.split__meta { font-size: 12px; font-weight: 600; color: var(--text-faint); }
.split__summary {
  margin-top: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 16px; display: flex; gap: 14px;
}
.split__summary small { font-size: 11px; font-weight: 600; color: var(--text-faint); }
.split__summary b { display: block; margin-top: 2px; font-size: 21px; font-weight: 800; letter-spacing: -0.025em; }
.split__summary b.is-saving { color: var(--success); }
.split__divider { width: 1px; background: var(--border-strong); }
.split__groups { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.split__group { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.split__group-head {
  padding: 14px 16px;
  display: flex; align-items: center; gap: 11px;
  background: rgba(11, 29, 58, 0.03);
}
.split__avatar {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.split__store { font-size: 15px; font-weight: 700; }
.split__store-meta { margin-top: 1px; font-size: 11px; font-weight: 500; color: var(--text-muted); }
.split__total { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.split__save { font-size: 10px; font-weight: 700; color: var(--success); }
.split__item {
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--border-soft);
}
.split__item-name { font-size: 13px; font-weight: 600; }
.split__item-who { margin-top: 1px; font-size: 10px; font-weight: 500; color: var(--text-faint); }
.split__item-price { font-size: 13px; font-weight: 700; }
.split__item-delta { font-size: 10px; font-weight: 600; color: var(--success); }

/* FAQ */
.faq h2 { text-align: center; max-width: none; margin: 0; }
.faq__list { margin-top: clamp(28px, 3.5vw, 40px); display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border-radius: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border-strong);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.faq__item[open] { background: var(--bg); border-color: rgba(11, 29, 58, 0.1); }
.faq__q {
  display: flex; align-items: flex-start; gap: 14px;
  cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em; text-wrap: pretty;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 500;
  background: var(--fill); color: var(--text-muted);
  transition: transform 0.18s, background 0.18s, color 0.18s;
}
.faq__item[open] .faq__icon { background: var(--navy); color: #fff; transform: rotate(45deg); }
.faq__a { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--text-muted); text-wrap: pretty; }

/* CTA */
.cta-wrap { max-width: var(--shell); margin: clamp(56px, 8vw, 104px) auto 0; padding: 0 20px; }
.cta {
  border-radius: 26px;
  background: var(--navy);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 56px);
  position: relative; overflow: hidden; text-align: center;
}
.cta__glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 62, 0.34), rgba(255, 138, 31, 0) 68%);
}
.cta__inner { position: relative; }
.cta__inner img { width: 62px; height: 62px; border-radius: 16px; margin: 0 auto; }
.cta h2 {
  margin: 20px 0 0;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: none;
  text-wrap: pretty;
}
.cta p { margin: 14px auto 0; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.55; color: rgba(255, 255, 255, 0.66); max-width: 460px; text-wrap: pretty; }
.cta__buttons { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta__button { padding: 15px 26px; border-radius: 14px; color: #fff; font-size: 16px; font-weight: 700; }
.cta__button:hover { color: #fff; }
.cta__button--primary { background: var(--brand-gradient); box-shadow: 0 12px 30px rgba(248, 23, 82, 0.34); }
.cta__button--secondary { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); }

/* Footer */
.footer { margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--border-strong); }
.footer__inner {
  max-width: var(--shell); margin: 0 auto;
  padding: clamp(32px, 4vw, 52px) 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer__brand span { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.footer__note { margin: 12px 0 0; font-size: 13px; line-height: 1.6; color: var(--text-faint); max-width: 280px; text-wrap: pretty; }
.footer__col-title { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--text-faint); }
.footer__links { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.footer__links a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border-strong); }
.footer__bottom-inner {
  max-width: var(--shell); margin: 0 auto; padding: 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 500; color: var(--text-faint);
}

/* Legal pages — same visual language, long-form copy. */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 20px 0; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; text-wrap: pretty; }
.legal__updated { margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--text-faint); }
.legal__body { margin-top: clamp(28px, 3.5vw, 40px); }
.legal__body h2 {
  margin: 32px 0 0; font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; max-width: none;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p, .legal__body li { font-size: 16px; line-height: 1.65; color: var(--text-secondary); text-wrap: pretty; }
.legal__body p { margin-top: 12px; }
.legal__body ul { margin: 12px 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__body a { font-weight: 500; }
.legal__callout {
  margin-top: 24px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px 22px;
}
.legal__callout p:first-child { margin-top: 0; }

@media (max-width: 700px) {
  .nav__link { display: none; }
}
@media (max-width: 430px) {
  .nav__wordmark { display: none; }
  .nav__cta--long { display: none; }
  .nav__cta--short { display: inline; }
}
