@charset "utf-8";

:root {
  --primary: #1A7A6E;
  --primary-dark: #0F5C52;
  --accent: #CE1126;
  --accent-soft: #E8F5F3;
  --gold: #C9A227;
  --bg: #F4F7F9;
  --surface: #ffffff;
  --text: #0F172A;
  --muted: #64748B;
  --border: rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
main { display: block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.container-narrow { width: min(780px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 0; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 38px; width: auto; }
.brand-tag { font-size: 0.7rem; color: var(--muted); line-height: 1.35; max-width: 14ch; }
.nav { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.nav a {
  padding: 0.48rem 0.9rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  color: var(--muted); transition: background 0.15s, color 0.15s;
}
.nav a:hover, .nav a.active { background: var(--accent-soft); color: var(--primary-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.8rem 1.45rem; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  border: 2px solid transparent; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 28px rgba(26,122,110,0.38); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, #A50E1F 100%); color: #fff; box-shadow: 0 10px 28px rgba(206,17,38,0.28); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.35rem; }

.hero {
  position: relative; overflow: hidden;
  padding: 4.5rem 0 4rem;
  background: linear-gradient(145deg, #0B1220 0%, #123544 42%, var(--primary-dark) 100%);
  color: #fff; border-radius: 0 0 2.25rem 2.25rem; margin-bottom: 3rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(125,211,192,0.18) 0%, transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(201,162,39,0.12) 0%, transparent 35%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.75rem; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #7DD3C0; margin-bottom: 0.85rem; padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(125,211,192,0.12); border: 1px solid rgba(125,211,192,0.25);
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4.8vw, 3.45rem);
  line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 54ch; margin-bottom: 0.65rem; }
.hero-price {
  display: inline-block; margin-top: 1rem; padding: 0.55rem 1.1rem; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  font-weight: 700; font-size: 0.94rem;
}
.hero-card {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
  border-radius: calc(var(--radius) + 2px); padding: 1.65rem; backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 0.85rem; color: #fff; }
.hero-stat { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.hero-stat:last-child { border-bottom: none; }
.hero-stat strong { color: #7DD3C0; text-align: right; }

.platforms-strip {
  padding: 1.75rem 0 2.5rem; text-align: center;
}
.platforms-strip p { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.platform-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
}
.platform-pill {
  padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
}
.platform-pill.highlight { background: var(--accent-soft); border-color: rgba(26,122,110,0.2); color: var(--primary-dark); }

.section { padding: 3.25rem 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  margin-bottom: 0.7rem; letter-spacing: -0.02em;
}
.section-lead { color: var(--muted); max-width: 64ch; margin-bottom: 2rem; font-size: 1.02rem; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.35rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.45rem; box-shadow: var(--shadow); transition: transform 0.15s, border-color 0.15s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(26,122,110,0.25); }
.card-icon {
  width: 2.65rem; height: 2.65rem; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
  color: var(--primary); font-weight: 800; margin-bottom: 0.9rem; font-size: 0.85rem;
}
.card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.93rem; color: var(--muted); }

.feature-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  padding: 2rem; background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 100%);
  border-radius: calc(var(--radius) + 4px); border: 1px solid rgba(26,122,110,0.15);
}
.feature-band h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-band p { color: var(--muted); margin-bottom: 0.5rem; }
.feature-list { list-style: none; margin-top: 1rem; }
.feature-list li {
  padding: 0.45rem 0 0.45rem 1.5rem; position: relative; font-size: 0.95rem;
}
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }

.roadmap { display: grid; gap: 1rem; }
.roadmap-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 1.35rem; align-items: start;
  padding: 1.35rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.roadmap-item .phase { font-weight: 800; color: var(--primary); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.roadmap-item h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.roadmap-item p { color: var(--muted); font-size: 0.93rem; }
.roadmap-item .tag {
  display: inline-block; margin-top: 0.55rem; padding: 0.22rem 0.6rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--primary-dark); font-size: 0.72rem; font-weight: 700;
}

.faq-grid { display: grid; gap: 1rem; max-width: 820px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.faq-item p { color: var(--muted); font-size: 0.93rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.35rem; align-items: stretch;
}
.plan-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 2px);
  padding: 1.65rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.plan-card.featured {
  border: 2px solid var(--primary); box-shadow: 0 28px 60px rgba(26,122,110,0.18);
  position: relative;
}
.plan-card .plan-badge {
  position: absolute; top: -0.65rem; left: 1.25rem;
  background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 999px;
}
.plan-card h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 0.35rem; }
.plan-card .plan-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin: 0.75rem 0; line-height: 1.1; }
.plan-card .plan-price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.plan-card .plan-note { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; }
.plan-card ul { list-style: none; margin: 0 0 1.25rem; flex: 1; }
.plan-card li { padding: 0.38rem 0 0.38rem 1.45rem; position: relative; font-size: 0.92rem; color: var(--text); }
.plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.plan-card li.muted { color: var(--muted); }
.plan-card li.muted::before { content: '○'; color: var(--muted); font-weight: 400; }

.glow-teaser {
  margin-top: 3rem; padding: 2rem; border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #0B1220 0%, #1A3A4A 100%); color: #fff;
}
.glow-teaser h2 { font-family: var(--font-display); font-size: 1.65rem; margin-bottom: 0.5rem; }
.glow-teaser > p { color: rgba(255,255,255,0.82); max-width: 58ch; margin-bottom: 1.5rem; font-size: 0.96rem; }
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.teaser-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06);
  min-height: 180px;
}
.teaser-panel-inner { padding: 1.15rem; filter: blur(5px); opacity: 0.55; user-select: none; pointer-events: none; }
.teaser-panel-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.65rem; text-align: center;
  background: rgba(11,18,32,0.45); padding: 1rem;
}
.teaser-panel-overlay strong { font-size: 0.95rem; }
.teaser-panel-overlay span { font-size: 0.82rem; color: rgba(255,255,255,0.75); max-width: 22ch; }
.teaser-lock {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(125,211,192,0.2);
  display: grid; place-items: center; font-size: 1rem;
}
.mock-stat { display: flex; justify-content: space-between; font-size: 0.82rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mock-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.15); margin-top: 0.75rem; }
.mock-bar-fill { height: 100%; width: 68%; border-radius: inherit; background: rgba(125,211,192,0.5); }

