:root {
  --bg: #0b1220;
  --bg-2: #0d1326;
  --card: rgba(255, 255, 255, 0.06);
  --card-stroke: rgba(255, 255, 255, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #0ea5e9;
  --accent-2: #22d3ee;
  --success: #22c55e;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 110% 10%, rgba(14, 165, 233, 0.2), transparent 55%),
    radial-gradient(900px 900px at 50% 120%, rgba(59, 130, 246, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  filter: saturate(115%);
}

.shell {
  position: relative;
  min-height: 100dvh;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 28px; height: 28px; }
.domain { font-weight: 700; letter-spacing: 0.2px; }
.dot { color: var(--accent); }

.card {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px) saturate(130%);
}

.hero {
  padding: 28px 24px;
}

.hero h1 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
}

.subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 12px 0 22px;
  list-style: none;
}
.bullets li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-right: 10px;
  transform: translateY(-1px);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.price { display: flex; align-items: baseline; gap: 12px; }
.price .label { color: var(--muted); font-weight: 500; }
.price .value { font-size: clamp(22px, 4vw, 32px); font-weight: 700; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--card-stroke);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color: #0b1220; border-color: transparent; }
.btn.ghost { background: transparent; }

.note { grid-column: 1 / -1; color: var(--muted); margin: 0; font-size: 14px; }

.details {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
}
.pill {
  border: 1px dashed var(--card-stroke);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer { padding: 18px 16px; display: grid; gap: 10px; }
.contact { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.email-wrap { display: flex; align-items: center; gap: 8px; }
.email {
  width: 260px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-stroke);
  border-radius: 10px;
  color: var(--text);
}
.copy { padding: 10px 12px; border-radius: 10px; border: 1px solid var(--card-stroke); background: transparent; color: var(--text); cursor: pointer; }
.copy:hover { border-color: var(--accent); }
.link { color: var(--accent-2); text-decoration: none; font-weight: 600; }
.disclaimer { color: var(--muted); }

@media (max-width: 640px) {
  .bullets { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .actions { width: 100%; }
  .actions .btn { flex: 1; }
}

