/* ── Landing page ── */
body { background-color: var(--bg); }

/* ─── PATTERNED BACKGROUNDS ─── */
.bg-green-grid {
  background-color: #C2D4BC;
}
.bg-pink-grid {
  background-color: var(--pink-pale);
  background-image:
    repeating-linear-gradient(0deg,  rgba(212,137,158,.12) 0, rgba(212,137,158,.12) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(90deg, rgba(212,137,158,.12) 0, rgba(212,137,158,.12) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(45deg, rgba(212,137,158,.05) 0, rgba(212,137,158,.05) 6px,  transparent 6px,  transparent 36px),
    repeating-linear-gradient(-45deg,rgba(212,137,158,.05) 0, rgba(212,137,158,.05) 6px,  transparent 6px,  transparent 36px);
}
.bg-green-dots {
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 88% 8%, rgba(107,143,101,0.45) 0%, rgba(107,143,101,0.45) 16%, transparent 38%),
    radial-gradient(circle at 6% 92%, rgba(212,137,158,0.4) 0%, rgba(212,137,158,0.4) 16%, transparent 38%),
    radial-gradient(circle, rgba(155,184,138,.15) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
}
.bg-pink-dots {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(212,137,158,.12) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ─── SCALLOP / WAVE TRIM ─── */
.scallop-bottom { position: relative; }
.scallop-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 22px;
  background: radial-gradient(circle at 15px 0, var(--bg) 13px, transparent 14px);
  background-size: 30px 22px;
  background-repeat: repeat-x;
  z-index: 2;
}
.scallop-top { position: relative; }
.scallop-top::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 22px;
  background: radial-gradient(circle at 15px 22px, var(--bg) 13px, transparent 14px);
  background-size: 30px 22px;
  background-repeat: repeat-x;
  z-index: 2;
}

/* NAV */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.l-nav.scrolled {
  background: rgba(253,248,240,0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(44,62,45,0.06);
}
.l-nav-inner {
  max-width: 1000px; margin: 0 auto; padding: 1.1rem 2rem 1.1rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.l-nav-inner .logo { margin-left: -1.2rem; }
.nav-logo-wrap { display: flex; align-items: center; gap: 0.35rem; margin-left: -1.2rem; }
.nav-logo-wrap .logo { margin-left: 0; }
.l-nav-links { display: flex; align-items: center; gap: 0.6rem; }
.l-nav-links a:not(.btn-sm):not(.btn-outline-sm) {
  font-size: 1rem; font-weight: 600; color: var(--text-mid);
  padding: 0.38rem 0.95rem;
  border: none; border-radius: 999px;
  background: none;
  transition: color 0.25s, transform 0.25s;
}
.l-nav-links a:not(.btn-sm):not(.btn-outline-sm):hover {
  color: var(--green-dark);
  transform: translateY(-1px);
}
.l-nav-links a:not(.btn-sm):not(.btn-outline-sm).active {
  color: var(--green-dark);
  background: var(--green-pale);
}
.btn-sm { font-size: 1rem !important; }
.btn-outline-sm { font-size: 1rem !important; }
.nav-burger { display: none; color: var(--text-mid); padding: 0.25rem; }

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-dark); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(44,62,45,0.25);
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { background: #3D5938; transform: translateY(-3px) scale(1.05); }

/* CONFETTI */
.confetti-piece {
  position: absolute; top: 28%; left: 50%; width: 8px; height: 8px; border-radius: 2px;
  animation: confetti-fall 1.1s ease-out forwards;
  pointer-events: none; z-index: 5;
}
@keyframes confetti-fall {
  0% { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--x), 150px) rotate(var(--r)); opacity: 0; }
}

/* CONTAINER */
.l-container { max-width: 980px; margin: 0 auto; padding: 0 2rem; }

/* TOPIC TICKER (hero → about transition) */
.topic-ticker {
  width: 100%; overflow: hidden; position: relative; z-index: 1;
  background: var(--bg);
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.topic-ticker .ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.ticker-item {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  flex-shrink: 0; margin-right: 1.1rem;
}
.ticker-item.tick-pink { color: var(--pink-dark); }
.ticker-item.tick-green { color: var(--green-dark); }
.ticker-sep { color: var(--border); font-size: 0.75rem; flex-shrink: 0; margin-right: 1.1rem; }

/* HERO */
.l-hero {
  min-height: auto;
  padding: 8rem 0 4rem;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--bg);
  background-image: none;
  overflow: hidden;
}

/* decorative orbs */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-deco-1, .hero-deco-2, .hero-deco-3, .hero-deco-4, .hero-deco-5 { display: none; }
.l-hero .l-container { position: relative; z-index: 1; }
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-left { padding-right: 1rem; margin-left: -4rem; margin-top: -3rem; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-accent {
  color: var(--green-dark);
}
.hero-dot {
  color: var(--pig-pink);
}
.hero-p {
  font-size: 1.35rem; color: var(--text-mid); max-width: 520px;
  line-height: 1.6; margin-bottom: 2.5rem; font-weight: 500;
}
.hero-ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex; align-items: center; gap: 1.8rem;
  margin-top: 2.5rem;
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
}
.hero-stat-num {
  font-size: 1.6rem; font-weight: 700; color: var(--text); line-height: 1;
}
.hero-stat-label {
  font-size: 0.92rem; font-weight: 500; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.6px;
}
.hero-stat-divider {
  color: var(--border); font-size: 1.4rem; line-height: 1;
}

.btn-watch-demo {
  display: flex; align-items: center; gap: 0.6rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.95rem; font-weight: 600;
  color: var(--pink-dark); transition: color 0.2s;
}
.btn-watch-demo:hover { color: var(--pink); }
.btn-play-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink-pale); border: 1.5px solid var(--pink-light);
  color: var(--pink-dark); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(181,96,122,0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-watch-demo:hover .btn-play-icon {
  box-shadow: 0 4px 14px rgba(181,96,122,0.2); transform: scale(1.06);
}

/* ─── FLOATING LAPTOP ─── */
.lp-scene {
  perspective: 8000px;
  perspective-origin: 50% 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-scene.reveal.in {
  opacity: 1;
  transform: none;
}
.lp-mockup-img {
  width: 165%; max-width: none; height: auto;
  position: relative; right: -60px; top: 20px;
}
.lp-body {
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(10deg) rotateZ(-3deg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── LID (screen) ── */
.lp-lid {
  width: 100%;
  transform-style: preserve-3d;
}
.lp-bezel {
  background: linear-gradient(180deg, #1f1f1f 0%, #181818 50%, #141414 100%);
  border-radius: 12px 12px 2px 2px;
  padding: 14px 12px 8px;
  position: relative;
  border: 2px solid #3a3a3a;
  border-bottom: none;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.2),
    0 20px 50px rgba(0,0,0,0.25),
    0 30px 70px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform-style: preserve-3d;
}
.lp-bezel::before {
  display: none;
}
.lp-bezel::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(90deg, #1a1a1a 0%, #0e0e0e 100%);
  border-radius: 0 10px 2px 0;
  transform: translateX(100%) rotateY(90deg);
  transform-origin: left center;
}
.lp-cam {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8e8ea 0%, #c0c0c4 30%, #555 70%, #333 100%);
  border: 1px solid #555;
  z-index: 2;
  box-shadow: 0 0 3px rgba(255,255,255,0.3);
}
.lp-display {
  border-radius: 3px;
  overflow: hidden;
}

/* ── HINGE ── */
.lp-lid {
  position: relative;
  z-index: 2;
}
.lp-lid::after {
  display: none;
}

/* ── BASE (keyboard area) ── */
.lp-base {
  width: 100%;
  background:
    linear-gradient(180deg,
      #dedee2 0%, #d8d8dc 8%, #d4d4d8 20%,
      #d0d0d4 40%, #cbcbd0 60%, #c6c6ca 80%,
      #c0c0c4 95%, #bbbbbf 100%);
  border-radius: 0 0 8px 8px;
  padding: 60px 16px 90px;
  transform-origin: top center;
  transform: rotateX(-80deg);
  transform-style: preserve-3d;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    inset 0 0 0 0.5px rgba(255,255,255,0.35),
    0 2px 4px rgba(0,0,0,0.08),
    0 6px 14px rgba(0,0,0,0.12),
    0 12px 30px rgba(0,0,0,0.10),
    0 20px 50px rgba(0,0,0,0.06);
}
.lp-base::before,
.lp-base::after {
  display: none;
}

/* ── SIDE PANELS (3D thickness + ports) ── */
.lp-side-l,
.lp-side-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}
.lp-side-l {
  display: none;
}
.lp-side-r {
  display: none;
}
.lp-port {
  background: #2a2a2c;
  box-shadow: inset 0 0.5px 1px rgba(0,0,0,0.4);
}
.lp-port-usbc { width: 5px; height: 2.5px; border-radius: 1.5px; }
.lp-port-jack { width: 3px; height: 3px; border-radius: 50%; }
.lp-port-hdmi { width: 5px; height: 3.5px; border-radius: 1px; }
.lp-port-sd { width: 5px; height: 5px; border-radius: 1px; }

/* keyboard area */
.lp-base-inner {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, transparent 100%);
  border-radius: 4px;
  padding: 4px;
}
.lp-speaker-l,
.lp-speaker-r {
  width: 20px;
  flex-shrink: 0;
  border-radius: 3px;
  background-color: rgba(0,0,0,0.03);
  background-image: radial-gradient(circle, rgba(0,0,0,0.2) 0.4px, transparent 0.4px);
  background-size: 2.5px 2.5px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
}

/* ── 3D KEYBOARD WITH KEYS ── */
.lp-kb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  background: linear-gradient(180deg, #1a1a1c 0%, #151517 100%);
  border-radius: 4px;
  padding: 4px 3px;
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.4),
    inset 0 0 1px rgba(0,0,0,0.3),
    0 0.5px 0 rgba(255,255,255,0.1);
}
.kb-row {
  display: flex;
  gap: 2.5px;
}
.ky {
  flex: 1;
  height: 28px;
  background: linear-gradient(180deg, #3e3e42 0%, #353538 20%, #2e2e31 60%, #292929 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.32rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  position: relative;
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.6),
    0 1.5px 0 0.5px rgba(0,0,0,0.55),
    0 2px 1px rgba(0,0,0,0.25),
    0 3px 3px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -0.5px 0 rgba(0,0,0,0.15);
  cursor: default;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0.5px 1px rgba(0,0,0,0.5);
  transform: translateY(-1px);
}
.ky::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 40%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}
.ky::after {
  content: '';
  position: absolute;
  top: 1px; left: 2px; right: 2px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
  border-radius: 2px 2px 50% 50%;
  pointer-events: none;
}

/* function row keys */
.kf { height: 14px; font-size: 0.24rem; }
.kf-b { height: 28px; font-size: 0.28rem; }
.kw-esc { flex: 1.3; }
.kw-pwr { flex: 1; font-size: 0.3rem; }
.kw-del { flex: 1.5; }
.kw-tab { flex: 1.5; }
.kw-caps { flex: 1.75; }
.kw-ret { flex: 2.1; }
.kw-shift { flex: 2.2; }
.kw-rshift { flex: 1.8; }
.kw-cmd { flex: 1.25; }
.kw-space { flex: 5.5; }

/* arrow keys */
.ky-arrows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 2.5;
}
.ka-h {
  height: 13px !important;
  font-size: 0.22rem !important;
}
.ka-u { width: 50%; margin: 0 auto; }
.ka-lr {
  display: flex;
  gap: 1px;
}
.ka-lr .ky { flex: 1; }

