/* =========================================================
   UNILIFE — Shared Stylesheet
   Design language: campus noticeboard × student ID card.
   Use this one file across every page (index, students,
   sellers, partners, pricing, about...).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
  /* ---- palette ---- */
  --ink: #0a0e1c;             /* base background, near-black navy — tinted to match the logo */
  --ink-raised: #121a30;      /* card / raised surface */
  --ink-raised-2: #182246;    /* deeper raised surface (hover, nested) */
  --paper: #ede7d8;           /* warm paper — used only in ID card / ticket insets */
  --paper-line: rgba(13, 15, 26, 0.14);
  --chalk: #ffd23f;           /* primary CTA accent — chalkboard gold (navy+gold = collegiate) */
  --chalk-ink: #2b1e00;       /* text-on-chalk */
  --blue: #4f7fff;            /* brand blue, lifted straight from the UniLife mark */
  --blue-soft: #8fb0ff;       /* lighter tint for glows / hovers */
  --blue-deep: #1c2c66;       /* deep tint for gradients + shadows */
  --flare: #ff3d81;           /* rare accent — gamification pop only, used sparingly */
  --go: #34d399;              /* tertiary — verified / success */
  --red-pen: #ff5c66;         /* "marked wrong" red */
  --text: #f4f2ec;            /* primary text on ink */
  --muted: #9aa0b8;
  --muted-2: #666d87;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* ---- type ---- */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* ---- misc ---- */
  --radius: 14px;
  --radius-lg: 26px;
  --edge: 6vw;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 210, 63, 0.05), transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(79, 127, 255, 0.12), transparent 42%);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; margin: 0; letter-spacing: 0.2px; }
p { margin: 0; }
a { color: inherit; }
.mono { font-family: var(--font-mono); }

::selection { background: var(--chalk); color: var(--chalk-ink); }

:focus-visible {
  outline: 2px solid var(--chalk);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

section, header, footer, nav { position: relative; z-index: 1; }

/* =========================================================
   TICKER — scrolling campus announcements
   ========================================================= */
.ticker {
  background: var(--chalk);
  color: var(--chalk-ink);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 60;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 7px 0;
  animation: ticker-scroll 26s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.ticker__track span::before { content: "▸ "; opacity: 0.6; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   NAV
   ========================================================= */
nav.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--edge);
  position: sticky;
  top: 32px;
  z-index: 55;
  background: rgba(13, 15, 26, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 4px 14px rgba(79, 127, 255, 0.35);
  transition: transform 0.2s ease;
}
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.04); }
.brand span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}
.brand span b { color: var(--blue-soft); font-weight: 400; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  color: var(--muted);
  align-items: center;
  font-family: var(--font-mono);
}
.nav-links a { text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink-raised);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--edge) 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 10px 4px; }
  .nav-links li.nav-cta { margin-top: 8px; }
  .nav-links li.nav-cta a.btn { width: 100%; justify-content: center; padding: 13px 18px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) rotate(-0.4deg); }
.btn-primary {
  background: var(--chalk);
  color: var(--chalk-ink);
  box-shadow: 4px 4px 0 var(--flare);
}
.btn-primary:hover { box-shadow: 6px 6px 0 var(--flare); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--chalk); }
.btn-dark {
  background: var(--ink-raised-2);
  color: var(--text);
  border: 2px solid var(--line-strong);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 64px var(--edge) 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--go);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.07);
  margin-bottom: 24px;
}
.eyebrow-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--go);
  box-shadow: 0 0 8px var(--go);
  animation: dot-pulse 1.6s infinite;
}
@keyframes dot-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--chalk); }
.hero h1 .accent-2 { color: var(--flare); }

.hero p.lede {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 30px;
}

