/* =========================================================================
   Page-specific styles
   - Home: #slot-dinamico
   - /sobre + /empresas: .anchor-nav (sticky TOC)
   - Meetup LP: countdown widget, agenda 5-col grid, sponsor cluster, price cards
   - Membro / ai-like-a-pro: tier-card variants
   ========================================================================= */

/* =========================================================================
   HOME — Awake-style reset (AD-014/015/016/017, 2026-05-24)
   ========================================================================= */

/* ---- Home hero ---- */
.home-hero {
  padding-block: var(--space-24) var(--space-20);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-raised) 0%, var(--bg-base) 100%);
}
.home-hero-inner {
  max-width: 1040px;
}
.home-hero-h1 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tightest);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-6);
  max-width: 28ch;
  margin-inline: auto;
  text-wrap: balance;
}
.home-hero-h1 em {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: var(--fw-regular);
  letter-spacing: -.02em;
}
.home-hero-num {
  color: var(--accent-amber);
}
.home-hero-sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-normal);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto var(--space-8);
}
.home-hero-form {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: 0 auto;
}
.home-hero-form input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-family: var(--font-body);
  background: var(--bg-raised);
}
.home-hero-form .btn {
  margin: 0;
}
.home-hero-disclaimer {
  font-size: var(--fs-caption);
  color: var(--fg-tertiary);
  margin: var(--space-4) auto 0;
}

/* ---- Home logos strip ---- */
.home-logos {
  padding-block: var(--space-12);
  border-block: 1px solid var(--border-subtle);
}
.home-logos-label {
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--fg-tertiary);
  margin: 0 0 var(--space-6);
}
.home-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-12);
  align-items: center;
}

/* ---- Home 3 pilares ---- */
.home-pillars {
  padding-block: var(--space-20);
}
.home-pillars-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-pillars-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-pillars-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
}
.home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 1024px) {
  .home-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-pillars-grid { grid-template-columns: 1fr; }
}

/* ---- Home meetup highlight ---- */
.home-meetup {
  padding-block: var(--space-16);
  background: var(--tint-warm-neutral);
}
.home-meetup-inner {
  text-align: center;
  max-width: 720px;
}
.home-meetup-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-teal-dim);
}
.home-meetup-h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-bold);
  margin: var(--space-4) 0 var(--space-3);
}
.home-meetup-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  margin: 0 0 var(--space-6);
}

/* ---- Home closer CTA ---- */
.home-cta-final {
  padding-block: var(--space-20);
  text-align: center;
  background: linear-gradient(180deg, var(--tint-amber-soft) 0%, var(--bg-base) 100%);
}
.home-cta-inner {
  max-width: 720px;
}
.home-cta-h2 {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tightest);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-4);
  max-width: 30ch;
  margin-inline: auto;
  text-wrap: balance;
}
.home-cta-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 52ch;
  margin: 0 auto var(--space-6);
}

/* ---- /sobre + /empresas — anchor-nav (sticky TOC) ---- */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-block: var(--space-4);
  border-block: 1px solid var(--border-subtle);
  margin-bottom: var(--space-6);
  position: sticky;
  top: 4rem;
  z-index: 50;
  background: color-mix(in oklab, var(--bg-base) 95%, transparent);
  backdrop-filter: blur(8px);

  & a {
    text-decoration: none;
    font-size: var(--fs-body-sm);
    color: var(--fg-tertiary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    transition: color var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out);

    &:hover, &[aria-current] {
      color: var(--fg-primary);
      background: var(--bg-raised);
    }
  }
}

/* =========================================================================
   MEETUP LP — countdown widget (`<div class="countdown">`)
   ========================================================================= */
.countdown {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 540px;
  padding: 28px 32px;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.countdown > .count { position: relative; z-index: 1; }
.countdown .count-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg-primary);
  font-feature-settings: 'tnum' 1;
}
.countdown .count-num.is-primary { color: var(--accent-amber); }
.countdown .count-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---- MEETUP LP — agenda grid (5 slots) ---- */
.tl-grid.is-five { grid-template-columns: repeat(5, 1fr); }
.tl-grid .tl-cell.is-compact { min-height: auto; }
@media (max-width: 900px) {
  .tl-grid.is-five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tl-grid.is-five { grid-template-columns: 1fr; }
}

/* ---- MEETUP LP — sponsor mark ---- */
.sponsor-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
}

