:root {
  --bg: #020806;
  --panel: rgba(3, 19, 14, 0.78);
  --panel-strong: rgba(5, 28, 21, 0.92);
  --text: #f4fff9;
  --muted: #9bb3a8;
  --green: #38ff9c;
  --green-2: #0bd77b;
  --cyan: #48efff;
  --line: rgba(56, 255, 156, 0.18);
  --line-strong: rgba(56, 255, 156, 0.45);
  --shadow: rgba(56, 255, 156, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 255, 156, 0.13), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(72, 239, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #020806 0%, #04120e 48%, #020806 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56, 255, 156, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 255, 156, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

#network-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  opacity: 0.44;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 84px);
  background: rgba(2, 8, 6, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #00150c;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 10px;
  box-shadow: 0 0 28px var(--shadow);
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #d0ddd6;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--green);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button.primary,
.header-cta {
  color: #00130b;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button.primary:hover,
.header-cta:hover,
.button.ghost:hover {
  transform: translateY(-2px);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 6vw, 90px);
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.94) 0%, rgba(2, 8, 6, 0.78) 44%, rgba(2, 8, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(2, 8, 6, 0.08), rgba(2, 8, 6, 0.84)),
    url("assets/hero-profissional-timeads.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 45%, rgba(56, 255, 156, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 6, 0.04), rgba(2, 8, 6, 0.86));
}

.hero-content,
.card,
.steps article,
.dashboard-panel,
.plan-card,
.final-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: clamp(28px, 4vw, 48px);
}

.hero-avatar {
  width: 118px;
  height: 118px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(2, 8, 6, 0.8);
  box-shadow: 0 0 34px rgba(56, 255, 156, 0.24);
}

.hero-avatar img {
  width: 146%;
  height: 146%;
  object-fit: cover;
  object-position: 58% 14%;
  transform: translate(-16%, -11%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

p,
li {
  color: var(--muted);
}

.hero-content p,
.section-head p,
.section-copy p,
.final-cta p {
  font-size: 18px;
}

.actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section-cta {
  justify-content: center;
}

.section-cta.center {
  justify-content: center;
  margin-top: 34px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chips span,
.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  color: #d9fff0;
  background: rgba(56, 255, 156, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 84px);
}

.section-head {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.card-grid,
.plan-grid,
.steps {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.card,
.steps article,
.plan-card {
  padding: 26px;
}

.card span,
.steps strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 28px;
  color: #00150c;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.split-section,
.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.section-copy {
  max-width: 760px;
}

.steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-section {
  background: rgba(56, 255, 156, 0.035);
}

.dashboard-panel {
  padding: 24px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-top small {
  margin-left: auto;
  color: var(--green);
  font-weight: 900;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

.panel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel-cards div {
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.panel-cards span,
.panel-cards strong {
  display: block;
}

.panel-cards span {
  color: var(--muted);
  font-size: 13px;
}

.panel-cards strong {
  margin-top: 6px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 240px;
  margin-top: 18px;
  padding: 18px;
  background:
    linear-gradient(rgba(56, 255, 156, 0.08) 1px, transparent 1px),
    rgba(0, 0, 0, 0.18);
  background-size: 100% 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.bar-chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--cyan), var(--green-2));
  box-shadow: 0 0 22px rgba(56, 255, 156, 0.28);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green);
}

.plans-section {
  background: rgba(56, 255, 156, 0.035);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card.featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(8, 42, 31, 0.92), rgba(3, 19, 14, 0.84));
  box-shadow: 0 0 54px rgba(56, 255, 156, 0.16);
}

.plan-card.action-plan {
  border-color: rgba(72, 239, 255, 0.38);
  box-shadow: 0 0 42px rgba(72, 239, 255, 0.1);
}

.plan-card.dashboard-product {
  border-color: rgba(56, 255, 156, 0.52);
  background:
    radial-gradient(circle at 80% 0%, rgba(72, 239, 255, 0.12), transparent 30%),
    rgba(3, 19, 14, 0.78);
}

.plan-label {
  width: max-content;
  margin: 0;
}

.price {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
}

.plan-promise {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 auto;
  padding-left: 20px;
}

.plan-advantage {
  margin: 0;
  padding: 16px;
  color: #d9fff0;
  background: rgba(56, 255, 156, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.final-cta {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  text-align: center;
}

.final-cta .button {
  margin-top: 18px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 84px);
  color: var(--muted);
  background: rgba(2, 8, 6, 0.9);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer strong {
  color: var(--text);
  letter-spacing: 0.14em;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(24px, 4vw, 36px);
  background: rgba(3, 19, 14, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.54), 0 0 64px rgba(56, 255, 156, 0.14);
}

.modal-dialog h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

#lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

#lead-form.is-loading {
  pointer-events: none;
}

#lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

#lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  outline: none;
}

#lead-form input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(56, 255, 156, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.submit-button {
  gap: 10px;
}

.button-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 19, 11, 0.24);
  border-top-color: #00130b;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

#lead-form.is-loading .button-loader {
  display: inline-block;
}

#lead-form.is-loading .button-label {
  opacity: 0.78;
}

.lead-success {
  display: grid;
  gap: 12px;
}

.lead-success .button {
  margin-top: 10px;
}

.dashboard-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.dashboard-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(56, 255, 156, 0.18), transparent 28%),
    radial-gradient(circle at 88% 54%, rgba(72, 239, 255, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(2, 8, 6, 0.98), rgba(5, 30, 21, 0.88) 48%, rgba(2, 8, 6, 0.96));
}

