:root {
  --black: #060506;
  --panel: rgba(31, 17, 19, 0.84);
  --panel-solid: #191011;
  --line: rgba(255, 255, 255, 0.16);
  --line-gold: rgba(255, 211, 63, 0.28);
  --white: #fff7f1;
  --muted: #a79a9a;
  --gold: #ffd33f;
  --red: #e9163d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(207, 20, 46, 0.22), transparent 28rem),
    linear-gradient(180deg, #090708 0%, #12090a 45%, #050404 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 5.4vw, 108px);
  color: var(--white);
}

.site-header.solid {
  position: sticky;
  background: rgba(7, 5, 6, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: clamp(138px, 15vw, 244px);
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48));
}

.partner-lockup,
.footer-brand {
  display: flex;
  align-items: center;
}

.partner-lockup {
  gap: 10px;
  margin-right: auto;
  padding-top: 2px;
}

.partner-lockup span,
.footer-brand span {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.partner-lockup img {
  width: clamp(50px, 5.6vw, 82px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 8px;
}

.site-nav a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  background: rgba(12, 7, 8, 0.52);
  color: rgba(255, 247, 241, 0.78);
  backdrop-filter: blur(12px);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--line-gold);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 44%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 4, 5, 0.98) 0%, rgba(5, 4, 5, 0.78) 38%, rgba(5, 4, 5, 0.18) 78%),
    linear-gradient(180deg, rgba(5, 4, 5, 0.28) 0%, rgba(5, 4, 5, 0.48) 58%, rgba(5, 4, 5, 0.94) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 132px clamp(22px, 5.4vw, 108px) 78px;
}

.hero-content {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.86rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.9vw, 5.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 5.05rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.22;
}

.hero-copy {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 247, 241, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.32rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  padding: 13px 20px;
}

.button.primary {
  background: var(--gold);
  color: #0d0908;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(12, 7, 8, 0.5);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--line-gold);
  color: var(--gold);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 11, 12, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.hero-panel article,
.feature-card,
.activation-grid article {
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-panel article:hover,
.feature-card:hover,
.activation-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 63, 0.52);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.hero-panel article {
  padding: 22px;
}

.hero-panel p,
.feature-card span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.32rem);
  line-height: 1.35;
  text-transform: none;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(22px, 5.4vw, 108px);
}

.section-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.story-section {
  margin-top: -1px;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 211, 63, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(12, 7, 8, 0.98), #080606 78%);
}

.story-section h2 {
  max-width: 960px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 46px;
}

.feature-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
}

.feature-card span {
  display: block;
  font-size: 1.25rem;
}

.feature-card p,
.copy-stack p,
.activation-grid p,
.media-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.split-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 211, 63, 0.12), transparent 26rem),
    radial-gradient(circle at 18% 78%, rgba(232, 22, 61, 0.15), transparent 30rem),
    var(--black);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.media-section {
  background: linear-gradient(180deg, #080606 0%, #120909 100%);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.media-copy p:not(.eyebrow) {
  max-width: 620px;
}

figure {
  margin: 0;
}

.showcase {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activation-section {
  background: linear-gradient(180deg, #130809, #050404);
}

.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.activation-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.metric {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.page-main {
  min-height: 70svh;
}

.page-hero {
  position: relative;
  padding: clamp(94px, 11vw, 154px) clamp(22px, 5.4vw, 108px) clamp(58px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(5, 4, 5, 0.96), rgba(5, 4, 5, 0.62)),
    url("assets/score8-qqpk-malaysia-hero.png") center / cover;
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(2.65rem, 5.2vw, 5.9rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 247, 241, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 700;
}

.page-section {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 211, 63, 0.1), transparent 26rem),
    var(--black);
}

.policy-content {
  display: grid;
  gap: 28px;
}

.policy-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.policy-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.policy-content p,
.contact-copy p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.policy-content a,
.contact-details a {
  color: var(--gold);
}

.contact-section {
  background: linear-gradient(180deg, #100708, #050404);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
}

.contact-copy {
  max-width: 610px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--gold);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: var(--panel);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 247, 241, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 247, 241, 0.94);
  color: #120b0b;
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(22px, 5.4vw, 108px);
  border-top: 1px solid var(--line);
  background: #050404;
  color: rgba(255, 247, 241, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-brand {
  gap: 12px;
}

.footer-brand img:first-child {
  display: block;
  width: min(190px, 100%);
  height: auto;
}

.footer-brand img:last-child {
  width: 68px;
  aspect-ratio: 1;
  object-fit: contain;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.site-footer p {
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 1180px) {
  .site-header {
    position: absolute;
  }

  .hero-grid,
  .feature-grid,
  .split-grid,
  .activation-grid,
  .media-layout,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    min-height: auto;
    padding-top: 178px;
  }

  h1 {
    max-width: 900px;
    font-size: clamp(2.55rem, 7.2vw, 5.2rem);
  }

  .hero-panel {
    max-width: 720px;
  }

  .site-footer p,
  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    padding-top: 22px;
  }

  .brand {
    width: 118px;
  }

  .partner-lockup {
    display: none;
  }

  .site-nav {
    gap: 8px;
    padding-top: 0;
  }

  .site-nav a {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero-grid {
    gap: 24px;
    padding-top: 120px;
    padding-bottom: 44px;
  }

  h1 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(2.18rem, 6.5vw, 2.85rem);
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.92rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-panel {
    display: flex;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-panel::-webkit-scrollbar {
    display: none;
  }

  .hero-panel article {
    flex: 0 0 calc((100% - 14px) / 2);
    scroll-snap-align: start;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero {
    padding-top: 86px;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    padding-top: 22px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0;
  }

  .site-nav a {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .hero-grid {
    padding-top: 178px;
    padding-bottom: 48px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.32rem, 12.2vw, 4.1rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-panel article {
    flex-basis: min(82vw, 340px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 4, 5, 0.96), rgba(5, 4, 5, 0.45)),
      linear-gradient(180deg, rgba(5, 4, 5, 0.38), rgba(5, 4, 5, 0.97));
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-panel article,
  .feature-card,
  .activation-grid article {
    padding: 22px;
  }

  .brand {
    width: 146px;
  }
}
