/* ── VARIABLES ── */
:root {
  --navy: #0f1b31;
  --navy-dark: #0a1220;
  --gold: #c9a84c;
  --gold-light: #e2c07a;
  --white: #f5f4ef;
  --gray: #8b95a8;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 0 60px; height: 68px;
  display: flex; align-items: stretch; justify-content: space-between;
  background: rgba(15,27,49,0.98);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-logo { display: flex; align-items: center; cursor: pointer; background: transparent; }
.nav-logo img { height: 46px; background: transparent; }
.nav-links { display: flex; align-items: stretch; }
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,244,239,0.4); padding: 0 22px;
  display: flex; align-items: center; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s; text-decoration: none;
}
.nav-link:hover { color: rgba(245,244,239,0.75); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 0 28px; display: flex; align-items: center; cursor: pointer;
  margin-left: 16px; transition: background 0.2s; border: none; text-decoration: none;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile menu button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(10,18,32,0.99);
  z-index: 199;
  flex-direction: column;
  padding: 24px 0 32px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 14px 32px;
  border-bottom: none;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(245,244,239,0.6);
}
.nav-mobile .nav-link.active { color: var(--gold); }
.nav-mobile .nav-cta {
  margin: 16px 32px 0;
  padding: 16px 28px;
  justify-content: center;
  font-size: 13px;
}

/* ── SHARED ── */
section { padding: 120px 60px; position: relative; }
.bg-dark { background: var(--navy-dark); }
.bg-mid  { background: var(--navy); }

.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.tag.center { justify-content: center; }
.tag.center::before { display: none; }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 6.5vw, 90px);
  font-weight: 800; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.5px;
  margin-bottom: 32px;
}
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.5px;
  margin-bottom: 22px;
}
h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 10px;
}
em { font-style: normal; color: var(--gold); }

.lead { font-size: 15px; line-height: 1.85; color: rgba(245,244,239,0.6); max-width: 560px; }
.lead + .lead { margin-top: 14px; }

.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.2) 20%, rgba(201,168,76,0.2) 80%, transparent); }

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 18px 42px; display: inline-block; text-decoration: none; cursor: pointer;
  border: none; transition: background 0.25s;
}
.btn-primary:hover { background: var(--gold-light); }

.section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px; font-weight: 800; color: rgba(201,168,76,0.04);
  position: absolute; top: 40px; right: 60px; line-height: 1;
  user-select: none; pointer-events: none;
}

/* ── GRIDS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col-r { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 90px; align-items: start; }

/* ── HERO SPLIT LAYOUT ── */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.hero-left h1 { margin-bottom: 0; }
.hero-right { display: flex; flex-direction: column; gap: 0; }
.hero-right .lead { max-width: 100%; margin-bottom: 28px; }
.hero-right .hero-list { margin: 0 0 36px; }

/* ── HERO ── */
.hero-wrap {
  min-height: 100vh; display: flex; align-items: center;
  padding: 150px 60px 110px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,1) 59px, rgba(201,168,76,1) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,1) 59px, rgba(201,168,76,1) 60px);
}
.hero-content { position: relative; z-index: 1; max-width: 100%; }

.hero-list { display: flex; flex-direction: column; gap: 0; margin: 28px 0 44px; }
.hero-list-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,244,239,0.45);
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 16px;
}
.hero-list-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.hero-list-item::before { content: '—'; color: var(--gold); font-size: 13px; }

.hero-bottom {
  position: absolute; bottom: 56px; left: 60px; right: 60px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.stat-row { display: flex; gap: 56px; flex-wrap: wrap; }
.stat { border-left: 1px solid rgba(201,168,76,0.3); padding-left: 18px; }
.stat-val { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ── BULLET LIST ── */
.bullet-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.bullet-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bullet-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.bullet-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--gold); min-width: 28px; margin-top: 1px;
}
.bullet-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); display: block; margin-bottom: 4px;
}
.bullet-item div { font-size: 14px; color: rgba(245,244,239,0.5); line-height: 1.7; }

/* ── PULLQUOTE ── */
.pullquote {
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.04);
  margin-bottom: 28px;
}
.pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(245,244,239,0.75);
}
.pullquote strong { font-style: normal; color: var(--white); font-weight: 500; }