/* ---- MEETUP LP / membro — price teaser inside .card ---- */
.card.is-price h3 {
  font-size: 28px;
  margin-top: 6px;
}

/* =========================================================================
   MEMBRO — tier card (large pricing teaser for Master tier)
   ========================================================================= */
.tier-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-default);
  background: linear-gradient(135deg, var(--bg-raised) 0%, var(--bg-void) 100%);
  padding: 56px 40px;
  margin-bottom: 64px;
}
.tier-card > * { position: relative; z-index: 1; }
.tier-card .tier-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg-primary);
  margin-bottom: 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.tier-card .tier-headline em { font-style: normal; color: var(--accent-amber); }

/* =========================================================================
   MEMBRO · APPLICATION CARD — editorial-brutalist application form.
   Numbered fieldsets via CSS counter, oversized labels, generous breathing
   room, custom select chevron, submit button with meta-line + arrow.
   "Franco, com número, sem palco, com cerveja" applied to a form.
   ========================================================================= */

/* ---- Outer card --------------------------------------------------------- */
.application-card {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 56px 56px 0;
  margin-bottom: 64px;
  scroll-margin-top: 96px;
  overflow: hidden;
  isolation: isolate;
}
.application-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, var(--accent-amber-soft) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 100%, var(--accent-teal-soft) 0%, transparent 55%);
  opacity: 0.85;
  pointer-events: none;
  z-index: -1;
}
.application-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-amber);
  z-index: 1;
}

/* ---- Header ------------------------------------------------------------- */
.application-head {
  border-bottom: 1px dashed var(--border-default);
  padding-bottom: 32px;
  margin-bottom: 40px;
}
.application-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 20px;
}
.application-tag-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 0 4px var(--accent-teal-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .application-tag-dot { animation: app-pulse 2.5s ease-in-out infinite; }
}
@keyframes app-pulse {
  50% { box-shadow: 0 0 0 8px transparent; }
}
.application-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--fg-primary);
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.application-headline em {
  font-style: normal;
  color: var(--accent-amber);
}
.application-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
}
.application-meta b {
  color: var(--fg-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-right: 8px;
  vertical-align: -2px;
  font-feature-settings: 'tnum' 1;
}

/* ---- Form: numbered fieldsets via CSS counter -------------------------- */
.member-form {
  counter-reset: fs;
  display: grid;
  gap: 0;
}
.member-form fieldset {
  counter-increment: fs;
  border: 0;
  padding: 32px 0;
  margin: 0;
  display: grid;
  gap: 22px;
  position: relative;
}
.member-form fieldset + fieldset {
  border-top: 1px dashed var(--border-default);
}
.member-form legend {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 0;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
  color: var(--fg-primary);
  width: 100%;
}
.member-form legend::before {
  content: "0" counter(fs);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent-amber);
  padding-top: 6px;
  font-feature-settings: 'tnum' 1;
}

/* ---- Labels + fields ---------------------------------------------------- */
.member-form label {
  display: grid;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-secondary);
}
.member-form label .label-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
}
.member-form label .req {
  color: var(--accent-amber);
  font-weight: 700;
}
.member-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) {
  .member-form .field-row { grid-template-columns: 1fr; }
}

.member-form input,
.member-form select,
.member-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-base);
  border: 1.5px solid var(--border-default);
  border-radius: 6px;
  color: var(--fg-primary);
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 160ms var(--ease-out),
              background 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
}
.member-form input::placeholder,
.member-form textarea::placeholder {
  color: var(--fg-muted);
  font-weight: 400;
}
.member-form textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.5;
  font-size: 16px;
}

/* Custom <select> chevron — appearance: none + inline SVG arrow */
.member-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B847E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 14px;
}

.member-form input:focus,
.member-form select:focus,
.member-form textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  background: var(--bg-raised);
  box-shadow: 0 0 0 4px var(--accent-amber-soft);
}
.member-form input:user-valid,
.member-form select:user-valid,
.member-form textarea:user-valid {
  border-color: var(--accent-teal);
}
.member-form input:user-invalid,
.member-form select:user-invalid,
.member-form textarea:user-invalid,
.member-form input.is-invalid,
.member-form select.is-invalid,
.member-form textarea.is-invalid {
  border-color: var(--color-danger);
  background: color-mix(in oklab, var(--color-danger) 5%, var(--bg-base));
}