.course-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.course-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.course-tag:hover { color: var(--blue-soft); border-color: var(--blue); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Signature: Student ID card ---- */
.id-card-stage {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}
.id-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340 / 460;
  background: var(--paper);
  color: var(--chalk-ink);
  border-radius: 20px;
  padding: 22px;
  position: relative;
  transform: rotateY(-8deg) rotateX(6deg);
  transition: transform 0.15s ease-out;
  box-shadow: 22px 26px 0 rgba(0,0,0,0.28), 0 30px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  transform-style: preserve-3d;
}
.id-card::before {
  /* holo sheen sweep */
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.55) 48%, rgba(255,61,129,0.35) 52%, transparent 60%);
  transform: translateX(-30%);
  animation: sheen-sweep 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes sheen-sweep {
  0%, 15% { transform: translateX(-60%) translateY(-10%); }
  50% { transform: translateX(20%) translateY(10%); }
  100%, 85% { transform: translateX(-60%) translateY(-10%); }
}
.id-card__pin {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, var(--flare) 60%);
  box-shadow: 0 3px 5px rgba(0,0,0,0.5);
  z-index: 3;
}
.id-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 14px;
}
.id-card__top-brand { display: flex; align-items: center; gap: 7px; }
.id-card__top-brand img { width: 20px; height: 20px; border-radius: 5px; display: block; }
.id-card__photo {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg, rgba(13,15,26,0.07) 0 2px, transparent 2px 10px),
    linear-gradient(160deg, var(--blue-soft), var(--blue) 55%, var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.id-card__photo img { width: 54px; height: 54px; opacity: 0.92; }
.id-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.id-card__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(13,15,26,0.6);
  margin-bottom: 16px;
}
.id-card__stats {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.id-card__stat {
  flex: 1;
  background: rgba(13,15,26,0.06);
  border-radius: 8px;
  padding: 8px 10px;
}
.id-card__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.id-card__stat span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.5px;
  opacity: 0.6;
}
.id-card__stamp {
  position: absolute;
  bottom: 20px; right: 18px;
  border: 2.5px solid var(--go);
  color: var(--go);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 6px;
  transform: rotate(-9deg);
  opacity: 0.9;
}

.stat-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stat-chip {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 8px 15px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.stat-chip b { color: var(--text); }

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
.section { padding: 90px var(--edge); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--flare);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.05;
}
.section-head p { color: var(--muted); line-height: 1.6; }
.section-head p.sub { font-style: italic; color: var(--muted-2); margin-top: 6px; font-size: 0.9rem; }

/* =========================================================
   PILLARS — ticket-stub index cards
   ========================================================= */
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-list { grid-template-columns: 1fr; max-width: 850px; gap: 16px; }
@media (max-width: 920px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.stub {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stub::before {
  /* perforation */
  content: "";
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 1px;
  background-image: linear-gradient(90deg, var(--line-strong) 60%, transparent 0%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
.stub:hover { transform: translateY(-4px); border-color: var(--blue); }
.stub__code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--chalk);
  background: rgba(255, 210, 63, 0.08);
  border: 1px solid rgba(255, 210, 63, 0.3);
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.stub h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; text-transform: none; }
.stub p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* =========================================================
   AUDIENCE — pinned flyers
   ========================================================= */
.flyer {
  background: linear-gradient(155deg, var(--ink-raised), var(--ink-raised-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px 30px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: transform 0.25s ease, border-color 0.2s ease;
}
.flyer:nth-child(odd) { transform: rotate(-1.4deg); }
.flyer:nth-child(even) { transform: rotate(1.2deg); }
.flyer:hover { transform: rotate(0deg) translateY(-5px); border-color: var(--flare); }
.flyer__pin {
  position: absolute;
  top: -9px; left: 26px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, var(--chalk) 60%);
  box-shadow: 0 3px 4px rgba(0,0,0,0.45);
}
.flyer .emoji { font-size: 1.9rem; margin-bottom: 18px; display: block; }
.flyer h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.18rem; margin-bottom: 10px; text-transform: none; }
.flyer p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; margin-bottom: 20px; }
.flyer .go { font-family: var(--font-mono); font-size: 0.74rem; color: var(--chalk); }

/* =========================================================
   COMPARE — marked exam script
   ========================================================= */
.script {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 700px) { .script { grid-template-columns: 1fr; } }
.script .col { padding: 32px 30px; }
.script .old { background: var(--ink-raised); }
.script .new { background: linear-gradient(165deg, rgba(255, 210, 63, 0.07), transparent); }
.script h4 {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--muted);
  text-transform: uppercase;
}
.script .new h4 { color: var(--chalk); }
.script ul { list-style: none; margin: 0; padding: 0; }
.script li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
}
.script li:last-child { border-bottom: none; }
.script .old li::before { content: "✕"; color: var(--red-pen); font-family: var(--font-mono); }
.script .new li { color: var(--text); }
.script .new li::before { content: "✓"; color: var(--go); font-family: var(--font-mono); }

/* =========================================================
   CTA BAND — admission ticket
   ========================================================= */
