/* ============================================================
   PROMPTHOUSE — Forest / Sand / Coral edition
   ============================================================ */

:root {
  /* Warm sand base */
  --bg: #EFE7D6;
  --bg-soft: #E5DBC4;
  --bg-elevated: #F7F1E2;
  --ink: #0A0A0A;
  --ink-soft: #2A2A2A;
  --muted: #6B6357;
  --line: rgba(10,10,10,0.10);

  /* PromptHouse brand accents (forest green) */
  --brand: #0F3D2E;
  --brand-light: #1F6B4E;
  --brand-glow: #3F9E77;

  /* Accent orb colors */
  --sphere-orange: #FF6E4A;
  --sphere-orange-deep: #B34122;
  --sphere-purple: #A67CFF;
  --sphere-purple-deep: #6A3EE8;
  --sphere-mint: #B8D5C8;
  --sphere-cobalt: #1F6B4E;
  --sphere-cream: #E8DFC8;

  /* type */
  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

  /* radius / motion */
  --r-pill: 999px;
  --r-card: 20px;
  --r-lg: 28px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-swift: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em, .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
b, strong { font-weight: 600; color: var(--ink); }

/* --------- GRAIN OVERLAY --------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------- CURSOR SPOTLIGHT (Hanzo-inspired) --------- */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,107,78,0.10), rgba(255,110,74,0.05) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
  filter: blur(60px);
  will-change: transform;
}

/* --------- CONTAINER --------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg-elevated);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--ink);
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-xl { padding: 18px 32px; font-size: 16px; }
.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* --------- NAV --------- */
.nav {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 50;
  transition: all 0.4s var(--ease-out);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  background: rgba(251, 248, 241, 0.75);
  backdrop-filter: saturate(1.4) blur(20px);
  -webkit-backdrop-filter: saturate(1.4) blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 30px -12px rgba(0,0,0,0.08);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 600; letter-spacing: -0.02em;
}
.brand i {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  margin-left: 4px;
}
.nav-links {
  display: flex; gap: 24px; margin-left: auto;
  font-size: 14px; color: var(--ink-soft);
}
.nav-links a { transition: opacity 0.2s; }
.nav-links a:hover { opacity: 0.6; }
.nav-cta { display: flex; gap: 8px; }
.nav-cta .btn { padding: 9px 18px; font-size: 13px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 32px 80px;
  min-height: 100vh;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* diagonal light sweep (Hanzo) */
.light-sweep {
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0.15) 55%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: sweep 12s ease-in-out infinite;
}
@keyframes sweep {
  0%,100% { transform: translateX(-8%); }
  50% { transform: translateX(8%); }
}

/* orbs (soft blurred color) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(31,107,78,0.5), transparent 65%);
  top: -80px; right: -100px;
  animation: float1 18s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,110,74,0.35), transparent 65%);
  bottom: -60px; left: -60px;
  animation: float2 22s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(166,124,255,0.30), transparent 65%);
  top: 40%; left: 45%;
  animation: float1 26s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.15); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-60px,20px) scale(1.1); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 12px rgba(34,197,94,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  position: relative;
}
.hero-title .line {
  display: block;
  padding: 0;
  opacity: 0;
  transform: translateY(28px);
}
.hero-title .line.hero-line-anim {
  animation: heroLineIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Fallback if JS is blocked/late — reveal lines after a short delay */
@keyframes heroLineFallback {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title .line:nth-child(1) { animation: heroLineFallback 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.hero-title .line:nth-child(2) { animation: heroLineFallback 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.hero-title .line:nth-child(3) { animation: heroLineFallback 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.41s both; }
.hero-title .word.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* inline mixed media (Hanzo) */
.inline-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: clamp(80px, 12vw, 180px);
  height: clamp(60px, 9vw, 130px);
  margin: 0 0.15em;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31,107,78,0.15), rgba(15,61,46,0.05));
  border: 1px solid var(--line);
  transform: rotate(-4deg);
  transition: transform 0.4s var(--ease-swift);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.35), 0 4px 12px -6px rgba(0,0,0,0.2);
}
.inline-media:hover { transform: rotate(2deg) scale(1.06); }
.inline-media img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  filter: hue-rotate(0deg) saturate(1.1);
}

