:root {
  --bg: #fff7fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #1d1f3d;
  --muted: #5f6288;
  --primary: #6d4dff;
  --secondary: #ff4f8f;
  --accent: #ff8f2f;
  --highlight: #35c8ff;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(60, 45, 128, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 99, 146, 0.16), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(53, 200, 255, 0.14), transparent 28%),
    radial-gradient(circle at 40% 86%, rgba(109, 77, 255, 0.1), transparent 26%),
    var(--bg);
  scroll-behavior: smooth;
}

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

.container {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(39, 29, 91, 0.84), rgba(160, 54, 131, 0.62), rgba(255, 145, 72, 0.42)),
    url("https://ppc.epicworkshops.com.sg/wp-content/uploads/2024/03/IMG_1383-768x512.jpg") center/cover;
  min-height: clamp(620px, 84vh, 860px);
  color: #fff;
  padding: 1.25rem 0 4.75rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.hero::before {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 113, 158, 0.34), transparent 64%);
  top: -170px;
  right: -80px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(56, 200, 255, 0.27), transparent 64%);
  bottom: -160px;
  left: -80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 164px;
  filter: brightness(0) invert(1);
}

.hero-content {
  max-width: 720px;
  margin-top: clamp(56px, 10vh, 120px);
  position: relative;
  z-index: 2;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.82rem;
  opacity: 0.98;
  color: rgba(255, 255, 255, 0.92);
}

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

h1 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  margin-top: 0.5rem;
}

.sub {
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(248, 244, 255, 0.95);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.8rem 1.28rem;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8d5bff);
  box-shadow: 0 10px 20px rgba(109, 77, 255, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5f43ec, #8a53ff);
  transform: translateY(-1px);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(4px);
}

.section {
  padding: clamp(56px, 6.2vw, 84px) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(20px, 2.6vw, 34px);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(136, 118, 255, 0.12);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card h3 {
  font-size: 1rem;
  padding: 1rem 1rem 1.05rem;
  min-height: 68px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(109, 77, 255, 0.04));
}

.card:hover img {
  transform: scale(1.04);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(53, 37, 116, 0.2);
}

.split {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 255, 0.88));
  border-top: 1px solid rgba(120, 96, 255, 0.1);
  border-bottom: 1px solid rgba(120, 96, 255, 0.1);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.3vw, 48px);
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  margin-bottom: 0.7rem;
  color: var(--muted);
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 128, 179, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  border-radius: 14px;
  padding: clamp(16px, 2vw, 24px);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(96, 112, 255, 0.13);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: #4c46cc;
}

.stat span {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
}

.gallery img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(105, 82, 255, 0.12);
  transition: transform 0.22s ease;
}

.gallery img:hover {
  transform: translateY(-3px);
}

.brands {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 253, 0.95));
}

.brands h2 {
  margin-bottom: 1rem;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 16px);
  align-items: center;
}

.brand-row img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  background: #ffffff;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(133, 117, 255, 0.15);
  box-shadow: 0 8px 24px rgba(75, 61, 145, 0.08);
}

.footer {
  background: linear-gradient(135deg, #1e1d45, #312064 52%, #4f2475);
  color: #ece8fb;
  padding: 2.4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: center;
}

.footer a {
  color: #fff4fb;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .container {
    width: min(1160px, calc(100vw - 36px));
  }

  .hero {
    min-height: 680px;
    padding-bottom: 4rem;
  }

  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 72px;
  }

  .card h3 {
    min-height: 62px;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: calc(100vw - 24px);
  }

  .hero {
    min-height: 620px;
    padding-top: 0.9rem;
    padding-bottom: 3.3rem;
  }

  .nav {
    min-height: 58px;
  }

  .logo {
    width: 136px;
  }

  .hero-content {
    margin-top: 52px;
  }

  h1 {
    font-size: clamp(1.8rem, 9.1vw, 2.35rem);
    line-height: 1.13;
  }

  .sub {
    font-size: 1rem;
    line-height: 1.58;
  }

  .cta-row {
    gap: 0.66rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.73rem 1.02rem;
    font-size: 0.92rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .cards {
    gap: 12px;
  }

  .card h3 {
    min-height: unset;
    padding: 0.88rem 0.88rem 0.98rem;
    font-size: 0.97rem;
  }

  .gallery {
    gap: 10px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

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