/* ==========================================================================
   Tabbook — marketing site styles
   Palette & type derived from the app's own brand:
   ink #06231C · teal #0E7C66 · teal-bright #2BB58F · gold #E8C15D→#D99A26
   paper #F7F5F0 · display: Bricolage Grotesque · body: Public Sans
   ledger voice: IBM Plex Mono
   ========================================================================== */

:root {
  --ink: #06231c;
  --ink-2: #0a2f25;
  --teal: #0e7c66;
  --teal-deep: #0a5c4c;
  --teal-bright: #2bb58f;
  --teal-tint: #e3f1ec;
  --gold: #e8c15d;
  --gold-deep: #d99a26;
  --paper: #f7f5f0;
  --card: #ffffff;
  --text: #1b1f24;
  --muted: #5c6670;
  --line: #e5e2da;
  --line-dark: rgba(231, 236, 233, 0.14);
  --wa: #1daf54;

  --font-display: "Bricolage Grotesque", "Public Sans", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --fs-h1: clamp(2.35rem, 5.2vw, 3.85rem);
  --fs-h2: clamp(1.65rem, 3vw, 2.35rem);
  --fs-h3: 1.1rem;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-1: 0 1px 2px rgba(6, 35, 28, 0.05), 0 4px 14px rgba(6, 35, 28, 0.06);
  --shadow-2: 0 2px 6px rgba(6, 35, 28, 0.07), 0 18px 44px rgba(6, 35, 28, 0.13);
  --shell-w: 1140px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: from-font;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal);
}

:focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.shell {
  max-width: var(--shell-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

section {
  padding-block: clamp(56px, 8vw, 96px);
}

/* --------------------------------------------------------------------------
   Signature: ledger tab eyebrows
   -------------------------------------------------------------------------- */

.tab-head {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 640px;
}

.tab-row {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.tab-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 8px 16px 7px;
  border-radius: 9px 9px 0 0;
  position: relative;
  top: 1px;
  white-space: nowrap;
}

.tab-chip--gold {
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  color: #231a08;
}

.tab-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  color: #231a08;
  box-shadow: 0 2px 6px rgba(217, 154, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  color: #231a08;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 154, 38, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  border-color: rgba(6, 35, 28, 0.22);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-ghost--light {
  border-color: rgba(231, 236, 233, 0.35);
  color: #e7ece9;
}

.btn-ghost--light:hover {
  border-color: #e7ece9;
  color: #fff;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.92rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  margin: 0;
  padding: 0;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.site-nav a:not(.btn):hover {
  color: var(--teal-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-deep);
  border-bottom-color: var(--gold-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid rgba(6, 35, 28, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 30px rgba(6, 35, 28, 0.08);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px clamp(20px, 5vw, 40px) 22px;
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: 13px 2px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a[aria-current="page"] {
  color: var(--teal-deep);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.crumbs {
  padding-top: 18px;
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(6, 35, 28, 0.3);
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(20px, 3vw, 40px) clamp(40px, 5vw, 64px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(8px, 2vw, 28px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-deep);
}

.hero h1 {
  margin-bottom: 0.45em;
}

.hero h1 .hero-line {
  display: block;
}

.hero h1 .hero-line:nth-child(2) {
  color: var(--teal-deep);
}

.hero h1 .hero-line:nth-child(3) {
  color: var(--gold-deep);
}

.hero-sub {
  font-size: 1.13rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34em;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  color: var(--teal-bright);
  flex: none;
}

/* Right panel + phone */

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 32px) 0;
}

.hero-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(180deg, rgba(43, 181, 143, 0.07) 0 1px, transparent 1px 44px),
    linear-gradient(160deg, var(--ink) 0%, #0a3a2d 58%, var(--teal-deep) 100%);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 3vw, 40px);
  overflow: visible;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 26px;
  width: 56px;
  height: 20px;
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  border-radius: 6px 6px 0 0;
  opacity: 0.9;
}

/* Phone mockup (pure CSS/HTML) — mirrors the real app's dark dashboard */

.phone {
  width: min(260px, 86%);
  aspect-ratio: 9 / 18.4;
  background: #0d110f;
  border-radius: 40px;
  padding: 9px;
  box-shadow:
    0 40px 80px rgba(3, 14, 10, 0.55),
    0 6px 18px rgba(3, 14, 10, 0.4),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #101814;
  border-radius: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
}

.ph-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 2px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: #93aa9e;
}

.ph-status .ph-signal {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
}

.ph-status .ph-signal i {
  width: 3px;
  background: #e7ece9;
  border-radius: 1px;
  display: block;
}

.ph-status .ph-signal i:nth-child(1) { height: 4px; }
.ph-status .ph-signal i:nth-child(2) { height: 7px; }
.ph-status .ph-signal i:nth-child(3) { height: 10px; }
.ph-status .ph-signal i:nth-child(4) { height: 13px; opacity: 0.25; }

.ph-appbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 2px;
}

.ph-appname {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.ph-appbar svg {
  color: #93aa9e;
}

.ph-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 12px 0;
}

.ph-stat {
  background: #1a231e;
  border: 1px solid rgba(231, 236, 233, 0.07);
  border-radius: 12px;
  padding: 10px 11px 9px;
}

.ph-stat svg {
  color: var(--teal-bright);
  margin-bottom: 9px;
}

.ph-stat.is-overdue svg {
  color: #f87171;
}

.ph-stat-amt {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.ph-stat.is-overdue .ph-stat-amt {
  color: #f87171;
}

.ph-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  color: #8fa89c;
}

.ph-profit {
  margin: 8px 12px 0;
  background: #1a231e;
  border: 1px solid rgba(231, 236, 233, 0.07);
  border-radius: 14px;
  padding: 10px 14px 9px;
}

.ph-profit .ph-label {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: block;
}

.ph-profit .ph-amount {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #34d399;
  line-height: 1;
  margin: 9px 0 10px;
}

.ph-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ph-split > div {
  text-align: center;
  padding-inline: 6px;
}

.ph-split > div + div {
  border-left: 1px solid rgba(231, 236, 233, 0.08);
}

.ph-split .v {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  color: #e7ece9;
  white-space: nowrap;
}

.ph-split .v.up {
  color: #34d399;
}

.ph-split .v.down {
  color: #f87171;
}

.ph-split .k {
  display: block;
  font-size: 0.55rem;
  color: #8fa89c;
  margin-top: 3px;
  white-space: nowrap;
}

.ph-quick {
  flex: 1;
  margin: 8px 12px 0;
  background: #1a231e;
  border: 1px solid rgba(231, 236, 233, 0.07);
  border-radius: 14px;
  padding: 3px 12px 5px;
}

.ph-quick-head {
  display: block;
  padding: 9px 0 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #e7ece9;
}

.ph-qa-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #e7ece9;
  border-top: 1px solid rgba(231, 236, 233, 0.06);
}

.ph-qa-row .ico {
  color: var(--teal-bright);
  width: 13px;
  height: 13px;
  flex: none;
}

.ph-qa-row .chev {
  margin-left: auto;
  color: #5c6f66;
  width: 11px;
  height: 11px;
  flex: none;
}

.ph-nav {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #0b110e;
  border-top: 1px solid rgba(231, 236, 233, 0.07);
  border-radius: 0 0 32px 32px;
  padding: 8px 4px 13px;
}

.ph-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  color: #8fa89c;
}

.ph-nav-ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 20px;
  border-radius: 999px;
}

.ph-nav svg {
  width: 14px;
  height: 14px;
  stroke: #8fa89c;
}

.ph-nav .on span {
  color: var(--teal-bright);
  font-weight: 600;
}

.ph-nav .on .ph-nav-ico {
  background: rgba(43, 181, 143, 0.16);
}

.ph-nav .on svg {
  stroke: var(--teal-bright);
}

/* Floating chips */

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  max-width: 230px;
}

.float-chip small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.chip-whatsapp {
  left: clamp(-14px, -1vw, -6px);
  bottom: 3%;
}

.chip-whatsapp .chip-ico {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  color: #fff;
}

.chip-payment {
  right: clamp(-16px, -1.5vw, -8px);
  top: 11%;
}

