/* =========================================================
   Sharp English — Landing Page (versão HTML estática)
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --radius: 0.5rem;

  --background: #0f1c2f;
  --foreground: #f9f1e3;
  --ink: #081221;
  --surface: #14263c;
  --card: #14263c;
  --primary: #e2ad4b;
  --primary-foreground: #0d1b2d;
  --secondary: #1c3350;
  --muted: #1c3350;
  --muted-foreground: #b9c5d6;
  --accent: #dfc07f;
  --accent-foreground: #0d1b2d;
  --success: #4fc38a;
  --destructive: #e2564f;
  --border: rgba(255, 255, 255, 0.12);
  --input: rgba(255, 255, 255, 0.16);

  --gradient-cta: linear-gradient(100deg, #f2cd76, #d2a249 55%, #c08b2f);
  --gradient-hero: radial-gradient(120% 90% at 15% 0%, rgba(223, 192, 127, 0.18), transparent 60%),
    radial-gradient(100% 80% at 95% 10%, rgba(226, 173, 75, 0.22), transparent 62%);
  --shadow-cta: 0 14px 40px -12px rgba(226, 173, 75, 0.6);
  --shadow-panel: 0 40px 80px -30px rgba(0, 0, 0, 0.7);

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select {
  font-family: inherit;
}

svg.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 72rem; /* 6xl */
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-gradient-cta {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-hero-glow {
  background-image: var(--gradient-hero);
}

.shadow-panel {
  box-shadow: var(--shadow-panel);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.muted {
  color: var(--muted-foreground);
}

/* ---------- Botões ---------- */

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  background-size: 220% 100%;
  animation: shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { background-position: -140% 0; }
  100% { background-position: 240% 0; }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 2rem;
  border: none;
  border-radius: 0.375rem;
  background-image: var(--gradient-cta);
  color: var(--primary-foreground);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-cta:hover {
  transform: scale(1.02);
}

.btn-cta:disabled {
  opacity: 0.7;
  cursor: default;
}

.btn-cta.small {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.75rem;
}

.btn-cta .icon {
  transition: transform 0.2s ease;
}

.btn-cta:hover .icon.arrow {
  transform: translateX(4px);
}

/* ---------- Top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.9);
  backdrop-filter: blur(8px);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-countdown {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.countdown-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
}

@media (min-width: 640px) {
  .topbar-countdown {
    display: flex;
  }
}

/* ---------- Logo ---------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.logo img {
  border-radius: 0.375rem;
  object-fit: cover;
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 3.5rem;
  }
}

.logo .logo-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.24em;
}

.logo .logo-text .accent {
  color: var(--primary);
}

.footer .logo img {
  height: 2rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 3.5rem;
}

@media (min-width: 640px) {
  .hero {
    padding-top: 4rem;
  }
}

.hero .container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(223, 192, 127, 0.4);
  background: rgba(223, 192, 127, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.hero h1 {
  margin-top: 1.25rem;
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.1rem;
  }
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero-sub {
    font-size: 1.125rem;
  }
}

.hero-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .hero-list {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-list .icon {
  color: var(--success);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-cta {
  height: 3.5rem;
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 173, 75, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(226, 173, 75, 0); }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-rating .stars {
  display: flex;
}

.hero-rating .stars svg {
  fill: var(--primary);
  color: var(--primary);
}

.hero-visual {
  position: relative;
}

.hero-visual .hero-img {
  display: none;
  position: absolute;
  top: -1.5rem;
  right: 0;
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  opacity: 0.25;
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (min-width: 1024px) {
  .hero-visual .hero-img {
    display: block;
  }
}

.hero-visual-inner {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-form-panel {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(20, 38, 60, 0.95);
  padding: 1.5rem;
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .hero-form-panel {
    padding: 2rem;
  }
}

/* ---------- Countdown ---------- */

.countdown {
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 173, 75, 0.35);
  background: rgba(8, 18, 33, 0.7);
  padding: 1rem;
  box-shadow: var(--shadow-panel);
}

.countdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}

.countdown-seats {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.68rem;
  color: var(--muted-foreground);
}

