/* BrentWorks — plain, dependency-free stylesheet */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fb;
  --color-bg-dark: #0f172a;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-accent: #0ea5e9;
  --color-success: #16a34a;
  --color-warn: #f59e0b;
  --color-danger: #dc2626;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

  --font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.05s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--color-text);
}

.nav-links a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-cta {
  white-space: nowrap;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(
      circle at 80% -10%,
      rgba(14, 165, 233, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 0% 30%,
      rgba(37, 99, 235, 0.12),
      transparent 50%
    ),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.hero-inner {
  max-width: 820px;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 14px;
}

.lede {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 640px;
}

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

/* Spotlight */
.spotlight {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
}

.spotlight h1,
.spotlight h2,
.spotlight .spotlight-title {
  color: #ffffff;
}

.spotlight h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.spotlight .spotlight-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.25em;
  line-height: 1.05;
}

.spotlight-inner-single {
  max-width: 820px;
  text-align: left;
}

.hero-heading {
  color: #0f172a;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.leader {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 600px) {
  .leader {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.leader-photo {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.leader-body {
  min-width: 0;
}

.spotlight-copy-text {
  color: #e2e8f0;
  font-size: 1.05rem;
  max-width: 640px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.15);
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.spotlight-tagline {
  font-size: 1.15rem;
  color: #cbd5e1;
}

.spotlight-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
}

.spotlight-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.spotlight-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.spotlight-note {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Spotlight visual card */
.spotlight-card {
  background: #ffffff;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--color-border);
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.card-dot:nth-child(1) {
  background: #f87171;
}

.card-dot:nth-child(2) {
  background: #facc15;
}

.card-dot:nth-child(3) {
  background: #4ade80;
}

.card-title {
  margin-left: 10px;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.card-body {
  padding: 22px 24px 24px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.95rem;
}

.card-row:last-of-type {
  border-bottom: none;
}

.row-label {
  color: var(--color-muted);
}

.row-value {
  font-weight: 600;
  color: #0f172a;
}

.row-value.verified {
  color: var(--color-success);
}

.row-value.flagged {
  color: var(--color-warn);
}

.row-value.unverified {
  color: var(--color-danger);
}

.card-bar {
  margin-top: 16px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  border-radius: 999px;
}

.card-footer {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-lead {
  max-width: 780px;
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 40px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d1d5db;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-featured {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
}

.service-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
}

.service-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--color-primary);
}

/* Pillars */
.pillars {
  list-style: none;
  padding: 24px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pillars li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  color: #0f172a;
}

.pillars li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 480px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* Leadership */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.leader {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.leader h3 {
  margin-bottom: 4px;
}

.leader-title {
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.leader-email {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
  max-width: 820px;
}

.cta-inner {
  text-align: left;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--color-primary);
}

.cta-section .btn-primary:hover {
  background: #e0f2fe;
}

.cta-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-section .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-block {
  font-style: normal;
  color: #e0f2fe;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 28px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  margin: 0;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  margin: 0 8px;
  color: #475569;
}
