*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #EAE4D6;
  --cream-dark: #DDD7C8;
  --forest: #162416;
  --green: #3DDB85;
  --green-dim: rgba(61, 219, 133, 0.15);
  --card-bg: #1C1C1E;
  --card-border: rgba(255,255,255,0.07);
  --text-on-dark: #F5F5F5;
  --muted-on-dark: rgba(255,255,255,0.45);
  --radius-lg: 20px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--forest);
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { width: 36px; height: 36px; }

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.3px;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 40px 32px 56px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: var(--cream-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-pill,
.hero h1,
.hero-meta {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid rgba(61, 219, 133, 0.3);
  color: #1a7a45;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 560px;
  margin-bottom: 12px;
}

.hero-meta {
  font-size: 14px;
  color: #6b6b5a;
  font-weight: 500;
}

/* ── CONTENT ── */
.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ── SECTION CARD ── */
.section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-num {
  width: 30px;
  height: 30px;
  background: var(--green-dim);
  border: 1px solid rgba(61, 219, 133, 0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.2px;
}

.section-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.section-body strong { color: var(--text-on-dark); font-weight: 600; }

.section-body a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.section-body a:hover { text-decoration: underline; }

/* ── LIST ── */
.data-list { list-style: none; margin-top: 4px; }

.data-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.data-list li:last-child { border-bottom: none; }

.data-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── NOTICE ── */
.notice {
  background: rgba(61, 219, 133, 0.1);
  border: 1px solid rgba(61, 219, 133, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  color: #5ae49a;
  margin-top: 16px;
  line-height: 1.5;
}

/* ── TABLE ── */
.partners-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}

.partners-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-on-dark);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--card-border);
}

.partners-table tbody tr { border-bottom: 1px solid var(--card-border); }
.partners-table tbody tr:last-child { border-bottom: none; }

.partners-table td {
  padding: 13px 0;
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  vertical-align: top;
}

.partners-table td:first-child {
  font-weight: 700;
  color: var(--text-on-dark);
  width: 40%;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.partner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.disclaimer {
  font-size: 12.5px;
  color: var(--muted-on-dark);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}

/* ── CONTACT CARD ── */
.contact-card {
  background: var(--forest);
  border: 1px solid rgba(61, 219, 133, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(61,219,133,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-num {
  width: 30px;
  height: 30px;
  background: rgba(61, 219, 133, 0.15);
  border: 1px solid rgba(61, 219, 133, 0.25);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}

.contact-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--forest);
  font-weight: 800;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.15s;
}

.email-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  font-size: 13px;
  color: #8c8c7a;
  padding: 0 0 48px;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  header { padding: 20px; }
  .hero { padding: 28px 20px 44px; }
  .hero h1 { letter-spacing: -1px; }
  .content { padding: 0 16px 60px; }
  .section-card, .contact-card { padding: 22px 20px; }
}