/* trackpad */
.lp-pad {
  width: 46%;
  aspect-ratio: 4/3;
  margin: 40px auto 0;
  background:
    linear-gradient(180deg, #c8c8cc 0%, #c2c2c6 30%, #bcbcc0 70%, #b8b8bc 100%);
  border-radius: 6px;
  border: 0.5px solid rgba(0,0,0,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 2px rgba(0,0,0,0.04),
    inset 0 0 4px rgba(0,0,0,0.03),
    0 0.5px 0 rgba(255,255,255,0.3),
    0 1px 3px rgba(0,0,0,0.06);
  position: relative;
}
.lp-pad::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 30%, rgba(0,0,0,0.02) 100%);
  pointer-events: none;
}

/* front scoop */
.lp-scoop {
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 16%;
  height: 3px;
  background: linear-gradient(180deg, #a0a0a5 0%, #b5b5ba 50%, #c0c0c5 100%);
  border-radius: 0 0 6px 6px;
  box-shadow:
    inset 0 1px 1px rgba(0,0,0,0.1),
    inset 0 -0.5px 0 rgba(255,255,255,0.2),
    0 1px 2px rgba(0,0,0,0.08);
}

/* ── GROUND SHADOW ── */
.lp-ground {
  width: 100%;
  height: 200px;
  margin-top: -300px;
  position: relative;
  pointer-events: none;
  z-index: -1;
}
/* parallelogram shadow — laptop outline cast to the right */
.lp-ground::before {
  content: '';
  position: absolute;
  top: 10px; left: 5%;
  width: 140%;
  height: 50px;
  background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.03) 80%, transparent 100%);
  transform: skewX(-50deg);
  transform-origin: top right;
  filter: blur(6px);
}
.lp-ground::after {
  content: '';
  position: absolute;
  top: 5px; left: 8%;
  width: 130%;
  height: 40px;
  background: linear-gradient(to right, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.05) 50%, transparent 90%);
  transform: skewX(-50deg);
  transform-origin: top right;
  filter: blur(14px);
}
.mac-ui {
  background: var(--bg);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 120px 1fr;
  height: 280px;
  overflow: hidden;
  font-family: var(--font);
  -webkit-font-smoothing: subpixel-antialiased;
}

