/* ─── FONTS ─── */
@font-face {
  font-family: "ExoDC";
  src: url("./assets/fonts/Exo_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ExoDC";
  src: url("./assets/fonts/Exo_semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "BariolDC";
  src: url("./assets/fonts/bariol_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BariolDC";
  src: url("./assets/fonts/bariol_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* ─── THEME TOKENS ───
   Colors sourced from iOS asset catalog (DataCifra-Prefix.pch → colorNamed:)
   AppTint light #1E3E5E / dark #4F8BC7
   AppLogoCifra light #2B92EA / dark #4F8BC7
   AppLogoData light #1D3D5E / dark #B5B5B5
   AppText light #2C3E50 / dark #DCDCE1
   AppSecondaryText light #555555 / dark #AAAAAA
   AppBackground light #FFFFFF / dark #000000
   AppSecondaryBackground light #F5F5F5 / dark #1C1C1E
   AppBar light #ECF0F1 / dark #1C1C1E
   AppNotification light #D35400 / dark #FF7828
*/
:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --surface: rgba(236, 240, 241, 0.72);
  --surface-solid: #ffffff;
  --border: rgba(30, 62, 94, 0.10);
  --border-strong: rgba(30, 62, 94, 0.18);
  --text: #2c3e50;
  --text-secondary: #555555;
  --accent: #2b92ea;
  --accent-deep: #1e3e5e;
  --accent-soft: rgba(43, 146, 234, 0.08);
  --accent-glow: rgba(43, 146, 234, 0.18);
  --brand-warm: #d35400;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(30, 62, 94, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 62, 94, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-w: 1140px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #2c2c2e;
  --bg-alt: #1c1c1e;
  --surface: rgba(28, 28, 30, 0.78);
  --surface-solid: #1c1c1e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #dcdce1;
  --text-secondary: #aaaaaa;
  --accent: #4f8bc7;
  --accent-deep: #4f8bc7;
  --accent-soft: rgba(79, 139, 199, 0.12);
  --accent-glow: rgba(79, 139, 199, 0.22);
  --brand-warm: #ff7828;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "BariolDC", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, p { margin: 0; }

.container {
  width: min(calc(100% - 40px), var(--max-w));
  margin: 0 auto;
}

/* ─── TOPBAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

.brand img { height: 28px; }

.topbar__nav {
  display: flex;
  gap: 28px;
  font-family: "ExoDC", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.topbar__nav a { transition: color 200ms var(--ease); }
.topbar__nav a:hover { color: var(--accent); }

.topbar__actions { display: flex; gap: 10px; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-family: "ExoDC", sans-serif;
  transition: border-color 200ms var(--ease);
}

.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle__icon { flex-shrink: 0; }

.logo--dark {
  display: none;
}

html[data-theme="dark"] .logo--light {
  display: none;
}

html[data-theme="dark"] .logo--dark {
  display: block;
}

.footer__logo--dark {
  display: none;
}

html[data-theme="dark"] .footer__logo--light {
  display: none;
}

html[data-theme="dark"] .footer__logo--dark {
  display: block;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -80px;
  background: var(--accent-glow);
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -60px;
  background: rgba(245, 158, 11, 0.12);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-family: "ExoDC", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.badge--live {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.hero h1 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__lead {
  margin-top: 20px;
  max-width: 44ch;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-md);
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 150ms var(--ease), box-shadow 150ms var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  padding: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .btn--primary {
  background: rgba(255, 255, 255, 0.06);
}

.btn__store { height: 52px; }
.btn--lg .btn__store { height: 56px; }

.btn--ghost {
  padding: 12px 24px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Device frame */
.device-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 2266 / 1488;
}

.device-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-img { transition: opacity 200ms var(--ease); }
.theme-img--dark { opacity: 0; }
html[data-theme="dark"] .theme-img--light { opacity: 0; }
html[data-theme="dark"] .theme-img--dark { opacity: 1; }

.hero__device {
  position: relative;
}

/* ─── TRUST BAR ─── */
.trust {
  padding: 0 0 56px;
}

.trust__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.trust__item strong {
  font-family: "ExoDC", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
}

.trust__item span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust__divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: 40px;
}

.label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "ExoDC", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

/* ─── FEATURES GRID ─── */
.features {
  padding: 72px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fcard {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}

.fcard:hover {
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.fcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.fcard h3 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.fcard p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── SHOWCASE ─── */
.showcase {
  padding: 72px 0 80px;
}

.showcase__layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-secondary);
  font-family: "ExoDC", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 200ms var(--ease);
}

.tab:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

html[data-theme="dark"] .tab.is-active {
  color: #111318;
}

.showcase__screen {
  display: flex;
  justify-content: center;
}

.device-frame--showcase {
  width: 100%;
  max-width: 860px;
}

.screen-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.screen-slot.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Split light/dark view for "Modos" screen */
.screen-slot--split .split-half {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-half--left {
  clip-path: inset(0 50% 0 0);
}

.split-half--right {
  clip-path: inset(0 0 0 50%);
}

.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.screen-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__caption {
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__caption p {
  position: absolute;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.55;
  opacity: 0;
  transition: opacity 250ms var(--ease);
}

.showcase__caption p.is-active {
  position: relative;
  opacity: 1;
}

/* ─── ECOSYSTEM ─── */
.ecosystem {
  padding: 72px 0;
}

.eco__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eco__copy h2 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.eco__copy > p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 48ch;
}

.eco__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.format-tag {
  padding: 5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-family: "ExoDC", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.eco__cards {
  display: grid;
  gap: 14px;
}

.eco-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.eco-card:hover {
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-sm);
}

.eco-card__icon {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.eco-card strong {
  font-family: "ExoDC", sans-serif;
  font-size: 1.05rem;
  align-self: end;
}

.eco-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ─── CTA ─── */
.cta {
  padding: 32px 0 72px;
}

.cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, var(--accent-soft), var(--surface));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cta__copy h2 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta__copy p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cta__note {
  font-family: "ExoDC", sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ─── FOOTER ─── */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo { height: 20px; opacity: 0.5; }

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 200ms var(--ease);
}

.footer__links a:hover { color: var(--accent); }

.footer p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ─── TRUST ICON ─── */
.trust__icon {
  color: var(--accent);
}

.trust__item svg + span {
  margin-top: 2px;
}

/* ─── SECTION SUB-HEADER ─── */
.section-header__sub {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 48ch;
}

/* ─── PERSONAS ─── */
.personas {
  padding: 72px 0;
}

.personas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.persona-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
}

.persona-card:hover {
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.persona-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.persona-card h3 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.persona-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── SOCIAL PROOF ─── */
.proof {
  padding: 72px 0;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}

.proof-card:hover {
  border-color: var(--accent-glow);
  box-shadow: var(--shadow-sm);
}

.proof-card > p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.proof-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-card footer strong {
  font-family: "ExoDC", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.proof-card footer span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ─── COMPARISON TABLE ─── */
.compare {
  padding: 72px 0;
}

.compare__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare__table th {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare__table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.compare__table tr:last-child td {
  border-bottom: none;
}

.compare__row--highlight {
  background: var(--accent-soft);
}

.compare__row--highlight td {
  color: var(--accent-deep);
}

.compare__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: "ExoDC", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.compare__badge--green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

html[data-theme="dark"] .compare__badge--green {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.compare__badge--red {
  background: rgba(239, 68, 68, 0.10);
  color: #dc2626;
}

html[data-theme="dark"] .compare__badge--red {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.compare__badge--yellow {
  background: rgba(234, 179, 8, 0.12);
  color: #a16207;
}

html[data-theme="dark"] .compare__badge--yellow {
  background: rgba(234, 179, 8, 0.18);
  color: #facc15;
}

/* ─── FAQ ─── */
.faq {
  padding: 72px 0;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.faq-item[open] {
  border-color: var(--accent-glow);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  color: var(--text);
  transition: color 200ms var(--ease);
}

.faq-item__q:hover { color: var(--accent); }

/* Hide default marker */
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ""; }

/* Custom chevron */
.faq-item__q::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: transform 200ms var(--ease);
}

.faq-item[open] .faq-item__q::after {
  content: "\2212"; /* minus */
}

.faq-item__a {
  padding: 0 20px 16px;
}

.faq-item__a p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── ANDROID CAPTURE ─── */
.android-capture {
  padding: 32px 0;
}

.android-capture__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
}

.android-capture__copy h3 {
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.android-capture__copy p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.android-capture__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.android-capture__row {
  display: flex;
  gap: 8px;
}

.android-capture__input {
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: "BariolDC", sans-serif;
  font-size: 0.95rem;
  min-width: 220px;
  transition: border-color 200ms var(--ease);
}

.android-capture__input:focus {
  outline: none;
  border-color: var(--accent);
}

.android-capture__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.android-capture__consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.android-capture__consent a {
  color: var(--accent);
  text-decoration: underline;
}

.android-capture__consent a:hover {
  opacity: 0.8;
}

.btn--accent {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: "ExoDC", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 200ms var(--ease), transform 150ms var(--ease);
  white-space: nowrap;
}

html[data-theme="dark"] .btn--accent {
  color: #111318;
}

.btn--accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--accent:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.android-capture__error {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
}

html[data-theme="dark"] .android-capture__error {
  color: #f87171;
}

.android-capture__success {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #16a34a;
  font-weight: 600;
}

html[data-theme="dark"] .android-capture__success {
  color: #4ade80;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta__card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta__actions {
    align-items: flex-start;
  }

  .personas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .android-capture__card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .android-capture__form,
  .android-capture__row {
    width: 100%;
  }

  .android-capture__input {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-w));
  }

  .topbar__nav { display: none; }

  .hero {
    padding: 48px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .showcase__tabs {
    gap: 6px;
  }

  .tab {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .tab svg { display: none; }

  .trust__grid {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .trust__divider { display: none; }

  .trust__item { min-width: 80px; }

  .cta__card { padding: 28px; }

  .personas__grid {
    grid-template-columns: 1fr;
  }

  .proof__grid {
    grid-template-columns: 1fr;
  }

  .compare__table th,
  .compare__table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .android-capture__card {
    padding: 24px;
  }

  .android-capture__row {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fcard,
  .tab,
  .screen-slot,
  .theme-img,
  .showcase__caption p,
  .persona-card,
  .proof-card,
  .faq-item { transition: none; }
}
