/* public/styles.css */
:root {
  --bg: #F7F8FC;

  --card: rgba(255, 255, 255, 0.78);
  --card-2: rgba(255, 255, 255, 0.90);
  --stroke: rgba(15, 17, 22, 0.10);

  --text: rgba(15, 17, 22, 0.92);
  --muted: rgba(15, 17, 22, 0.62);

  --green: #0D7C66;
  --teal: #41B3A2;
  --lav: #BDA9DB;

  --shadow: 0 18px 60px rgba(15, 17, 22, 0.14);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(189,169,219,0.26), transparent 60%),
    radial-gradient(900px 700px at 90% 20%, rgba(65,179,162,0.20), transparent 55%),
    radial-gradient(1200px 900px at 60% 100%, rgba(13,124,102,0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.95; }

code {
  background: rgba(13,124,102,0.08);
  padding: 0.15rem 0.35rem;
  border-radius: 10px;
  border: 1px solid rgba(13,124,102,0.12);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Background orbs */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.orb {
  position: absolute;
  filter: blur(44px);
  opacity: 0.55;
  transform: translate3d(0,0,0);
}
.orb-1 { width: 480px; height: 480px; left: -140px; top: 140px; background: rgba(189,169,219,0.42); border-radius: 999px; }
.orb-2 { width: 520px; height: 520px; right: -180px; top: 80px; background: rgba(65,179,162,0.32); border-radius: 999px; }
.orb-3 { width: 620px; height: 620px; left: 30%; bottom: -260px; background: rgba(13,124,102,0.22); border-radius: 999px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15,17,22,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 4px;
}
.brand-text { display: grid; }
.brand-name { font-weight: 750; letter-spacing: 0.2px; }
.brand-tag { font-size: 12px; color: var(--muted); margin-top: 2px; }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: rgba(15,17,22,0.78); font-size: 14px; }
.nav a:hover { color: rgba(15,17,22,0.92); }

.header-cta { display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,17,22,0.10);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, rgba(13,124,102,0.95), rgba(65,179,162,0.85));
  border-color: rgba(15,17,22,0.08);
  box-shadow: 0 14px 40px rgba(13,124,102,0.18);
  color: rgba(255,255,255,0.98);
}
.btn-secondary {
  background: rgba(255,255,255,0.82);
  border-color: rgba(15,17,22,0.10);
  box-shadow: 0 10px 26px rgba(15,17,22,0.08);
}
.btn-ghost {
  background: rgba(255,255,255,0.56);
  border-color: rgba(15,17,22,0.10);
  color: rgba(15,17,22,0.84);
}
.btn-full { width: 100%; }

.btn-ico { font-size: 16px; opacity: 0.95; }

/* Burger */
.icon-btn {
  border: 1px solid rgba(15,17,22,0.10);
  background: rgba(255,255,255,0.60);
  border-radius: 14px;
  height: 42px;
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.burger { display: none; }
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: rgba(15,17,22,0.78);
  border-radius: 999px;
}

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(15,17,22,0.08);
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
}
.mobile-menu-inner {
  padding: 14px 20px 18px;
  display: grid;
  gap: 12px;
}
.mobile-menu-inner a {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,17,22,0.08);
}
.mobile-menu-cta { display: grid; gap: 10px; margin-top: 6px; }

/* Hero */
.hero { padding: 54px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,17,22,0.08);
  color: rgba(15,17,22,0.74);
  font-size: 13px;
}
.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--green), var(--teal), var(--lav));
  box-shadow: 0 10px 18px rgba(13,124,102,0.16);
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}
.grad {
  background: linear-gradient(135deg, rgba(189,169,219,0.98), rgba(65,179,162,0.95), rgba(13,124,102,0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  color: rgba(15,17,22,0.70);
  font-size: 17px;
  max-width: 54ch;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.trust-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,17,22,0.08);
  box-shadow: 0 10px 26px rgba(15,17,22,0.08);
}
.trust-title { font-weight: 720; font-size: 13px; }
.trust-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Phone mock */
.hero-visual { position: relative; }
.phone {
  width: min(420px, 100%);
  margin-left: auto;
  border-radius: 36px;
  padding: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: var(--shadow);
}
.phone-top { height: 26px; display: flex; justify-content: center; align-items: center; }
.cam { width: 74px; height: 14px; border-radius: 999px; background: rgba(15,17,22,0.10); border: 1px solid rgba(15,17,22,0.08); }

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(189,169,219,0.18), rgba(65,179,162,0.10), rgba(13,124,102,0.08));
  border: 1px solid rgba(15,17,22,0.10);
}
.phone-bottom { height: 18px; }