.chip-payment .chip-ico {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  display: grid;
  place-items: center;
  color: #231a08;
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

.trust {
  padding-block: 0 clamp(48px, 6vw, 80px);
}

.trust-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 1.15fr 0.85fr;
  border-block: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item svg {
  color: var(--teal);
  flex: none;
}

/* --------------------------------------------------------------------------
   Feature cards
   -------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

.feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature-ico svg {
  width: 22px;
  height: 22px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.feature-flag {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6414;
  background: #f7ecd2;
  border-radius: 6px;
  padding: 4px 9px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps {
  background: var(--card);
  border-block: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 26px 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #231a08;
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  border-radius: 0 0 9px 9px;
  padding: 7px 14px 6px;
  position: absolute;
  top: 0;
  left: 24px;
}

.step-card h3 {
  margin-top: 26px;
}

.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
}

.price-flag {
  position: absolute;
  top: -13px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  color: #231a08;
  padding: 6px 12px;
  border-radius: 7px;
  font-weight: 600;
}

.price-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.price-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.price-amount small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.price-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 6px 0 20px;
}

.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
}

.price-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.price-list svg {
  flex: none;
  margin-top: 3px;
  color: var(--teal-bright);
}

.price-card .btn {
  margin-top: auto;
}

.price-card--dark {
  background:
    repeating-linear-gradient(180deg, rgba(43, 181, 143, 0.06) 0 1px, transparent 1px 40px),
    linear-gradient(165deg, var(--ink), #0c4638);
  border-color: transparent;
  color: #e7ece9;
}

.price-card--dark .price-name,
.price-card--dark .price-amount {
  color: #fff;
}

.price-card--dark .price-amount {
  color: var(--gold);
}

.price-card--dark .price-desc,
.price-card--dark .price-per,
.price-card--dark .price-amount small {
  color: #9fc4b6;
}

.pricing-note {
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--muted);
}

.pricing-note a {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Pricing comparison table
   -------------------------------------------------------------------------- */

.compare-wrap {
  margin-top: 34px;
  overflow-x: auto;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.93rem;
  min-width: 560px;
}

.compare th,
.compare td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare thead th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fbfaf6;
}

.compare tbody th {
  font-weight: 600;
  color: var(--text);
  width: 44%;
}

.compare td {
  color: var(--muted);
}

.compare td:nth-child(3),
.compare thead th:nth-child(3) {
  background: rgba(232, 193, 93, 0.1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.yes {
  color: #15803d;
  font-weight: 600;
}

.no {
  color: #9aa3ab;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-wrap {
  max-width: 760px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--teal-tint);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-deep);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-body {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.97rem;
}

.faq-body p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    repeating-linear-gradient(180deg, rgba(232, 193, 93, 0.05) 0 1px, transparent 1px 42px),
    linear-gradient(160deg, var(--ink), #0c4638 80%);
  color: #e7ece9;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band p {
  color: #9fc4b6;
  max-width: 46ch;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.cta-band .hero-trust {
  justify-content: center;
  color: #7da99a;
  margin-top: 26px;
}

#download {
  padding-bottom: 0;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.page-head {
  padding-bottom: clamp(14px, 2.5vw, 26px);
}

.page-head h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  max-width: 20ch;
}

.page-head .lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 44em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.contact-grid > aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid > aside .promise-card {
  margin-bottom: 0;
}

.contact-grid > aside .contact-alt {
  flex: 1;
}

.promise-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
  margin-bottom: 18px;
}

.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #231a08;
  background: linear-gradient(180deg, #f0ce72, #d99a26);
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.promise-card h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.promise-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

.contact-alt {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
}

.contact-alt h2 {
  font-size: 1.25rem;
}

.contact-alt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.contact-alt li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.contact-alt .feature-ico {
  width: 38px;
  height: 38px;
  margin: 0;
  flex: none;
}

.contact-alt a {
  font-weight: 600;
}

.contact-alt small {
  display: block;
  color: var(--muted);
}

/* Form */

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 28px);
  box-shadow: var(--shadow-1);
}

.form-row {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-row .req {
  color: var(--gold-deep);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--text);
  background: #fbfaf6;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 124, 102, 0.14);
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.93rem;
}

.form-status.is-error {
  display: block;
  background: #fdeceb;
  border: 1px solid #f3c6c2;
  color: #8c2f28;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 12px 0 0;
}

/* Account deletion form (privacy page) */

.btn-danger {
  background: #8c2f28;
  color: #fff;
  box-shadow: 0 2px 6px rgba(140, 47, 40, 0.3);
}

.btn-danger:hover {
  color: #fff;
  background: #7a281f;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(140, 47, 40, 0.38);
}

.btn-danger:disabled,
.btn-gold:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.form-status.is-ok {
  display: block;
  background: var(--teal-tint);
  border: 1px solid #bcd9cf;
  color: var(--teal-deep);
}

.policy-callout {
  background: var(--teal-tint);
  border: 1px solid #bcd9cf;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 0 0 26px;
}

.policy-callout p {
  margin: 0;
}

.del-banner {
  background: #fdf3dc;
  border: 1px solid #ecd9a8;
  border-left: 4px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin: 0 0 14px;
}

.del-warn {
  background: #fdeceb;
  border: 1px solid #f3c6c2;
  border-left: 4px solid #8c2f28;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.93rem;
  margin: 0 0 4px;
}

