:root {
  --ink: #10252a;
  --muted: #60757a;
  --line: #d8eaec;
  --white: #ffffff;
  --soft: #f1fbfc;
  --cyan-900: #073f47;
  --cyan-800: #075d67;
  --cyan-700: #078894;
  --cyan-600: #0aa9b2;
  --cyan-500: #18c5cd;
  --cyan-300: #71e1e6;
  --cyan-100: #dff9fa;
  --shadow: 0 26px 80px rgba(5, 88, 98, 0.15);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
}

/* =========================================================
   Typography
========================================================= */

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-700);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.2vw, 76px);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4.2vw, 50px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-lead,
.section-intro,
.muted-copy,
.copy-block p,
.feature-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link,
.info-card a,
.resource-card a,
.dark-card a,
.link-list a {
  color: var(--cyan-700);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.info-card a:hover,
.resource-card a:hover,
.dark-card a:hover,
.link-list a:hover {
  text-decoration: underline;
}

/* =========================================================
   Header
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 234, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand-logo img {
  width: 150px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 800;
}

.main-navigation a {
  text-decoration: none;
}

.main-navigation a:hover {
  color: var(--cyan-700);
}

.nav-register {
  padding: 12px 19px;
  color: var(--white) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan-700), var(--cyan-500));
}

.menu-button {
  display: none;
}

/* =========================================================
   Buttons
========================================================= */

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-700), var(--cyan-500));
  box-shadow: 0 16px 34px rgba(10, 169, 178, 0.25);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.button-light {
  color: var(--cyan-900);
  background: var(--white);
}

/* =========================================================
   Hero
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 106px 0 90px;
  background:
    linear-gradient(135deg, rgba(241, 251, 252, 0.97), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 20% 0%, rgba(24, 197, 205, 0.22), transparent 42%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
}

.hero-orb-one {
  width: 300px;
  height: 300px;
  right: 8%;
  top: -100px;
  background: rgba(24, 197, 205, 0.18);
}

.hero-orb-two {
  width: 230px;
  height: 230px;
  left: -90px;
  bottom: -100px;
  background: rgba(113, 225, 230, 0.22);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 72px;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(10, 169, 178, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.brand-stage {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.96), transparent 35%),
    linear-gradient(135deg, var(--cyan-100), var(--white));
}

.brand-stage img {
  width: min(78%, 340px);
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.hero-feature-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.hero-feature-grid small,
.hero-feature-grid strong {
  display: block;
}

.hero-feature-grid small {
  margin-bottom: 4px;
  color: var(--muted);
}

/* =========================================================
   Trust Strip
========================================================= */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   Shared Sections
========================================================= */

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background: var(--cyan-900);
}

.split-layout,
.feature-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
}

.feature-layout {
  align-items: center;
}

.feature-layout-reverse {
  grid-template-columns: 1fr 1fr;
}

.section-heading {
  max-width: 760px;
}

.section-heading-light .eyebrow {
  color: var(--cyan-300);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   Cards
========================================================= */

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.secondary-resource-grid {
  margin-top: 18px;
}

.info-card,
.resource-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.info-card p,
.resource-card p {
  color: var(--muted);
}

.card-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--cyan-700);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

.resource-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-700), var(--cyan-500));
  font-weight: 900;
}

.resource-icon-wide {
  width: 58px;
}

/* =========================================================
   PayID Steps
========================================================= */

.step-list {
  display: grid;
  gap: 14px;
}

.step-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.step-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan-800);
  background: var(--cyan-100);
  font-weight: 900;
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   Dark Cards
========================================================= */

.dark-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-card a {
  color: var(--cyan-300);
}

.dark-card-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cyan-900);
  background: var(--cyan-300);
  font-size: 12px;
  font-weight: 900;
}

/* =========================================================
   Online Pokies Visual
========================================================= */

.visual-panel {
  min-height: 410px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 136, 148, 0.94), rgba(24, 197, 205, 0.9)),
    radial-gradient(circle at top left, var(--white), transparent 35%);
  box-shadow: var(--shadow);
}

.visual-label {
  align-self: flex-start;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.visual-panel h3 {
  max-width: 520px;
  margin: 24px 0 26px;
  font-size: 34px;
}

.visual-bars {
  display: grid;
  gap: 10px;
}

.visual-bars span {
  width: var(--bar-width);
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.link-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

/* =========================================================
   Brand Protection
========================================================= */

.safety-layout {
  align-items: center;
}

.check-grid {
  display: grid;
  gap: 12px;
}

.check-grid div {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
}

.check-grid div::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--cyan-700);
  font-weight: 900;
}

/* =========================================================
   Resource List
========================================================= */

.resource-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.resource-list a {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.resource-list a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.08);
}

.resource-list span {
  color: var(--cyan-300);
  font-weight: 900;
}

.resource-list small {
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 19px 0;
  font-weight: 900;
}

details p {
  margin-top: 0;
  color: var(--muted);
}

/* =========================================================
   Final CTA
========================================================= */

.final-cta {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-800), var(--cyan-500));
}

.final-cta .eyebrow {
  color: #d9fbfc;
}

.final-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta-row p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
  padding: 58px 0 22px;
  color: var(--white);
  background: #082f35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 42px;
}

.footer-brand img {
  width: 135px;
  margin-bottom: 16px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid a {
  color: var(--cyan-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    font-weight: 800;
  }

  .main-navigation {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation a {
    padding: 12px;
  }

  .nav-register {
    margin-top: 6px;
    text-align: center;
  }

  .hero-grid,
  .split-layout,
  .feature-layout,
  .feature-layout-reverse,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .card-grid-three {
    grid-template-columns: 1fr;
  }

  .resource-list a {
    grid-template-columns: 42px 1fr;
  }

  .resource-list small {
    grid-column: 2;
  }
}

@media (max-width: 650px) {
  .wrap {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding: 72px 0 66px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-actions,
  .final-cta-row,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-feature-grid,
  .trust-grid,
  .card-grid-four,
  .card-grid-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .hero-panel {
    padding: 18px;
  }

  .brand-stage {
    min-height: 200px;
  }

  .visual-panel {
    min-height: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .resource-list a {
    transition: none;
  }
}