.floating-tag {
  position: absolute;
  right: -14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 18px 60px rgba(15,17,22,0.12);
  max-width: 230px;
  font-size: 12px;
  color: rgba(15,17,22,0.76);
}
.floating-tag .spark { opacity: 0.95; margin-right: 8px; }
.floating-tag-1 { top: 26px; }
.floating-tag-2 { top: 88px; right: 4px; }

/* Sections */
.section { padding: 70px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.35));
  border-top: 1px solid rgba(15,17,22,0.06);
  border-bottom: 1px solid rgba(15,17,22,0.06);
}
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.3px;
}
.section-head p { margin: 10px 0 0; color: rgba(15,17,22,0.68); max-width: 70ch; }

.grid-3 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 14px 40px rgba(15,17,22,0.10);
}
.card-ico { font-size: 22px; }
.card h3 { margin: 10px 0 8px; font-size: 16px; }
.card p { margin: 0; color: rgba(15,17,22,0.66); font-size: 13px; }

/* Banner */
.banner {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(135deg, rgba(13,124,102,0.14), rgba(65,179,162,0.10), rgba(189,169,219,0.12));
  border: 1px solid rgba(15,17,22,0.10);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
  box-shadow: var(--shadow);
}
.banner-title { font-weight: 820; font-size: 16px; color: rgba(15,17,22,0.88); }
.banner-sub { margin-top: 6px; color: rgba(15,17,22,0.66); font-size: 13px; }

.banner-right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.metric {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,17,22,0.10);
}
.metric-num { font-weight: 900; font-size: 18px; color: rgba(15,17,22,0.88); }
.metric-label { font-size: 11px; color: rgba(15,17,22,0.64); margin-top: 4px; }

/* Screens (kept, even though section removed, to avoid “changing anything else”) */
.screens {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.shot {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 14px 40px rgba(15,17,22,0.08);
}
.shot-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,17,22,0.10);
  background: rgba(255,255,255,0.62);
}
.shot-placeholder {
  height: 220px;
  display: grid;
  place-items: end start;
  padding: 12px;
}
.shot-label {
  font-size: 12px;
  font-weight: 760;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,17,22,0.08);
  color: rgba(15,17,22,0.82);
}
.shot-a { background: linear-gradient(135deg, rgba(189,169,219,0.35), rgba(65,179,162,0.18), rgba(13,124,102,0.18)); }
.shot-b { background: linear-gradient(135deg, rgba(65,179,162,0.28), rgba(13,124,102,0.18), rgba(255,255,255,0.08)); }
.shot-c { background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(189,169,219,0.22), rgba(13,124,102,0.14)); }
.shot-d { background: linear-gradient(135deg, rgba(189,169,219,0.28), rgba(255,255,255,0.10), rgba(65,179,162,0.18)); }
figcaption { margin-top: 10px; color: rgba(15,17,22,0.66); font-size: 12px; }

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,17,22,0.10);
  color: rgba(15,17,22,0.70);
}

/* About */
.about-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-card{
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 20px 70px rgba(15,17,22,0.10);
}
.about-card h3{ margin: 0; font-size: 18px; }
.about-card p{ margin: 10px 0 0; color: rgba(15,17,22,0.68); font-size: 13px; }
.about-list{ margin-top: 14px; }

/* Shared list */
.list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.list li {
  padding-left: 22px;
  position: relative;
  color: rgba(15,17,22,0.74);
  font-size: 13px;
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(65,179,162,0.95);
  font-weight: 900;
}

/* FAQ */
.faq { margin-top: 18px; display: grid; gap: 10px; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(15,17,22,0.10);
  color: rgba(15,17,22,0.90);
  font-weight: 760;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: rgba(255,255,255,0.92); }
.chev { opacity: 0.85; transform: translateY(-1px); }

.faq-a {
  margin-top: -6px;
  padding: 14px 16px 16px;
  border-radius: 18px;
  background: rgba(13,124,102,0.06);
  border: 1px solid rgba(13,124,102,0.12);
  color: rgba(15,17,22,0.74);
  font-size: 14px;
  line-height: 1.55;
}