.member-form .field-hint {
  font-size: 13px;
  color: var(--fg-tertiary);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
  line-height: 1.5;
}
.member-form :user-invalid ~ .field-hint,
.member-form .is-invalid ~ .field-hint {
  color: var(--color-danger);
  font-weight: 500;
}

/* ---- Wizard: progress bar + dots ---------------------------------------- */
.member-wizard {
  position: relative;
}
.wizard-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.wizard-progress-track {
  position: relative;
  height: 4px;
  background: var(--bg-base);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.wizard-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--step-pct, 33%);
  background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber-bright));
  border-radius: var(--radius-pill);
  transition: width 360ms cubic-bezier(.65, .05, .36, 1);
}
.wizard-progress-dots {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.wizard-progress-dots li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-tertiary);
  letter-spacing: 0.06em;
  transition: color 200ms var(--ease-out);
}
.wizard-progress-dots .dot-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-default);
  background: var(--bg-raised);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  transition: all 240ms var(--ease-out);
  flex-shrink: 0;
}
.wizard-progress-dots .dot-label {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wizard-progress-dots li.is-active {
  color: var(--fg-primary);
}
.wizard-progress-dots li.is-active .dot-num {
  border-color: var(--accent-amber);
  background: var(--accent-amber);
  color: var(--bg-base);
  box-shadow: 0 0 0 4px var(--accent-amber-soft);
}
.wizard-progress-dots li.is-done {
  color: var(--fg-secondary);
}
.wizard-progress-dots li.is-done .dot-num {
  border-color: var(--accent-teal);
  background: var(--accent-teal);
  color: var(--bg-base);
}
.wizard-progress-dots li.is-done .dot-num::after {
  content: "✓";
  font-size: 12px;
}
.wizard-progress-dots li.is-done .dot-num span {
  display: none;
}
@media (max-width: 560px) {
  .wizard-progress-dots .dot-label { display: none; }
  .wizard-progress-dots { grid-template-columns: repeat(3, auto); justify-content: space-between; }
}

/* ---- Wizard step (slide + fade transition) ----------------------------- */
.wizard-step {
  animation: wizardFadeSlide 360ms cubic-bezier(.2, .8, .25, 1);
}
.wizard-step[hidden] {
  display: none;
}
.wizard-step-head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-default);
}
.wizard-step-eye {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-amber-dim);
  display: block;
  margin-bottom: 6px;
}
.wizard-step-h {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--fg-primary);
}
.wizard-step-sub {
  font-size: 14px;
  color: var(--fg-tertiary);
  margin: 0;
  line-height: 1.55;
}
.wizard-fs {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.wizard-fs legend {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: 12px;
  padding: 0;
}

@keyframes wizardFadeSlide {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Wizard nav (Voltar / Counter / Próximo|Submit) -------------------- */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border-default);
  background: var(--bg-raised);
  color: var(--fg-secondary);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
}
.wizard-btn:not(:disabled):hover {
  border-color: var(--accent-amber);
  color: var(--fg-primary);
}
.wizard-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wizard-btn[hidden] {
  display: none;
}
.wizard-btn .icon {
  width: 14px;
  height: 14px;
}
.wizard-btn-primary {
  background: var(--fg-primary);
  color: var(--bg-base);
  border-color: var(--fg-primary);
  font-weight: 600;
}
.wizard-btn-primary:not(:disabled):hover {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: var(--fg-primary);
  transform: translateY(-1px);
}
.wizard-step-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-tertiary);
  letter-spacing: 0.06em;
}
.wizard-step-counter b {
  color: var(--fg-primary);
  font-weight: 700;
}

.char-counter {
  font-variant-numeric: tabular-nums;
  color: var(--fg-secondary);
  font-weight: 500;
}

/* ---- Fieldset helper text + checkbox pill grid (multi-select) ---------- */
.member-form .fs-help {
  display: block;
  font-size: 13px;
  color: var(--fg-tertiary);
  font-style: italic;
  margin: -4px 0 16px;
  line-height: 1.5;
}
.member-form .member-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.member-form .check-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--fg-secondary);
  cursor: pointer;
  transition: border-color 140ms var(--ease-out),
              background 140ms var(--ease-out),
              color 140ms var(--ease-out);
  margin: 0;
}
.member-form .check-pill input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg-raised);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  transition: border-color 140ms var(--ease-out),
              background 140ms var(--ease-out);
}
.member-form .check-pill input:checked {
  border-color: var(--accent-amber);
  background: var(--accent-amber);
}
.member-form .check-pill input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.member-form .check-pill:has(input:checked) {
  border-color: var(--accent-amber);
  background: var(--tint-amber-soft);
  color: var(--fg-primary);
}
.member-form .check-pill:hover {
  border-color: var(--accent-amber);
}
.member-form .check-pill span {
  user-select: none;
}