.ticket {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(120deg, rgba(255, 210, 63, 0.1), rgba(255, 61, 129, 0.07));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 54px 46px;
  text-align: center;
  position: relative;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  background: var(--ink);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.ticket::before { left: -13px; }
.ticket::after { right: -13px; }
@media (max-width: 700px) { .ticket::before, .ticket::after { display: none; } }
.ticket h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); text-transform: uppercase; margin-bottom: 16px; }
.ticket p { color: var(--muted); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.ticket .cta-row { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-foot {
  padding: 64px var(--edge) 34px;
  border-top: 1px solid var(--line);
  background: var(--ink-raised);
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 14px 14px;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand p { color: var(--muted-2); font-size: 0.85rem; line-height: 1.6; max-width: 260px; margin-top: 14px; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { text-decoration: none; color: var(--muted); font-size: 0.88rem; transition: color 0.15s; }
.foot-col a:hover { color: var(--chalk); }
.foot-bottom {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-family: var(--font-mono);
}

/* =========================================================
   PAGE HEAD — simple centered header for interior pages
   (About, Students, Sellers, Partners, Pricing...)
   ========================================================= */
.page-head {
  padding: 96px var(--edge) 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-head h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 20px;
}
.page-head p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================================
   SIDE-CARDS — problem / solution style cards with a
   coloured left rule (red pen = problem, verified-green = fix)
   ========================================================= */
.side-card {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong);
  border-radius: 14px;
  padding: 26px;
}
.side-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.03rem;
  text-transform: none;
  margin-bottom: 10px;
}
.side-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.side-card.problem { border-left-color: var(--red-pen); }
.side-card.solution { border-left-color: var(--go); }

/* =========================================================
   LOOP CARDS — small growth-loop tiles
   ========================================================= */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .loop-grid { grid-template-columns: 1fr; }
}
.loop-card {
  background: var(--ink-raised-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.loop-card h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--chalk);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.loop-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   STEP CARDS — for genuine sequential processes only
   (e.g. onboarding steps where order matters)
   ========================================================= */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}
.step-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
@media (max-width: 820px) {
  .step-grid { grid-template-columns: 1fr; }
}
.step-card {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.step-card__n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.step-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; margin: 0; }

.emoji-mark { font-size: 1.7rem; margin-bottom: 14px; display: block; }

/* =========================================================
   NOTICE BAND — urgency / limited-slot callouts
   ========================================================= */
.notice-band {
  max-width: 800px;
  margin: 26px auto 0;
  text-align: center;
  background: rgba(255, 210, 63, 0.08);
  border: 1px solid rgba(255, 210, 63, 0.3);
  color: var(--chalk);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.85rem;
}

/* =========================================================
   TICK-LIST — bulleted perk / feature lists inside cards
   ========================================================= */
.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.tick-list li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.tick-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--chalk);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* =========================================================
   INFO CARD — static contact / detail card (no rotation/pin,
   unlike .flyer, since this isn't "pinned to the board")
   ========================================================= */
.info-card {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px;
}
.info-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; margin-bottom: 3px; }
.info-card .role { color: var(--muted); font-size: 0.85rem; margin-bottom: 22px; font-family: var(--font-mono); }
.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s ease;
}
.info-line:last-child { border-bottom: none; }
.info-line:hover { color: var(--blue-soft); }
.info-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.chip-row { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

.split-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px var(--edge);
}
.intro-block h1 {
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  margin-bottom: 18px;
}
.intro-block p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
  margin-bottom: 28px;
  max-width: 440px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
@media (max-width: 800px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   STAT BOXES — bigger callout stats (page-head proof points)
   ========================================================= */
.stat-box-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px auto 0;
  max-width: 720px;
}
.stat-box {
  flex: 1;
  min-width: 140px;
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.stat-box .val { font-family: var(--font-display); font-size: 1.5rem; color: var(--chalk); }
.stat-box .lbl { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 1px; color: var(--muted); margin-top: 4px; text-transform: uppercase; }

.pull-quote {
  max-width: 700px;
  margin: 36px auto 0;
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--chalk);
  padding-left: 18px;
  text-align: left;
}

/* =========================================================
   TIER CARDS — for pricing/partnership tiers
   ========================================================= */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ink-raised);
}
.tier-card.featured {
  background: linear-gradient(160deg, rgba(255, 210, 63, 0.12), var(--ink-raised));
  border-color: var(--chalk);
}
.tier-card .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tier-card.featured .tag { color: var(--chalk); }
.tier-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; margin-bottom: 4px; text-transform: none; }
.tier-card .sub { color: var(--muted); font-size: 0.82rem; margin-bottom: 20px; }
.tier-card ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 0.88rem; line-height: 1.8; }