.countdown-seats .icon {
  color: var(--accent);
}

.countdown-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.countdown-unit {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(20, 38, 60, 0.8);
  padding: 0.5rem 0;
  text-align: center;
}

.countdown-unit .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .countdown-unit .value {
    font-size: 1.875rem;
  }
}

.countdown-unit .label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
}

.icon-tick {
  animation: tick 1s steps(2, end) infinite;
}

@keyframes tick {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(18deg); }
}

/* ---------- Urgency ticker ---------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(226, 173, 75, 0.25);
  border-bottom: 1px solid rgba(226, 173, 75, 0.25);
  background: rgba(226, 173, 75, 0.1);
  padding: 0.625rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding-right: 2.5rem;
  animation: marquee 26s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
}

.ticker-track span.item {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.ticker-track span.item .diamond {
  color: var(--accent);
}

/* ---------- Sections genéricas ---------- */

.section {
  scroll-margin-top: 5rem;
  padding: 4rem 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 1.25rem;
  }
}

.section.alt {
  background: rgba(20, 38, 60, 0.4);
}

.section-head {
  max-width: 48rem;
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .section-head h2 {
    font-size: 3rem;
  }
}

.section-head .sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .section-head .sub {
    font-size: 1.125rem;
  }
}

/* ---------- Proof bar ---------- */

.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.6);
}

.proof-bar .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .proof-bar .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-bar .stat-n {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
}

@media (min-width: 640px) {
  .proof-bar .stat-n {
    font-size: 2.25rem;
  }
}

.proof-bar .stat-l {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .proof-bar .stat-l {
    font-size: 0.875rem;
  }
}

/* ---------- Pain ---------- */

.pain-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.5);
  padding: 1rem;
}

.pain-item .icon {
  margin-top: 0.125rem;
  color: var(--destructive);
}

.pain-item p {
  font-size: 0.875rem;
  color: rgba(249, 241, 227, 0.9);
}

@media (min-width: 640px) {
  .pain-item p {
    font-size: 1rem;
  }
}

.pain-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(226, 173, 75, 0.4);
  background: rgba(226, 173, 75, 0.1);
  padding: 1rem;
}

.pain-highlight .icon {
  color: var(--primary);
}

.pain-highlight p {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .pain-highlight p {
    font-size: 1rem;
  }
}

/* ---------- Method ---------- */

.method-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.method-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.method-card:hover {
  border-color: rgba(226, 173, 75, 0.5);
}

.method-card .num {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(249, 241, 227, 0.05);
}

.method-card .icon-lg {
  color: var(--accent);
  width: 1.75rem;
  height: 1.75rem;
}

.method-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.method-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.method-cta {
  margin-top: 2.5rem;
}

/* ---------- Authority ---------- */

.authority-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .authority-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.authority-photo-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 24rem;
}

.authority-glow {
  position: absolute;
  inset: -0.75rem;
  border-radius: 1rem;
  background-image: var(--gradient-cta);
  opacity: 0.25;
  filter: blur(24px);
}

.authority-photo-frame {
  position: relative;
  width: 100%;
  padding-top: 100%; /* força proporção quadrada em qualquer navegador */
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(226, 173, 75, 0.3);
  box-shadow: var(--shadow-panel);
}

.authority-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.authority-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(226, 173, 75, 0.4);
  background: rgba(8, 18, 33, 0.95);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
}

.authority-quote-icon {
  color: rgba(226, 173, 75, 0.6);
  width: 2rem;
  height: 2rem;
}

.authority blockquote {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .authority blockquote {
    font-size: 1.875rem;
  }
}

.authority-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .authority-text {
    font-size: 1rem;
  }
}

.credentials {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .credentials {
    grid-template-columns: 1fr 1fr;
  }
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.6);
  padding: 0.875rem;
  font-size: 0.875rem;
}

.credentials .icon {
  color: var(--accent);
}

.authority-cta {
  margin-top: 2rem;
}

/* ---------- Results ---------- */

.results-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.result-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.6);
  padding: 1.5rem;
}

.result-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.result-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(223, 192, 127, 0.15);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}

