:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #151518;
  --text: #f2f2f4;
  --text-muted: #9a9aa2;
  --line: rgba(255, 255, 255, 0.07);
  --accent: #8b5cff;
  --accent-2: #e14cd6;
  --grad: linear-gradient(135deg, #8b5cff 0%, #e14cd6 100%);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "SF Pro Display",
    Inter,
    "Segoe UI",
    sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* soft brand glow behind the page top */
body::before {
  content: "";
  position: fixed;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 255, 0.22) 0%,
    rgba(225, 76, 214, 0.1) 40%,
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero {
  margin-bottom: 14px;
}

.hero.card,
.hero {
  padding-top: 4px;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.subtitle {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}

.section {
  margin-top: 14px;
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(8px);
}

h2 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

p,
li {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
}

ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

li {
  margin-top: 4px;
}

.footer {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

a {
  color: #d9ccff;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 92, 255, 0.4);
  padding-bottom: 1px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

a:hover {
  color: #fff;
  border-bottom-color: var(--accent-2);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.12s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--grad);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
}

.links-row {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.links-row a {
  font-weight: 500;
  color: var(--text);
}

.dot {
  color: var(--text-muted);
  border: none;
}

.contact-line {
  margin-top: 12px;
}

.contact-line a {
  font-weight: 600;
}

blockquote.quote {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(139, 92, 255, 0.08);
  border-radius: 0 10px 10px 0;
}

blockquote.quote p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
}
