.elementor-1465 .elementor-element.elementor-element-f3b0c56{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1465 .elementor-element.elementor-element-7f70603 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS */:root {
  --bg:        #0B0E14;
  --card:      #111621;
  --surface:   #1A2030;
  --t1:        #E8ECF4;
  --t2:        #9CA5B8;
  --t3:        #6B7589;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.16);
  --teal:      #14B8A6;
  --teal-dim:  rgba(20, 184, 166, 0.15);
  --teal-glow: rgba(20, 184, 166, 0.35);
  --amber:     #F59E0B;
  --red:       #EF4444;
  --green:     #22C55E;
  --green-dim: rgba(34, 197, 94, 0.12);

  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background ambient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(20, 184, 166, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--t1); font-family: 'DM Sans', system-ui, sans-serif; }
h1 { font-size: clamp(40px, 5.5vw, 64px); }
h2 { font-size: clamp(32px, 4vw, 44px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }

em { font-style: italic; color: var(--teal); }
strong { font-weight: 700; color: var(--t1); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
}

.mono { font-family: var(--font-mono); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 0;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 0 0 0 var(--teal-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px 0 var(--teal-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--border-2);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .btn-row { flex-direction: column; }
  .btn { width: 100%; }
}

/* ============ HERO ============ */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content { text-align: left; }

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  /* leve dessaturação e ajuste de tom pra harmonizar com a paleta dark */
  filter: brightness(0.92) contrast(1.05) saturate(0.9);
}

.hero-image::after {
  /* gradient overlay pra fundir as bordas com o background dark */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(11, 14, 20, 0.5) 92%, rgba(11, 14, 20, 0.85) 100%),
    linear-gradient(270deg, transparent 75%, rgba(11, 14, 20, 0.4) 100%),
    linear-gradient(90deg, transparent 80%, rgba(11, 14, 20, 0.3) 100%);
  pointer-events: none;
}

/* Sutil glow teal por trás da foto pra dar identidade Stagely */
.hero-image::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero {
	padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
	padding: 0;
  }
  .hero-content {
	text-align: center;
	padding: 0 24px;
	margin-top: -140px;
	z-index:4;
  }

  .hero-image {
    width:100%;
    margin: 0 auto;
    order: -1;
  }
  .hero-image img {
    object-position: center 20%;
  }
  .hero-image::after {
    background: linear-gradient(
    to top, 
    rgba(11, 14, 20, 1) 0%,    /* Cor do fundo sólida na base */
    rgba(11, 14, 20, 0.8) 20%, /* Começa a suavizar */
    transparent 100%           /* Fica totalmente transparente no topo */
  );
  }
}

.hero .eyebrow {
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.05);
}
.hero .eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.1;
}

.hero .subhead {
  margin: 0 0 40px;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--t2);
  line-height: 1.55;
  max-width: 540px;
}

.hero .qualifier {
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 32px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hero-cta { justify-content: center; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; padding: 0 20px; }
}

.scarcity {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--t2);
}
.scarcity .num { color: var(--amber); font-weight: 700; }

/* ============ SECTION (general) ============ */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.section-title {
  margin-bottom: 16px;
}
.section-intro {
  color: var(--t2);
  font-size: 19px;
  margin-bottom: 56px;
  max-width: 720px;
}

/* ============ QUALIFICATION (2 columns) ============ */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .qualify-grid { grid-template-columns: 1fr; } }

.qualify-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.qualify-col h3 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-weight: 500;
}
.qualify-col.yes { border-top: 2px solid var(--teal); }
.qualify-col.no  { border-top: 2px solid var(--t3); }
.qualify-col.yes h3 { color: var(--teal); }
.qualify-col.no  h3 { color: var(--t3); }

.qualify-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.qualify-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
}
.qualify-list li .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.qualify-col.yes .icon { background: var(--teal-dim); color: var(--teal); }
.qualify-col.no  .icon { background: rgba(74, 85, 104, 0.2); color: var(--t3); }

/* ============ PAIN HOOK ============ */
.pain {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
}
.pain h2 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}
.pain h2 em {
  color: var(--amber);
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(245, 158, 11, 0.2) 60%);
  padding: 0 4px;
}
.pain p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 18px;
  color: var(--t2);
  line-height: 1.6;
}
.pain p:last-child { color: var(--t1); font-weight: 500; }