/* ---- LGPD checkbox ------------------------------------------------------ */
.member-form .field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
  cursor: pointer;
  transition: border-color 160ms var(--ease-out);
}
.member-form .field-checkbox:has(input:checked) {
  border-color: var(--accent-teal);
  background: color-mix(in oklab, var(--accent-teal) 4%, var(--bg-base));
}
.member-form .field-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--accent-amber);
  cursor: pointer;
}

/* ---- Submit row --------------------------------------------------------- */
.member-form .form-submit {
  margin-top: 32px;
}
.btn-submit {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 4px;
  width: 100%;
  padding: 22px 28px;
  background: var(--accent-amber);
  color: #0A0A0A;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 160ms var(--ease-out),
              box-shadow 200ms var(--ease-out),
              background 160ms var(--ease-out);
}
.btn-submit-label { grid-column: 1; grid-row: 1; }
.btn-submit-meta  { grid-column: 1; grid-row: 2; margin-top: 4px; }
.btn-submit-icon  { grid-column: 2; grid-row: 1 / span 2; align-self: center; transition: transform 160ms var(--ease-out); }
.btn-submit:hover {
  background: var(--accent-amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(212, 162, 76, 0.35);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:focus-visible {
  outline: 3px solid var(--fg-primary);
  outline-offset: 3px;
}
.btn-submit-label {
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.btn-submit-meta {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.7);
}
.btn-submit-icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
  color: #0A0A0A;
  flex-shrink: 0;
}
.btn-submit:hover .btn-submit-icon {
  transform: translate(4px, -4px);
}

/* ---- Form status message (success/error live region) ------------------- */
.form-fallback {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-tertiary);
  text-align: center;
  min-height: 18px;
}
.form-fallback[data-kind="error"] {
  color: var(--color-danger);
  font-weight: 500;
}
.btn-submit:disabled {
  opacity: .6;
  cursor: progress;
}
.form-fallback a {
  color: var(--accent-teal);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--accent-teal-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-left: 6px;
  transition: text-decoration-color 160ms var(--ease-out),
              color 160ms var(--ease-out);
}
.form-fallback a:hover {
  color: var(--accent-amber);
  text-decoration-color: var(--accent-amber);
  text-decoration-thickness: 2px;
}

/* ---- Footer microtype --------------------------------------------------- */
.application-foot {
  margin-top: 48px;
  margin-inline: -56px;
  padding: 16px 56px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-void);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
  text-align: center;
}

@media (max-width: 720px) {
  .application-card { padding: 40px 28px 0; }
  .application-foot { margin-inline: -28px; padding: 14px 28px; }
  .application-meta { gap: 20px; }
  .application-meta b { font-size: 18px; }
  .member-form legend { font-size: 22px; grid-template-columns: 1fr; gap: 4px; }
  .member-form legend::before { padding-top: 0; }
  .btn-submit { grid-template-columns: 1fr; gap: 16px; padding: 20px 22px; }
  .btn-submit-icon { justify-self: start; }
}

/* Generic <dialog> styling — applies anywhere we use .gc-dialog */
dialog.gc-dialog {
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: var(--bg-raised);
  color: var(--fg-primary);
  padding: 0;
  max-width: min(480px, calc(100vw - 32px));
  box-shadow: var(--shadow-overlay);
}
dialog.gc-dialog::backdrop {
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
dialog.gc-dialog form {
  padding: 40px 32px;
  margin: 0;
}
dialog.gc-dialog h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
dialog.gc-dialog h2 em {
  font-style: normal;
  color: var(--accent-amber);
}
dialog.gc-dialog p {
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}
dialog.gc-dialog .dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
@media (prefers-reduced-motion: no-preference) {
  @starting-style {
    dialog.gc-dialog[open] {
      opacity: 0;
      transform: translateY(8px);
    }
    dialog.gc-dialog[open]::backdrop {
      opacity: 0;
    }
  }
  dialog.gc-dialog {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out),
                display 200ms allow-discrete, overlay 200ms allow-discrete;
  }
  dialog.gc-dialog::backdrop {
    opacity: 1;
    transition: opacity 200ms var(--ease-out), display 200ms allow-discrete,
                overlay 200ms allow-discrete;
  }
}