.dashboard-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.dashboard-hero-copy h1 {
  max-width: 720px;
}

.dashboard-showcase {
  position: relative;
  z-index: 2;
  padding: 20px;
  background: rgba(2, 12, 22, 0.78);
  border: 1px solid rgba(72, 239, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 0 70px rgba(56, 255, 156, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.showcase-top,
.showcase-tabs,
.showcase-grid,
.feature-list {
  display: grid;
  gap: 14px;
}

.showcase-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 16px;
}

.showcase-top strong {
  font-size: 22px;
}

.showcase-top span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.showcase-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.showcase-tabs span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #d9fff0;
  background: rgba(56, 255, 156, 0.08);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-grid article {
  min-height: 150px;
  padding: 18px;
  background: rgba(8, 18, 32, 0.82);
  border: 1px solid rgba(72, 239, 255, 0.22);
  border-radius: 14px;
}

.showcase-grid small,
.feature-list h3 {
  color: var(--green);
}

.showcase-grid small {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-grid strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.showcase-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.chart-card,
.spend-card {
  min-height: 250px;
}

.line-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 176px;
  margin-top: 18px;
  padding: 12px;
  background:
    linear-gradient(rgba(56, 255, 156, 0.08) 1px, transparent 1px),
    rgba(0, 0, 0, 0.15);
  background-size: 100% 42px;
  border-radius: 12px;
}

.line-chart i {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(56, 255, 156, 0.25);
}

.line-chart i:nth-child(1) { height: 28%; }
.line-chart i:nth-child(2) { height: 46%; }
.line-chart i:nth-child(3) { height: 38%; }
.line-chart i:nth-child(4) { height: 70%; }
.line-chart i:nth-child(5) { height: 54%; }
.line-chart i:nth-child(6) { height: 82%; }
.line-chart i:nth-child(7) { height: 62%; }
.line-chart i:nth-child(8) { height: 90%; }
.line-chart i:nth-child(9) { height: 58%; }
.line-chart i:nth-child(10) { height: 76%; }

.spend-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.spend-card span {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.spend-card b {
  color: var(--text);
}

.spend-card i {
  display: block;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
}

.dashboard-build-section {
  background: rgba(56, 255, 156, 0.035);
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list article {
  padding: 26px;
  background: rgba(3, 19, 14, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.feature-list h3 {
  margin-bottom: 10px;
}

.centered-actions {
  justify-content: center;
}

.finance-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 6vw, 90px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.finance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.94) 0%, rgba(2, 8, 6, 0.82) 46%, rgba(2, 8, 6, 0.24) 100%),
    linear-gradient(180deg, rgba(2, 8, 6, 0.08), rgba(2, 8, 6, 0.86)),
    url("assets/hero-profissional-timeads.png") center right / cover no-repeat;
}

.finance-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 45%, rgba(56, 255, 156, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 6, 0.04), rgba(2, 8, 6, 0.88));
}

.finance-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.finance-hero-copy h1 {
  max-width: 780px;
}

.finance-command {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: rgba(3, 14, 24, 0.82);
  border: 1px solid rgba(72, 239, 255, 0.26);
  border-radius: 24px;
  box-shadow: 0 0 70px rgba(56, 255, 156, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.command-top,
.risk-strip,
.finance-grid {
  display: grid;
  gap: 14px;
}

.command-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 14px;
}

.command-top strong {
  font-size: 22px;
}

.command-top span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.risk-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.risk-strip span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #d9fff0;
  background: rgba(56, 255, 156, 0.08);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.finance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.finance-grid article {
  min-height: 148px;
  padding: 18px;
  background: rgba(8, 18, 32, 0.82);
  border: 1px solid rgba(72, 239, 255, 0.22);
  border-radius: 14px;
}

.finance-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finance-grid strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.finance-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.finance-chart,
.policy-card {
  min-height: 250px;
}

.signal-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 178px;
  margin-top: 18px;
  padding: 12px;
  background:
    linear-gradient(rgba(56, 255, 156, 0.08) 1px, transparent 1px),
    rgba(0, 0, 0, 0.16);
  background-size: 100% 42px;
  border-radius: 12px;
}

.signal-chart i {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.signal-chart i:nth-child(1) { height: 34%; }
.signal-chart i:nth-child(2) { height: 48%; }
.signal-chart i:nth-child(3) { height: 42%; }
.signal-chart i:nth-child(4) { height: 66%; }
.signal-chart i:nth-child(5) { height: 58%; }
.signal-chart i:nth-child(6) { height: 86%; }
.signal-chart i:nth-child(7) { height: 74%; }
.signal-chart i:nth-child(8) { height: 92%; }

.policy-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.policy-card span {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.policy-card b {
  color: var(--text);
}

.policy-card i {
  display: block;
  width: 100%;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
}

.finance-split,
.finance-dark-band {
  background: rgba(56, 255, 156, 0.035);
}

.finance-offer {
  background:
    radial-gradient(circle at 16% 12%, rgba(56, 255, 156, 0.08), transparent 28%),
    rgba(56, 255, 156, 0.035);
}

.finance-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.finance-offer-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.finance-offer-card.main-offer {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 90% 8%, rgba(72, 239, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 42, 31, 0.92), rgba(3, 19, 14, 0.84));
  box-shadow: 0 0 64px rgba(56, 255, 156, 0.16);
}

.finance-offer-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.finance-offer-card .button {
  margin-top: 12px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
}

.offer-differentials {
  margin-top: 18px;
}

.finance-final {
  border-color: rgba(72, 239, 255, 0.34);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 681px) {
  .hero-avatar {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .dashboard-hero,
  .finance-hero,
  .split-section,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 820px;
  }

  .dashboard-hero-copy {
    max-width: 860px;
  }

  .finance-hero-copy {
    max-width: 860px;
  }

  .card-grid.four,
  .card-grid.three,
  .plan-grid,
  .steps,
  .finance-offer-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    justify-content: center;
    letter-spacing: 0.08em;
  }

  .header-cta {
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    overflow: visible;
    font-size: 12px;
  }

  .nav a {
    display: grid;
    place-items: center;
    min-height: 36px;
    padding: 0 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .hero {
    min-height: auto;
    padding: 18px 14px 34px;
    background:
      linear-gradient(180deg, rgba(2, 8, 6, 0.84) 0%, rgba(2, 8, 6, 0.94) 52%, rgba(2, 8, 6, 1) 100%),
      url("assets/hero-profissional-timeads.png") 63% top / auto 170px no-repeat;
  }

  .dashboard-hero {
    min-height: auto;
    padding: 42px 16px 58px;
  }

  .finance-hero {
    min-height: auto;
    padding: 18px 14px 34px;
    background:
      linear-gradient(180deg, rgba(2, 8, 6, 0.84) 0%, rgba(2, 8, 6, 0.94) 52%, rgba(2, 8, 6, 1) 100%),
      url("assets/hero-profissional-timeads.png") 63% top / auto 170px no-repeat;
  }

  .dashboard-showcase {
    padding: 14px;
  }

  .finance-command {
    padding: 14px;
  }

  .showcase-top,
  .showcase-tabs,
  .showcase-grid,
  .command-top,
  .risk-strip,
  .finance-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .showcase-top span,
  .command-top span {
    justify-self: start;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .finance-hero-copy {
    padding: 20px;
    text-align: center;
  }

  .hero-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-content p,
  .section-head p,
  .section-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .actions {
    margin-top: 22px;
  }

  .chips {
    margin-top: 18px;
  }

  .actions,
  .section-cta,
  .chips {
    justify-content: center;
  }

  .button,
  .actions .button,
  .section-cta .button {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .card-grid.four,
  .card-grid.three,
  .plan-grid,
  .steps,
  .finance-offer-grid,
  .panel-cards {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 180px;
    gap: 8px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