/* 3D icon variant — transparent PNG, no frame, floats freely */
.inline-media.inline-icon {
  width: clamp(90px, 11vw, 150px);
  height: clamp(90px, 11vw, 150px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: rotate(-6deg) translateY(-0.05em);
  animation: iconFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(255,110,74, 0.22)) drop-shadow(0 8px 14px rgba(10, 10, 10, 0.12));
}
.inline-media.inline-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
.inline-media.inline-icon:hover {
  transform: rotate(2deg) scale(1.08) translateY(-0.1em);
}
@keyframes iconFloat {
  0%, 100% { transform: rotate(-6deg) translateY(-0.05em); }
  50%      { transform: rotate(-4deg) translateY(-0.35em); }
}

/* ghost echo behind headline (Hanzo) */
.ghost {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 32vw, 480px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10,10,10,0.05);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  animation: ghostDrift 30s linear infinite;
}
@keyframes ghostDrift {
  0%,100% { transform: translate(-50%, -50%) rotate(-2deg); }
  50% { transform: translate(-48%, -52%) rotate(0deg); }
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-cta {
  display: flex; gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-elevated);
  object-fit: cover;
  margin-left: -12px;
  background: var(--bg-elevated);
}
.avatars img:first-child { margin-left: 0; }
.trust-copy {
  display: flex; flex-direction: column;
  font-size: 13px; color: var(--muted);
}
.stars { color: #FFB020; letter-spacing: 3px; font-size: 14px; }

/* orb strip (ElevenLabs sphere row) */
.orb-strip {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 80px;
  padding: 40px 0;
  z-index: 3;
  overflow: visible;
}
.orb-sphere {
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  filter: contrast(1.05);
  will-change: transform;
}
.orb-sphere::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.9;
}
.sphere-mint {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 35% 30%, #F5F1E8, #B8D5C8 55%, #7CA598 100%);
  animation: sphereFloat 8s ease-in-out infinite;
}
.sphere-purple {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 25%, #F0B8FF 0%, #A67CFF 45%, #4A2EB8 100%);
  animation: sphereFloat 10s ease-in-out infinite reverse;
}
.sphere-orange {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 35% 30%, #FFD199 0%, #FF6E4A 45%, #7A2A0A 100%);
  animation: sphereFloat 12s ease-in-out infinite;
  cursor: pointer;
}
.sphere-cobalt {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, #6B8FE8 0%, #2B4CD8 45%, #0A1A5C 100%);
  animation: sphereFloat 9s ease-in-out infinite reverse;
}
.sphere-cream {
  width: 130px; height: 130px;
  background: radial-gradient(circle at 40% 30%, #FBF8F1, #E8DFC8 55%, #B0A585 100%);
  animation: sphereFloat 11s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
.sphere-orange:hover { transform: scale(1.05); }

@media (max-width: 900px) {
  .orb-strip { gap: 20px; margin-top: 40px; overflow-x: auto; padding: 20px 0; }
  .sphere-orange { width: 220px; height: 220px; }
  .sphere-purple, .sphere-cobalt { width: 150px; height: 150px; }
  .sphere-mint, .sphere-cream { width: 90px; height: 90px; }
}

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
}
.metrics .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric { text-align: left; }
.metric-num {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .metrics .container { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { position: relative; z-index: 2; }
.section-num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bg-elevated);
}
.section-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 900px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.55;
}
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   INSTRUCTOR
   ============================================================ */
