/* Tokens do ponsfamily.com */
:root {
  --bg: #0d0d0d;
  --card: #161616;
  --card-2: #1c1c1c;
  --text: #f2f2f2;
  --muted: rgba(242, 242, 242, 0.62);
  --subtle: rgba(242, 242, 242, 0.42);
  --line: rgba(242, 242, 242, 0.12);
  --accent: #d4fc50;
  --accent-hover: #c4ef3c;
  --accent-contrast: #111;
  --success: #34c759;
  --danger: #ff3b30;
  --paper: #f4f1e8;
  --ink: #1b1b17;
  --btn-glow: 0 8px 24px #d4fc5059;
  --glass: rgba(22, 22, 22, 0.72);
  --radius-card: 24px;
  --radius-panel: 20px;
  --radius-pill: 999px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 0.86em; }
.wrap { width: min(var(--max), 100% - 32px); margin-inline: auto; }
.label { font-size: 12px; color: var(--subtle); letter-spacing: 0.02em; }

.glow {
  position: fixed; inset: -20vh -10vw auto; height: 80vh; z-index: -1; pointer-events: none;
  background:
    radial-gradient(40% 50% at 72% 30%, rgba(212, 252, 80, 0.10), transparent 70%),
    radial-gradient(35% 40% at 15% 10%, rgba(52, 199, 89, 0.06), transparent 70%);
}

/* Botoes */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: var(--radius-pill); border: 0;
  font: 600 14px/1 var(--font-sans); cursor: pointer; white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.btn-sm { height: 32px; padding: 0 14px; font-size: 13px; }
.btn-lg { height: 50px; padding: 0 24px; font-size: 15px; }
.btn-lime { background: var(--accent); color: var(--accent-contrast); }
.btn-lime:hover { background: var(--accent-hover); box-shadow: var(--btn-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: rgba(242, 242, 242, 0.3); background: rgba(242, 242, 242, 0.04); }
.is-off { opacity: 0.4; pointer-events: none; }

/* Nav flutuante */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(var(--max), 100% - 24px); height: 60px; padding: 0 10px 0 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius-pill);
  backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; }
.brand img { border-radius: 10px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: var(--radius-pill); font-size: 14px; color: var(--muted); transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: rgba(242, 242, 242, 0.06); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--muted); transition: color 0.2s, border-color 0.2s;
}
.icon-btn:hover { color: var(--text); border-color: rgba(242, 242, 242, 0.3); }

/* Hero */
.hero {
  min-height: 100svh; padding: 120px 0 64px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px;
  border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--card);
  font-size: 13px; color: var(--muted);
}
.chip img { border-radius: 0; object-fit: contain; }
.flow-icon img.pons-logo { border-radius: 0; object-fit: contain; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 88px); line-height: 0.98; margin: 22px 0 22px; }
h1 em { color: var(--accent); }
.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 0 28px; }
.lead strong { color: var(--text); }

.ca {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  max-width: 540px; padding: 10px 10px 10px 18px; margin-bottom: 20px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-panel);
}
.ca-text { display: flex; flex-direction: column; min-width: 0; }
.ca-text .mono { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-art { display: flex; justify-content: center; }
.portrait {
  position: relative; width: min(420px, 100%); aspect-ratio: 1;
  border-radius: 32px; padding: 10px; background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 252, 80, 0.04);
  animation: bob 6s ease-in-out infinite;
}
.portrait > img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
@keyframes bob { 50% { transform: translateY(-10px); } }
.tag {
  position: absolute; display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; border-radius: 18px; min-width: 170px;
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.tag strong { font-size: 14px; }
.tag-top { top: 28px; left: -36px; flex-direction: row; align-items: center; gap: 8px; }
.tag-top > span:nth-child(2) { font-size: 12px; color: var(--subtle); }
.tag-bottom { bottom: 28px; right: -30px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(212, 252, 80, 0.18); }
.mini-bar { height: 6px; border-radius: 6px; background: rgba(242, 242, 242, 0.1); margin-top: 8px; overflow: hidden; }
.mini-bar i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: inherit; transition: width 1.2s cubic-bezier(.2, .8, .2, 1); }

