@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #09090b;
  --bg-card: #111113;
  --bg-elevated: #18181b;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-dim: #52525b;
  --gold: #C9A84C;
  --gold-dim: #a88a3a;
  --gold-glow: rgba(201,168,76,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; border: none; cursor: pointer;
  transition: all 0.2s ease; border-radius: var(--radius-sm);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-gold {
  background: var(--gold); color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-gold:hover { background: #d4b254; box-shadow: 0 0 30px rgba(201,168,76,0.25); transform: translateY(-1px); }
.btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-secondary); padding: 10px 20px; font-size: 13px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* NAV */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,9,11,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.nav-logo { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* HERO */
#hero {
  position: relative; padding: 160px 0 100px;
  text-align: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
#lineWavesContainer { width: 100%; height: 100%; }
#lineWavesContainer canvas { width: 100%; height: 100%; display: block; }
.hero-content { position: relative; z-index: 1; }
.badge {
  display: inline-block; padding: 6px 16px;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 11px; letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 32px; font-weight: 500;
}
#hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gold { color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--text-secondary); max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
/* VSL PLACEHOLDER */
.vsl-wrap { margin: 36px auto; max-width: 680px; }
.vsl-placeholder {
  aspect-ratio: 16/9; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--text-dim); font-size: 13px;
  transition: border-color 0.3s;
}
.vsl-placeholder:hover { border-color: var(--gold); }
.vsl-placeholder svg { opacity: 0.6; }

.hero-checks {
  display: flex; gap: 24px; justify-content: center; margin-top: 24px;
  font-size: 13px; color: var(--text-secondary);
}
.hero-checks span { display: flex; align-items: center; gap: 6px; }

/* COUNTERS */
#counters { padding: 60px 0; border-bottom: 1px solid var(--border); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter-value { font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.counter-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.trustpilot-bar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 32px; padding: 12px 24px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-secondary);
}
.tp-stars { color: #C9A84C; font-size: 18px; letter-spacing: 2px; }
.trustpilot-bar a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.trustpilot-bar a:hover { color: var(--gold); }

/* SECTIONS GENERAL */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600;
}
.section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.section-subtitle { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 680px; margin: 0 auto; }
.section-sub { font-size: 15px; color: var(--text-secondary); }

/* PROBLEM */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.problem-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s ease;
}
.problem-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.problem-icon { color: var(--gold); margin-bottom: 16px; }
.problem-card h3 { font-size: 15px; margin-bottom: 8px; font-weight: 600; }
.problem-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* PIPELINE */
.pipeline-section { display: flex; flex-direction: column; gap: 40px; }
.pipeline-vertical {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.pv-step {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 13px; color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all 0.3s;
}
.pv-step:hover { border-color: var(--gold); color: var(--text); }
.pv-step.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.pv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); flex-shrink: 0; }
.pv-dot.active { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.pv-arrow { font-size: 14px; color: var(--text-dim); padding: 0 8px; }
.pipeline-info { text-align: center; max-width: 700px; margin: 0 auto; }
.pipeline-info h3 { font-size: 22px; margin-bottom: 16px; font-weight: 700; }
.pipeline-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

/* PERFORMANCE */
#performance { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.perf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.perf-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.3s;
}
.perf-card:hover { border-color: var(--border-hover); }
.perf-multiplier { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.perf-rate { font-size: 14px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.perf-bar { width: 100%; height: 4px; background: var(--bg-elevated); border-radius: 2px; overflow: hidden; }
.perf-fill { height: 100%; background: var(--gold); border-radius: 2px; width: 0; transition: width 1.5s ease; }
.perf-detail { font-size: 12px; color: var(--text-dim); margin-top: 8px; }
.perf-highlight { border-color: var(--gold); }
.perf-highlight .perf-multiplier { color: var(--gold); }
.perf-note { font-size: 14px; color: var(--text-secondary); text-align: center; font-style: italic; }

/* ENGINE */
.engine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.engine-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: all 0.3s;
}
.engine-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.engine-num { font-size: 11px; color: var(--gold); font-weight: 700; margin-bottom: 12px; letter-spacing: 0.1em; }
.engine-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.engine-card ul { list-style: none; }
.engine-card li { font-size: 13px; color: var(--text-secondary); line-height: 2; padding-left: 14px; position: relative; }
.engine-card li::before { content: ''; position: absolute; left: 0; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* COMPARE */
#compare { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare-table { max-width: 700px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-header, .compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-header { background: var(--bg-elevated); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-col { padding: 14px 20px; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.compare-col.label { color: var(--text-dim); font-weight: 500; }
.compare-col.highlight { color: var(--gold); font-weight: 500; background: rgba(201,168,76,0.03); }
.compare-header .compare-col { color: var(--text-dim); }
.compare-header .compare-col.highlight { color: var(--gold); }
.compare-row:last-child .compare-col { border-bottom: none; }

/* TECH STACK */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-card {
  padding: 28px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); transition: all 0.3s;
}
.tech-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.tech-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.tech-value { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.tech-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* INCLUDED */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.included-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.3s;
}
.included-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.included-icon { color: var(--gold); margin-bottom: 14px; }
.included-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.included-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* PROOF */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-card {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s;
}
.proof-card:hover { border-color: var(--border-hover); transform: scale(1.02); }
.proof-card img { width: 100%; height: auto; }

/* FOUNDER */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.founder-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.founder-img { border-radius: var(--radius); border: 1px solid var(--border); }
.founder-info h2 { font-size: 28px; margin: 12px 0 16px; }
.founder-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.founder-links { display: flex; gap: 12px; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 0; font-size: 14px; font-weight: 500;
  background: none; border: none; color: var(--text); cursor: pointer;
  font-family: var(--font); text-align: left;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 20px; color: var(--text-dim); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; padding-bottom: 20px; }

/* CTA */
#cta { text-align: center; padding: 120px 0; background: var(--bg); }
.cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; }
.cta-note { font-size: 12px; color: var(--text-dim); margin-top: 16px; }