.instructor { padding: 120px 0; }
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.instructor-media { position: relative; }
.portrait-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(15,61,46,0.35);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-swift);
}
.portrait-wrap:hover { transform: rotate(0deg) scale(1.02); }
.portrait-wrap img { width: 100%; height: auto; }
.portrait-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at center, rgba(31,107,78,0.4), transparent 60%);
  z-index: -1;
  filter: blur(80px);
}
.instructor-list {
  list-style: none;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.instructor-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 28px;
}
.instructor-list li::before {
  content: '';
  position: absolute; left: 0; top: 22px;
  width: 14px; height: 2px;
  background: var(--brand);
}
.instructor-list li:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .instructor-grid { grid-template-columns: 1fr; gap: 48px; }
  .instructor { padding: 80px 0; }
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients { padding: 100px 0; }
.clients-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.clients-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, transparent 0%, transparent 45%, rgba(241, 237, 228, 0.35) 100%),
    linear-gradient(135deg, rgba(15,61,46, 0.28) 0%, rgba(31,107,78, 0.10) 45%, rgba(255,110,74, 0.18) 100%);
  mix-blend-mode: overlay;
}
.clients-image img { width: 100%; display: block; position: relative; z-index: 1; }
.clients-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(241,237,228,0.4) 0%, transparent 20%, transparent 80%, rgba(241,237,228,0.4) 100%),
    linear-gradient(to right, rgba(241,237,228,0.5) 0%, transparent 15%, transparent 85%, rgba(241,237,228,0.5) 100%);
  pointer-events: none;
}

/* ============================================================
   PROGRAM TABS
   ============================================================ */
.program { padding: 120px 0; }
.tabs {
  display: inline-flex;
  padding: 6px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  gap: 4px;
  margin-bottom: 40px;
}
.tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  font-weight: 500;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--bg-elevated);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tab-dot { width: 8px; height: 8px; border-radius: 50%; }

.tab-panels { position: relative; min-height: 480px; }
.tab-panel {
  display: none;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  animation: panelIn 0.6s var(--ease-swift);
}
.tab-panel.active { display: grid; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-media {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}
.panel-media img { width: 100%; }
.panel-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 40%);
  pointer-events: none;
}
.panel-copy h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.panel-copy p { color: var(--ink-soft); margin-bottom: 20px; line-height: 1.6; }
.checklist { list-style: none; }
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 15px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
}
.checklist li::after {
  content: '';
  position: absolute; left: 4px; top: 20px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--bg-elevated);
  border-bottom: 2px solid var(--bg-elevated);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .tab-panel { grid-template-columns: 1fr; padding: 24px; gap: 32px; }
  .tabs { display: flex; overflow-x: auto; width: 100%; }
  .tab { flex-shrink: 0; padding: 10px 18px; font-size: 13px; }
}

/* ============================================================
   EXPERTS
   ============================================================ */
.experts { padding: 120px 0; }
.experts-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.25);
  position: relative;
}
.experts-frame img { width: 100%; display: block; }

/* ============================================================
   MONETIZE
   ============================================================ */
.monetize { padding: 100px 0; }
.monetize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mon-card {
  padding: 40px 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.mon-card::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(31,107,78,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  filter: blur(30px);
}
.mon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(15,61,46,0.25);
}
.mon-card:hover::before { opacity: 1; }
.mon-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 20px;
}
.mon-card h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 24px; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mon-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

@media (max-width: 900px) { .monetize-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 120px 0; background: var(--bg-soft); }
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tst {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: transform 0.3s var(--ease-out);
}
.tst:hover { transform: translateY(-4px); }
.tst-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.tst-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--sphere-orange);
  flex-shrink: 0;
}
.tst-quote { font-size: 16px; line-height: 1.6; color: var(--ink); margin-bottom: 20px; }
.tst footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.tst-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.tst-meta { line-height: 1.35; }
.tst-meta span { color: var(--ink); font-weight: 500; display: inline; }
@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AWARDS
   ============================================================ */
.awards { padding: 120px 0; }
.awards-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px -40px rgba(15,61,46,0.35);
  transition: transform 0.5s var(--ease-swift);
}
.awards-image:hover { transform: scale(1.02); }
.awards-image img { width: 100%; }

