/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d4af7a;
  --gold-bright: #f0cf9a;
  --ink: #0d1113;
  --ink-soft: rgba(13,17,19,0.72);
  --glass: rgba(20, 24, 27, 0.45);
  --glass-border: rgba(255,255,255,0.14);
  --text: #f5f2ec;
  --text-dim: rgba(245,242,236,0.68);
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  min-height: 100vh;
  background-image: url("background.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,122,0.10) 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(212,175,122,0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,8,9,0.55) 0%, rgba(6,8,9,0.78) 35%, rgba(6,8,9,0.92) 100%);
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1, h2, h3 { font-weight: 650; letter-spacing: -0.02em; line-height: 1.15; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10,12,13,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
}
.brand-name { font-size: 17px; font-weight: 650; }
.brand-dim { color: var(--text-dim); font-weight: 450; margin-left: 2px; }
.header-cta { font-size: 14px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 560;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14100a;
  box-shadow: 0 6px 22px rgba(212,175,122,0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,122,0.4); }
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--text);
}
.btn--outline:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 9px 18px;
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 30px; font-size: 15.5px; }
.btn--full-width { width: 100%; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(38px, 7vw, 78px);
  margin-bottom: 22px;
}
.shine-text {
  background: linear-gradient(100deg, var(--gold-bright) 0%, #fff 25%, var(--gold) 50%, var(--gold-bright) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-hint span {
  display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* ===== Sections ===== */
.domains-section, .bundle-section, .contact-section { padding: 110px 0; }
.section-title { font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 14px; }
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 16px;
}

/* ===== Domain Cards ===== */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
@media (max-width: 720px) { .domains-grid { grid-template-columns: 1fr; } }

.domain-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.domain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,122,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,122,0.15);
}
.card-glow {
  position: absolute;
  top: -40%; right: -30%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,175,122,0.28), transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  opacity: 0;
}
.domain-card:hover .card-glow { opacity: 1; }

.domain-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tld-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212,175,122,0.14);
  color: var(--gold-bright);
  border: 1px solid rgba(212,175,122,0.3);
}
.status {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 560;
}
.status--success {
  background: rgba(80, 200, 150, 0.14);
  color: #7bdcb5;
  border: 1px solid rgba(80,200,150,0.3);
}
.domain-name { font-size: 24px; margin-bottom: 10px; letter-spacing: -0.01em; }
.domain-desc { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin-bottom: 26px; min-height: 66px; }
.domain-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 22px; font-weight: 700; color: var(--gold-bright); }

/* ===== Bundle ===== */
.bundle-inner {
  position: relative;
  text-align: center;
  background: linear-gradient(145deg, rgba(212,175,122,0.14), rgba(20,24,27,0.5));
  border: 1px solid rgba(212,175,122,0.35);
  border-radius: 24px;
  padding: 64px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.bundle-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,122,0.25), transparent 70%);
  pointer-events: none;
}
.bundle-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14100a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.bundle-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.bundle-sub { color: var(--text-dim); max-width: 540px; margin: 0 auto 36px; font-size: 15.5px; line-height: 1.7; }
.bundle-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.bundle-price { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.was { font-size: 14px; color: var(--text-dim); text-decoration: line-through; }
.now { font-size: 48px; font-weight: 750; color: var(--gold-bright); }
.now small { font-size: 16px; font-weight: 500; color: var(--text-dim); }
.bundle-note { font-size: 13.5px; color: var(--text-dim); margin-top: 22px; }

/* ===== Contact ===== */
.contact-inner { text-align: center; }
.contact-email {
  display: inline-block;
  margin-top: 12px;
  font-size: 22px;
  font-weight: 650;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(212,175,122,0.4);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-email:hover { color: #fff; border-color: #fff; }

/* ===== Footer ===== */
.site-footer {
  padding: 34px 0 46px;
  text-align: center;
  color: rgba(245,242,236,0.4);
  font-size: 13px;
}

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,8,9,0.72);
  backdrop-filter: blur(6px);
  padding: 20px;
}
.modal.hidden { display: none; }
.modal-content {
  position: relative;
  background: rgba(24,28,31,0.92);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 34px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.modal-content h3 { font-size: 22px; margin-bottom: 10px; }
.selected-domain-label { color: var(--gold-bright); font-weight: 600; margin-bottom: 8px; }
.modal-text { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.modal-close:hover { background: rgba(255,255,255,0.18); }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple */
.btn-inquire, .btn-inquire-bundle { position: relative; overflow: hidden; }