.pricing-panel {
  background: linear-gradient(140deg, var(--primary) 0%, #0F4A42 55%, var(--primary-dark) 100%);
  color: #fff; border-radius: calc(var(--radius) + 6px); padding: 2.75rem 2rem; text-align: center;
  box-shadow: 0 28px 70px rgba(26,122,110,0.35);
}
.pricing-panel h2 { font-family: var(--font-display); font-size: 2.1rem; margin-bottom: 0.55rem; }
.pricing-panel .amount { font-size: 3.2rem; font-weight: 800; line-height: 1; margin: 1.1rem 0; }
.pricing-panel .amount small { font-size: 1rem; font-weight: 600; opacity: 0.88; }
.pricing-panel ul { list-style: none; text-align: left; max-width: 440px; margin: 1.5rem auto 0; }
.pricing-panel li { padding: 0.42rem 0; padding-left: 1.55rem; position: relative; font-size: 0.96rem; }
.pricing-panel li::before { content: '✓'; position: absolute; left: 0; color: #7DD3C0; font-weight: 800; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--accent-soft); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary-dark); }
tr:last-child td { border-bottom: none; }

.template-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.35rem; }
.template-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.template-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(15,23,42,0.12); }
.template-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: #e2e8f0; }
.template-card .body { padding: 1.05rem; }
.template-card h3 { font-size: 0.96rem; margin-bottom: 0.35rem; }
.template-card p { font-size: 0.83rem; color: var(--muted); }
.template-badge {
  display: inline-block; margin-top: 0.5rem; padding: 0.18rem 0.55rem; border-radius: 999px;
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
}
.template-badge.premium { background: #FEE2E2; color: var(--accent); }
.template-badge.free { background: var(--accent-soft); color: var(--primary-dark); }
.template-badge.org-bni { background: #FFE8EB; color: #9E0D1E; }
.template-badge.org-rotary { background: #E8F0FE; color: #1A4B8C; }
.template-badge.org-lions { background: #FEF3C7; color: #92400E; }

.site-footer {
  margin-top: 3rem; padding: 2.75rem 0; background: #0B1220; color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.footer-grid h4 { color: #fff; font-size: 0.96rem; margin-bottom: 0.7rem; }
.footer-grid p, .footer-grid a, .footer-grid address { color: rgba(255,255,255,0.72); line-height: 1.75; font-style: normal; }
.footer-grid a:hover { color: #7DD3C0; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.85rem 1.25rem; }
.footer-legal a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-legal a:hover { color: #7DD3C0; text-decoration: underline; }

.footer-social {
  display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; margin-top: 0.85rem;
}
.footer-social a {
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.78);
}
.footer-social a:hover { color: #7DD3C0; }

.about-copy {
  max-width: 760px; margin: 0 auto;
}
.about-copy p {
  font-size: 1.02rem; line-height: 1.85; color: var(--muted); margin-bottom: 1rem;
}
.about-copy p:last-child { margin-bottom: 0; }

.partner-terms {
  margin: 1.25rem 0 0; padding: 1rem 1.1rem; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
}
.partner-terms label { display: flex; gap: 0.65rem; align-items: flex-start; cursor: pointer; line-height: 1.55; }
.partner-terms input { margin-top: 0.2rem; flex-shrink: 0; }
.partner-terms a { color: #7DD3C0; }
.partner-apply-disabled { opacity: 0.45; pointer-events: none; cursor: not-allowed; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (max-width: 860px) {
  .hero-grid, .feature-band { grid-template-columns: 1fr; }
  .roadmap-item { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
}