.result-name-wrap {
  flex: 1;
}

.result-name {
  font-family: var(--font-display);
  font-weight: 700;
}

.result-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.result-time {
  border-radius: 9999px;
  border: 1px solid rgba(226, 173, 75, 0.4);
  background: rgba(226, 173, 75, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.result-body {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.result-body .row {
  display: flex;
  gap: 0.5rem;
}

.result-body .icon {
  margin-top: 0.125rem;
}

.result-body .before .icon {
  color: var(--destructive);
}

.result-body .before p {
  color: var(--muted-foreground);
}

.result-body .after .icon {
  color: var(--success);
}

.result-body .after p {
  font-weight: 500;
  color: var(--foreground);
}

/* ---------- Impact ---------- */

.impact-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.impact-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.6);
  padding: 1.75rem;
}

.impact-card.highlight {
  position: relative;
  overflow: hidden;
  border-color: rgba(226, 173, 75, 0.5);
  background: rgba(226, 173, 75, 0.1);
  box-shadow: var(--shadow-panel);
}

.impact-card .icon-bg {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  color: rgba(226, 173, 75, 0.4);
}

.impact-value {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--muted-foreground);
}

.impact-card.highlight .impact-value {
  color: var(--primary);
}

.impact-caption {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.impact-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.impact-card.highlight .impact-list {
  color: var(--foreground);
}

.impact-list li {
  display: flex;
  gap: 0.5rem;
}

.impact-list .icon {
  margin-top: 0.125rem;
}

.impact-card:not(.highlight) .impact-list .icon {
  color: var(--destructive);
}

.impact-card.highlight .impact-list .icon {
  color: var(--success);
}

/* ---------- FAQ ---------- */

.faq-list {
  margin-top: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.6);
  overflow: hidden;
}

.faq-list details {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: none;
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary .q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .faq-list summary .q {
    font-size: 1.125rem;
  }
}

.faq-list summary .plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary .plus {
  transform: rotate(45deg);
}

.faq-list details p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Final CTA ---------- */

.final-cta-panel {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(8, 18, 33, 0.7);
  padding: 1.5rem;
  box-shadow: var(--shadow-panel);
}

@media (min-width: 640px) {
  .final-cta-panel {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-panel {
    grid-template-columns: 1fr 1fr;
  }
}

.final-cta-panel h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .final-cta-panel h2 {
    font-size: 3rem;
  }
}

.final-cta-panel .desc {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.final-cta-panel .countdown-wrap {
  margin-top: 1.5rem;
  max-width: 24rem;
}

.final-cta-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.final-cta-note .icon {
  color: var(--accent);
}

.final-cta-form-wrap {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .final-cta-form-wrap {
    padding: 1.75rem;
  }
}

/* ---------- Lead form ---------- */

.lead-form {
  scroll-margin-top: 6rem;
}

.lead-form-head {
  margin-bottom: 1.25rem;
}

.lead-form-head h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .lead-form-head h3 {
    font-size: 1.875rem;
  }
}

.lead-form-head .desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.lead-form .fields {
  display: grid;
  gap: 0.75rem;
}

.lead-form input,
.lead-form select {
  height: 3rem;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--input);
  background: rgba(8, 18, 33, 0.6);
  padding: 0 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
}

.lead-form input::placeholder {
  color: var(--muted-foreground);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(226, 173, 75, 0.4);
}

.lead-form select {
  color: var(--foreground);
}

.lead-form select:invalid {
  color: var(--muted-foreground);
}

.lead-form button[type="submit"] {
  margin-top: 0.25rem;
  width: 100%;
}

.lead-form-foot {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.lead-form-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.lead-form-foot .icon {
  color: var(--accent);
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer .logo-wrap {
  display: flex;
  justify-content: center;
}

.footer p {
  margin-top: 1rem;
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
  min-width: 280px;
  max-width: 90vw;
  border-radius: 0.5rem;
  border: 1px solid rgba(226, 173, 75, 0.4);
  background: var(--surface);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-panel);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast .title {
  font-weight: 700;
  color: var(--success);
  font-size: 0.875rem;
}

.toast .desc {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
