:root {
  --bg: #07111f;
  --panel: #0d1b2a;
  --panel-2: #10243b;
  --line: rgba(255,255,255,0.10);
  --text: #eaf2fb;
  --muted: #a8bfd6;
  --soft: #dce8f5;
  --accent: #4dd0e1;
  --accent-2: #70f0b8;
  --warning: #ffd166;
  --shadow: 0 24px 70px rgba(0,0,0,0.28);
  --radius: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(77,208,225,0.15), transparent 28%),
    radial-gradient(circle at right, rgba(112,240,184,0.12), transparent 24%),
    linear-gradient(180deg, #06101c 0%, #081523 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 13, 24, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--soft);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: bold;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #052033;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

.hero {
  padding: 78px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(77,208,225,0.08);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(77,208,225,0.18);
  margin-bottom: 18px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 14ch;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--soft);
  max-width: 64ch;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 28px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 26px;
}

.metric, .card, .panel, .journey-step, .pillar, .stakeholder, .faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.panel {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(77,208,225,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  position: relative;
  overflow: hidden;
}

.panel h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.panel .stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stack .mini {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(7,17,31,0.52);
}

.stack .mini strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
}

section {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 22px;
  max-width: 76ch;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 18px;
}

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

.card, .pillar, .stakeholder, .journey-step, .faq-item {
  padding: 24px;
}

.card h3, .pillar h3, .stakeholder h3, .journey-step h3, .faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.card p, .pillar p, .stakeholder p, .journey-step p, .faq-item p, li {
  color: var(--muted);
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(112,240,184,0.1);
  color: var(--accent-2);
  font-size: 0.8rem;
  margin-bottom: 12px;
  border: 1px solid rgba(112,240,184,0.18);
}

ul.clean {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

ul.clean li::before {
  content: "• ";
  color: var(--accent);
  font-weight: bold;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}

.journey-step .step-no {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(77,208,225,0.12);
  border: 1px solid rgba(77,208,225,0.18);
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: bold;
}

.banner {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(77,208,225,0.13), rgba(112,240,184,0.09));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.banner p {
  color: var(--soft);
  margin: 10px 0 0;
  max-width: 70ch;
}

.footer {
  padding: 36px 0 54px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .journey {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 1024px) {
  .nav,
  .cta-row,
  .footer-inner {
    align-items: flex-start;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .journey,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 100%);
    padding: 14px;
    border-radius: 20px;
    background: rgba(6, 16, 28, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    z-index: 60;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .menu a.btn {
    justify-content: center;
  }

  h1 {
    max-width: none;
  }

  .form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff4d4d !important;
  background: rgba(255, 77, 77, 0.05);
}

.error-message {
  color: #ff4d4d;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
}

.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-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;
  }