/* =========================================================
   INFO NOTE — neutral aside (vs. .notice-band which is urgent/gold)
   ========================================================= */
.info-note {
  max-width: var(--max);
  margin: 24px auto 0;
  background: var(--ink-raised-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 0.85rem;
  color: var(--muted);
}
.info-note b { color: var(--text); }

/* =========================================================
   PARTNER WALL — logo showcase, incl. open invite slots
   ========================================================= */
.partner-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
}
.partner-chip {
  width: 280px;
  height: 150px;
  background: var(--paper);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.partner-chip:hover { transform: translateY(-4px); }
.partner-chip img { max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-chip.placeholder {
  background: transparent;
  border: 1px dashed var(--line-strong);
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-align: center;
  line-height: 1.5;
}

/* =========================================================
   PLAN CARDS — pricing tiers, priced in SP to match the
   ID-card wallet stat's mono/gold treatment
   ========================================================= */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
.plan-card {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured {
  border-color: var(--chalk);
  background: linear-gradient(160deg, rgba(255, 210, 63, 0.1), var(--ink-raised));
}
.plan-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--chalk);
  color: var(--chalk-ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
}
.plan-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; text-transform: none; }
.plan-card .price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.9rem;
  margin: 10px 0 4px;
  color: var(--text);
}
.plan-card .price .unit { font-size: 0.95rem; font-weight: 700; color: var(--chalk); margin-left: 2px; }
.plan-card .price .period { font-size: 0.85rem; font-weight: 500; color: var(--muted); font-family: var(--font-body); }
.plan-card .topup { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted-2); margin-bottom: 18px; }
.plan-card .desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }
.plan-card ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; display: grid; gap: 12px; }
.plan-card li { font-size: 0.88rem; color: var(--text); display: flex; gap: 10px; align-items: flex-start; }
.plan-card li::before { content: "✓"; color: var(--go); flex-shrink: 0; font-weight: 700; font-family: var(--font-mono); }
.plan-card .btn { width: 100%; justify-content: center; }

.footnote {
  max-width: 700px;
  margin: 46px auto 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
}

/* =========================================================
   LEGAL DOCS — Privacy Policy, Terms of Use
   ========================================================= */
.doc-wrapper {
  max-width: 800px;
  margin: 56px auto 100px;
  padding: 0 var(--edge);
}
.doc-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.doc-header h1 {
  font-size: clamp(2rem, 5vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.doc-header .last-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}
.doc-intro {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--muted);
}
.doc-intro h3 { color: var(--text); margin-top: 0; font-family: var(--font-body); font-weight: 800; }
.doc-body h2 {
  color: var(--blue-soft);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  font-size: 1.35rem;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.doc-body h3 { color: var(--text); font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin: 24px 0 12px; }
.doc-body p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.doc-body ul { color: var(--muted); line-height: 1.7; margin-bottom: 24px; padding-left: 20px; }
.doc-body li { margin-bottom: 8px; }
.doc-body a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 2px; }

.alert-box {
  background: rgba(255, 92, 102, 0.08);
  border: 1px solid rgba(255, 92, 102, 0.3);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}
.alert-box h3 { color: var(--red-pen); margin-top: 0; display: flex; align-items: center; gap: 8px; }
.alert-box p, .alert-box li { color: #ffb4ba; }
.alert-box.warn { background: rgba(255, 210, 63, 0.08); border-color: rgba(255, 210, 63, 0.3); }
.alert-box.warn h3 { color: var(--chalk); }
.alert-box.warn p, .alert-box.warn li { color: #ffe28f; }

/* =========================================================
   SMALL PHONES — final overrides, kept last to win the cascade
   ========================================================= */
@media (max-width: 480px) {
  .ticker__track { font-size: 0.66rem; gap: 26px; }
  nav.site-nav { padding: 14px 5vw; }
  .hero { padding: 40px 5vw 28px; gap: 30px; }
  .hero h1 { font-size: clamp(2.15rem, 9vw, 3.2rem); }
  .hero p.lede { font-size: 0.96rem; }
  .section { padding: 56px 5vw; }
  .section-head { margin-bottom: 40px; }
  .btn { padding: 12px 20px; font-size: 0.84rem; }
  .id-card { max-width: 280px; padding: 18px; }
  .stat-strip, .cta-row { gap: 10px; }
  .ticket { padding: 40px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; }
}