/* ============================================================
   CERTIFIED
   ============================================================ */
.certified {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.certified .section-num { margin-left: auto; margin-right: auto; }
.cert-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cert-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
}
.cert-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
.cert-item:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
.cert-item img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
}
.cert-item h3 {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cert-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-item { border-bottom: 1px solid var(--line); }
  .cert-item:not(:nth-child(3n)) { border-right: 0; }
  .cert-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .cert-item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 640px) {
  .cert-grid { grid-template-columns: 1fr; }
  .cert-item,
  .cert-item:nth-child(odd),
  .cert-item:not(:nth-child(3n)) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cert-item:last-child { border-bottom: 0; }
  .cert-item { padding: 24px 0; }
}

/* ============================================================
   STACK
   ============================================================ */
.stack { padding: 120px 0; background: var(--bg-soft); }
.stack-group { margin-top: 56px; }
.stack-group-bonuses { margin-top: 72px; }
.stack-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(10,10,10,0.16);
}
.stack-group-head span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stack-group-head p {
  color: var(--muted);
  font-size: 14px;
}
.stack-core,
.stack-bonuses {
  display: grid;
  gap: 20px;
}
.stack-core { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stack-bonuses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stack-card {
  padding: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.stack-feature {
  grid-column: 1 / -1;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: stretch;
  background: var(--brand);
  color: var(--bg-elevated);
}
.stack-feature .stack-copy {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.stack-feature .stack-tag { color: rgba(247,241,226,0.78); }
.stack-feature h3,
.stack-feature .stack-val b { color: var(--bg-elevated); }
.stack-feature .stack-val { border-color: rgba(247,241,226,0.18); color: rgba(247,241,226,0.66); }
.stack-feature .stack-media { margin-top: 0; height: 100%; aspect-ratio: auto; }
.stack-support { min-height: 510px; }
.stack-bonus { min-height: 500px; }
.stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.15);
  border-color: rgba(10,10,10,0.2);
}
.stack-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.stack-card h3 {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 12px;
}
.stack-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-bottom: 20px; max-width: 58ch; }
.stack-card.stack-feature p { color: #DCE3D8; }
.stack-val {
  font-size: 13px; color: var(--muted);
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
}
.stack-val b { color: var(--brand); font-size: 15px; font-weight: 600; }
.stack-media {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg));
}
.stack-media img { width: 100%; height: 100%; object-fit: cover; }
.stack-media-contain img { object-fit: contain; padding: 18px; }

@media (max-width: 1000px) {
  .stack-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .stack-feature .stack-media { aspect-ratio: 16/9; }
  .stack-support,
  .stack-bonus { min-height: 470px; }
}
@media (max-width: 600px) {
  .stack-group { margin-top: 44px; }
  .stack-group-bonuses { margin-top: 56px; }
  .stack-group-head { display: block; }
  .stack-group-head p { margin-top: 8px; }
  .stack-core,
  .stack-bonuses { grid-template-columns: 1fr; }
  .stack-card { padding: 24px; }
  .stack-support,
  .stack-bonus { min-height: 0; }
}

/* ============================================================
   OFFER / PRICE
   ============================================================ */
.offer { padding: 120px 0; }
.offer-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 32px;
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(15,61,46,0.25);
}
.offer-glow {
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(31,107,78,0.25), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.offer-inner { position: relative; z-index: 1; }
.offer-card .section-num { margin-left: auto; margin-right: auto; }
.offer-title {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.offer-sub { color: var(--muted); margin-bottom: 32px; }
.offer-sub s { color: var(--ink); font-family: var(--font-serif); font-style: italic; font-size: 20px; }

.price-block { margin: 24px 0 40px; }
.price-eyebrow {
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.dollar { font-size: 36px; margin-right: 4px; }
.amount { font-size: clamp(72px, 10vw, 128px); }
.price-note { font-size: 14px; color: var(--muted); margin-top: 8px; }

.offer-checklist {
  list-style: none;
  text-align: left;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin-bottom: 40px;
}
.offer-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.offer-checklist li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand);
}
.offer-checklist li::after {
  content: '';
  position: absolute; left: 4px; top: 19px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--bg-elevated);
  border-bottom: 2px solid var(--bg-elevated);
  transform: rotate(-45deg);
}