/* sidebar */
.mac-sidebar {
  background: var(--green-pale);
  padding: 1rem 0.7rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.mac-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.mac-nav-item {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.35rem 0.6rem;
  border-radius: 5px;
  cursor: default;
}
.mac-nav-active {
  background: var(--green-dark);
  color: #fff;
}

/* main content */
.mac-main {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mac-header { }
.mac-greeting {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.mac-level {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* stats row */
.mac-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.mac-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  border-top: 2px solid var(--green);
}
.mac-stat-pink { border-top-color: var(--pink); }
.mac-stat-num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.mac-stat-label {
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 0.15rem;
}

/* charts */
.mac-charts-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem;
}
.mac-chart-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
}
.mac-chart-wide { }
.mac-chart-full { }
.mac-chart-title {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

/* pie chart */
.mac-pie {
  position: relative;
  width: 70px; height: 70px;
  margin: 0 auto 0.3rem;
}
.mac-pie-svg { width: 100%; height: 100%; }
.mac-pie-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}
.mac-pie-legend {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.mac-legend-item {
  font-size: 0.45rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 2px;
}
.mac-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot-green { background: var(--green); }
.mac-dot-pink { background: var(--pink); }
.mac-dot-gray { background: var(--border); }

/* bar chart */
.mac-bar-chart { display: flex; flex-direction: column; gap: 0.3rem; }
.mac-bar-row { display: flex; align-items: center; gap: 0.4rem; }
.mac-bar-label { font-size: 0.5rem; font-weight: 600; color: var(--text-mid); min-width: 42px; }
.mac-bar-track { flex: 1; height: 5px; background: var(--border); border-radius: 999px; overflow: hidden; }
.mac-bar-fill { height: 100%; background: var(--green); border-radius: 999px; }
.mac-bar-pink { background: var(--pink); }
.mac-bar-val { font-size: 0.48rem; font-weight: 700; color: var(--text-mid); min-width: 20px; text-align: right; }

/* weekly activity chart */
.mac-week-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 50px;
  gap: 3px;
}
.mac-week-bar {
  flex: 1;
  height: var(--h);
  background: var(--green);
  border-radius: 3px 3px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.mac-week-pink { background: var(--pink); }
.mac-week-bar span {
  font-size: 0.42rem;
  font-weight: 700;
  color: var(--text-soft);
  position: absolute;
  bottom: -10px;
}

.mac-card-progress {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.mac-card-fill {
  height: 100%;
  background: var(--pink);
  border-radius: 999px;
}


/* ABOUT SECTION */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1rem;
}
.about-block {
  position: relative;
  background: #fff; padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-block:hover { box-shadow: var(--shadow-md); }
.about-block:nth-child(odd):hover { transform: translateY(-4px) rotate(-1deg); }
.about-block:nth-child(even):hover { transform: translateY(-4px) rotate(1deg); }
.about-block:nth-child(odd) { border-top: 3px solid var(--green); }
.about-block:nth-child(even) { border-top: 3px solid var(--pink); }
.about-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--border); line-height: 1;
}
.about-icon { margin-bottom: 1.1rem; }
.about-block h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.6rem;
}
.about-block p {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.7;
}

