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

:root {
  --bg:           #0B0D10;
  --bg-card:      #13161C;
  --bg-subtle:    #1A1E26;
  --text:         #EDE8DC;
  --text-muted:   #7A7670;
  --text-dim:     #4A4844;
  --accent:       #C8892A;
  --accent-light: #E09B30;
  --teal:         #1B9068;
  --teal-light:   #22B07E;
  --border:       rgba(237,232,220,0.08);
  --border-med:   rgba(237,232,220,0.14);
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(11,13,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.875rem; font-weight: 400;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); transition: color 0.2s; }
.btn-nav {
  background: transparent;
  border: 1px solid var(--border-med);
  color: var(--text);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-nav:hover { border-color: var(--accent); background: rgba(200,137,42,0.06); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 2.5rem 5rem;
  max-width: 860px; margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -40px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,137,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  max-width: 680px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ── EMAIL CAPTURE ─────────────────────────────────── */
.capture-block {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: 8px;
  padding: 2rem 2.25rem;
  max-width: 520px;
}
.capture-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.capture-block strong { color: var(--text); font-weight: 500; }
.capture-form {
  display: flex; gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.capture-form input[type=email] {
  flex: 1;
  background: var(--bg-subtle);
  border: 1px solid var(--border-med);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.capture-form input[type=email]::placeholder { color: var(--text-dim); }
.capture-form input[type=email]:focus { border-color: var(--accent); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-light); }
.capture-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 1.25rem;
}
.capture-meta span::before {
  content: '·';
  margin-right: 1.25rem;
}
.capture-meta span:first-child::before { content: ''; margin: 0; }

/* ── DIVIDER ───────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 2.5rem;
}

/* ── SECTION BASE ──────────────────────────────────── */
section { padding: 5rem 2.5rem; max-width: 860px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--text-muted);
}
h2.display {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
h2.display em { font-style: italic; color: var(--accent); }

/* ── ABOUT / WHAT WE DO ────────────────────────────── */
.about-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.about-text strong { color: var(--text); font-weight: 500; }
.tagline-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 2rem;
  max-width: 500px;
  line-height: 1.5;
}

/* ── SERVICES GRID ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.service-card {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-subtle); }
.service-card:nth-child(1),
.service-card:nth-child(2) { border-bottom: 1px solid var(--border); }
.service-icon {
  font-size: 1.4rem; margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── FOR WHOM ──────────────────────────────────────── */
.icp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.icp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.icp-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.icp-card:hover::after { transform: scaleX(1); }
.icp-card:last-child::after { background: var(--teal); }
.icp-tag {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.icp-card:last-child .icp-tag { color: var(--teal-light); }
.icp-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 500;
  margin-bottom: 0.75rem;
}
.icp-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.icp-cta {
  font-size: 0.83rem; font-weight: 500;
  color: var(--accent);
  display: flex; align-items: center; gap: 0.4rem;
  cursor: pointer;
}
.icp-card:last-child .icp-cta { color: var(--teal-light); }
.icp-cta::after { content: '→'; }

/* ── LOGOS / PROOF ─────────────────────────────────── */
.proof-section {
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem;
  max-width: 860px; margin: 0 auto;
  text-align: center;
}
.proof-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 2rem;
}
.logos-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 2rem 3rem;
  filter: saturate(0) opacity(0.35);
}
.logo-item {
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text);
}

/* ── ABOUT HENRIQUE ────────────────────────────────── */
.about-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}
.founder-avatar {
  width: 160px; height: 160px;
  border-radius: 100%;
  background: var(--bg-subtle);
  border: 0px solid var(--border-med);
  overflow: hidden;
  flex-shrink: 0;
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--text-muted);
}
.founder-name {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 500;
  margin-bottom: 0.25rem;
}
.founder-title {
  font-size: 0.83rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.founder-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* ── BLOG ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.article-card:hover {
  border-color: var(--border-med);
  background: var(--bg-subtle);
}
.article-type {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 0.75rem;
}
.article-card.is-case .article-type { color: var(--accent); }
.article-card h3 {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}
.article-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.article-meta {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: flex; align-items: center; justify-content: space-between;
}
.read-link {
  font-size: 0.8rem; font-weight: 500;
  color: var(--accent);
  display: flex; align-items: center; gap: 0.3rem;
}
.read-link::after { content: '→'; }

/* ── FOOTER CAPTURE ────────────────────────────────── */
.footer-capture {
  border-top: 1px solid var(--border);
  padding: 5rem 2.5rem;
  text-align: center;
  max-width: 860px; margin: 0 auto;
}
.footer-capture h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.footer-capture h2 em { font-style: italic; color: var(--accent); }
.footer-capture p {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}
.footer-form {
  display: flex; justify-content: center; gap: 0.75rem;
  max-width: 420px; margin: 0 auto 0.875rem;
}
.footer-form input[type=email] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-form input[type=email]::placeholder { color: var(--text-dim); }
.footer-form input[type=email]:focus { border-color: var(--accent); }
.footer-meta-center {
  font-size: 0.78rem; color: var(--text-dim); text-align: center;
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 860px; margin: 0 auto;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 0.95rem; font-weight: 500;
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex; gap: 2rem;
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-links a:hover { color: var(--text-muted); }
.footer-copy {
  font-size: 0.78rem; color: var(--text-dim);
}

/* ── TAGARELO BANNER ───────────────────────────────── */
.tagarelo-banner {
  background: linear-gradient(135deg, #0D1A16 0%, #0F1810 100%);
  border: 1px solid rgba(27,144,104,0.3);
  border-radius: 8px;
  padding: 2.25rem 2.25rem;
  margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.tagarelo-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.tagarelo-banner-text { flex: 1; }
.tagarelo-banner-text .banner-eyebrow {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 0.4rem;
}
.tagarelo-banner-text h3 {
  font-family: var(--serif);
  font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem;
}
.tagarelo-banner-text p {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.5;
}
.banner-cta-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  flex-shrink: 0;
}
.banner-cta-sub {
  font-size: 0.75rem; color: var(--text);
  text-align: center; font-weight: 400; line-height: 1.4;
  max-width: 160px;
}
.btn-teal-filled {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.btn-teal-filled:hover { background: var(--teal-light); border-color: var(--teal-light); }
.btn-teal {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal-light);
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-teal:hover { background: rgba(27,144,104,0.1); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 680px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 4rem 1rem 3rem; }
  section { padding: 3.5rem 1rem; }
  .capture-form { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .icp-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-founder { grid-template-columns: 1fr; }
  .footer-form { flex-direction: column; max-width: 100%; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .tagarelo-banner { flex-direction: column; }
  .banner-cta-block { width: 100%; }
  .btn-teal { width: 100%; }
  .btn-teal-filled { width: 100%; }
  .proof-section { padding: 3rem 1rem; }
  .divider { margin: 0 1rem; }
}