.guarantee {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--r-card);
  text-align: left;
  font-size: 13px; color: var(--ink-soft);
}
.guar-badge {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink); color: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  text-align: center;
  line-height: 1.1;
  padding: 4px;
}

@media (max-width: 600px) {
  .offer-card { padding: 40px 24px; }
  .offer-checklist { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--bg-soft); }
.faq-list { max-width: 820px; }
.faq-item {
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.3s var(--ease-out);
}
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  font-size: 24px; color: var(--muted);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .chev { transform: rotate(45deg); color: var(--brand); }
.faq-body {
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
  animation: faqIn 0.4s var(--ease-swift);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FINAL
   ============================================================ */
.final {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.orb-final {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle,
    rgba(31,107,78,0.35) 0%,
    rgba(15,61,46,0.15) 40%,
    transparent 70%);
  filter: blur(60px);
  z-index: -1;
}
.final-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 0 auto 24px;
}
.final-sub { font-size: 19px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.foot-legal { font-size: 12px; color: var(--muted); }
.foot-legal a { text-decoration: underline; }
.disclaimer { margin-top: 12px; font-size: 11px; line-height: 1.55; opacity: 0.75; }

@media (max-width: 700px) {
  .foot-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   REVEAL ANIMATIONS (Hanzo-inspired scroll reveals)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-swift), transform 0.9s var(--ease-swift);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   BENTO GRID — clean, modern, ElevenLabs-tuned
   ============================================================ */
.bento-section {
  padding: 100px 0 40px;
  position: relative;
}
.bento-head {
  max-width: 780px;
  margin-bottom: 44px;
}
.bento-head .section-title {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Card sizes on 6-col grid — 5-card bento with no gaps.
   Row 1: [b-course lg 4x2]                       [b-coaching sm 2x1]
   Row 2: [b-course cont.]                        [b-community sm 2x1]
   Row 3: [b-templates md 3x1]                    [b-scripts md 3x1]
*/
.bento-card.b-lg { grid-column: span 4; grid-row: span 2; }
.bento-card.b-md { grid-column: span 3; grid-row: span 1; }
.bento-card.b-sm { grid-column: span 2; grid-row: span 1; }
.bento-card.b-wide { grid-column: span 6; grid-row: span 1; }

/* Base card */
.bento-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  padding: 24px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  isolation: isolate;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 1px 2px rgba(10,10,10,0.02);
}
.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: 0 12px 40px -20px rgba(10, 10, 10, 0.18);
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 9px;
  align-self: flex-start;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.7);
  letter-spacing: 0.01em;
}
.bento-tag .tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.bento-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 2px;
}
.b-lg .bento-title { font-size: 30px; }

.bento-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.62);
  margin: 0;
}
.b-lg .bento-desc { font-size: 15px; max-width: 520px; }

/* --- Card 1: A–Z course (large, with dashboard image) --- */
.b-course {
  background: linear-gradient(160deg, #FFFFFF 0%, #F4EBDA 100%);
}
.b-course .bento-media {
  position: relative;
  margin: 14px -26px -24px -26px;
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}
.b-course .bento-media img {
  width: calc(100% - 60px);
  margin: 0 30px;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: none;
  box-shadow: 0 24px 60px -20px rgba(10, 10, 10, 0.25);
  display: block;
  transform: translateY(6%);
  transition: transform 0.6s var(--ease-out);
}
.b-course:hover .bento-media img {
  transform: translateY(4%);
}
.bento-media-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, rgba(251, 247, 238, 0.5) 100%);
}

