:root {
  --primary-bg: #020408;
  --secondary-bg: #0b1021;
  --accent-gold: #cfa85e; /* More muted, metallic gold */
  --accent-gold-glow: rgba(207, 168, 94, 0.4);
  --accent-blue: #00d2ff;
  --text-light: #f4f4f5;
  --text-dim: #94a3b8;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-bg: rgba(13, 19, 36, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.03);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Background Gradients */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(0, 210, 255, 0.05), transparent 40%),
              radial-gradient(circle at 90% 90%, rgba(207, 168, 94, 0.05), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gold { color: var(--accent-gold); }
.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 4px; /* Sharper, more tech feel */
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent-gold);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.btn-outline {
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
  color: var(--text-light);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 50;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span { color: var(--accent-gold); font-weight: 400; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-graphic {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 40%, rgba(207, 168, 94, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(0, 210, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.planet-orb {
  position: absolute;
  right: -5%;
  top: 20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2b3a55, #0a0e17);
  box-shadow: 
    inset -40px -40px 100px rgba(0,0,0,0.8),
    0 0 100px rgba(0,0,0,0.5);
  opacity: 0.8;
}

/* Glass Cards */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 2px; /* Slight rounded styling */
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(12px);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 168, 94, 0.3);
}

/* Vision Section */
.vision-section {
  padding: 8rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Domain Asset Section */
.domain-asset {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(207, 168, 94, 0.03));
}

.asset-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  background: rgba(5, 8, 16, 0.8);
  border: 1px solid rgba(207, 168, 94, 0.2);
}

.domain-name {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 2rem 0;
  font-family: 'Courier New', monospace; /* Tech/Code feel */
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .vision-grid { grid-template-columns: 1fr; }
  .planet-orb { width: 300px; height: 300px; right: -50px; }
}