.del-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  margin: 16px 0;
  cursor: pointer;
}

.del-check span {
  font-weight: 400;
}

.del-check input {
  width: auto;
  flex: none;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--teal);
}

.del-check input:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  box-shadow: none;
}

.del-who {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 16px 0 0;
}

#del-confirm-box,
#del-pending {
  margin-top: 14px;
}

.del-signout-row {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

/* Once signed in, the credentials rows make way for the account panel. */
.contact-form.is-signed-in > .form-row,
.contact-form.is-signed-in > #del-signin-btn {
  display: none;
}

/* --------------------------------------------------------------------------
   Legal / prose pages
   -------------------------------------------------------------------------- */

.prose {
  max-width: 780px;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.prose .lede {
  font-size: 1.08rem;
  color: var(--muted);
}

.prose .updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-block: 1px solid var(--line);
  padding: 10px 0;
  margin-bottom: 34px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 1.8em 0 0.5em;
  scroll-margin-top: 90px;
}

.prose h3 {
  font-size: 1.08rem;
  margin: 1.5em 0 0.4em;
}

.prose ul {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose .toc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 34px;
}

.prose .toc h2 {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.prose .toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 40px;
}

.prose .toc a {
  text-decoration: none;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-story p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 58ch;
}

.about-types {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 92px;
}

.type-chips {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.type-chips li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--teal-deep);
  background: var(--teal-tint);
  border-radius: 999px;
  padding: 7px 13px;
}

.link-light {
  color: var(--gold);
  font-weight: 600;
}

.link-light:hover {
  color: #f0ce72;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-types {
    position: static;
  }
}

[id] {
  scroll-margin-top: 92px;
}

/* --------------------------------------------------------------------------
   Thank-you & 404
   -------------------------------------------------------------------------- */

.center-hero {
  text-align: center;
  padding-block: clamp(60px, 9vw, 110px);
}

.center-hero .big-code {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(14, 124, 102, 0.4);
}

.receipt {
  max-width: 460px;
  margin: 34px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px dashed var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  padding: 28px 26px;
  text-align: left;
}

.receipt dl {
  margin: 0;
  font-size: 0.92rem;
}

.receipt dt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

.receipt dt:first-child {
  margin-top: 0;
}

.receipt dd {
  margin: 3px 0 0;
  font-weight: 600;
}

.receipt .ok {
  color: #15803d;
}

.center-hero .hero-actions {
  justify-content: center;
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background:
    repeating-linear-gradient(180deg, rgba(43, 181, 143, 0.04) 0 1px, transparent 1px 46px),
    #04140f;
  color: #b9cdc4;
  padding: clamp(48px, 7vw, 80px) 0 0;
  margin-top: clamp(48px, 7vw, 90px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
}

.brand-light {
  color: #fff;
}

.footer-tag {
  color: #8aa89c;
  font-size: 0.94rem;
  max-width: 30ch;
  margin: 14px 0 18px;
}

.footer-promise {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.footer-head {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7da99a;
  margin: 4px 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #cfe0d8;
  text-decoration: none;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: #7da99a;
}

.footer-base p {
  margin: 0;
}

.footer-fine {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   Sticky mobile CTA
   -------------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 35, 28, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 -8px 24px rgba(4, 20, 15, 0.3);
  display: none;
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.36, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .btn,
  .feature-card,
  .faq-icon::before,
  .faq-icon::after,
  .nav-toggle-bar {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu.is-open {
    display: block;
  }
}

@media (max-width: 760px) {
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(odd) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .sticky-cta {
    display: block;
  }

  body.has-sticky-cta {
    padding-bottom: 76px;
  }

  .float-chip {
    max-width: 190px;
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    padding-inline: 16px;
  }

  .phone {
    width: 238px;
  }

  .ph-profit {
    padding: 10px 10px 9px;
  }

  .ph-profit .ph-amount {
    font-size: 1.32rem;
    white-space: nowrap;
  }

  .ph-split > div {
    padding-inline: 4px;
  }

  .ph-split .v {
    font-size: 0.66rem;
  }

  .ph-stat-amt {
    font-size: 0.72rem;
  }

  .float-chip {
    max-width: 168px;
    font-size: 0.68rem;
    padding: 8px 11px;
    gap: 7px;
  }

  .chip-whatsapp {
    left: -2px;
    bottom: 8%;
  }

  .chip-payment {
    right: -2px;
    top: 3%;
  }
}