
:root {
  --bg: #020617;
  --card: #050816;
  --muted: #a3a3b0;
  --text: #f9fafb;
  --accent: #22d3ee;
  --accent-2: #a855f7;
  --border: #1f2937;
  --radius: 24px;
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.25), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

a {
  color: inherit;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(56,189,248,0.8);
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav .links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav .links a:hover {
  color: var(--accent);
}

/* Generic card (Privacy / Terms / Contact / Apps listing) */

.card {
  background: radial-gradient(circle at top left, rgba(56,189,248,0.16), transparent 60%), var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 24px;
  box-shadow: 0 24px 55px rgba(15,23,42,0.9);
  margin-top: 22px;
}

/* Typography */

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(30px, 4vw, 44px);
}

h2 {
  font-size: clamp(22px, 3vw, 30px);
}

h3 {
  font-size: 18px;
}

p {
  margin: 4px 0 0;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.kicker {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Home hero */

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 32px;
  border: 1px solid rgba(148,163,184,0.45);
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.40), transparent 60%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.40), transparent 60%),
    rgba(10,10,24,0.96);
  box-shadow: 0 48px 90px rgba(15,23,42,0.95);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-feature-label {
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Featured app pill */

.hero-app-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(15,23,42,0.98);
  box-shadow:
    0 0 0 1px rgba(15,23,42,1),
    0 22px 40px rgba(15,23,42,0.9);
  text-decoration: none;
  color: var(--text);
}

.hero-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(56,189,248,0.9);
}

.hero-app-text h3 {
  margin-bottom: 2px;
}

.btn-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--accent);
}

/* Phone mock with strong glow on right */

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phone-frame {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 9 / 19;
  border-radius: 40px;
  padding: 10px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.7), transparent 55%),
    radial-gradient(circle at bottom, rgba(56,189,248,0.7), transparent 80%);
  box-shadow:
    0 30px 80px rgba(15,23,42,0.95),
    0 0 80px rgba(56,189,248,0.65);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #020617;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-header {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(31,41,55,0.9);
  background: linear-gradient(135deg, rgba(56,189,248,0.2), rgba(15,23,42,0.96));
}

.phone-title {
  font-size: 13px;
  font-weight: 600;
}

.phone-list {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(30,64,175,0.7);
}

.phone-row-title {
  font-size: 11px;
  color: rgba(226,232,240,0.95);
}

.phone-row-amount {
  font-size: 12px;
  font-weight: 600;
}

/* Apps grid (below hero and on other pages if used) */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.app-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(2,6,23,0.96);
  border: 1px solid rgba(148,163,184,0.45);
  text-decoration: none;
  color: var(--text);
}

.app-card img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
}

/* Badge (used for statuses like Coming soon) */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.96);
  font-size: 12px;
  margin-top: 6px;
}

/* Table styling (legal pages) */

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(148,163,184,0.4);
  margin-top: 40px;
  padding: 18px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */

@media (max-width: 800px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .phone-frame {
    margin-top: 6px;
  }
}
