.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.card h3 {
  margin: 0;
  color: #fff;
  font-weight: 750;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.card p {
  margin: 8px 0 0;
  color: rgba(232, 232, 232, 0.86);
  line-height: 1.55;
  font-size: 0.98rem;
}

.bullets {
  margin: 0 auto; /* center the entire list block */
  max-width: 740px; /* readable line length */
  padding-left: 1.1rem; /* keep bullet indent */
  color: rgba(232, 232, 232, 0.88);
  line-height: 1.6;
  text-align: left; /* keep text left-justified inside centered block */
}

.bullets li {
  margin: 8px 0;
}

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

/* Reveal-on-scroll animation (quiet) */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

details.faq-item {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
}

details.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item .faq-body {
  margin-top: 10px;
  color: rgba(232, 232, 232, 0.88);
  line-height: 1.6;
}

.final-cta {
  margin-top: 28px;
  text-align: center;
}

.final-cta .cta-btn {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hero-subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.94);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.72);
  font-weight: 300;
}

.hero-panel {
  margin: 0 auto;
  max-width: 760px;
  /* Action group with NO fill; readability comes from the hero vignette + text shadows */
  background: transparent;
  border: 2px solid rgba(255, 204, 0, 0.58);
  border-radius: 14px;
  padding: 18px 22px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 224, 120, 0.14) inset;
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.hero-panel:hover,
.hero-panel:focus-within {
  border-color: rgba(255, 204, 0, 0.7);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 224, 120, 0.18) inset,
    0 0 34px rgba(255, 204, 0, 0.18);
}

.hero-panel:active {
  transform: translateY(0);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 224, 120, 0.12) inset,
    0 0 22px rgba(255, 204, 0, 0.14);
}

.hero-offer {
  font-family: inherit;
}

.hero-offer-title {
  margin: 0;
  color: var(--color-accent);
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 1.14rem; /* more prominent */
  line-height: 1.25;
  text-shadow:
    0 6px 20px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(255, 204, 0, 0.28);
}

.hero-offer-sub {
  margin: 8px 0 0;
  color: rgba(245, 245, 245, 0.9);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.45;
}

.hero-fineprint {
  margin: 10px 0 0;
  color: rgba(245, 245, 245, 0.84);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-fineprint strong {
  color: rgba(255, 224, 120, 0.95);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.hero-link {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.hero-link:hover {
  color: #fff;
}

.section-two {
  min-height: 100vh;
  /* Keep section height stable on mobile when the browser UI collapses */
  min-height: 100svh;
  display: flex;
  justify-content: center;
  padding: 38px 0 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  background: black;
  position: relative; /* enable bridge overlay like other sections */
  isolation: isolate;
}
.section-two::before {
  content: '';
  position: absolute;
  inset: -6px 0 auto 0;
  height: 56px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.64) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.page-shell {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px 18px;
  text-align: center;
}

/* legacy styles kept intentionally minimal; removed unused headline/scarcity blocks */

.cta-area {
  margin: 28px 0 18px;
  text-align: center;
}
.cta-btn {
  background-color: var(--color-accent);
  color: #0b0b0b;
  padding: 18px 56px;
  border: none;
  border-radius: 4px; /* less boxy */
  font-size: 1.12rem;
  font-weight: 800;
  font-family: inherit; /* ensure buttons inherit Lato like links */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transition:
    background-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-appearance: none; /* normalise native button styling */
  appearance: none;
}

.cta-btn:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.55);
  outline-offset: 3px;
}
.cta-btn:hover {
  background-color: var(--color-accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}
.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.cta-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.schedule-title {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule {
  max-width: 700px;
  margin: 0 auto 18px;
  text-align: left;
  line-height: 1.55;
  font-size: 0.98rem;
  /* Extra anchor offset for the programme section */
  scroll-margin-top: 20px;
}
.schedule-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}
/* Gold hairline for Programme heading, matching section titles */
.schedule-title::before {
  content: '';
  display: block;
  width: 96px;
  height: 1px;
  margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}
.schedule-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: start;
  /* px-6 equivalent */
  padding: 12px 24px;
  border-radius: 12px;

  /* Make the whole card read against the dark background */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(212, 175, 55, 0.3);

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.schedule-time {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.88rem;
  white-space: nowrap;
  padding-top: 1px;
}

.schedule-activity {
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  margin: 0;
}

.schedule-note {
  margin: 3px 0 0;
  color: rgba(224, 224, 224, 0.9);
  font-size: 0.92rem;
  line-height: 1.35;
}

.trust-security {
  max-width: 900px;
  margin: 26px auto 0;
  padding: 18px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 232, 232, 0.9);
  text-align: center;
  font-size: 0.92rem;
}
.trust-security .trust-title {
  margin: 0 0 8px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.9rem;
}
.trust-security .trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-security a {
  color: rgba(232, 232, 232, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.trust-security .abn:empty {
  display: none;
}

.footer {
  max-width: 700px;
  margin: 18px auto 0;
  padding: 14px 20px 0;
  border-top: 1px solid #2e3b4a;
  font-size: 0.8rem;
  color: #8892a0;
}