/* CTA */
.section-cta { padding: 56px 0 66px; }
.cta {
  border-radius: var(--radius-lg);
  padding: 22px;
  background: linear-gradient(135deg, rgba(189,169,219,0.16), rgba(65,179,162,0.12), rgba(13,124,102,0.14));
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cta-left h2 { margin: 0; font-size: 22px; letter-spacing: -0.2px; }
.cta-right { display: flex; gap: 10px; flex-wrap: wrap; }

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(15,17,22,0.08);
  background: rgba(255,255,255,0.70);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.brand-footer .brand-mark { width: 38px; height: 38px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.footer-title { font-weight: 820; margin-bottom: 10px; }
.footer-col a {
  display: block;
  padding: 8px 0;
  color: rgba(15,17,22,0.72);
  font-size: 13px;
}
.footer-col a:hover { color: rgba(15,17,22,0.92); }

.muted { color: var(--muted); }

/* Modal (Coming soon) */
.modal{
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}
.modal:target{ display: grid; place-items: center; }
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15,17,22,0.42);
  backdrop-filter: blur(10px);
}
.modal-card{
  position: relative;
  width: min(560px, calc(100% - 32px));
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 30px 120px rgba(15,17,22,0.28);
  padding: 18px 18px 16px;
}
.modal-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.modal-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,17,22,0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.modal-mark img{ width: 40px; height: 30px; object-fit: contain; }
.modal-close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,17,22,0.10);
  background: rgba(255,255,255,0.70);
  color: rgba(15,17,22,0.80);
}
.modal-card h2{
  margin: 12px 0 8px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.modal-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modal-foot{
  margin-top: 12px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .phone { margin: 0 auto; }
  .floating-tag { position: static; margin: 10px auto 0; max-width: 520px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screens { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr; }
  .banner { grid-template-columns: 1fr; }
  .banner-right { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .trust-row { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .header-inner { min-height: 66px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .brand-tag { display: none; }
  .btn { padding: 10px 12px; font-size: 13px; border-radius: 13px; }
  .icon-btn { width: 44px; height: 40px; border-radius: 13px; }
  .hero { padding: 34px 0 18px; }
  h1 { font-size: clamp(32px, 8.8vw, 44px); line-height: 1.06; }
  .lead { font-size: 15px; }
  .phone { width: 100%; padding: 14px; border-radius: 32px; }
  .phone-screen { border-radius: 22px; }
  .banner { padding: 16px; }
  .banner-right { grid-template-columns: 1fr; }
  .cta { padding: 18px; }
  .cta-right { width: 100%; }
  .cta-right .btn { width: 100%; }
  .orb { opacity: 0.40; filter: blur(36px); }
  .orb-1, .orb-2, .orb-3 { width: 360px; height: 360px; }
  .modal-actions .btn { width: 100%; }
}

@media (max-width: 640px) {
  .hero-grid { gap: 22px; }
  .hero-actions { gap: 8px; }
  .btn { padding: 10px 12px; }
}

/* Home page mock */
.phone-screen-home {
  position: relative;
  color: rgba(15, 17, 22, 0.92);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 22, 0.10);
  background:
    radial-gradient(520px 320px at 50% 0%, rgba(189,169,219,0.55), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%,
      rgba(215,195,241,0.92) 52%,
      rgba(65,179,162,0.55) 100%);
}

.app-home {
  position: relative;
  padding: 10px 12px 10px;
  min-height: 560px;
}

.app-status{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 2px 2px 4px;
  font-size: 11px;
  color: rgba(15,17,22,0.62);
}
.app-time{ font-weight: 650; letter-spacing: 0.2px; }
.app-status-icons{
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 650;
}
.app-status-icons .sig{ transform: translateY(-1px); }
.app-status-icons .wifi{ opacity: 0.9; }
.app-status-icons .bat{ opacity: 0.9; }

.app-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 2px 0;
}

.app-icon {
  width: 38px;
  height: 38px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: rgba(13,124,102,0.95);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15,17,22,0.08);
  box-shadow: 0 12px 30px rgba(15,17,22,0.10);
}
.app-icon svg { width: 20px; height: 20px; }

.app-logo {
  margin: 8px auto 6px;
  width: 78px;
  height: 56px;
  display: grid;
  place-items: center;
}
.app-logo img {
  width: 78px;
  height: 56px;
  object-fit: contain;
  filter: saturate(1.05);
}

.app-greeting {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.6px;
  font-weight: 520;
  margin-top: 2px;
}

.app-date {
  text-align: center;
  font-size: 11.5px;
  font-weight: 480;
  margin-top: 3px;
  color: rgba(15,17,22,0.62);
}

.app-pill {
  margin: 12px auto 12px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,17,22,0.08);
  box-shadow: 0 10px 26px rgba(15,17,22,0.10);
  font-size: 12px;
  color: rgba(15,17,22,0.86);
}
.app-pill-ico { font-size: 14px; }

.app-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 16px 44px rgba(15,17,22,0.12);
}

