:root {
  --bg:        #050505;
  --surface:   #0f0f0f;
  --surface-2: #161616;
  --border:    #1e1e1e;
  --border-2:  #2a2a2a;
  --text:      #ffffff;
  --sub:       #aaaaaa;
  --muted:     #666666;
  --dim:       #444444;
  --amber:     #f59e0b;
  --amber-2:   #fbbf24;
  --green:     #22c55e;
  --red:       #ef4444;
  --blue:      #2fb7c6;
  --mono:      "DM Mono", monospace;
  --sans:      "Plus Jakarta Sans", system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border-2); }
::selection { background: rgba(245,158,11,.2); color: #fff; }

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

/* Labels pequenos — branco, não âmbar */
.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 { font-size: clamp(30px, 6vw, 58px); letter-spacing: -0.04em; font-weight: 800; margin-bottom: 10px; }
h2 { font-size: clamp(20px, 4vw, 34px); letter-spacing: -0.03em; font-weight: 800; margin-bottom: 12px; }
p { color: var(--sub); margin-bottom: 10px; font-weight: 300; }

.grid { display: grid; gap: 1px; background: var(--border); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: var(--surface-2);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.18s;
}
.card:hover { background: #1a1a1a; }

/* Linha âmbar no topo — accent gráfico */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.18s;
}
.card:hover::before { opacity: 1; }

/* Badge — branco, não âmbar */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.list { display: grid; gap: 8px; margin-top: 10px; }
.list li { list-style: none; color: var(--muted); font-size: 13px; font-weight: 300; }
.list li::before { content: "— "; color: var(--border-2); font-family: var(--mono); }

.hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 45% 60% at 78% 42%, rgba(245, 158, 11, 0.1), transparent 70%);
}

.brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.brand-logo { height: 38px; width: auto; }
.brand-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--dim);
  text-transform: uppercase;
}

.nav-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.button {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--sub);
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.18s;
  text-transform: uppercase;
}
.button:hover { border-color: var(--border-2); color: var(--text); }

table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 13px; }
th, td { border-bottom: 1px solid var(--border); padding: 10px 8px; text-align: left; }
th {
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