/* FOUNDER SECTION */
.founder-section { background: #C2D4BC; }

.founder-headline { text-align: center; margin-bottom: 3rem; }
.fh-script {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400; color: var(--text-mid);
  line-height: 1.3;
}
.fh-display {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 6rem);
  font-weight: 700; color: var(--green-dark);
  line-height: 0.95; letter-spacing: -2px;
  margin-top: -0.25rem;
}
.fh-display::after {
  content: '.';
  color: var(--pig-pink);
}

.founder-layout {
  display: flex; flex-direction: column;
  align-items: center; gap: 2.5rem;
}
.founder-img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius);
  border: 3px solid var(--text);
  display: block;
  box-shadow: 6px 6px 0 var(--text);
}
.founder-text {
  max-width: 680px; text-align: center;
}

/* realistic phone mockup — landscape orientation */
.phone-outer {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  z-index: 1;
}
.phone-body-wrap {
  background: #1a1a1a;
  border-radius: 48px;
  padding: 14px 16px;
  box-shadow:
    0 30px 70px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
}
.phone-btn {
  position: absolute;
  background: #2a2a2a;
  border-radius: 3px;
}
/* Volume buttons on top edge (landscape) */
.phone-vol-up   { width: 34px; height: 3px; top: -5px; left: 28%; }
.phone-vol-down { width: 34px; height: 3px; top: -5px; left: 40%; }
/* Power button on bottom edge (landscape) */
.phone-power    { width: 46px; height: 3px; bottom: -5px; right: 22%; }
.phone-screen {
  background: none;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 19.5/9;
  position: relative;
}
/* Notch on left side for landscape */
.phone-notch {
  position: absolute;
  top: 50%; left: 8px;
  transform: translateY(-50%);
  width: 20px; height: 78px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.phone-notch-cam {
  width: 8px; height: 8px;
  background: #1f1f1f;
  border-radius: 50%;
  border: 1px solid #333;
}
.phone-notch-bar { width: 4px; height: 28px; background: #1a1a1a; border-radius: 2px; }
.phone-status-bar {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 10px 24px 6px 44px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,0.85); font-family: var(--font);
  z-index: 5;
}
.phone-icons {
  display: flex; align-items: center; gap: 5px;
}
.phone-img-slot {
  position: absolute; inset: 0;
  overflow: hidden;
}
.phone-analytics-img {
  position: absolute; inset: -15%;
  width: 130%; height: 130%;
  object-fit: cover;
}
.phone-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: transparent;
  padding: .6rem 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.phone-home-bar {
  width: 100px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}

/* founder text */
.founder-text p {

  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem;
}
.founder-text p:last-child { margin-bottom: 0; font-style: italic; color: var(--text); }

/* UNIVERSITY HEADLINE */
.l-h2.uni-headline { max-width: 100%; }

/* SECTIONS */
.l-section { padding: 6rem 0; position: relative; }
.alt-section { background: var(--green-pale); }

.l-label {
  display: inline-block; color: var(--text-soft);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.l-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  letter-spacing: -1px; line-height: 1.2; margin-bottom: 1rem;
  max-width: 600px; color: var(--green-dark);
}
.l-h2::after {
  content: '.';
  color: var(--pig-pink);
}
.l-p {
  font-size: 1rem; color: var(--text-mid); max-width: 480px;
  line-height: 1.75; margin-bottom: 2.5rem;
}

/* PROBLEM */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin: 2.5rem 0; border: none; border-radius: 0; overflow: visible; background: none;
}
.stat-card {
  background: #fff; padding: 2.5rem 2.1rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card-alt { background: var(--pink-pale); border-color: var(--pink-light); border-left: 3px solid var(--pink); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.6rem; font-weight: 700; letter-spacing: -2px; line-height: 1;
  margin-bottom: 0.85rem; color: var(--text);
}
.stat-card p { font-size: 1rem; color: var(--text-mid); line-height: 1.65; }