/* =========================================================================
   404 — viewport-locked mini-manifesto (full-bleed, no header/footer)
   "Esse número não bate." — Growth Club tom-anchor aplicado visualmente.
   ========================================================================= */
.page-404 {
  min-block-size: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.page-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, var(--accent-amber-glow) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, var(--accent-teal-glow) 0%, transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}
.page-404-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-404-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.page-404-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-teal);
}
.page-404-numeral {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 28vw, 320px);
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: var(--accent-amber);
  font-feature-settings: 'tnum' 1;
  margin-bottom: 24px;
  text-shadow: 0 0 80px var(--accent-amber-glow);
}
.page-404-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg-primary);
  margin-bottom: 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.page-404-headline em {
  font-style: normal;
  color: var(--accent-amber);
}
.page-404-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-secondary);
  max-width: 48ch;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.page-404-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-404-footer {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}
.page-404-footer a { color: var(--fg-tertiary); text-decoration: none; }
.page-404-footer a:hover { color: var(--accent-amber); }

/* =========================================================================
   EMBEDDED FORMS — Tally iframe consistent treatment
   ========================================================================= */
.embedded-form {
  width: 100%;
  border-radius: 8px;
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
}

/* =========================================================================
   AI LIKE A PRO — "memo leaked" aesthetic
   Internal-document mood: classification banner, FROM/TO/RE meta, mono body,
   redacted <s> strikes, faux-margin annotations, exclusive <details> agenda.
   ========================================================================= */
.memo {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  position: relative;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-secondary);
  box-shadow:
    0 0 0 6px var(--bg-base),
    var(--shadow-raised);
}
.memo::before {
  content: "// LEAKED";
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent-amber);
  color: #0A0A0A;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 700;
  transform: rotate(-2deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.memo-header {
  border-bottom: 1px dashed var(--border-default);
  padding-bottom: 20px;
  margin-bottom: 32px;
}
.memo-classification {
  color: var(--color-danger);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.memo-classification::before {
  content: "●";
  color: var(--color-danger);
}
@media (prefers-reduced-motion: no-preference) {
  .memo-classification::before {
    animation: memo-blink 2s infinite;
  }
}
@keyframes memo-blink { 50% { opacity: 0.25; } }
.memo-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  font-size: 12px;
  color: var(--fg-tertiary);
  letter-spacing: 0.04em;
}
.memo-meta strong {
  color: var(--accent-teal);
  font-weight: 500;
  margin-right: 6px;
}
.memo-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--fg-primary);
  margin: 0 0 32px;
  max-width: 14ch;
  text-wrap: balance;
}
.memo-title em { font-style: normal; color: var(--accent-amber); }
.memo-body p { margin: 0 0 16px; }
.memo-body strong { color: var(--fg-primary); font-weight: 700; }
.memo-body s {
  color: var(--fg-muted);
  text-decoration-color: var(--color-danger);
  text-decoration-thickness: 2px;
  text-underline-offset: -2px;
}
.memo-list {
  list-style: none;
  padding: 8px 0 8px 20px;
  margin: 0 0 16px;
  border-left: 2px solid var(--accent-teal);
  display: grid;
  gap: 8px;
}
.memo-list li::before {
  content: "→ ";
  color: var(--accent-teal);
}
.memo-agenda {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--bg-sunken);
  border: 1px dashed var(--border-default);
  border-radius: 4px;
}
.memo-agenda summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
  font-weight: 700;
}
.memo-agenda summary::-webkit-details-marker { display: none; }
.memo-agenda summary::after {
  content: " [+ expandir]";
  color: var(--fg-tertiary);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.memo-agenda[open] summary::after { content: " [− colapsar]"; }
.memo-agenda summary:focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 4px;
  border-radius: 2px;
}
.memo-agenda-body {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-secondary);
}
.memo-agenda-body p { margin: 0; }
.memo-agenda-body strong { color: var(--accent-teal); font-weight: 500; }
.memo-margin-note {
  margin: 36px 0;
  padding: 16px 0 16px 22px;
  border-left: 4px solid var(--accent-amber);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--fg-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.memo-margin-note span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-tertiary);
  font-weight: 400;
}
.memo-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--border-default);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.memo-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-teal);
}
.memo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .memo { padding: 32px 24px 48px; }
  .memo-meta { grid-template-columns: 1fr; }
  .memo::before { right: 12px; }
}

