:root {
  --bg: #0b1020;
  --bg-soft: #121a31;
  --panel: #11182b;
  --panel-2: #17213b;
  --text: #e8edf8;
  --muted: #aab5cd;
  --line: rgba(255,255,255,0.1);
  --brand: #7ed0ff;
  --brand-strong: #9ae6b4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(126,208,255,0.12), transparent 25%),
    radial-gradient(circle at top left, rgba(154,230,180,0.08), transparent 22%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 84px 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(11,16,32,0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

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

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(126,208,255,0.35);
  border-radius: 999px;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-grid,
.markets-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero h1,
.section-heading h2,
.enquiry-copy h2 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 4.25rem);
  letter-spacing: -0.03em;
}

.section-heading h2,
.enquiry-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}

.hero-text,
.section-heading p,
.enquiry-copy p,
.info-card p,
.domain-card p,
.market-item p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #07111f;
}

.btn-secondary {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-metrics div,
.hero-panel,
.info-card,
.domain-card,
.market-item,
.contact-card,
.enquiry-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.4rem;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  padding: 1.5rem;
  max-width: 460px;
}

.panel-label {
  color: var(--brand);
  font-weight: 700;
  margin-top: 0;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-panel li {
  margin-bottom: 0.85rem;
  color: var(--text);
}

.section-heading {
  margin-bottom: 2rem;
}

.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.center-text {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.five-up {
  grid-template-columns: repeat(5, 1fr);
}

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

.info-card,
.domain-card,
.market-item {
  padding: 1.4rem;
}

.info-card h3,
.domain-card h3,
.market-item h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.domain-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(126,208,255,0.12);
  color: var(--brand);
  font-weight: 800;
}

.market-list {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
  margin-top: 1.4rem;
}

.enquiry-form {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #8f9ab2;
}

select option {
  color: #111827;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(126,208,255,0.35);
  border-color: rgba(126,208,255,0.45);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1080px) {
  .five-up {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .markets-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(10,16,31,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: rgba(255,255,255,0.04);
  }

  .three-up,
  .two-up,
  .five-up,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