/* FLOATING BACKGROUND ELEMENTS */
.bg-floats {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-float {
  position: absolute; opacity: 0.04;
  animation: bgFloat 20s ease-in-out infinite;
}
.bg-cross { width: 60px; top: 15%; left: 5%; animation-delay: 0s; }
.bg-usdc { width: 50px; top: 55%; left: 8%; animation-delay: -8s; }
.bg-solana { width: 45px; top: 75%; right: 10%; animation-delay: -12s; }
.bg-robinhood { width: 40px; top: 20%; right: 15%; animation-delay: -6s; }
.bg-candle { width: 14px; }
.bg-candle-1 { top: 8%; left: 18%; height: 80px; animation-delay: -2s; }
.bg-candle-2 { top: 22%; right: 20%; height: 60px; animation-delay: -7s; }
.bg-candle-3 { top: 38%; left: 32%; height: 70px; animation-delay: -11s; }
.bg-candle-4 { top: 55%; right: 28%; height: 50px; animation-delay: -15s; }
.bg-candle-5 { top: 72%; left: 12%; height: 90px; animation-delay: -3s; }
.bg-candle-6 { top: 15%; right: 8%; height: 65px; animation-delay: -5s; }
.bg-candle-7 { top: 45%; left: 8%; height: 100px; animation-delay: -9s; }
.bg-candle-8 { top: 62%; right: 12%; height: 55px; animation-delay: -13s; }
.bg-candle-9 { top: 88%; right: 40%; height: 75px; animation-delay: -1s; }

@keyframes bgFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-20px) rotate(0.5deg); }
}

/* FOOTER */
#footer { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.footer-logo { width: 20px; height: 20px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-dim); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* MODAL */
/* MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; width: 100%; max-width: 440px;
  padding: 48px 40px; position: relative;
  animation: modalIn 0.35s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--text-dim);
  font-size: 28px; cursor: pointer; line-height: 1;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.2s;
}
.modal-close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* FORM STEPS */
.tf-step { display: none; }
.tf-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tf-header {
  text-align: center; margin-bottom: 32px;
  display: flex; flex-direction: column; align-items: center;
}
.tf-logo { width: 56px; height: auto; margin-bottom: 14px; display: block; }
.tf-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--gold);
  margin-bottom: 14px;
  background: rgba(201,168,76,0.1); padding: 4px 12px;
  border-radius: 20px;
}
.tf-header h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.tf-header p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.tf-field { margin-bottom: 14px; }
.tf-field input, .tf-field textarea {
  width: 100%; padding: 16px 20px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px; color: var(--text);
  font-family: var(--font); font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tf-field input::placeholder, .tf-field textarea::placeholder { color: var(--text-dim); }
.tf-field input:focus, .tf-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.tf-field textarea { resize: none; min-height: 100px; }

.phone-wrap { display: flex; gap: 10px; }
.country-code-input {
  width: 72px !important; text-align: center;
  padding: 16px 8px !important;
}
.phone-wrap input[type="tel"] { flex: 1; }

.tf-cta {
  width: 100%; margin-top: 20px; padding: 18px 24px;
  font-size: 16px; font-weight: 700; border-radius: 50px;
  background: var(--gold); color: #000; border: none;
  cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.3px;
}
.tf-cta:hover { background: #d4af5a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.tf-cta.ready { background: #22c55e; color: #fff; box-shadow: 0 8px 24px rgba(34,197,94,0.3); }

.tf-disclaimer {
  font-size: 11px; color: var(--text-dim); text-align: center;
  margin-top: 16px; line-height: 1.5;
}

.tf-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.tf-option {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 20px; border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px; cursor: pointer;
  transition: all 0.2s; font-size: 15px; color: var(--text-secondary);
  font-weight: 500;
}
.tf-option:hover { border-color: rgba(255,255,255,0.25); color: var(--text); background: rgba(255,255,255,0.03); }
.tf-option input { display: none; }
.tf-option:has(input:checked) { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.tf-success { text-align: center; padding: 20px 0; }
.tf-success-icon { margin-bottom: 24px; }
.tf-success h2 { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.tf-success p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(30px); filter: blur(4px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.engine-card.reveal, .tech-card.reveal, .included-card.reveal, .perf-card.reveal {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* PHONE FIELD */
.phone-wrap { display: flex; gap: 8px; }
.country-code-input {
  width: 70px; padding: 12px 8px; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font); font-size: 14px;
}
.country-code-input:focus { outline: none; border-color: var(--gold); }
.phone-wrap input[type="tel"] { flex: 1; }

/* REGISTER BENEFITS */
#register-benefits { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border); }
.register-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 600px; margin: 0 auto 24px;
}
.register-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-secondary);
}
.register-note { text-align: center; font-size: 12px; color: var(--text-dim); }

/* FOUNDER PARTNER */
.founder-partner { font-size: 13px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }

/* BACKGROUND ELEMENTS */
#cta { position: relative; overflow: hidden; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .engine-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-vertical { flex-direction: column; }
  .pv-arrow { transform: rotate(90deg); padding: 4px 0; }
  .founder-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .hero-checks { flex-direction: column; align-items: center; gap: 8px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  #hero h1 { font-size: 28px; }
  .register-grid { grid-template-columns: 1fr; }
  .phone-wrap { flex-direction: row; }
  .modal-content { padding: 32px 24px; margin: 16px; }
}