/* =========================================================================
   HOME — Expansion (AD-018 follow-up, 2026-05-24)
   Features (O que esperar) · Testimonials · People · FAQ
   ========================================================================= */

/* ---- Home features (4 funcionalidades) ---- */
.home-features {
  padding-block: var(--space-20);
  background: var(--bg-base);
}
.home-features-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-features-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-features-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
}
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 1024px) {
  .home-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-features-grid { grid-template-columns: 1fr; }
}

/* ---- Home testimonials ---- */
.home-testimonials {
  padding-block: var(--space-20);
  background: var(--bg-raised);
}
.home-testimonials-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-testimonials-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-testimonials-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
}
.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 960px) {
  .home-testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- Home people (Especialistas) ---- */
.home-people {
  padding-block: var(--space-20);
}
.home-people-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-people-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-people-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
}
.home-people-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-teal-dim);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.home-people-h2 em {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: var(--fw-regular);
  letter-spacing: -.02em;
}
.home-people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 960px) {
  .home-people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-people-grid { grid-template-columns: 1fr; }
}
.home-person-role a {
  color: var(--accent-teal-dim);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-teal-soft);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.home-person-role a:hover {
  color: var(--accent-teal);
  border-bottom-color: var(--accent-teal);
}
.home-person-social {
  list-style: none;
  margin: auto 0 0;
  padding: var(--space-3) 0 0;
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}
.home-person-social a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-secondary);
  text-decoration: none;
  letter-spacing: var(--ls-loose);
  text-transform: uppercase;
  background: var(--bg-base);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.home-person-social a:hover {
  color: var(--fg-primary);
  background: var(--tint-amber-soft);
  border-color: var(--accent-amber);
}

/* ---- Home FAQ ---- */
.home-faq {
  padding-block: var(--space-20);
  background: var(--bg-raised);
}
.home-faq-inner {
  max-width: 760px;
}
.home-faq-head {
  text-align: center;
  margin-bottom: var(--space-10);
}
.home-faq-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-faq-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
}
.home-faq-list {
  border-top: 1px solid var(--border-subtle);
}

/* ---- Home CTA actions (2 botões no closer) ---- */
.home-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---- Home stats row (Hype A, AD-018 follow-up) ---- */
.home-stats {
  list-style: none;
  margin: var(--space-10) auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  max-width: 920px;
}
.home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}
.home-stat-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: var(--ls-tightest);
  color: var(--fg-primary);
  font-feature-settings: 'tnum' 1;
}
.home-stat-num small {
  font-size: 0.55em;
  color: var(--accent-amber);
  font-weight: var(--fw-bold);
  margin-left: 1px;
}
.home-stat-label {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--fg-tertiary);
}
@media (max-width: 720px) {
  .home-stats { gap: var(--space-4); }
}

/* ---- Home manifesto pull quote (Hype B) ---- */
.home-manifesto-pull {
  padding-block: var(--space-20);
  background: var(--bg-base);
  text-align: center;
}
.home-manifesto-inner {
  max-width: 820px;
}
.home-manifesto-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-amber-dim);
  display: inline-block;
  margin-bottom: var(--space-4);
}
.home-manifesto-q {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: var(--fw-black);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tightest);
  margin: 0 0 var(--space-6);
  color: var(--fg-primary);
  text-wrap: balance;
}
.home-manifesto-q em {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--accent-amber);
  letter-spacing: -.02em;
}
.home-manifesto-cite {
  font-size: var(--fs-body-lg);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* ---- Home roadmap 2026 (Hype C) ---- */
.home-roadmap {
  padding-block: var(--space-20);
  background: var(--bg-base);
}
.home-roadmap-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-roadmap-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-teal-dim);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.home-roadmap-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-roadmap-h2 em {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: var(--fw-regular);
  letter-spacing: -.02em;
}
.home-roadmap-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 60ch;
  margin: 0 auto;
}
.home-roadmap-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.home-roadmap-cell {
  padding: var(--space-6);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
}
.home-roadmap-cell.is-active {
  background: var(--tint-amber-soft);
  border-color: var(--accent-amber);
}
.home-roadmap-cell.is-active::before {
  content: "Em curso";
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-amber-dim);
  background: var(--bg-raised);
  padding: 2px var(--space-2);
  border-radius: var(--radius-pill);
}
.home-roadmap-when {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--fg-tertiary);
}
.home-roadmap-cell h3 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  margin: var(--space-1) 0 0;
  color: var(--fg-primary);
}
.home-roadmap-cell p {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--fg-secondary);
  margin: 0;
}
@media (max-width: 1024px) {
  .home-roadmap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-roadmap-grid { grid-template-columns: 1fr; }
}