/* COMPARISON TABLE */
.compare-table-wrap {
  margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: #fff;
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  font-family: var(--font-display); font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; text-align: left;
  padding: 1.15rem 1.4rem; background: #fff; color: var(--text-mid);
  border-bottom: 2px solid var(--border);
}
.compare-table th:nth-child(2) { background: var(--red-pale); border-bottom-color: var(--red-light); }
.compare-table th:last-child { background: var(--green-pale); border-bottom-color: var(--green-light); }
.compare-table th:not(:last-child) { border-right: 1px solid var(--border); }
.compare-stackd { color: var(--green-dark); }
.check { color: var(--green-dark); font-weight: 700; margin-right: 0.35rem; }
.compare-table td {
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.65;
  padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--border); vertical-align: top;
  background: #fff;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text); font-weight: 700; }
.compare-table td:last-child { color: var(--green-dark); font-weight: 700; }

/* MODULES — CAROUSEL */
.green-num-bg { background: var(--green-light); color: var(--green-dark); }
.pink-num-bg  { background: var(--pink-light);  color: var(--pink-dark); }

.cc-viewport {
  position: relative; width: 100%;
  margin-top: 1.25rem; padding: 0 0 0.5rem;
}
.cc-track {
  display: flex; gap: 1.25rem; overflow-x: auto;
  scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding: 1.25rem 5.5rem;
}
.cc-track::-webkit-scrollbar { display: none; }