/* ── DOMAIN GRID ── */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  margin-top: 40px;
  border: 1px solid rgba(201,168,76,0.1);
}
.domain-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,244,239,0.65);
  padding: 22px 28px;
  border-right: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: flex; align-items: center; gap: 12px;
  transition: background 0.2s, color 0.2s;
}
.domain-item::before { content: ''; width: 6px; height: 6px; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.domain-item:hover { background: rgba(201,168,76,0.05); color: var(--white); }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.card {
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 32px;
  transition: background 0.2s;
}
.card:hover { background: rgba(201,168,76,0.06); }
.card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; opacity: 0.7;
}
.card p { font-size: 14px; color: rgba(245,244,239,0.5); line-height: 1.75; }

/* ── STACKED LIST ── */
.stacked-list { display: flex; flex-direction: column; }
.stacked-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stacked-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 0; }
.stacked-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; opacity: 0.7;
}
.stacked-body p { font-size: 14px; color: rgba(245,244,239,0.55); line-height: 1.75; }

/* ── PHASE GRID ── */
.phase-grid { display: flex; flex-direction: column; gap: 0; margin-top: 52px; }
.phase-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
  padding: 52px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
  align-items: start;
}
.phase-block:first-child { border-top: 1px solid rgba(201,168,76,0.08); }
.phase-roman {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.phase-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); line-height: 1.15;
}
.phase-right p { font-size: 15px; color: rgba(245,244,239,0.55); line-height: 1.85; margin-bottom: 14px; }
.phase-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,0.45); margin-top: 6px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 52px;
}
.pricing-card {
  background: rgba(201,168,76,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 40px 36px;
}
.pricing-card.featured {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}
.pricing-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 10px; }
.pricing-desc { font-size: 14px; color: rgba(245,244,239,0.45); line-height: 1.75; margin-bottom: 28px; }
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-card ul li {
  font-size: 13px; color: rgba(245,244,239,0.6);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.pricing-card ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray);
}
input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(201,168,76,0.45);
}
input::placeholder, textarea::placeholder { color: rgba(245,244,239,0.2); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--navy-dark); }

/* ── CTA SECTION ── */
.cta-section { text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner .lead { max-width: 100%; margin: 0 auto 36px; text-align: center; }
.cta-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,244,239,0.2); margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 28px; opacity: 0.6; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,244,239,0.3); text-decoration: none; cursor: pointer;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(245,244,239,0.2);
}

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 60px 100px;
}
.legal-wrap h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}
.legal-effective {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 52px;
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h3 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.legal-section p {
  font-size: 14px;
  color: rgba(245,244,239,0.55);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 16px;
}
.legal-section ul li {
  font-size: 14px;
  color: rgba(245,244,239,0.5);
  line-height: 1.7;
  display: flex;
  gap: 10px;
}
.legal-section ul li::before {
  content: '—';
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── TOAST / FORM CONFIRMATION ── */
.form-success {
  display: none;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 24px 28px;
  margin-top: 24px;
  text-align: center;
}
.form-success p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
}
.form-success.visible { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 90px 40px; }
  .hero-wrap { padding: 140px 40px 100px; }
  .hero-bottom { left: 40px; right: 40px; }
  footer { padding: 40px 40px; }
  .legal-wrap { padding: 120px 40px 80px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .two-col, .two-col-r { grid-template-columns: 1fr; gap: 48px; }
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .phase-block { grid-template-columns: 1fr; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-mobile { top: 60px; }
  section { padding: 70px 20px; }
  .hero-wrap { padding: 100px 20px 120px; min-height: auto; padding-bottom: 100px; }
  .hero-bottom {
    position: relative;
    bottom: auto; left: auto; right: auto;
    margin-top: 48px;
  }
  .stat-row { gap: 28px; }
  .stat-val { font-size: 26px; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav { gap: 16px; }
  .section-num { font-size: 70px; top: 20px; right: 20px; }
  .legal-wrap { padding: 90px 20px 60px; }
  .btn-primary { padding: 16px 28px; font-size: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .domain-grid { grid-template-columns: 1fr; }
}
