/* Leb Hub — Marketing Website UI kit styles */
* { box-sizing: border-box; }
html, body { margin: 0; }
body { font-family: var(--font-body); color: var(--ink); background: var(--canvas); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
.ic { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic svg { width: 100%; height: 100%; stroke-width: 1.75; }

/* ---- layout ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.app { min-height: 100vh; display: flex; flex-direction: column; }
.grow { flex: 1; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; line-height: 1.3;
  border-radius: var(--radius-full); padding: 11px 22px; border: 1px solid transparent; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); }
.btn-primary:active { background: var(--teal-pressed); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-ondark { background: var(--teal); color: #fff; }
.btn-ondark:hover { background: var(--teal-mid); }
.btn-ondark-sec { background: transparent; color: #fff; border-color: var(--hairline-dark); }
.btn-ondark-sec:hover { border-color: var(--on-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-radius: var(--radius-md); padding: 8px 12px; }
.btn-ghost:hover { background: var(--surface); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.tlink { color: var(--teal-deep); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.tlink:hover { gap: 9px; }

/* ---- eyebrow ---- */
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); }

/* ---- promo strip ---- */
.promo { background: var(--canvas-dark); color: #fff; font-size: 13px; font-weight: 500; text-align: center; padding: 9px 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.promo a { color: var(--teal-mid); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

/* ---- top nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--hairline); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav-logo { height: 30px; cursor: pointer; }
.nav-links { display: flex; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--slate); padding: 6px 0; position: relative; cursor: pointer; }
.nav-link:hover { color: var(--teal-deep); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -23px; height: 2px; background: var(--teal); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-signin { font-size: 14px; font-weight: 500; color: var(--slate); cursor: pointer; }
.nav-signin:hover { color: var(--ink); }

/* ---- sections ---- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--teal-tint); }
.section-surface { background: var(--surface); }
.center { text-align: center; }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { margin: 0; }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: 88px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 { margin: 16px 0 20px; }
.hero .lead { font-size: 19px; line-height: 1.55; color: var(--slate); margin: 0 0 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 40px; }
.hero-stat .n { font-size: 30px; font-weight: 600; color: var(--ink); letter-spacing: -0.5px; }
.hero-stat .l { font-size: 13px; color: var(--steel); margin-top: 2px; }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xxl); overflow: hidden; background: linear-gradient(150deg, var(--teal-mid), var(--teal-deep)); box-shadow: var(--shadow-3); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-float { position: absolute; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-3); padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.hero-float .ic { width: 38px; height: 38px; border-radius: var(--radius-full); background: var(--teal-tint); color: var(--teal-deep); }

/* ---- stat band ---- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-band .stat { text-align: center; }
.stat-band .n { font-size: 44px; font-weight: 600; letter-spacing: -1px; color: var(--teal-deep); }
.stat-band .l { font-size: 14px; color: var(--steel); margin-top: 4px; }

/* ---- cards grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.card-hover:hover { box-shadow: var(--shadow-2); border-color: var(--teal-soft); transform: translateY(-3px); }
.card .tag { display: inline-flex; align-items:center; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-sm); color: #fff; }
.card h3 { margin: 16px 0 8px; }
.card .desc { font-size: 15px; line-height: 1.55; color: var(--slate); margin: 0 0 18px; }
.card-feature { background: var(--surface-feature); border: 2px solid var(--teal); box-shadow: var(--shadow-teal); }
.feat-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.feat-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--charcoal); line-height: 1.45; }
.feat-list .ic { width: 18px; height: 18px; color: var(--teal); margin-top: 1px; }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step .num { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.step h4 { margin: 0 0 6px; }
.step p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--slate); }

/* ---- feature icon tile ---- */
.itile .ic { width: 46px; height: 46px; border-radius: var(--radius-lg); background: var(--teal-tint); color: var(--teal-deep); margin-bottom: 16px; }
.itile h4 { margin: 0 0 8px; }
.itile p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--slate); }

/* ---- mentors ---- */
.mentor { text-align: center; }
.mentor .av { width: 84px; height: 84px; border-radius: var(--radius-full); margin: 0 auto 14px; background: var(--teal-tint); border: 1px solid var(--teal-soft); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 26px; color: var(--teal-deep); overflow: hidden; }
.mentor .av img { width:100%; height:100%; object-fit:cover; }
.mentor .nm { font-size: 16px; font-weight: 600; }
.mentor .rl { font-size: 13px; color: var(--steel); margin-top: 3px; }
.chips { display: flex; gap: 6px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.chip { font-size: 11px; font-weight: 600; color: var(--teal-deep); background: var(--teal-tint); padding: 4px 10px; border-radius: var(--radius-full); }

/* ---- testimonial ---- */
.quote { font-size: 26px; line-height: 1.4; font-weight: 500; letter-spacing: -0.5px; color: var(--ink); margin: 0 0 24px; }
.quote-by { display: flex; align-items: center; gap: 14px; }
.quote-by .av { width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--teal-tint); color:var(--teal-deep); display:flex;align-items:center;justify-content:center;font-weight:600; }

/* ---- logo wall ---- */
.logowall { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px; align-items: center; }
.logowall .item { font-size: 19px; font-weight: 700; color: var(--stone); letter-spacing: -0.3px; }

