:root {
  --gold: #d4a843;
  --gold-light: #f0c96a;
  --gold-dim: #8b6b24;
  --navy: #060d1f;
  --navy-mid: #0c1a35;
  --navy-light: #152248;
  --white: #f5f0e8;
  --muted: #8896b0;
  --accent: #1a6fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE OVERLAY ── */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ── CRICKET BALL SVG BG ── */

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle at 40% 40%, #1a3a7a 0%, transparent 70%);
  opacity: 0.6;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: -150px;
  background: radial-gradient(circle, #d4a84322 0%, transparent 70%);
}

/* ── HEADER ── */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(6, 13, 31, 0.95) 0%,
    transparent 100%
  );
  backdrop-filter: blur(4px);
}

.logo-mark {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1.5px solid var(--gold-dim);
  border-radius: 3px;
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-domain {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero-domain .tld {
  color: var(--gold);
  position: relative;
}

.hero-domain .tld::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 0.6s ease 1.1s forwards;
}

.hero-sub {
  margin-top: 36px;
  max-width: 540px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: transparent;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* ── CRICKET SEAM DECORATION ── */

.seam-line {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 168, 67, 0.12);
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.seam-line::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.08);
}

.seam-arc {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(212, 168, 67, 0.3);
  border-bottom-color: rgba(212, 168, 67, 0.3);
  animation: spin 20s linear infinite;
}

/* ── STATS BAR ── */

.stats-bar {
  position: relative;
  background: var(--navy-mid);
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  padding: 36px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── SECTION ── */

section {
  padding: 100px 48px;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 168, 67, 0.2);
  max-width: 60px;
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 20px;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
}

/* ── VALUE CARDS ── */

.value-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.value-card {
  background: var(--navy);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s ease;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  background: var(--navy-mid);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.card-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.card-body strong {
  color: rgba(240, 201, 106, 0.85);
  font-weight: 500;
}

/* ── OPPORTUNITY SPLIT ── */

.opportunity {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.opp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.use-cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.use-case {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.use-case:hover {
  border-color: rgba(212, 168, 67, 0.25);
  background: rgba(212, 168, 67, 0.04);
}

.uc-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.uc-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.uc-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.comparison-box {
  background: var(--navy);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.comparison-box::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 168, 67, 0.08) 0%,
    transparent 70%
  );
}

.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.comp-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comp-label {
  color: var(--muted);
}

.comp-val {
  color: var(--white);
  font-weight: 500;
}

.comp-val.gold {
  color: var(--gold);
}

.comp-val.check {
  color: #4ade80;
}

.comp-header {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

/* ── CTA SECTION ── */

.cta-section {
  text-align: center;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 111, 255, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.cta-domain {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin: 24px 0;
}

.cta-domain span {
  color: var(--gold);
}

.cta-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Contact Form Modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.9);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--navy-mid);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 8px;
  padding: 52px;
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(212, 168, 67, 0.5);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(136, 150, 176, 0.5);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.25s ease;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ── FOOTER ── */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-domain {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-note {
  max-width: 480px;
  line-height: 1.6;
}

/* ── ANIMATIONS ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineExpand {
  to {
    transform: scaleX(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  section {
    padding: 72px 24px;
  }

  .stats-bar {
    padding: 32px 24px;
  }

  .opp-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .modal {
    padding: 36px 24px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
  }

  .seam-line {
    display: none;
  }
}