/* ============ NOT IS ============ */
.not-is-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.not-is-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.5;
}
.not-is-list li .x {
  flex-shrink: 0;
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  margin-top: -2px;
}
.not-is-list li.highlight {
  border-left-color: var(--teal);
  background: linear-gradient(90deg, var(--teal-dim) 0%, transparent 100%);
}
.not-is-list li.highlight .x { color: var(--teal); }
.not-is-list li strong { color: var(--teal); }

/* ============ MATH (CORE SECTION) ============ */
.math-intro {
  font-size: 19px;
  color: var(--t2);
  max-width: 720px;
  margin-bottom: 48px;
}

.calc-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
}
.calc-block.scenario-1 { border-top: 2px solid var(--t3); }
.calc-block.scenario-2 { border-top: 2px solid var(--teal); }

.calc-header {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--t3);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.calc-block.scenario-2 .calc-header { color: var(--teal); }

.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  gap: 16px;
}
.calc-line:last-child { border-bottom: 0; }
.calc-line.total {
  border-top: 2px solid var(--border-2);
  border-bottom: 0;
  padding-top: 22px;
  margin-top: 8px;
}
.calc-line .label {
  font-size: 15px;
  color: var(--t2);
  flex: 1;
}
.calc-line.total .label {
  color: var(--t1);
  font-weight: 700;
  font-size: 17px;
}
.calc-line .value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.calc-line.total .value {
  font-size: 28px;
  font-weight: 700;
}
.calc-block.scenario-1 .calc-line.total .value { color: var(--t1); }
.calc-block.scenario-2 .calc-line.total .value { color: var(--green); }

.pause-line {
  text-align: center;
  font-size: 17px;
  color: var(--t2);
  font-style: italic;
  margin: 40px 0;
}

.provocation {
  background: linear-gradient(135deg, var(--card) 0%, rgba(20, 184, 166, 0.04) 100%);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 36px;
  margin: 48px 0;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  font-style: italic;
  color: var(--t1);
}
.provocation strong { color: var(--teal); }

.comparison {
  background: linear-gradient(135deg, var(--green-dim) 0%, var(--card) 100%);
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 48px;
  margin: 56px 0 32px;
}
.comparison h3 {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 32px;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 700px) {
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }
  .comparison-arrow { display: none; }
}
.comparison-cell { text-align: center; }
.comparison-cell .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.comparison-cell .amount {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
}
.comparison-cell.before .amount { color: var(--t1); }
.comparison-cell.after  .amount { color: var(--green); }
.comparison-arrow {
  font-size: 36px;
  color: var(--green);
}

.diff-callout {
  margin-top: 24px;
  text-align: center;
  padding: 20px;
  border-top: 1px dashed var(--border-2);
}
.diff-callout .label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.diff-callout .amount {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--green);
}

.math-closer {
  margin-top: 56px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.4;
}
.math-closer p { margin-bottom: 14px; }
.math-closer .punch {
  color: var(--teal);
  font-style: italic;
  font-weight: 700;
}

/* ============ LEARN (numbered list) ============ */
.learn-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.learn-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.learn-item:last-child { border-bottom: 0; }
.learn-item .num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.learn-item h4 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 700;
}
.learn-item p {
  color: var(--t2);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .learn-item { grid-template-columns: 1fr; gap: 12px; }
  .learn-item .num { font-size: 28px; }
}

/* ============ AUTHORITY ============ */
.bio {
  max-width: 760px;
  font-size: 18px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bio strong { color: var(--t1); }
.bio em { color: var(--teal); font-style: normal; font-weight: 500; }

/* Authority layout with photo */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.authority-content { min-width: 0; }
.authority-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-2);
}
.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.authority-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 65%, rgba(11, 14, 20, 0.55) 100%);
  pointer-events: none;
}
.authority-photo .photo-caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 236, 244, 0.9);
  z-index: 1;
}
@media (max-width: 768px) {
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .authority-photo {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }
  .authority-photo .photo-caption { display: none; }
}

.names {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}
.names .name-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: var(--card);
  transition: border-color 0.2s;
}
.names .name-card:hover { border-color: var(--teal); }
.names .name-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.names .name-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.names .name-card .label {
  font-size: 14px;
  color: var(--t1);
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .names { flex-direction: column; align-items: stretch; }
  .names .name-card { justify-content: flex-start; }
}

