:root {
  --ink: #101820;
  --muted: #5f6c77;
  --line: #dfe8ea;
  --paper: #f6f8f7;
  --white: #fff;
  --navy: #091a27;
  --blue: #0c3551;
  --teal: #00a99d;
  --lime: #c7f36a;
  --orange: #ff7a1a;
  --rose: #a31e4d;
  --shadow: 0 24px 70px rgba(9, 26, 39, .16);
  --radius: 8px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 100; background: #fff; padding: 10px 14px; }
.skip-link:focus { left: 12px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 248, 247, .94);
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; max-width: 320px; }
.brand-logo-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 24, 32, .08);
  box-shadow: 0 14px 30px rgba(9, 26, 39, .10);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.brand-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 20%, var(--lime), var(--teal) 42%, var(--blue) 100%);
  color: #fff;
  font-weight: 950;
  letter-spacing: -.05em;
  box-shadow: 0 16px 34px rgba(0, 169, 157, .24);
}
.brand-copy strong { display: block; font-weight: 950; letter-spacing: -.03em; }
.brand-copy small { display: block; color: var(--muted); font-weight: 800; font-size: .78rem; }
.nav { display: flex; align-items: center; gap: 20px; color: #263747; font-size: .94rem; font-weight: 850; }
.nav a:hover { color: var(--teal); }
.nav-action { color: #fff !important; background: var(--navy); padding: 12px 18px; border-radius: 999px; box-shadow: 0 14px 32px rgba(9, 26, 39, .18); }
.menu-btn { display: none; border: 0; border-radius: var(--radius); padding: 11px 14px; background: var(--navy); color: #fff; font-weight: 850; }
.hero {
  position: relative;
  min-height: 720px;
  padding: 92px 0 80px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(199, 243, 106, .22), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(0, 169, 157, .26), transparent 30%),
    linear-gradient(135deg, #07111c 0%, #0b2435 48%, #0a4050 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.76) 60%, transparent);
}
.hero-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin-bottom: 22px;
  max-width: 820px;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: #d9eaf0;
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #07111c; background: var(--lime); box-shadow: 0 18px 42px rgba(199, 243, 106, .26); }
.btn-secondary { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.btn-dark { color: #fff; background: var(--navy); }
.hero-board {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.board-header { display: grid; gap: 4px; margin-bottom: 22px; }
.board-header span { color: var(--lime); font-weight: 950; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.board-header strong { font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; letter-spacing: -.04em; }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.board-grid div, .board-note {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.09);
  padding: 16px;
}
.board-grid strong { display: block; color: #fff; font-size: 1.42rem; line-height: 1; }
.board-grid span, .board-note p { color: #cbdde2; font-weight: 750; }
.board-note { margin-top: 12px; }
.board-note span { display: block; color: var(--lime); font-weight: 950; margin-bottom: 6px; }
.section { padding: 86px 0; }
.section-head { max-width: 870px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-inline: auto; }
h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 18px;
}
h3 { color: var(--ink); font-size: 1.16rem; line-height: 1.22; margin: 0 0 8px; }
.section-head p, .benefit p, .slot p, .speaker-placeholder p, .workshop-copy p, .faq-grid p, .sponsor-copy p { color: var(--muted); }
.context-band { padding: 72px 0; background: #fff; }
.context-layout { display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 36px; }
.context-cards { display: grid; gap: 12px; }
.metric, .benefit, .speaker-placeholder, .logo-card, .sponsor-box, .lead-form, .faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 32, .06);
}
.metric { padding: 20px; }
.metric strong { display: block; color: var(--blue); font-size: 1.8rem; line-height: 1; letter-spacing: -.03em; }
.metric span { color: var(--muted); font-weight: 800; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit { min-height: 230px; padding: 24px; }
.benefit span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e9f8f5;
  color: var(--teal);
  font-weight: 950;
}
.agenda-section {
  color: #e9f3f6;
  background: linear-gradient(135deg, var(--navy), #102f43);
}
.agenda-section h2, .agenda-section h3 { color: #fff; }
.agenda-section .section-head p { color: #c9d9df; }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.tab {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}
.tab.active { background: var(--lime); border-color: var(--lime); color: var(--navy); }
.schedule { display: none; gap: 12px; max-width: 980px; margin-inline: auto; }
.schedule.active { display: grid; }
.slot {
  display: grid;
  grid-template-columns: 112px 1fr;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.slot time { padding: 18px; color: var(--lime); font-weight: 950; }
.slot div { padding: 18px; }
.slot span { display: block; color: #9dd8d0; font-size: .76rem; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.slot p { color: #cfe0e5; margin: 6px 0 0; }
.slot.break { background: rgba(199, 243, 106, .14); }
.workshop-section { background: #f0f6f4; }
.workshop-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.workshop-steps { display: grid; gap: 12px; }
.workshop-steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #cfe3df;
  border-radius: var(--radius);
  background: #fff;
}
.workshop-steps strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}
.workshop-steps span { color: #334554; font-weight: 850; }
.placeholder-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.speaker-placeholder { padding: 24px; min-height: 188px; }
.speaker-placeholder > span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 58px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-weight: 950;
}
.companies-section { background: #fff; }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-card { min-height: 98px; display: grid; place-items: center; padding: 18px; }
.logo-card img { max-height: 42px; width: auto; object-fit: contain; }
.sponsor-section { background: #fff9f1; }
.sponsor-layout, .download-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.sponsor-box { min-height: 170px; display: grid; place-items: center; text-align: center; padding: 24px; border-style: dashed; }
.sponsor-box strong { display: block; font-size: 1.5rem; color: var(--blue); }
.sponsor-box span { color: var(--muted); font-weight: 800; }
.download-section { background: linear-gradient(135deg, #ffe6d3, #f8fbf8); }
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
  color: var(--ink);
}
.lead-form h3 { grid-column: 1 / -1; margin-bottom: 4px; }
.lead-form label { display: grid; gap: 6px; font-weight: 850; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
}
.lead-form textarea { min-height: 112px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus { outline: 3px solid rgba(0, 169, 157, .16); border-color: var(--teal); }
.full { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #f7fbfa;
}
.captcha-box small { display: block; color: var(--muted); font-weight: 750; }
.captcha-question { color: var(--blue); font-weight: 950; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-grid details { padding: 18px; }
.faq-grid summary { cursor: pointer; color: var(--ink); font-weight: 950; }
.faq-grid p { margin: 10px 0 0; }
.footer { background: #07111c; color: #c7d4d8; padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 28px; }
.footer-brand { display: block; color: #fff; font-size: 1.4rem; font-weight: 950; letter-spacing: -.03em; margin-bottom: 8px; }
.footer h3 { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: #eef9f8; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 18px; color: #9fb0b6; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 39;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #17c964;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero-layout, .context-layout, .workshop-layout, .sponsor-layout, .download-layout { grid-template-columns: 1fr; }
  .benefit-grid, .placeholder-row { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-shell { min-height: 74px; }
  .brand { gap: 10px; max-width: calc(100vw - 124px); }
  .brand-logo-wrap { width: 48px; height: 48px; border-radius: 14px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-symbol { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; padding: 62px 0 56px; }
  .hero h1 { font-size: 3rem; }
  .hero-actions .btn { width: 100%; }
  .board-grid, .benefit-grid, .placeholder-row, .logo-grid, .faq-grid, .lead-form, .footer-grid { grid-template-columns: 1fr; }
  .slot { grid-template-columns: 1fr; }
  .slot time { padding-bottom: 0; }
  .section { padding: 62px 0; }
  .captcha-box { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* Critical header logo sizing: keeps the official RH mark contained across cached/browser contexts. */
.topbar .brand-logo-wrap {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  flex: 0 0 64px !important;
  border-radius: 16px;
}
.topbar .brand-logo-wrap .brand-logo {
  width: 52px !important;
  height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: contain !important;
}
@media (max-width: 640px) {
  .topbar .brand-logo-wrap {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    flex-basis: 46px !important;
  }
  .topbar .brand-logo-wrap .brand-logo {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
}