/* --- Card 2: Coaching (Zoom pulse) --- */
.b-coaching {
  background: linear-gradient(155deg, #FFFFFF 0%, #EAF3EC 100%);
}
.bento-stat {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  align-self: flex-start;
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.bento-stat b { font-weight: 600; }
.stat-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22B07D;
  box-shadow: 0 0 0 0 rgba(34, 176, 125, 0.5);
  animation: statPulse 1.8s ease-out infinite;
}
@keyframes statPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 176, 125, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34, 176, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 176, 125, 0); }
}

/* --- Card 3: Community (avatar stack) --- */
.b-community {
  background: linear-gradient(155deg, #FFFFFF 0%, #F1EFDF 100%);
}
.bento-avatars {
  margin-top: auto;
  display: flex;
  align-items: center;
}
.bento-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(10, 10, 10, 0.08);
}
.bento-avatars img:first-child { margin-left: 0; }
.avatar-more {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* --- Card 4: Templates (tilted stack image) --- */
.b-templates {
  background: linear-gradient(150deg, #FFFFFF 0%, #E9F1EC 100%);
}
.b-templates .bento-media.tilt {
  position: absolute;
  right: -60px;
  top: 50%;
  bottom: auto;
  width: 62%;
  transform: translateY(-50%) rotate(-6deg);
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.b-templates .bento-media.tilt img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px -18px rgba(15,61,46, 0.28);
}
.b-templates:hover .bento-media.tilt {
  transform: translateY(calc(-50% - 4px)) rotate(-4deg);
}
.b-templates .bento-tag,
.b-templates .bento-title,
.b-templates .bento-desc {
  position: relative;
  z-index: 1;
}
.b-templates .bento-title { max-width: 52%; }
.b-templates .bento-desc { max-width: 42%; }
.b-templates::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  right: 44%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(15,61,46,0.14) 20%, rgba(15,61,46,0.14) 80%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* --- Card 5: DM scripts (chat bubbles) --- */
.b-scripts {
  background: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.08);
}
.b-scripts .bento-title { color: #FFFFFF; }
.b-scripts .bento-desc { color: rgba(255, 255, 255, 0.65); }
.b-scripts .bento-desc b,
.b-scripts .bento-desc strong { color: #FFFFFF; font-weight: 600; }
.b-scripts .bento-tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
.bento-chat {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  max-width: 78%;
  animation: chatIn 0.6s var(--ease-out) both;
}
.chat-bubble.in {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation-delay: 0.2s;
}
.chat-bubble.out {
  background: #1F6B4E;
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  animation-delay: 0.55s;
}
@keyframes chatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Card 6: Certification (wide, two-column) --- */
.b-cert {
  background: linear-gradient(120deg, #FFFFFF 0%, #EAF5EC 100%);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
}
.b-cert .cert-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b-cert .bento-title {
  font-size: 24px;
  max-width: 30ch;
}
.b-cert .cert-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bento-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.badge-chip {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: #FFFFFF;
  color: rgba(10, 10, 10, 0.7);
}
.badge-chip.b-master {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* Reveal transition already handled globally; ensure grid children animate */
.bento-card.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.bento-card.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1100px) {
  .bento-grid { grid-auto-rows: 220px; }
  .b-lg .bento-title { font-size: 26px; }
}
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .bento-card.b-lg,
  .bento-card.b-md,
  .bento-card.b-sm,
  .bento-card.b-wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 260px;
  }
  .b-cert { grid-template-columns: 1fr; gap: 16px; padding: 22px 22px; }
  .b-cert .cert-right { justify-content: flex-start; }
  .b-cert .bento-badges { justify-content: flex-start; }
  .b-course .bento-media { min-height: 180px; }
}
@media (max-width: 560px) {
  .bento-section { padding: 60px 0 20px; }
  .bento-grid { gap: 12px; }
  .bento-card { padding: 20px 20px; }
  .bento-title { font-size: 19px; }
  .b-lg .bento-title { font-size: 24px; }
}