.chart-block {
  margin-top: 56px;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.chart-block .chart-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.chart-block .chart-sub {
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 32px;
}
.chart-svg-wrap {
  width: 100%;
  overflow-x: auto;
}
.chart-svg { display: block; width: 100%; height: auto; max-width: 100%; }

.chart-legend {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 14px;
  color: var(--t2);
  font-style: italic;
  line-height: 1.5;
}

/* ============ TICKETS ============ */
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .tickets-grid { grid-template-columns: 1fr; }
}

.ticket {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ticket.vip {
  border: 1px solid var(--teal);
  background: linear-gradient(135deg, var(--card) 0%, rgba(20, 184, 166, 0.04) 100%);
  box-shadow: 0 0 32px rgba(20, 184, 166, 0.08);
}
.ticket .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.ticket .tier {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
}
.ticket.vip .tier { color: var(--teal); }

.ticket .ticket-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.ticket .perks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ticket .perks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}
.ticket .perks li .check {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  margin-top: 2px;
}
.ticket .perks li.yes .check { color: var(--teal); }
.ticket .perks li.no  .check { color: var(--t3); }
.ticket .perks li.no  { color: var(--t3); }

.ticket .price {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}
.ticket .price .from-price {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 6px;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
  text-decoration-thickness: 1.5px;
}
.ticket .price .amount-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ticket .price .amount {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
.ticket .price .currency {
  font-size: 22px;
  color: var(--t2);
}
.ticket.gratis .price .amount { color: var(--t1); }
.ticket.vip .price .amount { color: var(--teal); }
.ticket .price .save {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.ticket .fineprint {
  font-size: 13px;
  color: var(--t2);
  margin-top: 12px;
  font-style: italic;
}

.tickets-scarcity {
  margin-top: 32px;
  text-align: center;
}

/* ============ FAQ ============ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--t1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question .toggle {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--teal);
  transition: transform 0.2s;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  color: var(--t2);
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  padding: 0 28px 24px;
  max-height: 300px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.final-cta .lead {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--t2);
  margin-bottom: 48px;
  font-style: italic;
}
.final-cta .btn-row { justify-content: center; }

/* ============ FOOTER ============ */
footer {
  padding: 48px 0 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
footer .logo {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--t2);
  font-size: 13px;
  margin-bottom: 16px;
}
footer .legal {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
}
footer a { color: var(--t2); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--t1); }

/* ============ Button modifiers ============ */
.btn-lg {
  padding: 22px 36px;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.btn-row-single { justify-content: center; }

/* ============ Inline CTA (mid-page anchor) ============ */
.cta-inline {
  margin-top: 64px;
  padding: 32px;
  background: linear-gradient(135deg, var(--card) 0%, rgba(20, 184, 166, 0.06) 100%);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-inline .cta-text {
  flex: 1;
}
.cta-inline .cta-text strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--t1);
}
.cta-inline .cta-text p {
  font-size: 14px;
  color: var(--t2);
  margin: 0;
}
.cta-inline .btn {
  flex-shrink: 0;
  padding: 16px 28px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .cta-inline {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }
  .cta-inline .btn {
    width: 100%;
    padding: 16px 24px;
  }
}

/* ============ Signup form ============ */
.signup {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.06) 0%, transparent 65%);
}
.signup .section-title {
  text-align: center;
  margin-bottom: 16px;
}
.signup-intro {
  text-align: center;
  color: var(--t2);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.signup-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signup-form input {
  width: 100%;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--t1);
  transition: border-color 0.2s, background 0.2s;
}
.signup-form input::placeholder { color: var(--t3); }
.signup-form input:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--surface);
}
.signup-form input:hover { border-color: var(--border-2); }
.signup-form button {
  margin-top: 6px;
  width: 100%;
}
.signup-fineprint {
  text-align: center;
  font-size: 13px;
  color: var(--t3);
  margin-top: 24px;
  font-style: italic;
}
@media (max-width: 600px) {
  .signup-form input { padding: 16px 18px; font-size: 16px; }
  .signup-form { padding: 0 4px; }
}

/* ============ Animations ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.7s ease-out backwards; }
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero .subhead { animation-delay: 0.25s; }
.hero .qualifier { animation-delay: 0.35s; }
.hero-cta { animation-delay: 0.45s; }
.scarcity { animation-delay: 0.55s; }/* End custom CSS */