/* ============================================================
   BASE RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #05ffad;
  --accent-alt: #05ffa3;
  --bg: #0d0d0d;
  --bg-card: rgba(13,13,13,0.8);
  --bg-card-dim: rgba(13,13,13,0.6);
  --border: #292c3d;
  --border-2: #252737;
  --border-nav: #334155;
  --text-white: #ffffff;
  --text-light: #fafafa;
  --text-muted: #a6a6a6;
  --text-dim: #94a3b8;
  --text-gray: #9ca3af;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; }

/* ============================================================
   RESPONSIVE SWITCHING
   ============================================================ */
.desktop-view { display: flex; flex-direction: column; align-items: center; width: 100%; min-width: 1440px; background: #0d0d0d; }
.mobile-view  { display: none; }

@media (max-width: 768px) {
  .desktop-view { display: none; }
  .mobile-view  { display: flex; flex-direction: column; width: 100%; background: linear-gradient(264.56deg, #0d0d0d 25%, #0d0d0d 50%, #1a1a1a 75%); }
}

/* ============================================================
   DESKTOP — PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(108.19deg, #0d0d0d 0%, #0d0d0d 50.098%, rgba(26,26,26,0.302) 100.2%);
  position: relative;
}

/* ============================================================
   DESKTOP — LOGO (TetherBack split-image)
   ============================================================ */
.logo-wrapper {
  width: 198px; height: 27px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.logo-wrapper-sm { width: 177px; height: 24px; }

.logo-icon { position: absolute; top: 0; bottom: 0; left: 0; right: 67.25%; }
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo-text { position: absolute; top: 22.51%; right: 0; bottom: 22.5%; left: 36.74%; }
.logo-text img { width: 100%; height: 100%; object-fit: cover; }

/* Exchange logo (hero badge & footer) */
.exch-logo-img { height: 28px; width: auto; object-fit: contain; }
.footer-mexc-logo { height: 28px; width: auto; object-fit: contain; }

/* ============================================================
   DESKTOP — BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 700; white-space: nowrap;
  transition: opacity 0.15s ease, border-color 0.15s ease; cursor: pointer;
}
.btn-primary { background: var(--accent-alt); color: #000; }
.btn-primary:hover { opacity: 0.88; }

.btn-nav-primary { background: var(--accent); color: #000; font-weight: 600; }
.btn-nav-primary:hover { opacity: 0.88; }

.btn-nav-secondary {
  background: transparent; color: var(--text-white);
  border: 1px solid var(--border-nav); font-weight: 600;
}
.btn-nav-secondary:hover { border-color: #4a5568; }

.btn-hero-secondary {
  background: var(--bg); color: var(--text-muted);
  border: 1px solid var(--border-2); font-weight: 700;
}
.btn-hero-secondary:hover { border-color: #4a5568; }

.btn-group { display: flex; align-items: center; gap: 16px; }

/* ============================================================
   DESKTOP — NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  width: 100%; height: 80px;
  padding: 0 max(120px, calc(50% - 600px));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
}
.navbar-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color 0.15s; }
.nav-link:hover { color: var(--text-white); }

/* ============================================================
   DESKTOP — HERO
   ============================================================ */
.hero {
  width: 100%; min-height: 835px; padding: 100px 0 80px;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
  position: relative; overflow: visible;
  background: radial-gradient(ellipse 120% 60% at 20% 0%, rgba(5,255,163,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 80% 50% at 80% 100%, rgba(5,255,163,0.06) 0%, transparent 60%),
              #0d0d0d;
}
.ellipse-glow {
  position: absolute; left: 50%; top: 520px; transform: translateX(-50%);
  width: 800px; height: 400px; pointer-events: none; z-index: 0;
}
.ellipse-glow img { width: 100%; height: 100%; }

.hero-text-group {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  width: 900px; position: relative; z-index: 1;
}
.partnership-badge {
  background: rgba(5,255,163,0.05); color: var(--accent);
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 100px; white-space: nowrap;
}
.mexc-logo-badge { display: flex; align-items: center; justify-content: center; }

.hero-title {
  font-family: var(--font-display); font-size: 72px; font-weight: 500;
  line-height: 1.1; color: var(--text-white); text-align: center; width: 100%;
}
.hero-subtitle {
  font-size: 20px; font-weight: 400; line-height: 1.6;
  color: var(--text-muted); text-align: center; width: 700px;
}
.hero-actions {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  position: relative; z-index: 1;
}

/* ============================================================
   DESKTOP — REFERRAL BOX
   ============================================================ */
.referral-section { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.referral-label {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.referral-box {
  display: flex; align-items: center; gap: 20px; padding: 12px 24px;
  background: rgba(13,13,13,0.8); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; transition: border-color 0.15s;
}
.referral-box:hover { border-color: rgba(5,255,173,0.5); }
.referral-code { font-size: 18px; font-weight: 700; color: var(--text-white); white-space: nowrap; }
.referral-box-lg { padding: 20px 24px; }
.referral-box-lg .referral-code { font-size: 24px; font-weight: 600; }
.copy-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 8px; background: rgba(13,13,13,0.5); border-radius: 4px; flex-shrink: 0;
}
.referral-hint { font-size: 14px; font-weight: 400; color: var(--text-muted); white-space: nowrap; }

/* ============================================================
   DESKTOP — STATS BAR
   ============================================================ */
.stats-bar {
  width: 1200px; padding: 32px;
  display: flex; align-items: flex-start;
  background: rgba(13,13,13,0.8); border: 1px solid var(--border);
  border-radius: 16px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px 0 rgba(0,0,0,0.25);
  position: relative; z-index: 1;
}
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-label { font-size: 14px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; }
.stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--text-white); white-space: nowrap; }
.stat-value.accent, .col-details.accent, .m-stat-value.accent, .m-specs-value.accent { color: var(--accent); }

/* ============================================================
   DESKTOP — SECTION HEADING
   ============================================================ */
.section-heading { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; width: 100%; }
.section-heading h2 { font-family: var(--font-display); font-size: 42px; font-weight: 500; line-height: 1.2; color: var(--text-light); }
.section-heading p { font-size: 18px; font-weight: 400; line-height: 1.6; color: var(--text-muted); max-width: 640px; }

/* ============================================================
   DESKTOP — HOW IT WORKS
   ============================================================ */
.how-it-works {
  width: 1440px; padding: 120px;
  display: flex; flex-direction: column; align-items: center; gap: 64px;
}
.steps-grid { display: flex; gap: 24px; width: 100%; }
.step-card {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
}
.step-number { font-size: 18px; font-weight: 700; color: var(--accent); }
.step-text { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.step-text h3 { font-size: 24px; font-weight: 600; color: var(--text-white); }
.step-text p { font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.badge {
  background: rgba(5,255,163,0.05); border: 1px solid rgba(5,255,163,0.25);
  border-radius: 4px; padding: 4px 10px;
  font-size: 12px; font-weight: 500; color: #05ffa3; white-space: nowrap;
}

/* ============================================================
   DESKTOP — PAYMENT BREAKDOWN
   ============================================================ */
.payment-breakdown { width: 1440px; padding: 120px; display: flex; flex-direction: column; align-items: center; gap: 64px; }
.breakdown-grid { display: flex; gap: 24px; width: 100%; align-items: flex-start; justify-content: center; }
.breakdown-card {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 32px; padding: 48px; display: flex; flex-direction: column; gap: 24px;
}
.breakdown-header { display: flex; align-items: flex-end; justify-content: space-between; }
.breakdown-total { display: flex; flex-direction: column; gap: 8px; }
.breakdown-label { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.breakdown-pct { font-size: 64px; font-weight: 700; color: var(--accent); line-height: 1; }
.chart-pie { object-fit: contain; }
.progress-section { display: flex; flex-direction: column; gap: 16px; }
.progress-bar { display: flex; height: 16px; border-radius: 8px; overflow: hidden; width: 100%; }
.progress-green { background: var(--accent); flex-shrink: 0; }
.progress-white { flex: 1; background: rgba(255,255,255,0.2); }
.progress-legend { display: flex; justify-content: space-between; align-items: center; }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { flex-shrink: 0; }
.legend-item span { font-size: 14px; font-weight: 400; color: var(--text-white); }
.breakdown-details { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.breakdown-detail-card {
  background: var(--bg-card-dim); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px;
}
.breakdown-detail-card h3 { font-size: 18px; font-weight: 700; color: var(--text-white); }
.breakdown-detail-card p { font-size: 14px; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.section-cta { display: flex; align-items: center; gap: 32px; justify-content: center; }

/* ============================================================
   DESKTOP — EXCHANGE TABLE
   ============================================================ */
.exchange-table-section { width: 1440px; padding: 120px; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.exchange-table { width: 800px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.table-header {
  background: #12161b; padding: 20px; display: flex; align-items: center;
  font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase;
}
.table-row { padding: 24px; display: flex; align-items: center; font-size: 16px; border-top: 1px solid var(--border); background: var(--bg); }
.table-row.highlighted { background: rgba(5,255,163,0.05); }
.col-metric { flex: 1; min-width: 0; font-weight: 600; color: var(--text-white); }
.table-header .col-metric { color: var(--text-muted); font-weight: 700; }
.col-details { width: 240px; text-align: right; font-weight: 500; color: var(--text-white); flex-shrink: 0; }
.table-header .col-details { color: var(--text-muted); font-weight: 700; }
.table-row.highlighted .col-details { color: var(--accent); font-weight: 700; }

/* ============================================================
   DESKTOP — TRUST BAR
   ============================================================ */
.trust-bar {
  width: 100%; background: rgba(13,13,13,0.8);
  padding: 40px 80px; display: flex; align-items: center; justify-content: center; gap: 80px;
}
.trust-item { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.check-icon { flex-shrink: 0; }
.trust-item span { font-size: 14px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; letter-spacing: 0.02em; }

/* ============================================================
   DESKTOP — FOOTER CTA
   ============================================================ */
.footer-cta {
  width: 1440px; padding: 120px;
  background: rgba(13,13,13,0.8);
  display: flex; flex-direction: column; align-items: center; gap: 64px;
}
.footer-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 800px; }
.footer-logo-group { display: flex; align-items: center; gap: 29px; justify-content: center; }
.footer-divider { width: 3px; height: 33px; background: var(--text-white); flex-shrink: 0; }
.footer-cta-title {
  font-family: var(--font-display); font-size: 52px; font-weight: 500;
  line-height: 1.2; color: var(--text-light); text-align: center; width: 860px;
}
.footer-referral { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-bottom { display: flex; flex-direction: column; gap: 40px; padding-top: 80px; width: 100%; }
.footer-hr { height: 1px; background: var(--border); width: 100%; }
.footer-bar { display: flex; align-items: center; justify-content: space-between; }
.footer-copyright { font-size: 14px; font-weight: 400; color: var(--text-muted); white-space: nowrap; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; font-weight: 400; color: var(--text-muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-white); }


/* ============================================================
   MOBILE STYLES
   ============================================================ */

.m-navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; height: 64px;
  background: rgba(13,13,13,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border); width: 100%;
}
.m-navbar-menu-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 6px; }
.m-logo-wrapper { width: 180px; height: 24px; position: relative; overflow: hidden; flex-shrink: 0; }
.m-logo-icon { position: absolute; top: 0; bottom: 0; left: 0; right: 67.25%; }
.m-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.m-logo-text { position: absolute; top: 22.51%; right: 0; bottom: 22.5%; left: 36.74%; }
.m-logo-text img { width: 100%; height: 100%; object-fit: cover; }

.m-hero { padding: 100px 16px 40px; display: flex; flex-direction: column; gap: 32px; width: 100%; }
.m-hero-text { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.m-partnership-badge {
  background: rgba(5,255,163,0.05); border: 1px solid rgba(5,255,163,0.25);
  color: #05ffa3; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; text-transform: uppercase; white-space: nowrap;
}
.m-mexc-badge img { object-fit: contain; height: 24px; width: auto; }
.m-hero-title { font-family: var(--font-display); font-size: 33px; font-weight: 500; line-height: 1.1; color: var(--text-light); }
.m-hero-subtitle { font-size: 15px; font-weight: 400; line-height: 1.6; color: var(--text-muted); }

.m-referral-container {
  background: rgba(13,13,13,0.6); border: 1px solid rgba(5,255,163,0.25);
  border-radius: 16px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; width: 100%;
}
.m-referral-label { font-size: 12px; font-weight: 900; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.m-referral-inner { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.m-referral-display {
  background: rgba(5,255,163,0.1); border: 1px solid rgba(5,255,163,0.25);
  border-radius: 8px; padding: 12px; font-size: 16px; font-weight: 700; color: #05ffa3; width: 100%;
}
.m-copy-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px; width: 100%; padding: 0 12px;
  background: var(--accent-alt); border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--bg); cursor: pointer; transition: opacity 0.15s;
}
.m-copy-btn:hover { opacity: 0.9; }

.m-btn-stack { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.m-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 10px 16px; border-radius: 6px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: opacity 0.15s, border-color 0.15s;
}
.m-btn-primary { background: var(--accent-alt); color: var(--bg); }
.m-btn-primary:hover { opacity: 0.9; }
.m-btn-secondary { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border-2); }
.m-btn-secondary:hover { border-color: #4a5568; }

.m-stats { padding: 32px 16px; display: flex; flex-direction: column; gap: 12px; width: 100%; }
.m-stats-row { display: flex; gap: 12px; }
.m-stat-card {
  flex: 1; background: #111113; border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.m-stat-label { font-size: 12px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; text-align: center; }
.m-stat-value { font-size: 24px; font-weight: 700; color: var(--text-light); }

.m-how-it-works { padding: 16px; display: flex; flex-direction: column; gap: 32px; width: 100%; }
.m-section-title-group { display: flex; flex-direction: column; gap: 8px; }
.m-section-title { font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.4; color: var(--text-light); }
.m-section-underline { width: 40px; height: 2px; background: var(--accent-alt); border-radius: 1px; }
.m-steps { display: flex; flex-direction: column; gap: 16px; }
.m-step-card {
  background: #111113; border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px;
}
.m-step-header { display: flex; align-items: center; gap: 12px; }
.m-step-badge {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--bg);
}
.m-step-header h3 { font-size: 18px; font-weight: 700; color: var(--text-light); flex: 1; }
.m-step-card > p { font-size: 14px; font-weight: 400; line-height: 1.6; color: var(--text-muted); }
.m-bullet-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.m-bullet-list li { display: flex; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 400; color: rgba(250,250,250,0.65); }
.m-dot { width: 4px; height: 4px; border-radius: 2px; flex-shrink: 0; }

.m-payment-breakdown { padding: 16px; display: flex; flex-direction: column; gap: 24px; width: 100%; }
.m-breakdown-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 24px;
}
.m-breakdown-header { display: flex; align-items: flex-end; justify-content: space-between; }
.m-breakdown-label { font-size: 16px; font-weight: 900; color: var(--text-muted); }
.m-breakdown-pct { font-size: 48px; font-weight: 700; color: #05ffad; line-height: 1; }
.m-progress-bar { display: flex; height: 16px; border-radius: 8px; overflow: hidden; width: 100%; }
.m-progress-green { background: #05ffad; flex-shrink: 0; }
.m-progress-white { flex: 1; background: rgba(255,255,255,0.2); }
.m-progress-legend { display: flex; justify-content: space-between; align-items: center; }
.m-legend-item { display: flex; align-items: center; gap: 8px; }
.m-legend-item span { font-size: 14px; font-weight: 400; color: var(--text-white); }
.m-breakdown-detail-card {
  background: var(--bg-card-dim); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 16px;
}
.m-breakdown-detail-card h3 { font-size: 18px; font-weight: 700; color: var(--text-white); }
.m-breakdown-detail-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.m-exchange-specs { padding: 16px; display: flex; flex-direction: column; gap: 24px; width: 100%; }
.m-specs-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.m-specs-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; background: var(--bg); border-bottom: 1px solid var(--border);
  font-size: 14px; white-space: nowrap;
}
.m-specs-row.last { border-bottom: none; }
.m-specs-label { font-weight: 400; color: var(--text-muted); }
.m-specs-value { font-weight: 900; color: var(--text-light); }
.m-how-link { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border-radius: 8px; width: 100%; font-size: 14px; font-weight: 500; color: var(--accent-alt); cursor: pointer; }

.m-footer-cta {
  background: var(--bg-card-dim); padding: 64px 16px;
  display: flex; flex-direction: column; gap: 32px; align-items: center; width: 100%;
}
.m-footer-logo-group { display: flex; align-items: center; gap: 15px; justify-content: center; }
.m-footer-divider { width: 3px; height: 33px; background: var(--text-white); flex-shrink: 0; }
.m-footer-cta-title { font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.2; color: var(--text-light); text-align: center; max-width: 326px; }

.m-footer {
  background: rgba(13,13,13,0.8); padding: 48px 16px 64px;
  display: flex; flex-direction: column; gap: 40px; width: 100%;
}
.m-footer-brand { display: flex; flex-direction: column; gap: 20px; }
.m-footer-tagline { font-size: 14px; font-weight: 400; line-height: 1.6; color: var(--text-gray); }
.m-social-icons { display: flex; gap: 12px; }
.m-social-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; padding: 6px; }
.m-footer-links-group { display: flex; flex-direction: column; gap: 32px; }
.m-footer-col { display: flex; flex-direction: column; gap: 16px; }
.m-footer-col-title { font-size: 14px; font-weight: 900; color: var(--text-light); }
.m-footer-col a { font-size: 14px; font-weight: 400; color: var(--text-gray); line-height: 20px; display: block; }
.m-footer-col a:hover { color: var(--text-white); }
.m-footer-bottom { display: flex; flex-direction: column; gap: 16px; }
.m-footer-hr { height: 1px; background: rgba(41,44,61,0.5); width: 100%; }
.m-footer-copy { font-size: 12px; font-weight: 400; color: var(--text-gray); }

.m-chat-btn {
  position: fixed; bottom: 24px; right: 16px; z-index: 200;
  width: 56px; height: 56px; border-radius: 28px; background: #08fead;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 8px rgba(0,0,0,0.25); cursor: pointer;
}