.cc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); color: var(--text-mid);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cc-arrow:hover { background: var(--green-pale); color: var(--green-dark); box-shadow: var(--shadow-md); transform: translateY(-50%) scale(1.06); }
.cc-prev { left: 1.25rem; }
.cc-next { right: 1.25rem; }

.cc-card {
  flex: 0 0 260px;
  background: #fff; padding: 1.6rem 1.5rem;
  border-radius: var(--radius); border: 1px solid var(--border); border-top: 3px solid var(--green);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cc-card.cc-pink { border-top-color: var(--pink); }
.cc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cc-num {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0;
  margin-bottom: 0.9rem;
}
.cc-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text);
}
.mp-hook {
  font-size: 0.88rem; font-weight: 600; font-style: italic;
  margin-bottom: 0.75rem; line-height: 1.5;
}
.cc-green .mp-hook { color: var(--green-dark); }
.cc-pink .mp-hook { color: var(--pink-dark); }
.mp-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mp-tags span {
  font-size: 0.76rem; font-weight: 600; padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--border); color: var(--text-mid);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.mp-tags span:hover, .mp-tags span:focus-visible {
  background: var(--pink-pale); border-color: var(--pink-light); color: var(--pink-dark);
  transform: translateY(-1px);
  outline: none;
}

/* TERM DEFINITION MODAL */
.term-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(44,62,45,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.term-modal-overlay.visible { opacity: 1; pointer-events: auto; }
.term-modal {
  position: relative; background: #fff; max-width: 420px; width: 100%;
  border-radius: var(--radius); padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  transform: translateY(12px) scale(0.97); transition: transform 0.2s;
}
.term-modal-overlay.visible .term-modal { transform: translateY(0) scale(1); }
.term-modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: none; color: var(--text-mid); cursor: pointer;
  font-size: 0.85rem; transition: background 0.2s, color 0.2s;
}
.term-modal-close:hover { background: var(--pink-pale); color: var(--pink-dark); }
.term-modal-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--pink-dark); margin-bottom: 0.4rem;
}
.term-modal-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.85rem;
}
.term-modal-def { font-size: 0.98rem; color: var(--text-mid); line-height: 1.65; }

/* GAMIFICATION */
.gam-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; margin-top: 1rem; align-items: center; }
.gam-subh {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700; margin-bottom: 0.85rem; color: var(--text);
}
.gam-left > p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }

.level-ladder { display: flex; flex-direction: column; }
.ll-rung { display: flex; align-items: stretch; gap: 1rem; }
.ll-left { display: flex; flex-direction: column; align-items: center; }
.ll-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid var(--border); background: #fff; flex-shrink: 0; margin-top: 6px;
}
.active-dot { border-color: var(--green); background: var(--green); }
.gold-dot   { border-color: var(--pink); background: var(--pink); }
.ll-line { width: 2px; flex: 1; background: var(--border); }
.ll-last .ll-left { height: 20px; }
.ll-content { padding-bottom: 1.4rem; }
.ll-last .ll-content { padding-bottom: 0; }
.ll-lvl  { display: block; font-size: 0.9rem; color: var(--text-soft); font-weight: 600; margin-bottom: 0.15rem; }
.ll-name { display: block; font-size: 1.25rem; font-weight: 700; color: var(--text-mid); }
.active-rung .ll-name { color: var(--green-dark); font-weight: 700; }

