:root {
  --bg: #05070d;
  --panel: #0b101b;
  --panel-2: #111626;
  --text: #f6f7fb;
  --muted: #a8b0c2;
  --purple: #9b35ff;
  --purple-2: #6b25d7;
  --border: rgba(155, 53, 255, .25);
  --shadow: 0 24px 80px rgba(111, 37, 215, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 72% 14%, rgba(155, 53, 255, .22), transparent 28rem),
    radial-gradient(circle at 20% 60%, rgba(107, 37, 215, .14), transparent 24rem),
    var(--bg);
  color: var(--text);
}

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

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img { width: 210px; display: block; }
.nav { display: flex; gap: 32px; color: var(--text); font-weight: 700; font-size: 14px; }
.nav a { opacity: .88; }
.nav a:hover { color: var(--purple); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border: 1px solid transparent;
  color: white;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: var(--shadow);
  text-transform: none;
}

.button-outline {
  background: rgba(5, 7, 13, .45);
  border-color: rgba(155, 53, 255, .65);
  box-shadow: none;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: #c653ff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
  margin: 0;
  letter-spacing: -.05em;
}
.hero h1 span { color: var(--purple); }

.lead {
  max-width: 590px;
  color: #d3d6df;
  font-size: 19px;
  line-height: 1.7;
  margin: 24px 0 30px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-logo {
  position: absolute;
  top: 0;
  right: 10px;
  width: 320px;
  filter: drop-shadow(0 30px 70px rgba(155, 53, 255, .35));
  z-index: 2;
}

.australia-map {
  width: 100%;
  max-width: 580px;
  margin-top: 80px;
  fill: rgba(75, 28, 135, .44);
  stroke: rgba(191, 100, 255, .82);
  stroke-width: 3;
  filter: drop-shadow(0 0 34px rgba(155, 53, 255, .36));
}
.australia-map .links line { stroke: rgba(186, 110, 255, .38); stroke-width: 2; }
.australia-map .nodes circle { fill: #c653ff; stroke: white; stroke-width: 1; }

.proof-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.proof-row div {
  padding: 0 22px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.proof-row div:first-child { border-left: 0; padding-left: 0; }
.proof-row strong { display: block; margin-bottom: 7px; }
.proof-row span { color: var(--muted); line-height: 1.5; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.section h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -.035em;
  text-align: center;
  margin: 0 0 28px;
}
.center { text-align: center; }

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.card {
  min-height: 230px;
  padding: 26px 20px;
  border: 1px solid rgba(155, 53, 255, .22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(17, 22, 38, .9), rgba(7, 10, 18, .85));
}
.card h3 { font-size: 20px; line-height: 1.25; margin: 0 0 14px; }
.card p { color: var(--muted); line-height: 1.6; margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.split h2 { text-align: left; }
.split p { color: #d3d6df; line-height: 1.7; font-size: 17px; }

.checklist {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}
.checklist li {
  margin: 0 0 16px;
  color: #dfe2ea;
}
.checklist li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.cta {
  max-width: 1180px;
  margin: 24px auto 48px;
  padding: 30px 36px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 22, 38, .98), rgba(21, 9, 41, .76));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 { margin: 0 0 8px; font-size: 30px; }
.cta p { margin: 0; color: var(--muted); }

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 54px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}
.footer img { width: 190px; margin-bottom: 18px; }
.footer h4 { color: var(--text); margin: 0 0 16px; }
.footer a, .footer p { display: block; margin: 0 0 10px; color: var(--muted); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split, .footer { grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: 1fr; }
  .proof-row div { border-left: 0; padding-left: 0; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  .brand img { width: 165px; }
  .site-header > .button { display: none; }
  .hero { padding-top: 18px; gap: 20px; }
  .hero-logo { position: relative; width: 250px; right: auto; }
  .australia-map { margin-top: 0; }
  .cards { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}