/* ---- cta band ---- */
.cta-band { background: var(--canvas-dark); border-radius: var(--radius-xxl); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin: 0 0 14px; }
.cta-band p { color: var(--on-dark-muted); font-size: 18px; margin: 0 0 28px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; position: relative; z-index: 2; }

/* ---- footer ---- */
.footer { background: var(--canvas-dark); color: var(--on-dark-muted); padding: 72px 0 36px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; position: relative; z-index: 2; }
.footer-logo { height: 30px; margin-bottom: 18px; }
.footer-blurb { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--on-dark-muted); padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--hairline-dark); font-size: 13px; position: relative; z-index: 2; }
.footer-social { display: flex; gap: 14px; }
.footer-social .ic { width: 20px; height: 20px; color: var(--on-dark-muted); cursor: pointer; }
.footer-social .ic:hover { color: #fff; }

/* ---- dot motif ---- */
.dotmotif { position: absolute; pointer-events: none; }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; cursor: pointer; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-q .ic { width: 20px; height: 20px; color: var(--teal); transition: transform var(--dur) var(--ease); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq-a-inner { padding: 0 4px 22px; font-size: 15px; line-height: 1.6; color: var(--slate); }

/* ---- pill tabs ---- */
.pilltabs { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.pilltab { font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid var(--hairline); color: var(--steel); background: transparent; }
.pilltab:hover { border-color: var(--hairline-strong); color: var(--ink); }
.pilltab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---- comparison table ---- */
.ctable { width: 100%; border-collapse: collapse; border: 1px solid var(--hairline); border-radius: var(--radius-md); overflow: hidden; }
.ctable th, .ctable td { text-align: left; padding: 16px 20px; font-size: 14px; border-bottom: 1px solid var(--hairline-soft); }
.ctable thead th { background: var(--surface); font-weight: 600; color: var(--ink); font-size: 13px; }
.ctable td:first-child { color: var(--slate); }
.ctable .yes { color: var(--teal); }
.ctable .no { color: var(--muted); }

/* ---- search bar ---- */
.searchbar { display: flex; align-items: center; gap: 10px; height: 52px; background: var(--canvas); border: 1px solid var(--hairline-strong); border-radius: var(--radius-md); padding: 0 16px; color: var(--steel); }
.searchbar input { border: none; outline: none; font-family: var(--font-body); font-size: 16px; flex: 1; color: var(--ink); background: transparent; }
.searchbar .ic { width: 20px; height: 20px; color: var(--steel); }

/* ---- event ---- */
.event-row { display: flex; gap: 22px; align-items: center; padding: 22px; border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--canvas); transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.event-row:hover { box-shadow: var(--shadow-2); border-color: var(--teal-soft); }
.event-date { width: 76px; flex-shrink: 0; text-align: center; border-radius: var(--radius-md); background: var(--teal-tint); padding: 12px 0; }
.event-date .mo { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--teal-deep); }
.event-date .dy { font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; margin-top: 2px; }
.event-body { flex: 1; }
.event-body h4 { margin: 0 0 5px; }
.event-meta { display: flex; gap: 16px; font-size: 13px; color: var(--steel); margin-top: 8px; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-meta .ic { width: 15px; height: 15px; }

/* ---- apply / form ---- */
.form-shell { max-width: 720px; margin: 0 auto; }
.stepper { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.stepper .s { display: flex; align-items: center; gap: 10px; }
.stepper .dot { width: 30px; height: 30px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; background: var(--surface); color: var(--steel); border: 1px solid var(--hairline-strong); }
.stepper .s.active .dot { background: var(--teal); color: #fff; border-color: var(--teal); }
.stepper .s.done .dot { background: var(--teal-soft); color: var(--teal-deep); border-color: var(--teal-soft); }
.stepper .s .lbl { font-size: 13px; font-weight: 600; color: var(--steel); }
.stepper .s.active .lbl { color: var(--ink); }
.stepper .bar { flex: 1; height: 1px; background: var(--hairline-strong); margin: 0 14px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--steel); }
.input, .textarea, .select { width: 100%; border: 1px solid var(--hairline-strong); border-radius: var(--radius-md); padding: 12px 14px; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--canvas); outline: none; transition: border-color var(--dur) var(--ease); }
.input { height: 46px; }
.input:focus, .textarea:focus, .select:focus { border: 2px solid var(--teal); padding: 11px 13px; }
.textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.radio-card { border: 1px solid var(--hairline-strong); border-radius: var(--radius-md); padding: 14px; cursor: pointer; transition: all var(--dur) var(--ease); }
.radio-card:hover { border-color: var(--teal); }
.radio-card.sel { border: 2px solid var(--teal); background: var(--teal-tint); padding: 13px; }
.radio-card .rt { font-size: 14px; font-weight: 600; }
.radio-card .rd { font-size: 12px; color: var(--steel); margin-top: 3px; }
.form-nav { display: flex; justify-content: space-between; margin-top: 32px; }

/* ---- misc ---- */
.divider { height: 1px; background: var(--hairline); }
.badge-soft { display:inline-flex; align-items:center; gap:6px; font-size: 12px; font-weight: 600; color: var(--teal-deep); background: var(--teal-soft); padding: 5px 12px; border-radius: var(--radius-full); }