.fc-stack { display: flex; flex-direction: column; gap: 1rem; }
.fc-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: transform 0.25s, box-shadow 0.25s;
  border-left: 3px solid var(--green);
}
.fc-item:nth-child(even) { border-left-color: var(--pink); }
.fc-item:last-child { border-bottom: none; }
.fc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fc-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: currentColor;
  transition: transform 0.25s;
}
.fc-item:hover .fc-icon { transform: scale(1.1) rotate(-4deg); }
.green-fc { background: var(--green-light); color: var(--green-dark); }
.pink-fc  { background: var(--pink-light);  color: var(--pink-dark); }
.fc-item h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--text); }
.fc-item p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.55; }

/* UNIVERSITIES */
.uni-layout { display: grid; grid-template-columns: 1.15fr 1.35fr; gap: 2.5rem; margin-top: 2.5rem; align-items: center; }
.uni-reasons { display: flex; flex-direction: column; gap: 1.1rem; }
.ur {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; border-left: 3px solid var(--green);
}
.ur:nth-child(even) { border-left-color: var(--pink); }
.ur:last-child { border-bottom: none; }
.ur-icon {
  width: 44px; height: 44px; background: var(--green-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--green-dark); flex-shrink: 0;
}
.ur-icon svg { width: 22px; height: 22px; }
.ur strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text); }
.ur p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.5; }

.admin-mockup { position: static; }
.admin-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  overflow: hidden; box-shadow: var(--shadow-md); width: 100%;
}
.admin-hdr {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.75rem; display: flex; align-items: center; justify-content: space-between;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
}
.live-badge {
  font-size: 0.78rem; font-weight: 700; color: var(--green-dark);
  background: var(--green-light); padding: 0.2rem 0.65rem; border-radius: var(--radius-sm); letter-spacing: 0.3px;
}
.admin-metrics { display: flex; justify-content: space-around; padding: 2.5rem 2rem; border-bottom: 1px solid var(--border); }
.am { text-align: center; }
.am-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; letter-spacing: -1px; color: var(--text); }
.am-green { color: var(--green-dark); }
.am-pink  { color: var(--pink-dark); }
.am-lbl { font-size: 0.85rem; color: var(--text-soft); font-weight: 600; margin-top: 0.3rem; }
.admin-bars { padding: 2.25rem; }
.ab-label { font-size: 0.85rem; font-weight: 700; color: var(--text-mid); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.8px; }
.ab-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.ab-name { font-size: 0.95rem; font-weight: 600; min-width: 84px; color: var(--text); }
.ab-track { flex: 1; height: 12px; background: var(--border); border-radius: 999px; overflow: hidden; }
.ab-fill { height: 100%; width: 0; background: var(--green); border-radius: 999px; transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.ab-pink { background: var(--pink); }
.ab-pct  { font-size: 0.92rem; font-weight: 700; color: var(--text-mid); min-width: 40px; text-align: right; }

/* PRICING */
.pricing-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 560px;
}
.pricing-inner .l-h2 { max-width: 100%; }
.pricing-inner .l-p { max-width: 100%; margin-left: auto; margin-right: auto; }

.waitlist-modal { max-width: 400px; }
.waitlist-modal-sub {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem;
}
.waitlist-form { display: flex; flex-direction: column; gap: 0.85rem; }
.waitlist-form[hidden] { display: none; }
.waitlist-form .field-group { display: flex; flex-direction: column; gap: 0.3rem; }
.waitlist-form label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.waitlist-form input, .waitlist-form select {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.88rem; font-family: inherit;
  color: var(--text); background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-form input:focus, .waitlist-form select:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(126,201,164,0.1);
}
.waitlist-submit { width: 100%; text-align: center; margin-top: 0.15rem; }
.waitlist-success { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.85rem; padding: 0.5rem 0 0.25rem; overflow: visible; }
.waitlist-success[hidden] { display: none; }
.waitlist-success-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-light);
  color: var(--green-dark); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.waitlist-success p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.waitlist-success strong { color: var(--text); }