/* ---- Home eligibility checklist (Hype D) ---- */
.home-eligibility {
  padding-block: var(--space-20);
  background: var(--bg-raised);
}
.home-eligibility-inner {
  max-width: 820px;
}
.home-eligibility-head {
  text-align: center;
  margin-bottom: var(--space-10);
}
.home-eligibility-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-amber-dim);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.home-eligibility-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0;
}
.home-eligibility-h2 em {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-style: italic;
  font-weight: var(--fw-regular);
  letter-spacing: -.02em;
}
.home-eligibility-list {
  list-style: none;
  margin: 0 0 var(--space-8);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-6);
}
.home-eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--fs-body);
  line-height: var(--lh-snug);
  color: var(--fg-secondary);
}
.home-eligibility-list .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent-teal);
  margin-top: 3px;
}
.home-eligibility-foot {
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--fg-tertiary);
  margin: 0;
}
@media (max-width: 720px) {
  .home-eligibility-list { grid-template-columns: 1fr; }
}

/* ---- Home logos strip — real company names (Hype E) ---- */
ul.home-logos-row {
  list-style: none;
  margin: 0;
  padding: 0;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-tight);
  color: var(--fg-secondary);
  opacity: .65;
  white-space: nowrap;
  transition: opacity var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.logo-mark:hover {
  opacity: 1;
  color: var(--fg-primary);
}
@media (max-width: 720px) {
  .logo-mark { font-size: var(--fs-body-sm); }
  .home-logos-row { gap: var(--space-6); }
}

/* ---- Home meetup sub-stats (Hype G) ---- */
.home-meetup-stats {
  list-style: none;
  margin: var(--space-6) auto var(--space-8);
  padding: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.home-meetup-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}
.home-meetup-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: var(--ls-tightest);
  color: var(--fg-primary);
  font-feature-settings: 'tnum' 1;
}
.home-meetup-num small {
  font-size: 0.55em;
  color: var(--accent-amber);
  margin-left: 1px;
}
.home-meetup-num-label {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--fg-tertiary);
}
@media (max-width: 560px) {
  .home-meetup-stats { gap: var(--space-4); }
}

/* ---- Home latest newsletter — 3 edições em destaque (Hype F) ---- */
.home-latest {
  padding-block: var(--space-20);
  background: var(--bg-base);
}
.home-latest-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.home-latest-eye {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
  color: var(--accent-amber-dim);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.home-latest-h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  font-weight: var(--fw-black);
  margin: 0 0 var(--space-3);
}
.home-latest-sub {
  font-size: var(--fs-body);
  color: var(--fg-secondary);
  max-width: 56ch;
  margin: 0 auto;
}
.home-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 1024px) {
  .home-latest-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
}
.home-latest-card {
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.home-latest-card:hover {
  border-color: var(--accent-amber);
  transform: translateY(-2px);
}
.home-latest-meta {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-loud);
  text-transform: uppercase;
}
.home-latest-date {
  color: var(--accent-teal-dim);
  font-weight: var(--fw-bold);
}
.home-latest-tag {
  color: var(--accent-amber-dim);
  background: var(--accent-amber-soft);
  padding: 2px var(--space-2);
  border-radius: var(--radius-pill);
  font-size: 10px;
}
.home-latest-title {
  font-family: var(--font-display);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0;
  color: var(--fg-primary);
}
.home-latest-lead {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-relaxed);
  color: var(--fg-secondary);
  margin: 0;
  flex: 1;
}
.home-latest-link {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--accent-amber-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  letter-spacing: var(--ls-loose);
  text-transform: uppercase;
  margin-top: var(--space-2);
  transition: color var(--dur-fast) var(--ease-out), gap var(--dur-fast) var(--ease-out);
}
.home-latest-link:hover {
  color: var(--accent-amber);
  gap: var(--space-3);
}
.home-latest-link .icon {
  width: 12px;
  height: 12px;
}