/* Seccoes */
.section { padding: 72px 0; }
.section-head { max-width: 620px; margin-bottom: 32px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
h2 { font-size: clamp(38px, 5vw, 56px); line-height: 1.02; }
.section-head p { color: var(--muted); margin: 12px 0 0; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-card); }

/* Medidor */
.meter { padding: 28px; }
.meter-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.big { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin-top: 4px; }
.big > span:first-child { font-family: var(--font-serif); font-size: clamp(52px, 8vw, 84px); line-height: 1; }
.of { color: var(--subtle); font-size: 16px; }
.status {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
}
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--subtle); }
.status.is-live::before { background: var(--accent); animation: pulse 1.8s infinite; }
.status.is-paid { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }
.status.is-paid::before { background: var(--accent-contrast); }
@keyframes pulse { 50% { opacity: 0.3; } }

.bar { position: relative; height: 18px; margin: 28px 0 10px; border-radius: 18px; background: rgba(242, 242, 242, 0.07); }
.bar > i {
  position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, #a9d63a, var(--accent)); box-shadow: 0 0 24px rgba(212, 252, 80, 0.35);
  transition: width 1.4s cubic-bezier(.2, .8, .2, 1);
}
.bar-house {
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--line); color: var(--accent);
}
.bar-note { margin: 0; font-size: 14px; color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; }
.stat {
  display: flex; flex-direction: column; gap: 4px; padding: 16px; border-radius: var(--radius-panel);
  background: var(--card-2); border: 1px solid var(--line); min-width: 0;
}
.stat strong { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.stat strong a { color: var(--accent); }
.stat .sub { font-size: 12px; color: var(--subtle); }
.stat .sub a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* Recibos em papel */
.receipts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.receipt {
  position: relative; padding: 22px 22px 18px; color: var(--ink); background: var(--paper);
  border-radius: 6px; font-size: 14px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(var(--tilt, -0.6deg));
  transition: transform 0.3s;
  -webkit-mask: radial-gradient(circle 6px at 50% 100%, transparent 98%, #000) 0 0 / 16px 100%;
          mask: radial-gradient(circle 6px at 50% 100%, transparent 98%, #000) 0 0 / 16px 100%;
}
.receipt:nth-child(even) { --tilt: 0.7deg; }
.receipt:hover { transform: rotate(0deg) translateY(-4px); }
.receipt header {
  display: flex; justify-content: space-between; padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 2px solid var(--ink); font-weight: 700; letter-spacing: 0.1em; font-size: 12px;
}
.r-line { margin: 0 0 10px; font-family: var(--font-serif); font-size: 19px; line-height: 1.3; }
.r-line b { font-family: var(--font-sans); font-size: 15px; font-weight: 600; border-bottom: 1px dotted rgba(27, 27, 23, 0.5); padding: 0 4px; }
.r-line b.blank { display: inline-block; min-width: 120px; }
.receipt footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  margin-top: 16px; padding: 12px 0 8px; border-top: 1px dashed rgba(27, 27, 23, 0.35);
  font-size: 12px; color: rgba(27, 27, 23, 0.7);
}
.receipt footer a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.stamp {
  position: absolute; right: 16px; top: 56px; padding: 6px 12px; transform: rotate(-12deg);
  border: 3px solid #3f7a17; color: #3f7a17; border-radius: 8px;
  font: 800 13px/1 var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85;
}
.receipt-empty .stamp { border-color: #b0471f; color: #b0471f; top: 70px; }

/* Contrato */
.lease { padding: 36px; }
.lease-title { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.lease-title h3 { font-size: 36px; margin-top: 4px; }
.clauses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.clauses li { display: flex; gap: 18px; padding: 24px 24px 24px 0; border-bottom: 1px solid var(--line); }
.clauses li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.clauses .n { font-family: var(--font-mono); font-size: 13px; color: var(--accent); padding-top: 6px; }
.clauses h4 { margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.clauses p { margin: 0; color: var(--muted); font-size: 15px; }
.signatures { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.signatures > div { display: flex; flex-direction: column; gap: 6px; }
.sig { font-family: var(--font-serif); font-style: italic; font-size: 34px; line-height: 1.1; padding-bottom: 8px; border-bottom: 1px solid rgba(242, 242, 242, 0.3); }

/* Capital flow */
.flow { padding: 44px 28px 36px; overflow: hidden; }
.flow-track { list-style: none; margin: 0; padding: 0; display: flex; align-items: flex-start; }
.flow-node { flex: 0 0 132px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.flow-icon {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 64px;
  background: var(--card-2); border: 1.5px solid rgba(242, 242, 242, 0.55); color: var(--text); overflow: hidden;
}
.flow-icon img { border-radius: 50%; }
.flow-end .flow-icon { border-color: var(--accent); box-shadow: 0 0 0 6px rgba(212, 252, 80, 0.12), 0 0 30px rgba(212, 252, 80, 0.25); }
.flow-end .flow-icon img { width: 100%; height: 100%; object-fit: cover; }
.flow-label { font-size: 14px; font-weight: 600; margin-top: 6px; }
.flow-sub { font-size: 12px; color: var(--subtle); }
.flow-line { position: relative; flex: 1 1 auto; height: 2px; margin-top: 31px; background: rgba(242, 242, 242, 0.18); min-width: 24px; }
.flow-line i {
  position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent), 0 0 0 4px rgba(212, 252, 80, 0.18);
  animation: flowdot 2.4s linear infinite;
}
.flow-line:nth-child(4) i { animation-delay: 0.6s; }
.flow-line:nth-child(6) i { animation-delay: 1.2s; }
.flow-line:nth-child(8) i { animation-delay: 1.8s; }
.flow-pct { position: absolute; left: 50%; top: -30px; transform: translateX(-50%); font-size: 13px; color: var(--accent); font-weight: 700; }
@keyframes flowdot { 0% { left: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 10px); opacity: 0; } }
@keyframes flowdotv { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: calc(100% - 10px); opacity: 0; } }

/* Launch */
.launch-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 16px; align-items: start; }
.launch { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.launch-closed {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px;
  background: rgba(212, 252, 80, 0.08); border: 1px solid rgba(212, 252, 80, 0.25); font-size: 14px; color: var(--text);
}
.launch-closed[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field .label { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--muted); }
.field .label em { font-style: normal; color: var(--subtle); font-size: 12px; }
.field .label strong { color: var(--accent); font-size: 14px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line); background: var(--card-2);
  color: var(--text); font: 15px/1.4 var(--font-sans); outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: rgba(212, 252, 80, 0.9); box-shadow: 0 0 0 3px rgba(212, 252, 80, 0.16); }
.field input::placeholder, .field textarea::placeholder { color: var(--subtle); }
.field input[type=range] { padding: 0; height: 28px; background: transparent; border: 0; box-shadow: none; accent-color: var(--accent); }
.hint { font-size: 12px; color: var(--subtle); }
.field-row { display: grid; grid-template-columns: 112px 1fr; gap: 14px; }
.field-col { display: flex; flex-direction: column; gap: 12px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.image-pick {
  position: relative; width: 112px; height: 112px; border-radius: 20px; overflow: hidden; cursor: pointer; align-self: start; margin-top: 22px;
  border: 1.5px dashed rgba(242, 242, 242, 0.25); background: var(--card-2); display: grid; place-items: center; transition: border-color 0.2s;
}
.image-pick:hover { border-color: var(--accent); }
.image-pick input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.image-pick img { width: 100%; height: 100%; object-fit: cover; }
.image-pick img[hidden], .image-empty[hidden] { display: none; }
.image-pick.is-busy::after { content: "Uploading"; position: absolute; inset: 0; display: grid; place-items: center; background: rgba(13, 13, 13, 0.75); font-size: 12px; }
.image-empty { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: var(--subtle); pointer-events: none; }
.launch-summary { display: grid; gap: 8px; padding: 14px 16px; border-radius: 16px; background: var(--card-2); border: 1px solid var(--line); font-size: 14px; }
.launch-summary div { display: flex; justify-content: space-between; gap: 12px; }
.launch-summary span { color: var(--muted); }
.launch-summary strong { font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.launch-msg { margin: 0; min-height: 20px; font-size: 14px; color: var(--muted); }
.launch-msg.is-error { color: #ff6b61; }
.launch-msg.is-ok { color: var(--accent); }
.launch-msg a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.launch-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.launch-actions .btn { flex: 1 1 180px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.launch-side { display: flex; flex-direction: column; gap: 16px; }
.preview { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.preview-row { display: flex; align-items: center; gap: 14px; min-width: 0; }
.preview-row img { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; flex: 0 0 64px; }
.preview-row div { min-width: 0; }
.preview-row strong { display: block; font-size: 18px; overflow-wrap: anywhere; }
.preview-row .mono { color: var(--muted); }
.preview p { margin: 0; color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.pill { align-self: flex-start; padding: 5px 10px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; background: rgba(212, 252, 80, 0.12); color: var(--accent); }
.facts { list-style: none; margin: 0; padding: 8px 20px; }
.facts li { padding: 12px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: 0; }
.facts b { color: var(--text); font-weight: 600; }

/* Tenants */
.tenants { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.tenant { display: flex; flex-direction: column; gap: 12px; padding: 16px; transition: border-color 0.2s, transform 0.2s; }
.tenant:hover { border-color: rgba(212, 252, 80, 0.4); transform: translateY(-2px); }
.tenant-top { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tenant-top img, .tenant-top .noimg { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; background: var(--card-2); flex: 0 0 48px; }
.tenant-top div { min-width: 0; }
.tenant-top strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tenant-top span { font-size: 13px; color: var(--muted); }
.tenant-stats { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.tenant-stats b { color: var(--text); font-weight: 600; }
.tenant .grad { color: var(--accent); }
.tenants-empty { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 20px; flex-wrap: wrap; }
.tenants-empty img { border-radius: 16px; }
.tenants-empty div { flex: 1 1 220px; display: flex; flex-direction: column; }
.tenants-empty span { color: var(--muted); font-size: 14px; }

@media (max-width: 900px) {
  .launch-grid { grid-template-columns: 1fr; }
  .flow-track { flex-direction: column; align-items: stretch; }
  .flow-node { flex: none; flex-direction: row; text-align: left; gap: 14px; align-items: center; }
  .flow-node .flow-label { margin-top: 0; }
  .flow-node .flow-sub { margin-left: auto; text-align: right; }
  .flow-line { width: 2px; height: 36px; min-width: 0; margin: 4px 0 4px 31px; flex: none; }
  .flow-line i { left: -4px; animation-name: flowdotv; }
  .flow-pct { left: 18px; top: 50%; transform: translateY(-50%); }
}
@media (max-width: 600px) {
  .field-2, .field-row { grid-template-columns: 1fr; }
  .image-pick { margin-top: 0; }
  .flow { padding: 24px 18px; }
  .flow-node .flow-sub { display: none; }
}

/* Pagamentos estilo X Pay */
.payout { padding: 32px; display: flex; flex-direction: column; background: #1b1b1b; }
.payout-rail { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--muted); }
.payout-total { font-family: var(--font-sans); font-size: clamp(40px, 6vw, 60px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin-top: 6px; }
.payout-sub { color: var(--muted); font-size: 16px; }
.payout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.payout-row div { display: flex; flex-direction: column; gap: 2px; }
.payout-row span { font-size: 13px; color: var(--subtle); }
.payout-row b { font-size: 15px; font-weight: 600; }

.payments-head { display: flex; justify-content: space-between; align-items: center; margin: 44px 0 14px; }
.payments-head h3 { font-family: var(--font-sans); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; }
.pager { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.pager[hidden] { display: none; }
.pager button { background: none; border: 0; color: var(--muted); font-size: 22px; cursor: pointer; padding: 0 6px; }
.pager button:hover { color: var(--text); }

.payments { display: flex; flex-direction: column; gap: 12px; }
.payment { background: #1b1b1b; border: 1px solid var(--line); border-radius: 14px; }
.payment > summary, .payment-empty {
  list-style: none; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding: 12px 14px 12px 16px; cursor: pointer;
}
.payment-empty { cursor: default; opacity: 0.55; }
.payment > summary::-webkit-details-marker { display: none; }
.payment[open] { border-color: rgba(242, 242, 242, 0.22); }
.pay-amount { display: flex; flex-direction: column; min-width: 0; }
.pay-amount strong { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.pay-amount span { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 15px; white-space: nowrap; }
.pay-amount b { color: var(--text); font-weight: 700; }
.verified { flex: 0 0 16px; }
.pay-route { display: flex; align-items: center; gap: 12px; }
.pay-avatar { position: relative; width: 42px; height: 42px; }
.pay-avatar > img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: #2a2a2a; }
.badge {
  position: absolute; right: -5px; bottom: -5px; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center;
  background: #0d0d0d; border: 1.5px solid #1b1b1b; font: 800 11px/1 var(--font-sans); font-style: normal; color: #fff;
}
.badge img { width: 13px; height: 13px; object-fit: contain; }
.pay-dollar { font: 800 22px/1 var(--font-sans); color: #fff; }
.pay-side { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.pay-chev { color: var(--muted); font-size: 16px; line-height: 0.6; transition: transform 0.2s; }
.payment[open] .pay-chev { transform: rotate(180deg); }
.pay-date { font-size: 13px; color: var(--muted); }
.pay-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px 16px 16px; border-top: 1px solid var(--line); }
.pay-details div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pay-details span { font-size: 12px; color: var(--subtle); }
.pay-details b { font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
.pay-details a { color: var(--accent); }

@media (max-width: 700px) {
  .payout { padding: 22px; }
  .payment > summary, .payment-empty { grid-template-columns: 1fr auto; }
  .pay-route { display: none; }
  .pay-amount strong { font-size: 24px; }
  .pay-details { grid-template-columns: 1fr 1fr; }
}

/* CTA */
.cta { padding: 48px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(212, 252, 80, 0.10), transparent 70%), var(--card); }
.cta img { border-radius: 24px; border: 1px solid var(--line); }
.cta .hero-cta { justify-content: center; }

/* Footer */
.footer { padding: 32px 0 48px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--text); }
.disclaimer { color: var(--subtle); font-size: 13px; max-width: 760px; margin: 20px 0 0; }

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; z-index: 60;
  padding: 10px 18px; border-radius: var(--radius-pill); background: var(--accent); color: var(--accent-contrast);
  font-weight: 600; font-size: 14px; transition: 0.25s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 110px; min-height: auto; }
  .hero-art { order: -1; }
  .portrait { width: min(340px, 100% - 40px); }
  .tag-top { left: -16px; }
  .tag-bottom { right: -16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .clauses { grid-template-columns: 1fr; }
  .clauses li:nth-child(even) { padding-left: 0; border-left: 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .meter, .lease { padding: 20px; }
  .meter-top { flex-direction: column; }
  .stats { grid-template-columns: 1fr; }
  .signatures { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 100%; }
  .tag { min-width: 0; padding: 10px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