/* CTA (in footer) */
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -1.5px; line-height: 1.15;
  color: var(--bg); max-width: 460px;
}
.footer-cta-blurb { font-size: 1rem; color: rgba(255,255,255,0.55); margin-top: -0.75rem; }
.footer-cta .btn-primary-lg {
  background: var(--bg); color: var(--green-dark); border: none;
}
.footer-cta .btn-primary-lg:hover {
  background: #F0E7D6; transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* FAQ */
.faq-list { max-width: 680px; margin-top: 2.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.75rem; background: #fff;
  border-left: 3px solid var(--green);
  transition: box-shadow 0.25s;
}
.faq-item:nth-child(even) { border-left-color: var(--pink); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  color: var(--text); padding: 1.1rem 1.5rem; cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--text-soft);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.75;
  padding: 0 1.5rem 1.25rem;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

.reveal-el {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-el.in { opacity: 1; transform: none; }

/* stagger reveal-el siblings */
.reveal-el:nth-child(2) { transition-delay: .08s; }
.reveal-el:nth-child(3) { transition-delay: .16s; }
.reveal-el:nth-child(4) { transition-delay: .24s; }
.reveal-el:nth-child(5) { transition-delay: .32s; }
.reveal-el:nth-child(6) { transition-delay: .4s; }
.reveal-el:nth-child(7) { transition-delay: .48s; }
.reveal-el:nth-child(8) { transition-delay: .56s; }

/* PHONE DECORATIONS */
.phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.phone-glow-1 {
  width: 320px; height: 320px;
  top: -30px; left: -40px;
  background: radial-gradient(circle, rgba(155,184,138,0.25) 0%, transparent 65%);
}
.phone-glow-2 {
  width: 280px; height: 280px;
  bottom: -20px; right: -50px;
  background: radial-gradient(circle, rgba(212,137,158,0.2) 0%, transparent 65%);
}
.phone-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.phone-ring-1 {
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(155,184,138,0.15);
}
.phone-ring-2 {
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(212,137,158,0.1);
}

/* PHONE REVEAL */
.phone-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone-reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* FOOTER */
.l-footer { background: var(--green-dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 6rem 0 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding-bottom: 3.5rem;
}
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }

.footer-top { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.9rem; max-width: 420px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo { color: #fff; margin-bottom: 0; font-size: 1.6rem; }
.footer-logo::after { color: var(--pig-pink); }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-fine { font-size: 0.75rem; color: rgba(255,255,255,0.2); padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.08); }

.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-col-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.2rem;
}
.footer-col a {
  font-size: 0.98rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover { color: #fff; transform: translateX(2px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-left { margin-left: 0; margin-top: 0; padding-right: 0; min-width: 0; }
  .hero-stats { flex-wrap: wrap; row-gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .founder-layout { grid-template-columns: 1fr; }
  .phone-outer { max-width: 480px; }
  .gam-layout, .uni-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 700px) {
  .cc-viewport { margin-top: 1.75rem; }
  .cc-card { flex-basis: 220px; }
  .cc-track { padding: 1.25rem 3.25rem; }
  .cc-arrow { width: 38px; height: 38px; }
  .cc-prev { left: 0.5rem; }
  .cc-next { right: 0.5rem; }
  .l-hero { padding: 6rem 0 2.5rem; }
  .lp-mockup-img { width: 100%; right: 0; top: 0; }
  .mac-ui { grid-template-columns: 1fr; }
  .mac-sidebar { display: none; }
  .mac-stats-row { grid-template-columns: repeat(2, 1fr); }
  .mac-charts-row { grid-template-columns: 1fr; }
  .lp-body { transform: rotateX(-3deg) rotateY(8deg) rotateZ(-1deg); }
  .lp-base { width: 104%; margin-left: -2%; }
  .l-nav-links a:not(.btn-sm):not(.btn-outline-sm) { display: none; }
  .nav-burger { display: block; }
  .nav-logo-wrap { margin-left: 0; }
  .btn-sm { font-size: 0.78rem !important; padding: 0.42rem 0.85rem; }
  .btn-outline-sm { font-size: 0.78rem !important; padding: 0.42rem 0.8rem; }
  .footer-cta { align-items: center; text-align: center; }
  .cta-h2 { max-width: 100%; }
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 640px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .footer-brand { max-width: 100%; }
  .footer-links { gap: 2.5rem; }
}
