:root {
  --bg: #0f1720;
  --panel: #16212c;
  --panel-alt: #1b2a36;
  --text: #e7edf2;
  --muted: #b1bec9;
  --line: #2a3b48;
  --accent: #d4af37;
  --accent-2: #f6e3a1;
  --white: #ffffff;
  --max: 1120px;
  --narrow: 760px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #0b1117 0%, #0f1720 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 17, 23, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 20;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.nav a:hover {
  color: var(--white);
  text-decoration: none;
}

.hero {
  padding: 5rem 0 4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
  color: var(--white);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 760px;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

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

.button.primary {
  background: var(--accent);
  color: #1d1604;
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.pricing .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.4rem 0 1rem;
  color: var(--accent-2);
}

.pricing .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

ul, ol {
  padding-left: 1.2rem;
}

.muted,
.billing-note {
  color: var(--muted);
}

.details p,
.site-footer p {
  margin: 0.35rem 0;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page h2 {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
:root {
  --bg: #0f1720;
  --panel: #16212c;
  --panel-alt: #1b2a36;
  --text: #e7edf2;
  --muted: #b1bec9;
  --line: #2a3b48;
  --accent: #d4af37;
  --accent-2: #f6e3a1;
  --white: #ffffff;
  
  /* Layout Variables */
  --max: 1200px;
  --narrow: 800px;
  --radius: 12px;
  
  /* Shadows & Glow */
  --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.08);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
    background: radial-gradient(circle at 50% 0%, #1a2733 0%, #0f1720 60%);
  color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  /* System Serif Stack: Times New Roman, Georgia, or native serif */
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-weight: 400;
  color: var(--white);
  margin-top: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  /* Gradient text for luxury feel */
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.section:hover h2::after {
  width: 100px;
}

h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

a:hover {
  color: var(--accent-2);
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s var(--ease-out);
}

a:hover::after {
  width: 100%;
}

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(180%);
  background: rgba(15, 23, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

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

.brand {
  /* Serif for brand logo */
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav a:hover {
  color: var(--white);
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
}

.lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

.actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button.primary {
  background: var(--accent);
  color: #1d1604;
  box-shadow: var(--shadow-glow);
  border: 1px solid transparent;
}

.button.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

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

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(22, 33, 44, 0.4), rgba(15, 23, 32, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: rgba(22, 33, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-soft);
  background: rgba(27, 42, 54, 0.6);
}

.card:hover::before {
  opacity: 1;
}

.pricing .price {
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
  color: var(--accent-2);
}

.pricing .price span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b1117;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Legal Page */
.legal-page {
  padding: 5rem 0;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
}
