/* ============================================================
   SuperSplit — marketing site
   Dark, precise "money ledger" aesthetic.
   Brand: #181a1f bg · #21242c card · #996bff purple · #34d399 green
   ============================================================ */

:root {
	--bg: #181a1f;
	--bg-deep: #121419;
	--card: #21242c;
	--card-2: #272a33;
	--border: #2c2f38;
	--border-soft: rgba(255, 255, 255, 0.07);

	--text: #f4f6f9;
	--text-muted: #a4adba;
	--text-dim: #6b7480;

	--purple: #996bff;
	--purple-deep: #7c4dff;
	--green: #34d399;
	--amber: #f59e0b;
	--rose: #f43f5e;
	--blue: #38bdf8;

	--grad-text: linear-gradient(100deg, #b9a1ff 0%, #6ef0c4 100%);
	--grad-cta: linear-gradient(135deg, #9b6bff 0%, #7c4dff 100%);

	--font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

	--wrap: 1140px;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

/* Atmospheric background: radial blooms + grid + grain */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(60% 50% at 15% 0%, rgba(124, 77, 255, 0.18), transparent 60%),
		radial-gradient(50% 50% at 95% 8%, rgba(52, 211, 153, 0.12), transparent 60%),
		linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--purple); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Typography ---------- */
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -0.015em; }
p { margin: 0; }

.grad {
	background: var(--grad-text);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
	font-family: var(--mono);
	font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
	color: var(--text-muted); text-transform: uppercase;
	display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow__pill {
	background: rgba(52, 211, 153, 0.14); color: #6ee7b7;
	padding: 4px 10px; border-radius: 999px; letter-spacing: 0.02em;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font); font-weight: 700; font-size: 0.95rem;
	padding: 12px 20px; border-radius: 12px; border: 1px solid transparent;
	cursor: pointer; transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}
.btn--primary {
	background: var(--grad-cta); color: #fff;
	box-shadow: 0 10px 30px -10px rgba(124, 77, 255, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(124, 77, 255, 0.8); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--border); color: var(--text); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Announcement ---------- */
.announce {
	background: linear-gradient(90deg, rgba(124, 77, 255, 0.16), rgba(52, 211, 153, 0.12));
	border-bottom: 1px solid var(--border-soft);
	font-size: 0.85rem;
}
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 24px; flex-wrap: wrap; }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18); }
.announce strong { color: #fff; }
.announce__link { color: #c4b5fd; font-weight: 700; }
.announce__link:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(20, 22, 27, 0.72); border-bottom: 1px solid var(--border-soft); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__mark { width: 30px; height: 30px; color: #fff; }
.brand__name { font-size: 1.18rem; letter-spacing: -0.02em; }
.nav { display: flex; gap: 28px; margin-left: 14px; }
.nav a { color: var(--text-muted); font-weight: 600; font-size: 0.92rem; transition: color 0.15s; }
.nav a:hover { color: #fff; }
.site-header__cta { margin-left: auto; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: 0.25s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-bottom: 1px solid var(--border-soft); background: rgba(20, 22, 27, 0.96); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 12px 4px; color: var(--text-muted); font-weight: 600; border-bottom: 1px solid var(--border-soft); }
.mobile-menu a:last-child { border: 0; margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(2.6rem, 6.2vw, 4.6rem); margin-bottom: 22px; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-muted); max-width: 30em; margin-bottom: 32px; }

.store-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-row--center { justify-content: center; }
.store-badge img { height: 52px; width: auto; transition: transform 0.2s var(--ease); }
.store-badge:hover img { transform: translateY(-2px); }

.hero__ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 26px 0 0; }
.hero__ticks li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero__ticks li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: rgba(52, 211, 153, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat; flex: none; }

/* ---------- Phone mockup ---------- */
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__glow { position: absolute; inset: -10% -5% -5%; z-index: -1; background: radial-gradient(50% 45% at 55% 40%, rgba(124, 77, 255, 0.35), transparent 70%); filter: blur(20px); }
.phone {
	position: relative; width: min(312px, 78vw); aspect-ratio: 312 / 640;
	background: linear-gradient(160deg, #2a2d36, #16181d); border-radius: 44px;
	padding: 12px; box-shadow: var(--shadow), inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
	animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 38%; height: 24px; background: #16181d; border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { height: 100%; background: var(--bg); border-radius: 33px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }

/* App UI recreation */
.app { padding: 16px 15px; height: 100%; display: flex; flex-direction: column; font-size: 13px; }
.app__status { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--text-dim); padding: 4px 4px 12px; }
.app__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.app__eyebrow { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--text-dim); margin-bottom: 3px; }
.app__title { font-size: 17px; }
.app__avatars { display: flex; }
.app__avatars > span { width: 26px; height: 26px; border-radius: 50%; background: var(--c, var(--purple)); color: #fff; font-weight: 700; font-size: 11px; display: grid; place-items: center; margin-left: -7px; border: 2px solid var(--bg); }
.app__avatars-more { background: var(--card-2) !important; color: var(--text-muted) !important; }
.app__balance { background: var(--card-2); border: 1px solid var(--border); border-radius: 16px; padding: 14px; margin-bottom: 16px; }
.app__balance-label { color: var(--text-muted); font-size: 11px; }
.app__balance-amt { font-family: var(--mono); font-weight: 700; font-size: 26px; color: var(--green); margin: 2px 0 10px; }
.app__balance-bar { height: 6px; background: rgba(255, 255, 255, 0.07); border-radius: 999px; overflow: hidden; }
.app__balance-bar i { display: block; height: 100%; background: linear-gradient(90deg, #34d399, #6ee7b7); border-radius: 999px; }
.app__section { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.app__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.app__list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
.app__ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-size: 15px; background: color-mix(in srgb, var(--c) 20%, transparent); flex: none; }
.app__meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.app__meta b { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__meta small { color: var(--text-dim); font-size: 10.5px; }
.app__amt { font-family: var(--mono); font-weight: 700; font-size: 13px; }
.app__cta { margin-top: auto; width: 100%; border: 0; cursor: pointer; background: var(--grad-cta); color: #fff; font-family: var(--font); font-weight: 700; font-size: 14px; padding: 13px; border-radius: 13px; }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--border-soft); background: rgba(255, 255, 255, 0.012); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 30px 18px; text-align: center; border-left: 1px solid var(--border-soft); }
.trust__item:first-child { border-left: 0; }
.trust__k { display: block; font-family: var(--mono); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.1rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust__v { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 40ch; margin: 0 auto clamp(36px, 5vw, 60px); }
.section-head__sub { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Features ---------- */
.features { padding: clamp(56px, 9vw, 110px) 0; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; margin-bottom: clamp(48px, 7vw, 90px); }
.feature:last-child { margin-bottom: 0; }
.feature--reverse .feature__text { order: 2; }
.feature__tag { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); display: inline-block; margin-bottom: 14px; padding: 4px 10px; border: 1px solid rgba(153, 107, 255, 0.3); border-radius: 999px; }
.feature__text h3 { margin-bottom: 14px; }
.feature__text p { color: var(--text-muted); font-size: 1.05rem; }
.feature__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 20px 0 0; }
.feature__chips li { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); background: var(--card); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }

.feature__art { display: flex; justify-content: center; }
.feature__art > div { width: 100%; max-width: 380px; }

/* card primitives */
.settle-card, .split-card, .fx-card, .browser { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }

.chip { font-family: var(--mono); font-size: 0.7rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: var(--card-2); color: var(--text-muted); }
.chip--green { background: rgba(52, 211, 153, 0.16); color: #6ee7b7; }

.settle-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-muted); }
.settle-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.settle-card__list li { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; }
.settle-card__list i { width: 24px; height: 24px; border-radius: 50%; background: var(--c); color: #fff; font-weight: 700; font-size: 0.72rem; display: grid; place-items: center; flex: none; font-style: normal; }
.settle-card__list em { color: var(--text-dim); font-style: normal; }
.settle-card__list b { font-family: var(--mono); margin-left: auto; }

.split-card__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-weight: 700; }
.split-bar { display: flex; height: 38px; border-radius: 12px; overflow: hidden; }
.split-bar i { width: var(--w); background: var(--c); display: grid; place-items: center; color: #0d0f13; font-weight: 700; font-size: 0.74rem; font-style: normal; }
.split-card__legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }
.split-card__legend span { display: inline-flex; align-items: center; gap: 7px; }
.split-card__legend i { width: 10px; height: 10px; border-radius: 3px; background: var(--c); font-style: normal; }

.fx-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border-soft); }
.fx-row span { flex: 1; }
.fx-row b { font-family: var(--mono); }
.fx-row small { color: var(--text-dim); font-family: var(--mono); font-size: 0.74rem; }
.fx-total { display: flex; justify-content: space-between; padding-top: 14px; margin-top: 4px; font-weight: 700; }
.fx-total b { font-family: var(--mono); color: var(--green); }

.browser { padding: 0; overflow: hidden; }
.browser__bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--card-2); border-bottom: 1px solid var(--border); }
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.browser__url { font-family: var(--mono); font-size: 0.74rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser__body { padding: 20px; }
.browser__group { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 14px; font-family: var(--mono); }
.browser__line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.browser__line b { font-family: var(--mono); }
.pos { color: var(--green); }
.neg { color: var(--rose); }

/* ---------- Compare ---------- */
.compare { padding: clamp(56px, 9vw, 110px) 0; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.cmp { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--card); }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.cmp thead th { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); font-family: var(--mono); font-weight: 500; }
.cmp tbody th { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.cmp td { text-align: center; font-weight: 700; font-size: 0.9rem; width: 22%; }
.cmp__us { background: rgba(124, 77, 255, 0.1); color: #fff !important; position: relative; }
.cmp td.cmp__us, .cmp tbody td:nth-child(2) { background: rgba(124, 77, 255, 0.07); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .yes { color: var(--green); }
.cmp .no { color: var(--text-dim); }
.cmp .mid { color: var(--amber); }
.cmp__note { text-align: center; color: var(--text-dim); font-size: 0.78rem; margin-top: 16px; }

/* ---------- Pricing ---------- */
.pricing { padding: clamp(56px, 9vw, 110px) 0; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
.plan--featured { border-color: rgba(153, 107, 255, 0.55); box-shadow: 0 0 0 1px rgba(153, 107, 255, 0.25), 0 30px 70px -30px rgba(124, 77, 255, 0.6); position: relative; }
.plan__badge { position: absolute; top: -12px; left: 30px; background: var(--grad-cta); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.plan__name { font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 2px; }
.plan__price span { font-size: 2.6rem; font-weight: 800; font-family: var(--mono); }
.plan__price small { color: var(--text-muted); font-size: 0.95rem; }
.plan__alt { color: var(--text-dim); font-size: 0.84rem; margin-bottom: 18px; }
.plan__list { list-style: none; padding: 0; margin: 18px 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan__list li { padding-left: 26px; position: relative; color: var(--text-muted); font-size: 0.92rem; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: rgba(52, 211, 153, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat; }
.plan__list li:first-child { font-weight: 700; color: var(--text); padding-left: 0; }
.plan__list li:first-child::before { display: none; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 9vw, 110px) 0; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; transition: border-color 0.2s; }
.faq details[open] { border-color: rgba(153, 107, 255, 0.4); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 1.4rem; color: var(--purple); transition: transform 0.25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-muted); padding: 0 0 20px; margin-top: -4px; }
.faq code { font-family: var(--mono); font-size: 0.85em; background: var(--card-2); padding: 2px 6px; border-radius: 6px; color: #c4b5fd; }
.faq a { color: #c4b5fd; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.cta { padding: clamp(56px, 9vw, 100px) 0; }
.cta__inner { text-align: center; background: linear-gradient(160deg, rgba(124, 77, 255, 0.16), rgba(52, 211, 153, 0.08)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 72px) 24px; box-shadow: var(--shadow); }
.cta__inner h2 { margin-bottom: 12px; }
.cta__inner > p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.08rem; }
.cta__qr { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; padding: 12px 18px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 16px; }
.cta__qr img { border-radius: 8px; background: #fff; padding: 4px; }
.cta__qr span { font-size: 0.84rem; color: var(--text-muted); text-align: left; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 56px 0 30px; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.site-footer__tag { color: var(--text-dim); font-size: 0.9rem; margin-top: 14px; max-width: 24ch; }
.site-footer__h { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.site-footer__col { display: flex; flex-direction: column; gap: 11px; }
.site-footer__col a { color: var(--text-muted); font-size: 0.92rem; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border-soft); color: var(--text-dim); font-size: 0.82rem; }

/* ---------- Reveal animation (JS-gated so content is visible without JS) ---------- */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.nav, .site-header__cta { display: none; }
	.nav-toggle { display: block; }
	.hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
	.hero__copy { display: flex; flex-direction: column; align-items: center; }
	.hero__sub { margin-inline: auto; }
	.store-row, .hero__ticks { justify-content: center; }
	.hero__art { order: 0; margin-top: 4px; }
	.feature, .feature--reverse .feature__text { grid-template-columns: 1fr; order: 0; }
	.feature__text { text-align: center; }
	.feature__chips { justify-content: center; }
	.feature__art { order: 2; }
	.feature--reverse .feature__art { order: 2; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.trust__grid { grid-template-columns: 1fr 1fr; }
	.trust__item:nth-child(2) { border-left: 0; }
	.trust__item:nth-child(odd) { border-left: 0; }
	.trust__item:nth-child(n + 3) { border-top: 1px solid var(--border-soft); }
	.plans { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
	.site-footer__inner { grid-template-columns: 1fr; }
}