.app-trackers { padding: 10px 10px 8px; }

.trk {
  display: grid;
  grid-template-columns: 84px 1fr 18px;
  gap: 10px;
  align-items: center;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(15,17,22,0.06);
}
.trk:last-of-type { border-bottom: none; }

.trk-label {
  font-size: 11.5px;
  font-weight: 520;
  color: rgba(15,17,22,0.86);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trk-mid { display: flex; align-items: center; gap: 8px; }
.trk-emo { font-size: 16px; opacity: 0.95; }

.trk-slider {
  position: relative;
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(13,124,102,0.14);
  border: 1px solid rgba(13,124,102,0.16);
  overflow: hidden;
}
.trk-slider::before{
  content:"";
  position:absolute;
  inset:0;
  width: var(--p, 50%);
  background: linear-gradient(90deg, rgba(189,169,219,0.70), rgba(65,179,162,0.65), rgba(13,124,102,0.70));
  border-radius: 999px;
}
.trk-thumb {
  position: absolute;
  top: 50%;
  left: var(--p, 50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(13,124,102,0.96);
  border: 2px solid rgba(255,255,255,0.96);
  box-shadow: 0 8px 18px rgba(15,17,22,0.18);
}

.trk-menu {
  color: rgba(15,17,22,0.55);
  font-size: 16px;
  line-height: 1;
  text-align: right;
  transform: translateY(-1px);
}

.trk-add-row { padding: 8px 0 0; display: grid; place-items: center; }
.trk-add {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(13,124,102,0.95);
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(13,124,102,0.22);
  box-shadow: 0 12px 26px rgba(13,124,102,0.14);
  font-size: 18px;
}

.chart-head {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.chart-tabs { display: inline-flex; gap: 10px; align-items: center; }
.chart-tab {
  font-size: 12px;
  font-weight: 520;
  color: rgba(13,124,102,0.64);
  padding: 6px 6px;
  border-radius: 10px;
}
.chart-tab.is-on {
  color: rgba(13,124,102,0.95);
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(13,124,102,0.16);
}

.chart-actions { display: inline-flex; gap: 8px; align-items: center; }
.chart-ico { font-size: 14px; color: rgba(13,124,102,0.90); }

.chart-range {
  margin: 6px 2px 8px;
  font-size: 11.5px;
  color: rgba(15,17,22,0.68);
}

.chart-card { position: relative; padding: 10px 10px 12px; }

.chart-svg {
  width: 100%;
  height: 120px;
  color: rgba(15,17,22,0.35);
  display: block;
}

.chart-cta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 520;
  color: rgba(13,124,102,0.95);
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(13,124,102,0.14);
  padding: 7px 10px;
  border-radius: 12px;
}

.app-bottom-nav {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 44px;
  border-radius: 18px;
  background: rgba(15, 17, 22, 0.18);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
}

.bn-item {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  opacity: 0.9;
}
.bn-item svg { width: 20px; height: 20px; }
.bn-item.is-on {
  color: rgba(13,124,102,0.98);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(13,124,102,0.18);
  box-shadow: 0 12px 28px rgba(15,17,22,0.18);
  opacity: 1;
}

/* Legal pages */
.legal { max-width: 920px; }
.legal-sub { margin-top: 10px; color: rgba(15,17,22,0.68); max-width: 78ch; }
.dot-sep { padding: 0 8px; opacity: 0.75; }

.legal-card{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,17,22,0.10);
  box-shadow: 0 20px 70px rgba(15,17,22,0.10);
}

.legal-card h3{
  margin: 16px 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.legal-card h3:first-child{ margin-top: 0; }

.legal-card h4{
  margin: 12px 0 6px;
  font-size: 14px;
  letter-spacing: -0.1px;
  color: rgba(15,17,22,0.86);
}

.legal-card p{
  margin: 0 0 10px;
  color: rgba(15,17,22,0.70);
  font-size: 13px;
  line-height: 1.65;
}

.legal-list{
  margin: 10px 0 14px;
  padding-left: 18px;
  color: rgba(15,17,22,0.70);
  font-size: 13px;
  line-height: 1.65;
}
.legal-list li{ margin: 6px 0; }
