@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;700&family=Manrope:wght@300;400;600;700&display=swap');

:root {
  --bg: #050505;
  --ink: #f6e7b6;
  --muted: #c9b57b;
  --card: rgba(15, 12, 8, 0.85);
  --accent: #d4a240;
  --accent-2: #f6e7b6;
  --accent-3: #8a6b2a;
  --border: rgba(246, 231, 182, 0.12);
  --success: #5fd18c;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, #16110a 0%, #050505 55%, #000 100%);
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Fraunces", "Georgia", serif;
  letter-spacing: 0.4px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(5, 5, 5, 0.75);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--accent-2);
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

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

.hero {
  padding: 84px 0 40px;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(212, 162, 64, 0.2);
}

.button.primary {
  background: linear-gradient(120deg, #f6e7b6, #d4a240, #8a6b2a);
  color: #1a1408;
  border-color: transparent;
}

.button.ghost {
  border-color: var(--border);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 50px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.form-card {
  max-width: 460px;
  margin: 60px auto;
}

label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 11px 12px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(246, 231, 182, 0.2);
  background: rgba(0, 0, 0, 0.4);
  color: var(--ink);
  font-size: 16px;
}

button {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.alert {
  background: rgba(143, 76, 50, 0.2);
  border: 1px solid rgba(238, 160, 105, 0.3);
  padding: 10px 12px;
  border-radius: 10px;
  color: #f3c7a8;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 20px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.amount {
  font-size: 32px;
  font-weight: 700;
  margin: 18px 0;
}

.success {
  background: rgba(77, 154, 110, 0.2);
  border: 1px solid rgba(95, 209, 140, 0.3);
  color: #c7f2d8;
  padding: 12px;
  border-radius: 10px;
}

.small {
  font-size: 13px;
}

.table {
  display: grid;
  gap: 10px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr 1.2fr;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  padding: 4px 0;
}

.table-row.header {
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
}

.status {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.status.paid {
  color: var(--success);
}

.coming {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.coming-hero {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.coming-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 162, 64, 0.16);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.coming h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 16px;
}

.shine {
  background: linear-gradient(120deg, #f6e7b6, #d4a240, #f6e7b6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

.coming p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

.coming-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 231, 182, 0.22), rgba(0, 0, 0, 0));
  top: -140px;
  right: -180px;
  filter: blur(2px);
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.coming-card {
  background: rgba(12, 10, 6, 0.75);
  border: 1px solid rgba(246, 231, 182, 0.16);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.coming-card h3 {
  margin-top: 0;
}

.site-footer {
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 860px) {
  .table-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  nav a {
    margin-left: 10px;
  }
}