:root {
  --color-primary: #EB001B;
  --color-mastercard-red: #EB001B;
  --color-mastercard-yellow: #F79E1B;
  --color-ink: #141413;
  --color-on-primary: #F3F0EE;
  --color-signal: #CF4500;
  --color-signal-light: #F37338;
  --color-clay: #9A3A0A;
  --color-canvas: #F3F0EE;
  --color-lifted: #FCFBFA;
  --color-white: #FFFFFF;
  --color-charcoal: #262627;
  --color-slate: #696969;
  --color-dust: #D1CDC7;
  --color-ghost: #E8E2DA;
  --color-link: #3860BE;
  --rounded-btn: 20px;
  --rounded-hero: 40px;
  --rounded-pill: 999px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-section: 96px;
  --shadow-nav: rgba(0, 0, 0, 0.04) 0px 4px 24px 0px;
  --shadow-card: rgba(0, 0, 0, 0.08) 0px 24px 48px 0px;
  --font-display: MarkForMC, SofiaSans, Arial, system-ui, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: MarkForMC, SofiaSans, Arial, system-ui, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  background: var(--color-canvas);
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
a { color: var(--color-ink); text-decoration: none; }
a:hover { color: var(--color-link); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 24px 0 8px;
  background: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: var(--rounded-pill);
  padding: 12px 28px;
  box-shadow: var(--shadow-nav);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: var(--color-ink);
}
.logo:hover { color: var(--color-ink); text-decoration: none; }
.mark {
  width: 34px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.mark::before,
.mark::after {
  content: "";
  position: absolute;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.mark::before { left: 0; background: var(--color-mastercard-red); }
.mark::after { right: 0; background: var(--color-mastercard-yellow); mix-blend-mode: multiply; }
.nav { display: flex; flex-wrap: wrap; gap: 4px 28px; flex: 1; justify-content: center; }
.nav a {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;
}
.nav a.on { text-decoration: underline; text-underline-offset: 6px; }
.back { margin-left: auto; font-size: 13px; color: var(--color-slate); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-signal-light);
}

.hero { padding: 48px 0 24px; }
.hero h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.28px;
  margin: 0 0 20px;
  max-width: 12ch;
}
.hero p {
  margin: 0 0 28px;
  color: var(--color-charcoal);
  font-weight: 400;
  max-width: 36em;
  font-size: 16px;
  line-height: 1.4;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-frame {
  margin-top: 32px;
  height: 320px;
  background: #2B2B2B;
  color: var(--color-dust);
  border-radius: var(--rounded-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.btn,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  padding: 8px 24px;
  min-height: 40px;
  border-radius: var(--rounded-btn);
  border: 1.5px solid var(--color-ink);
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary,
form button {
  background: var(--color-ink);
  color: var(--color-canvas);
}
.btn-secondary {
  background: var(--color-white);
  color: var(--color-ink);
}
.btn-signal {
  background: var(--color-signal);
  color: #fff;
  border: 0;
  border-radius: 24px;
  font-size: 13px;
  padding: 6px 30px;
}

.section { padding: 96px 0; position: relative; }
.section h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.72px;
  margin: 0 0 32px;
}
.ghost-title {
  position: absolute;
  top: 24px;
  right: 8%;
  font-size: 96px;
  font-weight: 500;
  letter-spacing: -2px;
  color: var(--color-ghost);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.muted { color: var(--color-slate); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 1; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.card {
  background: transparent;
  padding: 0;
  text-align: left;
}
.card h3 {
  margin: 12px 0 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 1.2;
}
.card p { margin: 0; color: var(--color-slate); font-size: 16px; }

.portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ddd9d4;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}
.portrait .sat {
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-nav);
}

.ph {
  background: #ddd9d4;
  color: var(--color-slate);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 12px;
  border-radius: var(--rounded-hero);
}

.orbit {
  height: 0;
  border-top: 1.5px solid var(--color-signal-light);
  border-radius: 50%;
  margin: 8px 0 40px;
  opacity: 0.8;
}

.list { list-style: none; margin: 0; padding: 0; }
.list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--color-dust);
  display: flex;
  gap: 16px;
}
.list .date { color: var(--color-slate); font-size: 13px; min-width: 7em; }

.cta-banner {
  background: var(--color-lifted);
  border-radius: var(--rounded-hero);
  padding: 48px;
}

form label { display: block; margin: 0 0 6px; font-size: 14px; font-weight: 500; }
form input, form textarea {
  width: 100%;
  max-width: 480px;
  padding: 12px 24px;
  border: 1px solid rgba(20, 20, 19, 0.5);
  background: var(--color-white);
  color: var(--color-ink);
  font: inherit;
  margin-bottom: 12px;
  border-radius: var(--rounded-pill);
}

.footer {
  background: var(--color-ink);
  color: #fff;
  padding: 72px 0 100px;
  font-size: 14px;
  font-weight: 400;
}
.footer a { color: #fff; }
.footer .wrap h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.72px;
  margin: 0 0 32px;
}
.footer p { margin: 0 0 8px; color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .ghost-title { display: none; }
  .nav { justify-content: flex-start; }
}

.ph { overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
