:root {
  color-scheme: dark;
  /* Triade KevinBK: laranja Cloudflare · roxo IA · limão código */
  --brand-orange: #f6821f;
  --brand-orange-2: #ff9a3c;
  --brand-purple: #8b4dff;
  --brand-purple-2: #b06bff;
  --brand-lime: #b8ff3c;
  --brand-lime-2: #9aef1a;
  --bg: #050812;
  --bg-soft: #080b14;
  --surface: rgba(12, 16, 30, 0.82);
  --surface-strong: rgba(16, 22, 40, 0.96);
  --surface-glass: rgba(255, 255, 255, 0.035);
  --text: #f7f8fb;
  --text-soft: #c8cdd8;
  --text-faint: #96a0b4;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  /* Hierarquia: laranja = ação · roxo = IA · limão = código/ok */
  --accent: var(--brand-orange);
  --accent-2: var(--brand-purple);
  --accent-3: var(--brand-lime);
  --accent-soft: rgba(246, 130, 31, 0.14);
  --accent-glow: rgba(139, 77, 255, 0.24);
  --lime-soft: rgba(184, 255, 60, 0.12);
  --lime-glow: rgba(184, 255, 60, 0.2);
  --ok: var(--brand-lime-2);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --radius-xl: 12px;
  --radius-lg: 10px;
  --radius-md: 8px;
  --container: 1240px;
}

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f7f8fc;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-glass: rgba(15, 23, 42, 0.03);
  --text: #101525;
  --text-soft: #4a5568;
  --text-faint: #7b8498;
  --line: rgba(17, 24, 39, 0.09);
  --line-strong: rgba(17, 24, 39, 0.14);
  --accent-soft: rgba(246, 130, 31, 0.1);
  --accent-glow: rgba(139, 77, 255, 0.12);
  --lime-soft: rgba(122, 190, 20, 0.1);
  --lime-glow: rgba(122, 190, 20, 0.16);
  --ok: #5f9f00;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 6%, var(--accent-glow), transparent 34rem),
    radial-gradient(circle at 12% 18%, var(--lime-soft), transparent 24rem),
    radial-gradient(circle at 48% 100%, rgba(246, 130, 31, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at top, black, transparent 72%);
  opacity: 0.18;
}

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

a,
button,
summary {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--text);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

section[id] {
  scroll-margin-top: 92px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-kicker {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--surface-strong), var(--accent-soft));
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 0 34px var(--accent-soft);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.footer-brand span:last-child {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy span {
  color: var(--text-faint);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  min-width: 0;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-purple) 55%, var(--brand-lime));
}

.theme-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, var(--line));
  border-radius: 12px;
  color: var(--text);
  background: var(--surface-glass);
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--accent-2);
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle__icon_sun,
.theme-toggle__icon_moon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hide sun in dark mode, show moon */
.theme-toggle__icon_sun { display: none; }
.theme-toggle__icon_moon { display: inline-flex; color: var(--accent-2); }

/* Show sun in light mode, hide moon */
:root[data-theme='light'] .theme-toggle__icon_sun { display: inline-flex; color: #f59e0b; }
:root[data-theme='light'] .theme-toggle__icon_moon { display: none; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 18px;
  color: var(--text-faint);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: var(--text-soft);
}

.section,
.hero-section,
.cta-banner {
  padding: clamp(70px, 8vw, 108px) 0;
}

.landing-hero {
  padding-top: clamp(58px, 8vw, 104px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.hero-chip,
.eyebrow,
.footer-eyebrow,
.timeline-index,
.proof-card__index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  border-radius: 9px;
  background: var(--accent-soft);
}

.hero-title,
.section-row h2,
.pain-intro h2,
.split-section h2,
.stack-panel h2,
.offer-panel h2,
.final-cta-panel h2,
.section-heading h1,
.section-heading h2,
.course-hero h1,
.about-grid h2,
.cta-banner h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.15rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-title {
  font-size: clamp(3.25rem, 7vw, 5.9rem);
}

.hero-title span {
  color: var(--accent);
  text-shadow: 0 0 34px var(--accent-glow);
}

.hero-support,
.section-row__description,
.section-description,
.hero-description,
.pain-intro p,
.split-section p,
.offer-panel p,
.final-cta-panel p,
.card p,
.prose p,
.cta-banner p {
  color: var(--text-soft);
}

.hero-support {
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-row span,
.hero-stat,
.chip-list li,
.stack-tags span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-glass);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.button-row,
.hero-actions,
.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid color-mix(in srgb, var(--brand-orange) 72%, var(--line));
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #e85d04 58%, var(--brand-purple) 165%);
  color: white;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(246, 130, 31, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button::after,
.card-link::after {
  content: '→';
  margin-left: 10px;
}

.button:hover,
.card:hover,
.project-card:hover,
.contact-link-card:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.button-compact {
  min-height: 46px;
  padding: 0 18px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.world-grid {
  position: absolute;
  inset: 10px 0 auto auto;
  width: min(100%, 560px);
  height: 360px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 62% 40%, var(--accent-glow), transparent 15rem),
    radial-gradient(circle, color-mix(in srgb, var(--text) 18%, transparent) 1.4px, transparent 1.8px);
  background-size: auto, 16px 16px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.8;
}

.terminal-card {
  position: absolute;
  top: 48px;
  right: 74px;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface-strong) 88%, black);
  box-shadow: var(--shadow), 0 0 80px var(--accent-soft);
}

.terminal-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff657a;
}

.terminal-dots span:nth-child(2) {
  background: #ffc44d;
}

.terminal-dots span:nth-child(3) {
  background: #55e28f;
}

.terminal-card pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  line-height: 1.75;
}

.hero-stat-panel {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-stat-panel div {
  padding: 18px 14px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.hero-stat-panel div:first-child {
  border-left: 0;
}

.hero-stat-panel strong {
  display: block;
  color: var(--accent-2);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.hero-stat-panel span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.section-row,
.split-section,
.stack-panel,
.offer-panel,
.final-cta-panel {
  display: grid;
  gap: 28px;
}

.section-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 28px;
}

.section-row__description {
  margin: 14px 0 0;
  font-size: 1rem;
}

.pain-panel,
.offer-panel,
.final-cta-panel,
.cta-banner-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, var(--surface), var(--surface-glass)),
    radial-gradient(circle at top right, var(--accent-soft), transparent 28rem);
  box-shadow: var(--shadow);
}

.pain-panel {
  padding: clamp(22px, 4vw, 34px);
}

.pain-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.pain-intro h2 {
  font-size: clamp(1.85rem, 3.7vw, 3rem);
}

.pain-intro p {
  margin: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card,
.contact-link-card,
.project-cta-card,
.stack-tile,
.stack-card,
.solution-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card,
.stack-tile,
.stack-card,
.solution-item,
.faq-item {
  padding: 22px;
}

.card:hover,
.stack-tile:hover,
.stack-card:hover,
.solution-item:hover,
.faq-item:hover {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
}

.card-icon,
.project-cta-card__plus,
.cta-orb {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-weight: 900;
}

.card h3,
.project-card h3,
.service-card h3,
.contact-link-card strong,
.project-cta-card h3,
.stack-tile h3,
.stack-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.24;
}

.card p,
.project-card p,
.service-card p,
.project-cta-card p {
  margin: 0;
}

.panel-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.panel-strip span {
  color: var(--accent-2);
}

.split-section {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 106px;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
}

.solution-item span {
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
}

.solution-item p {
  margin: 0;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.path-card,
.tier-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.path-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.path-card-accent {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-glass)),
    radial-gradient(circle at top right, var(--accent-soft), transparent 24rem);
}

.path-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.path-card > p,
.tier-card p {
  margin: 0;
  color: var(--text-soft);
}

.tier-grid {
  display: grid;
  gap: 10px;
}

.tier-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.tier-card span {
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.tier-card strong {
  color: var(--text);
  font-size: 1.15rem;
}

.card-grid,
.services-showcase-grid,
.stack-panel__grid,
.stack-grid,
.timeline-grid,
.contact-links-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card__media {
  display: block;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #141b2d, #0b0f19);
}

:root[data-theme='light'] .project-card__media {
  background: linear-gradient(135deg, #f1edf8, #fff7ed);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__fallback {
  display: grid;
  align-content: space-between;
  width: 100%;
  height: 100%;
  padding: 18px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--project-accent) 40%, transparent), transparent 48%),
    linear-gradient(135deg, #111827, #090d16);
}

.project-card__fallback span {
  color: var(--text-soft);
  font-size: 0.76rem;
  text-transform: lowercase;
}

.project-card__fallback strong {
  max-width: 10ch;
  color: white;
  font-size: 1.75rem;
  line-height: 0.98;
}

.project-card__body {
  padding: 18px;
}

.project-card__domain {
  display: block;
  margin-bottom: 10px;
  color: var(--text-faint);
  font-size: 0.76rem;
}

.project-card p {
  min-height: 74px;
}

.chip-list,
.feature-list,
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.chip-list li,
.stack-tags span {
  padding: 7px 9px;
  font-size: 0.75rem;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: '';
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.service-meta {
  margin-top: 12px;
  font-size: 0.9rem;
}

.service-meta strong {
  color: var(--text);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 900;
}

.project-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 26px;
}

.stack-panel {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.stack-panel__grid,
.stack-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offer-panel {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
}

.offer-box {
  display: grid;
  gap: 22px;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-soft);
}

.final-cta-panel {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
}

.final-cta-panel p {
  margin: 10px 0 0;
}

.cta-orb {
  width: 72px;
  height: 72px;
  margin: 0;
  border-radius: 999px;
  font-size: 1.8rem;
  box-shadow: 0 0 60px var(--accent-glow);
}

.contact-grid,
.course-hero,
.about-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.section-first {
  padding-top: 64px;
}

.section-soft {
  background: color-mix(in srgb, var(--surface-glass) 60%, transparent);
}

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

.contact-link-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.contact-link-card span {
  color: var(--text-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 16px;
}

.stats-panel,
.course-panel {
  padding: 24px;
}

.stat-item + .stat-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stat-item span {
  display: block;
  color: var(--text-faint);
}

.stat-item strong {
  color: var(--text);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: color-mix(in srgb, var(--bg) 84%, black);
}

.footer-grid {
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.8fr));
  align-items: start;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links strong {
  color: var(--text);
  font-size: 0.86rem;
}

.footer-links a,
.footer-bottom p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 24px;
}

/* Reference tuning: tighter, sharper and closer to the provided mockup. */
.nav-shell {
  min-height: 70px;
}

.brand-kicker,
.theme-toggle,
.hero-chip,
.button,
.trust-row span,
.hero-stat-panel,
.card,
.contact-link-card,
.project-cta-card,
.stack-tile,
.stack-card,
.solution-item,
.faq-item,
.pain-panel,
.offer-panel,
.final-cta-panel,
.cta-banner-inner {
  border-radius: var(--radius-lg);
}

.site-nav a {
  padding: 24px 0 22px;
}

.site-nav a::after {
  bottom: 9px;
  height: 2px;
}

.section,
.hero-section,
.cta-banner {
  padding: clamp(42px, 5.4vw, 70px) 0;
}

.landing-hero {
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 64px);
}

.hero-title {
  font-size: clamp(3.05rem, 6.1vw, 5.15rem);
}

.hero-support {
  margin-top: 18px;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.trust-row {
  gap: 9px;
  margin-top: 22px;
}

.trust-row span {
  min-height: 48px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.hero-actions {
  margin-top: 24px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
}

.hero-visual {
  min-height: 420px;
}

.world-grid {
  height: 310px;
  border-radius: var(--radius-xl);
}

.terminal-card {
  top: 34px;
  right: 42px;
  width: min(100%, 410px);
  padding: 18px;
  border-radius: var(--radius-xl);
}

.terminal-card pre {
  font-size: 0.82rem;
  line-height: 1.68;
}

.hero-stat-panel {
  bottom: 8px;
}

.hero-stat-panel div {
  padding: 14px 10px;
}

.hero-stat-panel strong {
  font-size: clamp(1.22rem, 2.5vw, 1.72rem);
}

.hero-stat-panel span {
  font-size: 0.75rem;
}

.section-row,
.split-section,
.stack-panel,
.offer-panel,
.final-cta-panel {
  gap: 20px;
}

.section-row {
  margin-bottom: 22px;
}

.section-row h2,
.pain-intro h2,
.split-section h2,
.stack-panel h2,
.offer-panel h2,
.final-cta-panel h2,
.section-heading h1,
.section-heading h2,
.course-hero h1,
.about-grid h2,
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -0.055em;
}

.pain-panel,
.offer-panel,
.final-cta-panel,
.cta-banner-inner {
  box-shadow: none;
}

.pain-panel {
  padding: 22px;
}

.pain-intro {
  gap: 22px;
  margin-bottom: 18px;
}

.pain-grid,
.card-grid,
.services-showcase-grid,
.stack-panel__grid,
.stack-grid,
.timeline-grid,
.contact-links-grid,
.faq-grid {
  gap: 12px;
}

.card,
.stack-tile,
.stack-card,
.solution-item,
.faq-item {
  padding: 18px;
  box-shadow: none;
}

.card-icon,
.project-cta-card__plus {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
}

.card h3,
.project-card h3,
.service-card h3,
.contact-link-card strong,
.project-cta-card h3,
.stack-tile h3,
.stack-card h3 {
  font-size: 0.94rem;
}

.card p,
.project-card p,
.service-card p,
.project-cta-card p,
.service-meta {
  font-size: 0.82rem;
  line-height: 1.55;
}

.panel-strip {
  margin-top: 16px;
  padding: 14px;
}

.home-projects-section .project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.project-card__media {
  aspect-ratio: 1.22 / 1;
}

.project-card__body {
  padding: 12px;
}

.project-card__domain {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.project-card p {
  min-height: 62px;
}

.chip-list,
.feature-list,
.stack-tags {
  gap: 6px;
  margin-top: 12px;
}

.chip-list li,
.stack-tags span {
  padding: 5px 7px;
  border-radius: var(--radius-md);
  font-size: 0.66rem;
}

.card-link {
  margin-top: 12px;
  font-size: 0.78rem;
}

.project-cta-card {
  padding: 16px;
}

.services-showcase-grid {
  gap: 12px;
}

.pill {
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: var(--radius-md);
  font-size: 0.66rem;
}

.service-meta {
  margin-top: 10px;
}

.stack-panel__grid,
.stack-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.offer-panel,
.final-cta-panel {
  padding: 24px;
}

.cta-orb {
  width: 58px;
  height: 58px;
  border-radius: 999px;
}

.site-footer {
  padding: 28px 0;
}

@media (max-width: 1120px) {
  .site-nav a {
    white-space: nowrap;
  }

  .hero-layout,
  .split-section,
  .stack-panel,
  .offer-panel,
  .final-cta-panel,
  .pain-intro,
  .contact-grid,
  .course-hero,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .hero-visual {
    min-height: 430px;
  }

  .terminal-card {
    right: 0;
  }

  .pain-grid,
  .paths-grid,
  .stack-panel__grid,
  .stack-grid,
  .contact-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-projects-section .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .theme-toggle__label,
  .brand-copy span {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.75rem, 14vw, 4.35rem);
  }

  .trust-row,
  .hero-stat-panel,
  .services-showcase-grid,
  .faq-grid,
  .card-grid-two,
  .card-grid-three,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

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

  .home-projects-section .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-grid,
  .paths-grid,
  .stack-panel__grid,
  .stack-grid,
  .contact-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .terminal-card {
    width: 100%;
    top: 20px;
  }

  .hero-stat-panel {
    bottom: 0;
  }

  .hero-stat-panel div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-stat-panel div:first-child {
    border-top: 0;
  }

  .project-card__body,
  .card,
  .stack-tile,
  .stack-card,
  .project-cta-card,
  .contact-link-card {
    padding: 14px;
  }

  .project-card p {
    min-height: auto;
  }

  .final-cta-panel {
    text-align: left;
  }
}

/* Hard-edge pass: boxes quadradas de verdade, com respiro interno. */
.pain-panel,
.offer-panel,
.final-cta-panel,
.cta-banner-inner,
.card,
.contact-link-card,
.project-cta-card,
.stack-tile,
.stack-card,
.path-card,
.tier-card,
.solution-item,
.faq-item,
.terminal-card,
.hero-stat-panel,
.trust-row span,
.button,
.button-secondary,
.theme-toggle,
.hero-chip,
.pill,
.chip-list li,
.stack-tags span,
.project-card__media,
.project-card__fallback,
.world-grid {
  border-radius: 0 !important;
}

.card,
.path-card,
.tier-card,
.stack-tile,
.stack-card,
.solution-item,
.faq-item,
.contact-link-card,
.project-cta-card {
  padding: 20px !important;
}

.project-card {
  padding: 0 !important;
}

.project-card__body {
  padding: 18px !important;
}

.service-card,
.pain-card,
.writing-card {
  padding: 22px !important;
}

.pain-panel,
.offer-panel,
.final-cta-panel,
.cta-banner-inner {
  padding: clamp(24px, 3vw, 34px) !important;
}

.hero-stat-panel div {
  padding: 16px 14px;
}

/* Home dashboard layout inspired by the provided reference. */
.kb-hero {
  padding-top: clamp(46px, 6vw, 78px);
}

.kb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.kb-hero-copy {
  display: grid;
  align-content: center;
}

.kb-hero-copy .hero-title {
  max-width: 12.5ch !important;
  font-size: clamp(3.2rem, 5.8vw, 5.25rem);
  line-height: 0.95;
}

.kb-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.kb-tech-row span {
  border: 1px solid var(--line);
  padding: 8px 10px;
  background: var(--surface-glass);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.kb-dashboard,
.dash-card,
.kb-stat-strip,
.kb-project-card,
.kb-offer-card,
.kb-process-flow article,
.kb-terminal-profile,
.kb-about-card,
.kb-contact-card,
.kb-proof-strip {
  border: 1px solid var(--line);
  background: var(--surface);
}

.kb-dashboard {
  padding: 18px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent), 0 0 70px var(--accent-soft);
}

.dash-topline {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
}

.dash-topline strong {
  color: var(--ok);
  font-weight: 700;
}

.dash-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.65fr 1fr;
  gap: 12px;
}

.dash-card {
  min-height: 126px;
  padding: 14px;
}

.dash-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-metric strong {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.dash-metric small,
.dash-deploys small {
  color: var(--ok);
}

.dash-chart svg {
  width: 100%;
  height: 140px;
}

.dash-chart polyline {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash-pages div,
.dash-deploys div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.dash-pages i {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.dash-deploys,
.dash-code {
  grid-column: span 1;
}

.dash-code {
  grid-column: span 2;
}

.dash-code pre {
  margin: 0;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.kb-stat-section,
.kb-proof-section {
  padding: 0 0 clamp(36px, 5vw, 58px);
}

.kb-stat-strip,
.kb-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.kb-stat-strip div,
.kb-proof-strip > div {
  padding: 20px;
  border-left: 1px solid var(--line);
}

.kb-stat-strip div:first-child,
.kb-proof-strip > div:first-child {
  border-left: 0;
}

.kb-stat-strip strong,
.kb-proof-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
}

.kb-stat-strip span,
.kb-proof-strip span,
.kb-proof-strip p {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.kb-project-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.kb-project-card {
  overflow: hidden;
}

.kb-project-card > a {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.kb-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kb-project-card > div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.kb-project-card h3,
.kb-offer-card h3,
.kb-process-flow h3,
.kb-about-card h2,
.kb-contact-card h2,
.kb-proof-strip h2 {
  margin: 0;
  color: var(--text);
}

.kb-project-card h3 {
  font-size: 1rem;
}

.kb-project-card span {
  color: var(--text-faint);
  font-size: 0.74rem;
}

.kb-project-card p {
  min-height: 70px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.kb-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kb-project-tags small {
  border: 1px solid var(--line);
  padding: 4px 7px;
  color: var(--text-soft);
}

.kb-project-card footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.kb-project-card footer strong,
.kb-project-card footer a {
  color: var(--accent-2);
}

.kb-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kb-offer-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
}

.kb-offer-icon,
.kb-process-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  background: var(--accent-soft);
  color: var(--accent-2);
  font-weight: 900;
}

.kb-offer-card.is-featured {
  box-shadow: 0 0 60px var(--accent-soft);
}

.kb-offer-card > span {
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
}

.kb-offer-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.kb-price {
  margin-top: auto;
}

.kb-price small {
  display: block;
  color: var(--text-faint);
}

.kb-price strong {
  color: var(--accent-2);
  font-size: 1.6rem;
}

.kb-process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.kb-process-flow article {
  position: relative;
  padding: 18px;
}

.kb-process-flow article:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 2;
  color: var(--accent-2);
}

.kb-process-flow span {
  display: block;
  margin-top: 14px;
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
}

.kb-process-flow p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.kb-stack-tags {
  margin-top: 14px;
}

.kb-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 18px;
}

.kb-terminal-profile,
.kb-about-card,
.kb-contact-card {
  padding: 24px;
}

.kb-terminal-profile pre {
  margin: 0;
  color: var(--text);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.83rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.kb-about-card p,
.kb-contact-card p {
  color: var(--text-soft);
}

.kb-contact-card {
  display: grid;
  gap: 14px;
}

.kb-proof-strip {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.kb-proof-strip h2 {
  font-size: 1.05rem;
}

@media (max-width: 1120px) {
  .kb-hero-grid,
  .kb-about-grid {
    grid-template-columns: 1fr;
  }

  .dash-grid,
  .kb-offer-grid,
  .kb-process-flow,
  .kb-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kb-proof-strip,
  .kb-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dash-grid,
  .kb-offer-grid,
  .kb-process-flow,
  .kb-project-grid,
  .kb-proof-strip,
  .kb-stat-strip {
    grid-template-columns: 1fr;
  }

  .dash-code {
    grid-column: span 1;
  }

  .kb-process-flow article::after {
    display: none;
  }
}

/* Full-width copy pass: textos devem usar o container, não uma coluna estreita. */
.hero-copy-column,
.hero-title,
.hero-support,
.section-row__copy,
.section-row__description,
.section-description,
.pain-intro,
.split-section > div,
.stack-panel > div,
.offer-panel > div,
.final-cta-panel > div,
.contact-section-copy {
  max-width: none !important;
}

.pain-intro {
  grid-template-columns: 1fr !important;
  align-items: start !important;
}

.section-row__description,
.section-description,
.hero-support {
  width: 100%;
}

.kb-hero-copy .hero-title,
.kb-hero-copy .hero-support {
  max-width: none !important;
}

/* Exact KevinBK landing replica */
:root {
  --exact-bg: #050812;
  --exact-bg-2: #080b16;
  --exact-panel: rgba(11, 15, 30, 0.9);
  --exact-panel-2: rgba(16, 22, 43, 0.86);
  --exact-line: rgba(160, 150, 255, 0.2);
  --exact-purple: #8b4dff;
  --exact-purple-2: #b06bff;
  --exact-orange: #f6821f;
  --exact-orange-2: #ff9a3c;
  --exact-lime: #b8ff3c;
  --exact-lime-2: #9aef1a;
  --exact-blue: #3d7cff;
  --exact-cyan: #64c7ff;
  --exact-text: #f7f8ff;
  --exact-muted: #c8cce0;
}

:root[data-theme='light'] {
  --exact-bg: #f7f8fc;
  --exact-bg-2: #eef1fa;
  --exact-panel: rgba(255, 255, 255, 0.94);
  --exact-panel-2: rgba(246, 248, 255, 0.96);
  --exact-line: rgba(70, 60, 140, 0.16);
  --exact-text: #101525;
  --exact-muted: #4d5a76;
  --exact-lime: #6fad00;
  --exact-lime-2: #5f9f00;
}

.site-header {
  background: color-mix(in srgb, var(--exact-bg) 88%, transparent);
  border-bottom-color: var(--exact-line);
}

.nav-shell {
  min-height: 76px;
}

.brand-kicker {
  width: 38px;
  height: 38px;
  border: 0;
  background: linear-gradient(135deg, var(--exact-orange), var(--exact-purple));
  color: white;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.16em;
}

.brand-copy strong {
  color: var(--exact-text);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

.brand-copy span {
  color: var(--exact-muted);
  font-size: 0.66rem;
}

.site-nav {
  gap: 34px;
}

.site-nav a {
  color: var(--exact-muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--exact-purple-2);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px !important;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--exact-orange) 0%, #e85d04 55%, var(--exact-purple) 140%);
  box-shadow: 0 10px 28px rgba(246, 130, 31, 0.22);
}

.theme-toggle {
  min-height: 48px;
  border-radius: 8px !important;
}

.exact-home {
  min-height: 100vh;
  color: var(--exact-text);
  background:
    radial-gradient(circle at 78% 10%, rgba(139, 77, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 18% 28%, rgba(184, 255, 60, 0.08), transparent 22rem),
    radial-gradient(circle at 52% 88%, rgba(246, 130, 31, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--exact-bg) 0%, var(--exact-bg-2) 100%);
}

.exact-home .container {
  width: min(calc(100% - 60px), 1220px);
}

.exact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  gap: 58px;
  align-items: center;
  padding: 54px 0 24px;
}

.exact-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 23px;
  border: 1px solid color-mix(in srgb, var(--exact-purple) 55%, var(--exact-orange));
  border-radius: 999px;
  color: var(--exact-purple-2);
  background:
    linear-gradient(90deg, rgba(139, 77, 255, 0.12), rgba(246, 130, 31, 0.08));
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exact-hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(3.7rem, 6.3vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

:root[data-theme='light'] .exact-hero h1 {
  color: var(--exact-text);
}

.exact-hero h1 span {
  display: block;
  color: var(--exact-purple);
}

.exact-hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--exact-text);
  font-size: 1.18rem;
  line-height: 1.65;
}

.exact-hero-text::first-line {
  color: var(--exact-purple-2);
}

.exact-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
  max-width: 640px;
  margin-top: 34px;
}

.exact-benefit-grid article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.exact-benefit-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--exact-purple);
  border-radius: 999px;
  color: var(--exact-purple-2);
}

.exact-benefit-grid strong,
.exact-cloudflare strong,
.exact-callout strong {
  color: var(--exact-text);
}

.exact-benefit-grid p,
.exact-cloudflare p,
.exact-callout p {
  margin: 3px 0 0;
  color: var(--exact-muted);
}

.exact-cloudflare {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  max-width: 570px;
  margin-top: 34px;
  border: 1px solid var(--exact-line);
  border-radius: 10px !important;
  background: var(--exact-panel);
  overflow: hidden;
}

.exact-cloud-logo {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 22px;
  border-right: 1px solid var(--exact-line);
  text-transform: uppercase;
}

.exact-cloud-logo span {
  font-size: 3rem;
}

.exact-cloudflare > div:last-child {
  padding: 22px 22px 22px 0;
}

.exact-ai-visual {
  position: relative;
  min-height: 590px;
}

.exact-orbit {
  position: absolute;
  inset: 88px 88px 76px 76px;
  border: 1px solid rgba(56, 139, 255, 0.45);
  border-radius: 999px;
}

.exact-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #69bcff;
  box-shadow: 0 0 18px #69bcff;
}

.exact-orbit span:nth-child(1) {
  top: 10%;
  left: 18%;
}

.exact-orbit span:nth-child(2) {
  top: 50%;
  left: -4px;
}

.exact-orbit span:nth-child(3) {
  top: 8%;
  right: 26%;
}

.exact-orbit span:nth-child(4) {
  right: 4%;
  bottom: 28%;
}

.exact-chip {
  position: absolute;
  inset: 140px 120px 120px 120px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(37, 148, 255, 0.32), transparent 48%),
    linear-gradient(180deg, rgba(29, 125, 255, 0.08), rgba(138, 69, 255, 0.08));
}

.exact-brain {
  font-size: 9rem;
  filter: drop-shadow(0 0 28px #2d7cff);
}

.exact-cloud-core {
  position: absolute;
  bottom: 92px;
  display: grid;
  place-items: center;
  width: 148px;
  height: 78px;
  border: 1px solid rgba(91, 165, 255, 0.75);
  color: white;
  font-size: 3rem;
  background: rgba(29, 125, 255, 0.24);
  box-shadow: 0 0 35px rgba(29, 125, 255, 0.75);
}

.exact-callout {
  position: absolute;
  width: 166px;
  padding: 16px;
  border: 1px solid var(--exact-line);
  border-radius: 10px !important;
  background: var(--exact-panel);
}

.exact-callout p {
  font-size: 0.9rem;
}

.exact-callout-ia {
  top: 48px;
  left: 22px;
}

.exact-callout-speed {
  top: 48px;
  right: 8px;
}

.exact-callout-security {
  bottom: 84px;
  left: 22px;
  width: 186px;
}

.exact-callout-cost {
  right: 2px;
  bottom: 84px;
  width: 186px;
}

.exact-divider {
  height: 1px;
  background: var(--exact-line);
}

.exact-paths {
  padding: 28px 0 18px;
}

.exact-section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.exact-section-heading h2 {
  margin: 0;
  color: var(--exact-text);
  font-size: 1.75rem;
  text-transform: uppercase;
}

.exact-section-heading h2 span {
  color: var(--exact-purple);
}

.exact-section-heading p {
  margin: 10px 0 0;
  color: #b9b8ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exact-path-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.exact-left-offer,
.exact-right-offer {
  border: 1px solid var(--exact-purple);
  border-radius: 14px !important;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(138, 69, 255, 0.22), transparent 18rem),
    var(--exact-panel);
}

.exact-right-offer {
  border-color: #1d7dff;
  background:
    radial-gradient(circle at top right, rgba(29, 125, 255, 0.22), transparent 18rem),
    var(--exact-panel);
}

.exact-offer-title {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.exact-offer-title > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(138, 69, 255, 0.75), rgba(80, 24, 150, 0.72));
  font-size: 2.6rem;
}

.exact-offer-title-blue > span {
  background: linear-gradient(135deg, rgba(29, 125, 255, 0.78), rgba(11, 72, 130, 0.76));
}

.exact-offer-title h3 {
  margin: 0;
  color: var(--exact-purple-2);
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.exact-offer-title h3 span {
  display: block;
  color: var(--exact-text);
}

.exact-offer-title-blue h3 {
  color: var(--exact-blue);
}

.exact-offer-title p {
  margin: 10px 0 0;
  color: var(--exact-text);
}

.exact-tier-list {
  display: grid;
  gap: 14px;
}

.exact-tier,
.exact-course-box,
.exact-learning-box,
.exact-course-cta {
  border: 1px solid var(--exact-line);
  border-radius: 12px !important;
  background: var(--exact-panel-2);
}

.exact-tier {
  display: grid;
  grid-template-columns: 145px 1fr 95px;
  overflow: hidden;
}

.exact-tier-price {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-right: 1px solid var(--exact-line);
}

.exact-tier-price span {
  width: fit-content;
  padding: 8px 18px;
  border-radius: 8px !important;
  background: var(--exact-purple);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.exact-tier-price strong {
  color: var(--exact-text);
  font-size: 2rem;
}

.exact-tier-price small {
  color: var(--exact-muted);
}

.exact-tier-body {
  padding: 22px;
}

.exact-tier-body h4,
.exact-course-box h4 {
  margin: 0 0 12px;
  color: var(--exact-text);
  font-size: 1.25rem;
  line-height: 1.16;
  text-transform: uppercase;
}

.exact-tier-body ul,
.exact-course-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exact-tier-body li,
.exact-course-box li {
  color: var(--exact-text);
  font-size: 0.9rem;
}

.exact-tier-body li::before,
.exact-course-box li::before {
  content: '✓';
  margin-right: 9px;
  color: #d5bdff;
}

.exact-tier-icon {
  display: grid;
  place-items: center;
  color: var(--exact-purple-2);
  font-size: 4rem;
}

.exact-offer-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(138, 69, 255, 0.78), rgba(116, 22, 210, 0.9));
  color: white;
}

.exact-offer-note > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.exact-offer-note p {
  margin: 0 0 8px;
}

.exact-offer-note strong {
  text-transform: uppercase;
}

.exact-or-label {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--exact-line);
  border-radius: 999px;
  background: var(--exact-bg);
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.exact-course-box {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  padding: 22px;
}

.exact-course-box strong,
.exact-learning-box h4 {
  display: block;
  margin-bottom: 16px;
  color: var(--exact-cyan);
  text-transform: uppercase;
}

.exact-laptop {
  display: grid;
  place-items: center;
  color: var(--exact-cyan);
  font-size: 7rem;
  filter: drop-shadow(0 0 22px rgba(36, 148, 255, 0.7));
}

.exact-learning-box {
  margin-top: 16px;
  padding: 22px;
}

.exact-learning-box > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.exact-learning-box section {
  padding: 10px 14px;
  border-left: 1px solid var(--exact-line);
  text-align: center;
}

.exact-learning-box section:first-child {
  border-left: 0;
}

.exact-learning-box span {
  display: block;
  margin-bottom: 10px;
  font-size: 2.3rem;
}

.exact-learning-box p {
  margin: 0;
  color: var(--exact-text);
  font-size: 0.86rem;
}

.exact-course-cta {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 22px;
  text-align: center;
}

.exact-course-cta p {
  margin: 0;
  color: var(--exact-text);
  font-size: 1.1rem;
}

.exact-blue-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px !important;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1788ff, #0a5dff);
}

.exact-blue-button::after {
  content: '›';
  margin-left: 18px;
  font-size: 1.5rem;
}

.exact-course-cta small {
  color: var(--exact-muted);
}

.exact-bottom-benefits {
  margin-top: 18px;
  border-top: 1px solid var(--exact-line);
  border-bottom: 1px solid var(--exact-line);
  background: rgba(255, 255, 255, 0.02);
}

.exact-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.exact-bottom-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 18px;
}

.exact-bottom-grid span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--exact-purple);
  border-radius: 999px;
  color: var(--exact-purple-2);
}

.exact-bottom-grid strong {
  color: var(--exact-text);
}

.exact-bottom-grid p {
  margin: 2px 0 0;
  color: var(--exact-muted);
}

.exact-final-line {
  padding: 20px 0 34px;
  text-align: center;
}

.exact-final-line p {
  margin: 0;
  color: var(--exact-text);
  font-size: 1.2rem;
}

.exact-final-line span,
.exact-final-line strong {
  color: var(--exact-purple-2);
}

@media (max-width: 1050px) {
  .exact-hero,
  .exact-path-grid,
  .exact-tier,
  .exact-course-box {
    grid-template-columns: 1fr;
  }

  .exact-or-label {
    display: none;
  }

  .exact-ai-visual {
    min-height: 520px;
  }

  .exact-tier-price {
    border-right: 0;
    border-bottom: 1px solid var(--exact-line);
  }
}

@media (max-width: 720px) {
  .exact-home .container {
    width: min(calc(100% - 28px), 1220px);
  }

  .exact-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .exact-benefit-grid,
  .exact-bottom-grid,
  .exact-learning-box > div {
    grid-template-columns: 1fr;
  }

  .exact-cloudflare,
  .exact-offer-title {
    grid-template-columns: 1fr;
  }

  .exact-cloud-logo {
    border-right: 0;
    border-bottom: 1px solid var(--exact-line);
  }

  .exact-cloudflare > div:last-child {
    padding: 0 22px 22px;
  }

  .exact-ai-visual {
    min-height: 620px;
  }

  .exact-callout {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin-bottom: 10px;
  }

  .exact-orbit,
  .exact-chip {
    inset: auto;
    position: relative;
    min-height: 260px;
    margin: 12px 0;
  }
}

/* Compact typography pass: keep the reference style without giant line breaks */
.exact-home .container {
  width: min(calc(100% - 64px), 1500px);
}

.exact-hero {
  grid-template-columns: minmax(640px, 760px) minmax(500px, 1fr);
  gap: clamp(34px, 4vw, 72px);
  padding: 56px 0 28px;
}

.exact-pill {
  margin-bottom: 18px;
  padding: 7px 24px;
  font-size: 0.78rem;
}

.exact-hero h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 4.45vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
}

.exact-hero h1 span {
  display: inline;
}

.exact-hero-text {
  max-width: 690px;
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.48;
}

.exact-benefit-grid {
  max-width: 690px;
  gap: 18px 26px;
  margin-top: 28px;
}

.exact-benefit-grid strong,
.exact-benefit-grid p {
  font-size: 0.86rem;
}

.exact-cloudflare {
  max-width: 680px;
  margin-top: 28px;
}

.exact-ai-visual {
  min-height: 540px;
}

.exact-orbit {
  inset: 92px 86px 74px 72px;
}

.exact-chip {
  inset: 80px 136px 68px 132px;
}

.exact-brain-svg {
  width: 380px;
}

.exact-callout {
  width: 176px;
  padding: 15px;
}

.exact-callout strong {
  font-size: 0.98rem;
}

.exact-callout p {
  font-size: 0.86rem;
  line-height: 1.35;
}

.exact-callout-ia,
.exact-callout-speed {
  top: 66px;
}

.exact-callout-security,
.exact-callout-cost {
  bottom: 58px;
}

.exact-section-heading h2 {
  font-size: clamp(1.45rem, 1.65vw, 1.9rem);
}

.exact-path-grid {
  gap: 42px;
}

.exact-left-offer,
.exact-right-offer {
  padding: 22px;
}

.exact-offer-title {
  grid-template-columns: 62px 1fr;
  gap: 16px;
}

.exact-offer-title > span {
  width: 62px;
  height: 62px;
}

.exact-offer-title > span svg {
  width: 34px;
  height: 34px;
}

.exact-offer-title h3 {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
}

.exact-offer-title p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.exact-tier {
  grid-template-columns: 132px 1fr 84px;
}

.exact-tier-price,
.exact-tier-body {
  padding: 18px;
}

.exact-tier-price strong {
  font-size: 1.72rem;
}

.exact-tier-body h4,
.exact-course-box h4 {
  font-size: 1.08rem;
}

.exact-tier-body li,
.exact-course-box li {
  font-size: 0.84rem;
  line-height: 1.38;
}

.exact-tier-icon svg {
  width: 52px;
  height: 52px;
}

.exact-course-box,
.exact-learning-box,
.exact-course-cta {
  padding: 18px;
}

.exact-course-box {
  grid-template-columns: 1fr 142px;
}

.exact-laptop svg {
  width: 120px;
  height: 120px;
}

.exact-learning-box svg {
  width: 34px;
  height: 34px;
}

.exact-learning-box p {
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .exact-hero {
    grid-template-columns: 1fr;
  }

  .exact-hero h1 {
    max-width: 920px;
  }
}

@media (max-width: 720px) {
  .exact-home .container {
    width: min(calc(100% - 28px), 1500px);
  }

  .exact-hero h1 {
    font-size: clamp(2.45rem, 10.8vw, 3.55rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .exact-hero-text {
    font-size: 0.98rem;
  }

  .exact-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .exact-ai-visual {
    min-height: auto;
  }
}

/* Fidelity pass: dark AI/Cloudflare landing from the approved reference */
:root {
  --exact-bg: #050812;
  --exact-bg-2: #080b16;
  --exact-panel: rgba(9, 13, 27, 0.88);
  --exact-panel-2: rgba(15, 19, 38, 0.9);
  --exact-line: rgba(160, 150, 255, 0.22);
  --exact-purple: #8b4dff;
  --exact-purple-2: #b06bff;
  --exact-orange: #f6821f;
  --exact-orange-2: #ff9a3c;
  --exact-lime: #b8ff3c;
  --exact-lime-2: #9aef1a;
  --exact-blue: #3d7cff;
  --exact-blue-2: #64c7ff;
  --exact-text: #f9fbff;
  --exact-muted: #c7cbe0;
  --exact-font: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root[data-theme='light'] {
  --exact-bg: #f7f8fc;
  --exact-bg-2: #eef1fa;
  --exact-panel: rgba(255, 255, 255, 0.92);
  --exact-panel-2: rgba(246, 248, 255, 0.95);
  --exact-line: rgba(70, 60, 140, 0.16);
  --exact-lime: #6fad00;
  --exact-lime-2: #5f9f00;
  --exact-text: #071125;
  --exact-muted: #44506b;
}

.site-header {
  font-family: var(--exact-font);
  background: color-mix(in srgb, var(--exact-bg) 91%, transparent);
  border-bottom: 1px solid var(--exact-line);
}

.nav-shell {
  min-height: 86px;
}

.brand-kicker {
  width: 42px;
  height: 42px;
  border-radius: 0 !important;
  background: transparent;
  color: #2e7cff;
}

.brand-kicker svg,
.header-contact-button svg,
.exact-home svg {
  display: block;
}

.brand-kicker svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.brand-copy strong {
  color: var(--exact-text);
  font-size: 1.48rem;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.brand-copy strong::first-letter {
  color: var(--exact-text);
}

.brand-copy span {
  max-width: none;
  color: var(--exact-muted);
  font-size: 0.62rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--exact-text);
  font-size: 0.96rem;
  font-weight: 650;
}

.site-nav a.is-active {
  color: var(--exact-purple-2);
}

.site-nav a.is-active::after {
  background: var(--exact-purple);
}

.header-contact-button {
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid rgba(122, 72, 255, 0.86);
  border-radius: 8px !important;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 850;
  background: linear-gradient(135deg, #9a3dff 0%, #1f79ff 100%);
  box-shadow: 0 16px 36px rgba(31, 121, 255, 0.24);
}

.header-contact-button span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.header-contact-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle {
  border-radius: 8px !important;
  font-family: var(--exact-font);
}

.exact-home {
  font-family: var(--exact-font);
  background:
    radial-gradient(circle at 76% 22%, rgba(19, 102, 255, 0.35), transparent 24rem),
    radial-gradient(circle at 52% 72%, rgba(130, 63, 255, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--exact-bg) 0%, var(--exact-bg-2) 100%);
}

:root[data-theme='light'] .exact-home {
  background:
    radial-gradient(circle at 78% 18%, rgba(59, 139, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 26% 52%, rgba(142, 69, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #fbfcff 0%, #edf4ff 100%);
}

.exact-home .container {
  width: min(calc(100% - 62px), 1440px);
}

.exact-hero {
  grid-template-columns: minmax(530px, 650px) minmax(560px, 1fr);
  gap: clamp(44px, 5vw, 92px);
  align-items: center;
  padding: 70px 0 34px;
}

.exact-pill {
  margin-bottom: 24px;
  padding: 8px 28px;
  border-color: rgba(153, 89, 255, 0.94);
  border-radius: 999px !important;
  color: #b8a9ff;
  background: rgba(95, 45, 180, 0.16);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.exact-hero h1 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(4.4rem, 5.6vw, 6.35rem);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

:root[data-theme='light'] .exact-hero h1 {
  color: var(--exact-text);
}

.exact-hero h1 span {
  color: var(--exact-purple);
}

.exact-hero-text {
  max-width: 650px;
  margin-top: 26px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.52;
}

:root[data-theme='light'] .exact-hero-text {
  color: var(--exact-muted);
}

.exact-hero-text::first-line {
  color: inherit;
}

.exact-hero-text strong {
  color: var(--exact-purple-2);
  font-weight: 800;
}

.exact-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  gap: 23px 32px;
  margin-top: 34px;
}

.exact-benefit-grid article {
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.exact-benefit-grid span,
.exact-bottom-grid span {
  width: 36px;
  height: 36px;
  border: 2px solid var(--exact-purple);
  color: var(--exact-purple-2);
}

.exact-benefit-grid svg,
.exact-bottom-grid svg,
.exact-offer-title > span svg,
.exact-tier-icon svg,
.exact-learning-box svg,
.exact-laptop svg,
.exact-final-line svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.exact-benefit-grid strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.exact-benefit-grid p {
  font-size: 0.9rem;
  line-height: 1.24;
}

.exact-cloudflare {
  grid-template-columns: 190px 1fr;
  max-width: 650px;
  margin-top: 36px;
  border-color: rgba(158, 174, 228, 0.34);
  border-radius: 9px !important;
  background: rgba(8, 13, 26, 0.74);
}

:root[data-theme='light'] .exact-cloudflare {
  background: rgba(255, 255, 255, 0.82);
}

.exact-cloud-logo {
  padding: 18px 20px;
}

.exact-cloud-logo span,
.exact-cloud-logo strong {
  display: none;
}

.exact-cloudflare-mark {
  width: 152px;
  height: auto;
  color: #fff;
}

:root[data-theme='light'] .exact-cloudflare-mark {
  color: #111827;
}

.exact-cloudflare > div:last-child {
  display: grid;
  align-content: center;
  padding: 20px 24px 20px 0;
}

.exact-cloudflare strong {
  font-size: 0.98rem;
  font-weight: 900;
}

.exact-cloudflare p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.exact-ai-visual {
  min-height: 610px;
  overflow: visible;
}

.exact-ai-visual::before {
  content: '';
  position: absolute;
  inset: 22px 0 0;
  background:
    linear-gradient(rgba(69, 154, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 154, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 55% 53%, #000 0 28%, transparent 62%);
  opacity: 0.75;
}

.exact-orbit {
  inset: 118px 94px 96px 82px;
  border-color: rgba(69, 154, 255, 0.58);
  box-shadow: 0 0 46px rgba(34, 110, 255, 0.16);
}

.exact-chip {
  inset: 108px 145px 92px 142px;
  background: transparent;
}

.exact-brain-svg {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 0 32px rgba(48, 129, 255, 0.62));
}

.exact-brain,
.exact-cloud-core {
  display: none;
}

.exact-callout {
  width: 188px;
  padding: 18px 18px 17px;
  border-color: rgba(161, 177, 232, 0.38);
  border-radius: 9px !important;
  background: rgba(12, 16, 31, 0.86);
  backdrop-filter: blur(10px);
}

:root[data-theme='light'] .exact-callout {
  background: rgba(255, 255, 255, 0.84);
}

.exact-callout strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.exact-callout p {
  margin-top: 7px;
  font-size: 0.95rem;
  line-height: 1.42;
}

.exact-callout-ia {
  top: 86px;
  left: 12px;
}

.exact-callout-speed {
  top: 86px;
  right: 8px;
}

.exact-callout-security {
  bottom: 82px;
  left: 12px;
}

.exact-callout-cost {
  right: 0;
  bottom: 82px;
}

.exact-divider {
  margin-top: 14px;
}

.exact-paths {
  padding-top: 28px;
}

.exact-section-heading h2 {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 950;
  line-height: 1.05;
}

.exact-section-heading p {
  margin-top: 12px;
  color: #bfc3ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.exact-path-grid {
  gap: 54px;
}

.exact-left-offer,
.exact-right-offer {
  border-radius: 10px !important;
  padding: 26px;
}

.exact-offer-title > span {
  border-radius: 9px !important;
  color: #fff;
}

.exact-offer-title > span svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
}

.exact-offer-title h3 {
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 950;
}

.exact-tier,
.exact-course-box,
.exact-learning-box,
.exact-course-cta {
  border-radius: 9px !important;
}

.exact-tier {
  grid-template-columns: 150px 1fr 110px;
}

.exact-tier-price span {
  border-radius: 7px !important;
}

.exact-tier-price strong {
  font-size: 2.05rem;
  font-weight: 950;
}

.exact-tier-icon {
  color: var(--exact-purple-2);
}

.exact-tier-icon svg {
  width: 70px;
  height: 70px;
  stroke-width: 1.18;
  filter: drop-shadow(0 0 20px rgba(141, 69, 255, 0.5));
}

.exact-offer-note {
  border-radius: 9px !important;
}

.exact-laptop svg {
  width: 160px;
  height: 160px;
  stroke: var(--exact-blue-2);
  stroke-width: 1.05;
  filter: drop-shadow(0 0 24px rgba(36, 148, 255, 0.72));
}

.exact-learning-box span {
  display: grid;
  place-items: center;
  color: var(--exact-blue-2);
}

.exact-learning-box svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.35;
}

.exact-blue-button {
  border-radius: 8px !important;
  background: linear-gradient(135deg, #26a0ff, #135fff);
}

.exact-final-line span {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 10px;
}

.exact-final-line svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1180px) {
  .exact-hero {
    grid-template-columns: 1fr;
  }

  .exact-hero-copy {
    max-width: 820px;
  }

  .exact-ai-visual {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .exact-home .container {
    width: min(calc(100% - 28px), 1440px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .exact-hero {
    padding-top: 44px;
    gap: 28px;
  }

  .exact-hero h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 14.5vw, 4.9rem);
    line-height: 0.94;
  }

  .exact-hero-text {
    font-size: 1.03rem;
  }

  .exact-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .exact-cloudflare {
    grid-template-columns: 1fr;
  }

  .exact-cloud-logo {
    border-right: 0;
    border-bottom: 1px solid var(--exact-line);
    justify-items: start;
  }

  .exact-cloudflare > div:last-child {
    padding: 0 20px 20px;
  }

  .exact-ai-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .exact-ai-visual::before {
    display: none;
  }

  .exact-callout,
  .exact-orbit,
  .exact-chip {
    position: relative;
    inset: auto;
    width: auto;
  }

  .exact-chip {
    min-height: 310px;
    order: -1;
  }

  .exact-orbit {
    display: none;
  }

  .exact-path-grid,
  .exact-tier,
  .exact-course-box {
    grid-template-columns: 1fr;
  }

  .exact-tier-icon {
    display: none;
  }

  .exact-learning-box > div,
  .exact-bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* Header refinado */

.site-header {
  overflow-x: clip;
}

.nav-shell {
  align-items: center;
}

.brand-mark,
.header-actions,
.header-contact-button,
.theme-toggle {
  flex-shrink: 0;
}

.header-actions {
  gap: 8px;
}

.header-contact-button,
.theme-toggle {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-header {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    width: max-content;
    min-width: 100%;
    min-height: auto;
    padding: 12px 20px;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: space-evenly;
    overflow: visible;
    padding-bottom: 0;
    gap: 18px;
  }

  .site-nav a {
    padding: 10px 0;
    white-space: nowrap;
  }

  .site-nav a::after {
    bottom: -2px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-contact-button,
  .theme-toggle {
    min-height: 40px;
    padding-inline: 14px;
  }
}

/* Trust and institutional pages */
.trust-hero,
.trust-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.trust-grid,
.fact-grid,
.process-list,
.legal-section-list {
  display: grid;
  gap: 14px;
}

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

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

.fact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
}

.fact-card span,
.legal-data dt {
  display: block;
  color: var(--text-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact-card strong,
.legal-data dd {
  color: var(--text);
}

.trust-card h2,
.legal-section h2,
.legal-data h2,
.trust-split h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.trust-card p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.process-list span {
  color: var(--accent-2);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
}

.process-list p {
  margin: 0;
  color: var(--text-soft);
}

.trust-article {
  display: grid;
  gap: 18px;
}

.legal-data {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
}

.legal-data dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.legal-data dd {
  margin: 3px 0 0;
}

.section-subblock {
  margin-top: 30px;
}

.sitemap-card-grid h3 {
  text-transform: capitalize;
}

@media (max-width: 1120px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-hero,
  .trust-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .trust-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }
}

/* Símbolo compartilhado da identidade KevinBK. */
.brand-symbol { display: block; width: 44px; height: 44px; flex-shrink: 0; }
.footer-brand { gap: 12px; }


/* Page: blog */
.blog-index-hero {
  padding-bottom: 32px;
}

.blog-index-count,
.blog-card__meta,
.blog-article__byline,
.blog-video figcaption,
.blog-overview dt,
.blog-article__references li {
  color: var(--text-faint);
  font-size: 0.85rem;
}

.blog-index-count {
  margin: 24px 0 0;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.blog-card__image {
  display: block;
  overflow: hidden;
  background: var(--surface-strong);
}

.blog-card__image img,
.blog-article__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.blog-card__body h2,
.blog-card__body p,
.blog-card__meta,
.blog-video figcaption,
.blog-article__byline,
.blog-article__content p,
.blog-article__take,
.blog-sidebar-card p,
.blog-article__references li {
  margin: 0;
}

.blog-card__body h2 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.blog-card__body h2 a:hover,
.blog-article__content a:hover,
.blog-video a:hover,
.blog-article__references a:hover {
  color: var(--accent-2);
}

.blog-article__hero {
  padding-bottom: 34px;
}

.blog-article__hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(2.2rem, 4.3vw, 3.75rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.blog-article__lead {
  margin: 24px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.blog-article__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
}

.blog-article__byline a,
.blog-article__content a,
.blog-video a,
.blog-article__references a {
  color: var(--accent);
  font-weight: 700;
}

.blog-article__media {
  padding: 0 0 48px;
}

.blog-article__media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 20px;
  align-items: stretch;
}

.blog-video,
.blog-article__cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

.blog-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.blog-video figcaption {
  padding: 12px 14px;
}

.blog-historical__cover {
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
}

.blog-historical__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-historical__content {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-historical__content > * + * {
  margin-top: 20px;
}

.blog-historical__content h2,
.blog-historical__content h3,
.blog-historical__content h4 {
  color: var(--text);
  line-height: 1.2;
}

.blog-historical__content h2 {
  margin-top: 48px;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.blog-historical__content h3 {
  margin-top: 34px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.blog-historical__content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: var(--radius-lg);
}

.blog-historical__content figure {
  margin: 28px 0;
}

.blog-historical__content figcaption {
  margin-top: -16px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.blog-historical__content ul,
.blog-historical__content ol {
  display: grid;
  gap: 10px;
  padding-left: 26px;
}

.blog-historical__content a {
  color: var(--accent);
  font-weight: 700;
}

.blog-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.blog-article__content {
  display: grid;
  gap: 28px;
}

.blog-article__intro {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 600;
}

.blog-article__take {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 1.05rem;
}

.blog-sidebar-card,
.blog-pitfalls,
.blog-faq details,
.blog-overview div {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.blog-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.blog-overview div {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.blog-overview dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.blog-section h2,
.blog-article__references h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.blog-section p + p {
  margin-top: 16px;
}

.blog-steps,
.blog-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 26px;
}

.blog-steps li::marker,
.blog-list li::marker {
  color: var(--accent-2);
  font-weight: 800;
}

.blog-checklist {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 26px;
}

.blog-checklist li::marker {
  color: var(--accent-2);
  font-weight: 800;
}

.blog-pitfalls {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.blog-pitfalls p {
  padding: 0;
}

.blog-faq {
  display: grid;
  gap: 10px;
}

.blog-faq details {
  padding: 16px 18px;
}

.blog-faq summary {
  color: var(--text);
  font-weight: 700;
}

.blog-faq details p {
  margin-top: 12px;
}

.blog-article__related {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.blog-article__sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.blog-sidebar-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.blog-sidebar-card .eyebrow {
  margin: 0;
}

.blog-sidebar-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.blog-sidebar-card .button {
  justify-content: center;
  text-align: center;
}

.blog-article__references {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.blog-article__references ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article__layout {
    grid-template-columns: 1fr;
  }

  .blog-article__sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-card-grid,
  .blog-article__media-grid,
  .blog-overview,
  .blog-article__sidebar {
    grid-template-columns: 1fr;
  }

  .blog-article__hero h1 {
    font-size: clamp(2.2rem, 7.5vw, 3.25rem);
  }

  .blog-article__media {
    padding-bottom: 30px;
  }
}


/* Page: contato */
.contact-page .contact-card {
  min-height: 220px;
}


/* Page: curso */
.course-page .course-hero {
  align-items: center;
}


/* Page: depoimentos */
.section-first .card-grid {
  margin-top: 24px;
}


/* Page: home */
/* Home: carvão, marfim e laranja. O portfólio fornece as demais cores. */
:is(.page-home, .page-projetos) {
  --home-bg: #101418;
  --home-panel: #191e23;
  --home-line: #30363c;
  --home-text: #f5f2ed;
  --home-text-soft: #bbc1c7;
  --home-text-faint: #a8b0b8;
  --home-orange: #f6a45d;
  --home-font-display: 'Sora', sans-serif;
  --home-font-body: 'Plus Jakarta Sans', sans-serif;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-font-body);
}
:root[data-theme='light'] :is(.page-home, .page-projetos) {
  --home-bg: #f7f5f0;
  --home-panel: #fffefa;
  --home-line: #d9d7d1;
  --home-text: #22292e;
  --home-text-soft: #505a63;
  --home-text-faint: #5e6870;
  --home-orange: #a64b0c;
}
:is(.page-home, .page-projetos)::before { display: none; }
:is(.page-home, .page-projetos) ::selection { background: #f6a45d; color: #101418; }
:is(.page-home, .page-projetos) :is(a, button):focus-visible { outline-color: var(--home-orange); }
:is(.page-home, .page-projetos) .exact-home { font-family: var(--home-font-body); background: var(--home-bg); color: var(--home-text); padding-bottom: 32px; }
:is(.page-home, .page-projetos) .exact-home .container { width: min(calc(100% - 64px), 1240px); }
/* Leitura imediata, inclusive sem JavaScript. */
:is(.page-home, .page-projetos) [data-reveal],
:is(.page-home, .page-projetos) [data-reveal].is-visible { opacity: 1; transform: none; filter: none; animation: none; transition: none; will-change: auto; }
:is(.page-home, .page-projetos) .exact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 76px 0 48px;
  text-align: left;
}
:is(.page-home, .page-projetos) .exact-hero-copy { position: relative; z-index: 1; min-width: 0; }
:is(.page-home, .page-projetos) .exact-hero h1 {
  margin: 0;
  max-width: none;
  font-family: var(--home-font-display);
  font-size: clamp(2.5rem, 4.3vw, 3.75rem);
  line-height: 1.13;
  font-weight: 650;
  letter-spacing: -.035em;
  text-transform: none;
  text-wrap: balance;
  color: var(--home-text);
}
:is(.page-home, .page-projetos) .exact-hero h1 span { display: block; color: var(--home-text); text-shadow: none; }
:is(.page-home, .page-projetos) .exact-hero h1 .exact-hero-title-accent { color: var(--home-orange); }
:is(.page-home, .page-projetos) .exact-hero-text { max-width: none; margin: 24px 0 0; color: var(--home-text-soft); font-size: 1.075rem; line-height: 1.8; }
:is(.page-home, .page-projetos) .exact-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
:is(.page-home, .page-projetos) :is(.exact-primary-button, .exact-secondary-button, .exact-solution-btn) {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 20px; border-radius: 8px; font-size: .86rem;
  font-weight: 700; line-height: 1.5; text-align: center; box-shadow: none;
  transition: background-color .2s ease, border-color .2s ease;
}
:is(.page-home, .page-projetos) :is(.exact-primary-button, .exact-solution-btn) { background: #f6a45d; border: 1px solid transparent; color: #20170f; }
:is(.page-home, .page-projetos) :is(.exact-primary-button, .exact-solution-btn):hover { background: #ffb77c; transform: none; box-shadow: none; filter: none; }
:is(.page-home, .page-projetos) :is(.exact-secondary-button, .exact-solution-btn-alt) { background: transparent; border: 1px solid var(--home-line); color: var(--home-text); }
:is(.page-home, .page-projetos) :is(.exact-secondary-button, .exact-solution-btn-alt):hover { background: var(--home-panel); border-color: var(--home-text-faint); color: var(--home-text); }
:is(.page-home, .page-projetos) .exact-contact-link { flex-basis: 100%; margin-top: 6px; font-size: .875rem; color: var(--home-text-soft); }
:is(.page-home, .page-projetos) .exact-contact-link:hover { color: var(--home-text); text-decoration: underline; text-underline-offset: 4px; }
:is(.page-home, .page-projetos) .btn-icon svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
:is(.page-home, .page-projetos) .exact-cloudflare { display: flex; align-items: center; gap: 18px; padding: 24px 0 0; margin-top: 32px; max-width: none; border: 0; border-top: 1px solid var(--home-line); background: transparent; box-shadow: none; backdrop-filter: none; }
:is(.page-home, .page-projetos) .exact-cloud-logo { flex-shrink: 0; padding: 0; border: 0; }
:is(.page-home, .page-projetos) .exact-cloudflare > div:last-child { padding: 0; }
:is(.page-home, .page-projetos) .exact-cloudflare-mark { width: 96px; height: auto; color: var(--home-text); }
:is(.page-home, .page-projetos) .exact-cloudflare strong { display: block; color: var(--home-text); font-size: .85rem; }
:is(.page-home, .page-projetos) .exact-cloudflare p { margin: 6px 0 0; color: var(--home-text-faint); font-size: .8rem; line-height: 1.7; }
.cloud-scene { position: relative; display: grid; align-content: center; align-self: stretch; min-width: 0; min-height: 350px; padding-bottom: 0; background: none; border: 0; border-radius: 0; }
.cloud-network { display: block; width: 100%; height: auto; overflow: visible; }
.cloud-track { stroke: var(--home-line); }
.cloud-packet { stroke: var(--home-orange); stroke-width: 3; stroke-dasharray: 12 88; animation: cloud-delivery 4s linear infinite; }
.cloud-packet--out { animation-delay: -2s; }
.cloud-symbol { animation: cloud-hover 5s ease-in-out infinite alternate; transform-origin: 290px 175px; }
.cloud-symbol__back { animation: cloud-billow 5s ease-in-out infinite alternate; transform-origin: 365px 175px; }
.cloud-brand { fill: var(--home-text); font-family: var(--home-font-display); font-size: 22px; font-weight: 600; letter-spacing: -.5px; }
.cloud-ai-label { font-family: var(--home-font-display); font-size: 23px; font-weight: 700; }
.cloud-wisp { fill: var(--home-panel); stroke: var(--home-line); stroke-width: 1.5; }
.cloud-wisp--left { animation: cloud-breeze 7s ease-in-out infinite alternate; }
.cloud-wisp--right { animation: cloud-breeze 9s ease-in-out -4s infinite alternate-reverse; }
.cloud-window { fill: var(--home-panel); stroke: var(--home-line); stroke-width: 1.5; }
.cloud-window-line { stroke: var(--home-line); stroke-width: 1.5; fill: none; }
.cloud-window-address { fill: var(--home-line); }
.cloud-content-title { fill: var(--home-text); opacity: .8; }
.cloud-content-line { fill: var(--home-text-faint); opacity: .4; }
.cloud-label { fill: var(--home-text-soft); font-family: var(--home-font-body); font-size: 14px; }
.cloud-page--source { animation: cloud-page-float 5s ease-in-out -2s infinite alternate; }
.cloud-page--delivered { animation: cloud-page-float 6s ease-in-out infinite alternate-reverse; }
.cloud-delivered-copy { animation: cloud-content-arrive 4s ease-out infinite; transform-origin: 424px 360px; }
.cloud-check { animation: cloud-confirm 4s ease-in-out infinite; transform-origin: 551px 392px; }
@keyframes cloud-delivery { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes cloud-hover { from { transform: translateY(-7px); } to { transform: translateY(7px); } }
@keyframes cloud-billow { from { transform: translateX(-3px); } to { transform: translateX(7px); } }
@keyframes cloud-breeze { from { transform: translateX(-12px); } to { transform: translateX(12px); } }
@keyframes cloud-page-float { from { transform: translateY(-4px); } to { transform: translateY(4px); } }
@keyframes cloud-content-arrive { 0%, 10% { opacity: .35; transform: translateY(5px); } 35%, 100% { opacity: 1; transform: translateY(0); } }
@keyframes cloud-confirm { 0%, 20%, 100% { transform: scale(1); } 35% { transform: scale(1.16); } 50% { transform: scale(1); } }
:is(.page-home, .page-projetos) .exact-divider { height: 1px; background: var(--home-line); margin: 48px auto; }
:is(.page-home, .page-projetos) .exact-section-heading { text-align: left; margin-bottom: 28px; }
:is(.page-home, .page-projetos) .exact-section-heading h2 { max-width: none; margin: 0 0 14px; font-family: var(--home-font-display); font-size: clamp(1.55rem, 2.7vw, 2.15rem); font-weight: 600; line-height: 1.25; letter-spacing: -.025em; text-transform: none; color: var(--home-text); }
:is(.page-home, .page-projetos) .exact-section-heading p { max-width: none; margin: 0; color: var(--home-text-soft); font-size: .98rem; font-weight: 400; line-height: 1.75; text-transform: none; letter-spacing: normal; }
:is(.page-home, .page-projetos) .exact-portfolio { padding: 0; scroll-margin-top: 112px; }
/* As capturas mantêm a proporção e as cores originais dos sites. */
:is(.page-home, .page-projetos) .project-grid, .projects-page .project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
:is(.page-home, .page-projetos) .project-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; height: 100%; padding: 0; border: 1px solid var(--home-line); border-radius: 12px !important; background: var(--home-panel); box-shadow: none; backdrop-filter: none; transition: border-color .2s ease; }
:is(.page-home, .page-projetos) .project-card:hover { transform: none; border-color: var(--home-text-faint); box-shadow: none; }
:is(.page-home, .page-projetos) .project-card::before, :is(.page-home, .page-projetos) .project-card__media::after { display: none; }
:is(.page-home, .page-projetos) .project-card__media, .projects-page .project-card__media { display: block; aspect-ratio: 8 / 5; border: 0; border-radius: 0; overflow: hidden; background: #e8e8e8; }
:is(.page-home, .page-projetos) .project-card__media img, .projects-page .project-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; transform: none; filter: none; transition: none; }
:is(.page-home, .page-projetos) .project-card:hover .project-card__media img, .projects-page .project-card:hover .project-card__media img { transform: none; }
:is(.page-home, .page-projetos) .project-card__body { display: flex; flex-direction: column; flex-grow: 1; padding: 22px !important; }
:is(.page-home, .page-projetos) .project-card__domain { color: var(--home-text-faint); font-size: .75rem; letter-spacing: normal; text-transform: none; }
:is(.page-home, .page-projetos) .project-card h3 { font-family: var(--home-font-display); font-size: 1.13rem; letter-spacing: -.02em; line-height: 1.4; font-weight: 600; margin: 7px 0 12px; color: var(--home-text); }
.project-card h3 a { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.project-card__arrow { color: var(--home-orange, var(--accent)); font-size: 1.1rem; font-weight: 400; }
:is(.page-home, .page-projetos) .project-card p { margin: 0 0 20px; font-size: .86rem; color: var(--home-text-soft); line-height: 1.75; flex-grow: 1; }
:is(.page-home, .page-projetos) .chip-list { display: flex; flex-wrap: wrap; gap: 6px 12px; margin: auto 0 0; padding: 0; list-style: none; }
:is(.page-home, .page-projetos) .chip-list li { padding: 0; background: transparent; border: none; color: var(--home-text-faint); font-size: .69rem; font-weight: 400; }
:is(.page-home, .page-projetos) .exact-solutions-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
:is(.page-home, .page-projetos) .exact-solution-card { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--home-line); border-radius: 12px; background: var(--home-panel); }
:is(.page-home, .page-projetos) .exact-solution-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
:is(.page-home, .page-projetos) .exact-solution-icon { color: var(--home-orange); flex-shrink: 0; }
:is(.page-home, .page-projetos) :is(.exact-solution-icon, .exact-benefit-icon) svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 1.5; fill: none; }
:is(.page-home, .page-projetos) .exact-solution-card h3 { color: var(--home-text); font-family: var(--home-font-display); font-size: 1.2rem; line-height: 1.4; font-weight: 600; letter-spacing: -.02em; margin: 0; }
:is(.page-home, .page-projetos) .exact-solution-card > p { color: var(--home-text-soft); font-size: .94rem; line-height: 1.75; margin: 0 0 22px; }
:is(.page-home, .page-projetos) .exact-solution-bullets { display: grid; gap: 10px; margin: 0 0 28px; padding-left: 18px; color: var(--home-text-soft); font-size: .88rem; }
:is(.page-home, .page-projetos) .exact-solution-bullets li::marker { color: var(--home-orange); }
:is(.page-home, .page-projetos) .exact-solution-btn { margin-top: auto; align-self: flex-start; }
:is(.page-home, .page-projetos) .exact-youtube-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
:is(.page-home, .page-projetos) .exact-youtube-card { overflow: hidden; border: 1px solid var(--home-line); border-radius: 12px; background: var(--home-panel); }
:is(.page-home, .page-projetos) .exact-youtube-thumbnail { display: block; aspect-ratio: 16 / 9; }
:is(.page-home, .page-projetos) .exact-yt-mockup { width: 100%; height: 100%; }
:is(.page-home, .page-projetos) .exact-youtube-body { padding: 20px; }
:is(.page-home, .page-projetos) .exact-youtube-body h3 { margin: 0 0 12px; color: var(--home-text); font-size: 1rem; font-weight: 600; line-height: 1.6; }
:is(.page-home, .page-projetos) .exact-youtube-platform { color: var(--home-text-faint); font-size: .73rem; }
:is(.page-home, .page-projetos) .exact-youtube-cta-row { margin-top: 24px; }
:is(.page-home, .page-projetos) .exact-community-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 32px; padding: 32px; border: 1px solid var(--home-line); border-radius: 12px; background: var(--home-panel); }
:is(.page-home, .page-projetos) .exact-community-copy h2 { margin: 0 0 12px; font-family: var(--home-font-display); font-weight: 600; font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: -.025em; color: var(--home-text); }
:is(.page-home, .page-projetos) .exact-community-copy p { margin: 0; color: var(--home-text-soft); line-height: 1.75; font-size: .94rem; }
:is(.page-home, .page-projetos) .exact-bottom-benefits { padding: 52px 0 20px; }
:is(.page-home, .page-projetos) .exact-bottom-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
:is(.page-home, .page-projetos) .exact-benefit-card { display: flex; gap: 12px; align-items: flex-start; }
:is(.page-home, .page-projetos) .exact-benefit-icon { color: var(--home-orange); flex-shrink: 0; }
:is(.page-home, .page-projetos) .exact-benefit-card strong { display: block; color: var(--home-text); font-size: .85rem; line-height: 1.5; }
:is(.page-home, .page-projetos) .exact-benefit-card p { margin: 8px 0 0; color: var(--home-text-faint); font-size: .8rem; line-height: 1.7; }
@media (max-width: 1000px) {
  :is(.page-home, .page-projetos) .exact-hero { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); padding-top: 52px; }
  :is(.page-home, .page-projetos) .project-grid, .projects-page .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  :is(.page-home, .page-projetos) .exact-bottom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  :is(.page-home, .page-projetos) .exact-home .container { width: calc(100% - 40px); }
  :is(.page-home, .page-projetos) .exact-hero { grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 40px 0 0; }
  :is(.page-home, .page-projetos) .exact-hero h1 { font-size: clamp(2.2rem, 7.5vw, 3.25rem); }
  :is(.page-home, .page-projetos) .exact-hero-text { font-size: 1rem; }
  .cloud-scene { min-height: 0; padding: 0; }
  :is(.page-home, .page-projetos) .exact-hero-actions { gap: 12px; }
  :is(.page-home, .page-projetos) .exact-cloudflare { gap: 14px; }
  :is(.page-home, .page-projetos) .exact-cloudflare-mark { width: 80px; }
  :is(.page-home, .page-projetos) .exact-divider { margin: 36px auto; }
  :is(.page-home, .page-projetos) .exact-solutions-grid, :is(.page-home, .page-projetos) .exact-community-panel, :is(.page-home, .page-projetos) .exact-youtube-grid { grid-template-columns: minmax(0, 1fr); }
  :is(.page-home, .page-projetos) .exact-community-panel, :is(.page-home, .page-projetos) .exact-solution-card { padding: 24px; }
  :is(.page-home, .page-projetos) .exact-community-button { justify-self: start; }
}
@media (max-width: 520px) {
  :is(.page-home, .page-projetos) .project-grid, .projects-page .project-grid { grid-template-columns: minmax(0, 1fr); }
  :is(.page-home, .page-projetos) .exact-hero-actions > :is(.exact-primary-button, .exact-secondary-button) { width: 100%; }
  :is(.page-home, .page-projetos) .exact-bottom-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .cloud-scene * { animation: none; }
  :is(.page-home, .page-projetos) *, :is(.page-home, .page-projetos) *::before, :is(.page-home, .page-projetos) *::after { scroll-behavior: auto; transition: none; }
}

:root[data-theme='light'] :is(.page-home, .page-projetos) .exact-home { background: var(--home-bg); }
:root[data-theme='light'] :is(.page-home, .page-projetos) .exact-cloudflare { background: transparent; }
:root[data-theme='light'] :is(.page-home, .page-projetos) .exact-hero-text { color: var(--home-text-soft); }
:is(.page-home, .page-projetos) .theme-toggle span { color: var(--home-orange); }
:is(.page-home, .page-projetos) .exact-video-image { display: block; width: 100%; height: 100%; object-fit: cover; }
:is(.page-home, .page-projetos) .exact-youtube-thumbnail { position: relative; overflow: hidden; }
:is(.page-home, .page-projetos) .exact-video-duration { position: absolute; right: 10px; bottom: 10px; background: #101418; color: #fff; border-radius: 4px; padding: 2px 7px; font-size: .75rem; font-variant-numeric: tabular-nums; }


/* Page: ia */
.catalog-hero {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0 clamp(46px, 6vw, 82px);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
}

.catalog-hero-prompts::before {
  background:
    linear-gradient(90deg, transparent 0 49.8%, var(--line) 49.8% 50%, transparent 50%),
    radial-gradient(circle at 18% 22%, rgba(135, 84, 255, 0.34), transparent 28rem),
    linear-gradient(120deg, rgba(135, 84, 255, 0.08), transparent 56%);
}

.catalog-hero-skills::before {
  background:
    linear-gradient(90deg, transparent 0 49.8%, var(--line) 49.8% 50%, transparent 50%),
    radial-gradient(circle at 82% 22%, rgba(52, 141, 255, 0.31), transparent 28rem),
    linear-gradient(240deg, rgba(52, 141, 255, 0.08), transparent 56%);
}

.catalog-hero__grid,
.catalog-detail-grid,
.catalog-example-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.catalog-label {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-section-label {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.catalog-hero h1,
.catalog-detail-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 3.75rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.catalog-hero__aside {
  display: grid;
  gap: 28px;
  padding-top: 5px;
}

.catalog-hero__aside > p,
.catalog-detail-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.catalog-hero__aside dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.catalog-hero__aside dl div {
  padding: 18px 0;
}

.catalog-hero__aside dl div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line-strong);
}

.catalog-hero__aside dt,
.catalog-facts dt {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.catalog-hero__aside dd,
.catalog-facts dd {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 800;
}

.catalog-index-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 520px);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-toolbar label {
  color: var(--text);
  font-weight: 800;
}

.catalog-toolbar input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: var(--surface-strong);
  color: var(--text);
}

.catalog-toolbar input::placeholder {
  color: var(--text-soft);
}

.catalog-toolbar input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.catalog-list {
  border-top: 1px solid var(--line-strong);
}

.catalog-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
  transition: background 180ms ease;
}

.catalog-row:hover {
  background: var(--surface-glass);
}

.catalog-row[hidden] {
  display: none;
}

.catalog-row__index {
  color: var(--accent-2);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.catalog-row__main {
  display: grid;
  gap: 12px;
}

.catalog-row__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.catalog-row h2 {
  margin: 0;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.catalog-row h2 a:hover {
  color: var(--accent-2);
}

.catalog-row p {
  margin: 0;
  color: var(--text-soft);
}

.catalog-status,
.catalog-version {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, var(--line));
  color: var(--accent-2);
  font-size: 0.7rem;
  font-weight: 800;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-tags li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.72rem;
}

.catalog-row__meta {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.catalog-row__meta span,
.catalog-row__meta strong {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.catalog-row__meta a,
.catalog-source-link {
  color: var(--accent-2);
  font-weight: 800;
}

.catalog-filter-empty,
.catalog-empty-state {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text-soft);
}

.catalog-empty-state h2 {
  margin: 0 0 8px;
  color: var(--text);
}

.catalog-empty-state p {
  margin: 0;
}

.catalog-faq-section,
.catalog-explainer-section {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-glass) 72%, transparent);
}

.catalog-faq-section h2,
.catalog-explainer-section h2,
.catalog-copy-heading h2,
.catalog-guide-section h2 {
  margin: 0;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.catalog-faq-list {
  border-top: 1px solid var(--line-strong);
}

.catalog-faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.catalog-faq-list summary {
  padding: 20px 2px;
  color: var(--text);
  font-weight: 800;
}

.catalog-faq-list p,
.catalog-prose p,
.catalog-guide-section p,
.catalog-example-section p {
  color: var(--text-soft);
}

.catalog-faq-list p {
  margin: 0;
  padding: 0 2px 20px;
}

.catalog-prose p:first-child {
  margin-top: 0;
}

.catalog-prose a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-detail-hero {
  padding: clamp(52px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 82% 16%, var(--accent-glow), transparent 28rem),
    linear-gradient(180deg, var(--surface-glass), transparent);
}

.catalog-detail-hero > .breadcrumb {
  padding-top: 0;
  padding-bottom: clamp(32px, 4vw, 52px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  white-space: nowrap;
  scrollbar-width: thin;
}

.catalog-detail-hero h1 {
  font-size: clamp(2.55rem, 5.5vw, 5rem);
}

.catalog-detail-lead {
  margin-top: 22px;
}

.catalog-detail-hero .catalog-tags {
  margin-top: 22px;
}

.catalog-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.catalog-facts div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-strong);
}

.catalog-facts code,
.catalog-guide-section code {
  overflow-wrap: anywhere;
  color: var(--accent-2);
}

.catalog-copy-section {
  background: #050711;
}

.catalog-files-section {
  border-top: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--surface-glass) 74%, transparent);
}

.catalog-files-section .catalog-copy-heading > p {
  margin: 0;
  color: var(--text-soft);
}

.catalog-file-list {
  display: grid;
  gap: 28px;
}

.catalog-file-list article {
  display: grid;
  gap: 14px;
}

.catalog-file-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.catalog-file-heading > div {
  display: grid;
  gap: 5px;
}

.catalog-file-heading strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.catalog-file-heading span {
  color: var(--text-faint);
  font-size: 0.76rem;
}

.catalog-file-heading button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 800;
}

:root[data-theme='light'] .catalog-copy-section {
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}

.catalog-copy-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.catalog-copy-heading button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: white;
  font-weight: 900;
}

.catalog-copy-heading button:hover {
  background: var(--accent-2);
}

.catalog-code {
  margin: 0;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(123, 146, 216, 0.08) 1px, transparent 1px),
    #080c18;
  background-size: 100% 30px;
  color: var(--home-text, #f3f6fb);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  tab-size: 2;
}

.catalog-guide-section {
  border-bottom: 1px solid var(--line);
}

.catalog-guide-section h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.2rem;
}

.catalog-variable-list {
  display: grid;
  container-type: inline-size;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.catalog-variable-list div {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-strong);
}

.catalog-variable-list dt {
  color: var(--accent-2);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.catalog-variable-list dd {
  margin: 0;
  color: var(--text-soft);
}

@container (max-width: 420px) {
  .catalog-variable-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.catalog-example-grid > div {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.catalog-example-grid p:last-child {
  margin-bottom: 0;
}

.catalog-check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.catalog-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.catalog-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
}

@media (max-width: 760px) {
  .catalog-hero__grid,
  .catalog-detail-grid,
  .catalog-example-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-hero h1,
  .catalog-detail-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .catalog-row__meta {
    grid-column: 2;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-copy-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-file-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-file-heading button {
    width: 100%;
  }

  .catalog-copy-heading button {
    width: 100%;
  }

  .catalog-code {
    font-size: 0.78rem;
  }

  .catalog-variable-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-header .brand-copy span,
  .site-header .header-contact-button span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-row,
  .catalog-row h2 a,
  .catalog-copy-heading button {
    transition: none;
  }
}


/* Diretório unificado de IA */
.catalog-hero-ia::before {
  background:
    linear-gradient(90deg, transparent 0 49.8%, var(--line) 49.8% 50%, transparent 50%),
    radial-gradient(circle at 18% 22%, rgba(135, 84, 255, 0.3), transparent 27rem),
    radial-gradient(circle at 82% 72%, rgba(52, 141, 255, 0.22), transparent 25rem),
    linear-gradient(135deg, rgba(135, 84, 255, 0.07), transparent 48%);
}

.ia-directory-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.ia-type-nav {
  display: flex;
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow-x: auto;
  scrollbar-width: thin;
}

.ia-type-nav a {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 0 20px;
  border-right: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-weight: 800;
}

.ia-type-nav a:first-child {
  border-left: 1px solid var(--line-strong);
}

.ia-type-nav a:hover,
.ia-type-nav a.is-active {
  background: var(--surface-strong);
  color: var(--text);
}

.ia-type-nav a.is-active {
  box-shadow: inset 0 -3px 0 var(--accent);
}

.ia-type-nav strong {
  color: var(--accent-2);
  font-variant-numeric: tabular-nums;
}

.catalog-type-badge {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.catalog-type-badge-agent {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
  color: var(--accent-2);
}

.catalog-type-badge-skill {
  border-color: color-mix(in srgb, #348dff 60%, var(--line));
  color: color-mix(in srgb, #348dff 80%, var(--text));
}

.catalog-file-heading h3 {
  margin: 0;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.catalog-file-heading p {
  margin: 2px 0 0;
  color: var(--text-soft);
}

.catalog-file-heading code {
  color: var(--accent-2);
  overflow-wrap: anywhere;
}

.catalog-detail-agent .catalog-detail-hero {
  background:
    radial-gradient(circle at 16% 24%, rgba(135, 84, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(52, 141, 255, 0.17), transparent 24rem),
    linear-gradient(180deg, var(--surface-glass), transparent);
}

@media (max-width: 760px) {
  .ia-type-nav {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .ia-type-nav a {
    min-height: 56px;
    padding: 0 16px;
  }
}


/* Page: mentoria */
.mentoring-page .card {
  min-height: 170px;
}


/* Page: projetos */
.projects-page .project-grid {
  align-items: stretch;
}


/* Page: servicos */
.services-process .timeline-card {
  min-height: 140px;
}


/* Page: sobre */
.about-page .prose {
  width: 100%;
}


/* Page: tecnologias */
.technologies-page .stack-card {
  min-height: 180px;
}


/* Page: workshop */
/* Workshop no sistema visual da home: carvão, marfim e laranja.
   As faixas da landing misturam bloco claro e bloco escuro, sem sair da paleta. */

.workshop-page--bands {
  background: #101418;
}

.workshop-band {
  width: 100%;
}

.workshop-band--light {
  color-scheme: light;
  --bg: #f5f2ed;
  --bg-soft: #f5f2ed;
  --surface: #fffdfa;
  --surface-strong: #fffdfa;
  --surface-glass: #fffdfa;
  --text: #101418;
  --text-soft: #4a535b;
  --text-faint: #5c666e;
  --line: #ddd8d0;
  --line-strong: #cfc9bf;
  --accent: #a64b0c;
  --accent-2: #a64b0c;
  --accent-3: #a64b0c;
  --accent-soft: rgba(166, 75, 12, 0.1);
  --cta: #f6a45d;
  --cta-hover: #ffb77c;
  --cta-text: #20170f;
  --ok: #5f9f00;
  background: var(--bg);
  color: var(--text);
}

.workshop-band--dark {
  color-scheme: dark;
  --bg: #101418;
  --bg-soft: #101418;
  --surface: #191e23;
  --surface-strong: #191e23;
  --surface-glass: #191e23;
  --text: #f5f2ed;
  --text-soft: #bbc1c7;
  --text-faint: #a8b0b8;
  --line: #30363c;
  --line-strong: #3a424a;
  --accent: #f6a45d;
  --accent-2: #f6a45d;
  --accent-3: #f6a45d;
  --accent-soft: rgba(246, 164, 93, 0.14);
  --cta: #f6a45d;
  --cta-hover: #ffb77c;
  --cta-text: #20170f;
  --ok: #7cb518;
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 164, 93, 0.14), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(245, 242, 237, 0.06), transparent 30%),
    var(--bg);
  color: var(--text);
}

.workshop-band--light.workshop-hero-section {
  background: linear-gradient(180deg, #faf7f2 0%, #efebe4 100%);
}

.workshop-band--light.workshop-cta-section {
  background: linear-gradient(180deg, #efebe4 0%, #f5f2ed 100%);
}

body.page-workshop .workshop-page--bands .workshop-cta-panel.card {
  --text: #f5f2ed;
  --text-soft: #bbc1c7;
  --text-faint: #a8b0b8;
  --line: #30363c;
  --surface: #191e23;
  --accent: #f6a45d;
  --accent-2: #f6a45d;
  background: #101418;
  border-color: #30363c;
  color: #f5f2ed;
}

.workshop-page [data-reveal],
.workshop-page [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
  transition: none;
}

.workshop-page .section {
  padding: 56px 0;
}

.workshop-hero-section {
  position: relative;
  padding: 28px 0 48px;
}

.workshop-hero-section::before {
  content: none;
}

.workshop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.workshop-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.3vw, 3.75rem);
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.workshop-title-main,
.workshop-title-accent {
  display: block;
}

.workshop-title-accent {
  color: var(--accent);
}

.workshop-lead,
.workshop-page p,
.workshop-page li {
  max-width: none;
}

.workshop-lead {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.workshop-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.workshop-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.workshop-highlight strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.workshop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.workshop-hero-actions.is-centered {
  justify-content: flex-start;
}

.workshop-btn-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.workshop-btn-icon svg {
  width: 18px;
  height: 18px;
}

.workshop-cost-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workshop-cost-note__logo {
  flex-shrink: 0;
}

.workshop-cf-mark {
  width: 96px;
  height: auto;
  color: var(--text);
}

.workshop-cost-note strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
}

.workshop-cost-note p {
  margin: 6px 0 0;
  color: var(--text-faint);
  font-size: 0.8rem;
  line-height: 1.7;
}

.workshop-hero-visual {
  position: relative;
  min-height: 0;
}

.workshop-hero-core {
  display: grid;
  gap: 12px;
}

.workshop-hero-stack {
  display: grid;
  gap: 12px;
}

.workshop-float-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.workshop-float-card .workshop-icon-wrap {
  grid-row: span 2;
}

.workshop-float-card strong {
  color: var(--text);
  font-size: 0.92rem;
}

.workshop-float-card p {
  margin: 2px 0 0;
  color: var(--text-faint);
  font-size: 0.8rem;
}

.workshop-hero-core .workshop-cf-mark {
  justify-self: end;
  margin-top: 8px;
  width: 120px;
}

.workshop-section-heading {
  margin: 0 0 28px;
}

.workshop-section-heading h2,
.workshop-split h2,
.workshop-author__copy h2,
.workshop-cta-panel h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.workshop-section-heading .workshop-lead {
  margin: 0;
  font-size: 0.98rem;
}

.workshop-icon-wrap {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--accent);
}

.workshop-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.workshop-icon-wrap--lg {
  width: 44px;
  height: 44px;
}

.workshop-icon-wrap--lg svg {
  width: 22px;
  height: 22px;
}

.workshop-split,
.workshop-author {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.workshop-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.workshop-checklist__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.workshop-checklist__item strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.workshop-checklist__item p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.workshop-tone {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--text-faint);
}

.workshop-tone svg {
  width: 16px;
  height: 16px;
}

.workshop-tone--bad {
  color: #d4675a;
}

.workshop-tone--good {
  color: var(--ok);
}

.workshop-scene {
  position: relative;
}

.workshop-scene__glow {
  display: none;
}

.workshop-scene__panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.workshop-scene__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-scene__panel strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.workshop-scene__panel ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.workshop-scene__panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.workshop-scene__panel li span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cta);
}

.workshop-scene__meter {
  height: 6px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.workshop-scene__meter-bar {
  width: 68%;
  height: 100%;
  background: var(--cta);
}

.workshop-scene__foot {
  margin: 14px 0 0;
  color: var(--text-faint);
  font-size: 0.78rem;
}

.workshop-scale-grid,
.workshop-domain-grid,
.workshop-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.workshop-scale-card,
.workshop-domain-card,
.workshop-bonus-card,
.workshop-program-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: none;
}

.workshop-scale-card:hover,
.workshop-domain-card:hover,
.workshop-bonus-card:hover,
.workshop-program-card:hover,
.workshop-checklist__item:hover,
.workshop-float-card:hover {
  transform: none;
  border-color: var(--text-faint);
  box-shadow: none;
}

.workshop-scale-card strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.workshop-scale-card span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.workshop-scale-card p,
.workshop-domain-card p,
.workshop-bonus-card p,
.workshop-program-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.workshop-domain-card h3,
.workshop-bonus-card h3,
.workshop-program-card h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.workshop-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workshop-program-card__top,
.workshop-bonus-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workshop-program-day,
.workshop-mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-program-headline {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.workshop-program-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.workshop-program-points li {
  position: relative;
  padding: 10px 12px 10px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.workshop-program-points li::before {
  content: '';
  position: absolute;
  top: 0.95em;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cta);
}

.workshop-author {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.workshop-author__photo {
  margin: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  aspect-ratio: 1;
}

.workshop-author__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-author__copy h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.workshop-author__lead {
  font-weight: 700;
  color: var(--text);
}

.workshop-author__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.workshop-author__fact {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.workshop-author__fact dt {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-author__fact dd {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.workshop-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.workshop-table {
  width: 100%;
  border-collapse: collapse;
}

.workshop-table th,
.workshop-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.workshop-table thead th {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--surface);
}

.workshop-table tbody th {
  color: var(--text);
  font-weight: 700;
}

.workshop-table td:last-child {
  color: var(--accent);
  font-weight: 700;
}

.workshop-cta-panel {
  padding: 32px;
}

.workshop-cta-panel .workshop-lead {
  margin-top: 12px;
}

.workshop-cta-panel .workshop-hero-actions {
  margin-top: 24px;
}

@media (max-width: 1000px) {
  .workshop-hero,
  .workshop-split,
  .workshop-author,
  .workshop-program-grid,
  .workshop-scale-grid,
  .workshop-domain-grid,
  .workshop-bonus-grid {
    grid-template-columns: 1fr;
  }

  .workshop-hero-visual {
    min-height: 0;
  }

  .workshop-author__photo {
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .workshop-page .section {
    padding: 40px 0;
  }

  .workshop-hero-section {
    padding: 12px 0 32px;
  }

  .workshop-hero h1 {
    font-size: clamp(2.2rem, 7.5vw, 3.25rem);
  }

  .workshop-highlight-grid,
  .workshop-author__facts {
    grid-template-columns: 1fr;
  }

  .workshop-hero-actions > .button {
    width: 100%;
    justify-content: center;
  }

  .workshop-cost-note {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Chrome universal */
/* Sistema visual único, baseado na home. */

:root {
  color-scheme: dark;
  --brand-orange: #f6a45d;
  --brand-orange-2: #ffb77c;
  --brand-ink: #20170f;
  --cta: #f6a45d;
  --cta-hover: #ffb77c;
  --cta-text: #20170f;
  --bg: #101418;
  --bg-soft: #101418;
  --surface: #191e23;
  --surface-strong: #191e23;
  --surface-glass: #191e23;
  --text: #f5f2ed;
  --text-soft: #bbc1c7;
  --text-faint: #a8b0b8;
  --line: #30363c;
  --line-strong: #3a424a;
  --accent: #f6a45d;
  --accent-2: #f6a45d;
  --accent-3: #f6a45d;
  --accent-soft: rgba(246, 164, 93, 0.14);
  --accent-glow: transparent;
  --lime-soft: transparent;
  --lime-glow: transparent;
  --brand-purple: #f6a45d;
  --brand-purple-2: #ffb77c;
  --brand-lime: #f6a45d;
  --brand-lime-2: #ffb77c;
  --ok: #7cb518;
  --shadow: none;
  --radius-xl: 12px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --container: 1240px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --home-bg: var(--bg);
  --home-panel: var(--surface);
  --home-line: var(--line);
  --home-text: var(--text);
  --home-text-soft: var(--text-soft);
  --home-text-faint: var(--text-faint);
  --home-orange: var(--cta);
  --home-font-display: var(--font-display);
  --home-font-body: var(--font-body);
}

:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f7f5f0;
  --bg-soft: #f7f5f0;
  --surface: #fffefa;
  --surface-strong: #fffefa;
  --surface-glass: #fffefa;
  --text: #22292e;
  --text-soft: #505a63;
  --text-faint: #5e6870;
  --line: #d9d7d1;
  --line-strong: #c9c6bf;
  --accent: #a64b0c;
  --accent-2: #a64b0c;
  --accent-3: #a64b0c;
  --accent-soft: rgba(166, 75, 12, 0.1);
  --brand-purple: #a64b0c;
  --brand-purple-2: #c45d16;
  --ok: #5f9f00;
}

body:not(.is-landing) {
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
}

body:not(.is-landing)::before {
  display: none;
}

body:not(.is-landing) ::selection {
  background: #f6a45d;
  color: #101418;
}

body:not(.is-landing) :is(a, button, summary):focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 4px;
}

body:not(.is-landing) .site-header {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
  font-family: var(--font-body);
}

body:not(.is-landing) .nav-shell,
body:not(.is-landing) .site-header .nav-shell {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  width: min(calc(100% - 40px), var(--container));
}

body:not(.is-landing) .brand-mark,
body:not(.is-landing) .header-actions,
body:not(.is-landing) .header-contact-button,
body:not(.is-landing) .theme-toggle {
  flex: 0 0 auto;
}

body:not(.is-landing) .site-nav,
body:not(.is-landing) .site-header .site-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  min-width: 0;
  gap: clamp(12px, 2.2vw, 34px);
  order: 0;
  overflow: visible;
  padding: 0;
}

body:not(.is-landing) .header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  justify-self: end;
}

@media (max-width: 1100px) {
  body:not(.is-landing) .site-header {
    scrollbar-width: thin;
  }

  body:not(.is-landing) .site-header .nav-shell {
    width: max-content;
    min-width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
    gap: 18px;
  }

  body:not(.is-landing) .site-header .site-nav {
    justify-content: space-evenly;
    gap: 20px;
  }
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-symbol {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  background: #f6a45d;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

body:not(.is-landing) .brand-copy strong,
body:not(.is-landing) .footer-brand .brand-copy strong,
body:not(.is-landing) .footer-brand span:last-child {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

body:not(.is-landing) .brand-copy strong::first-letter {
  color: inherit;
}

body:not(.is-landing) .brand-copy span {
  max-width: none;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 500;
}

body:not(.is-landing) .site-nav a {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

body:not(.is-landing) .site-nav a:is(:hover, .is-active) {
  color: var(--text);
}

body:not(.is-landing) .site-nav a::after {
  background: transparent;
}

body:not(.is-landing) .site-nav a:is(:hover, .is-active)::after {
  background: var(--cta);
}

body:not(.is-landing) .header-contact-button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px !important;
  background: var(--cta);
  color: var(--cta-text);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: none;
}

body:not(.is-landing) .header-contact-button:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
}

body:not(.is-landing) .theme-toggle {
  width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px !important;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

body:not(.is-landing) .theme-toggle:hover {
  border-color: var(--text-faint);
  background: var(--surface);
}

body:not(.is-landing) .site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--text-soft);
}

body:not(.is-landing) .breadcrumb {
  color: var(--text-faint);
}

body:not(.is-landing) .eyebrow,
body:not(.is-landing) .hero-chip,
body:not(.is-landing) .footer-eyebrow,
body:not(.is-landing) .timeline-index,
body:not(.is-landing) .proof-card__index,
body:not(.is-landing) .catalog-label,
body:not(.is-landing) .catalog-section-label {
  color: var(--cta);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
}

body:not(.is-landing) :is(
  .hero-title,
  .section-row h2,
  .pain-intro h2,
  .split-section h2,
  .stack-panel h2,
  .offer-panel h2,
  .final-cta-panel h2,
  .section-heading h1,
  .section-heading h2,
  .course-hero h1,
  .about-grid h2,
  .cta-banner h2,
  .blog-article__hero h1,
  .catalog-hero h1,
  .catalog-detail-hero h1,
  .workshop-hero h1,
  .workshop-section-heading h2,
  .workshop-cta-panel h2
) {
  max-width: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: -0.035em;
  text-transform: none;
  text-shadow: none;
}

body:not(.is-landing) :is(.hero-title, .section-heading h1, .course-hero h1, .blog-article__hero h1, .catalog-hero h1, .catalog-detail-hero h1, .workshop-hero h1) {
  font-size: clamp(2.2rem, 4.3vw, 3.75rem);
}

body:not(.is-landing) :is(.section-heading h2, .section-row h2, .cta-banner h2, .split-section h2, .stack-panel h2, .about-grid h2, .workshop-section-heading h2, .workshop-cta-panel h2) {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

body:not(.is-landing) .hero-title span {
  color: var(--cta);
  text-shadow: none;
}

body:not(.is-landing) :is(h1, h2, h3, p, li, .section-description, .hero-support, .hero-description) {
  max-width: none;
}

body:not(.is-landing) .button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px !important;
  background: var(--cta);
  color: var(--cta-text);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: none;
}

body:not(.is-landing) .button::after {
  content: none;
  margin: 0;
}

body:not(.is-landing) .button:hover {
  background: var(--cta-hover);
  transform: none;
  box-shadow: none;
  filter: none;
}

body:not(.is-landing) .button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

body:not(.is-landing) .button-secondary:hover {
  background: var(--surface);
  border-color: var(--text-faint);
  color: var(--text);
}

body:not(.is-landing) .card-link::after {
  content: '→';
  margin-left: 8px;
}

body:not(.is-landing) :is(
  .card,
  .contact-link-card,
  .project-cta-card,
  .stack-tile,
  .stack-card,
  .solution-item,
  .faq-item,
  .path-card,
  .tier-card,
  .blog-card,
  .blog-video,
  .blog-article__cover,
  .blog-historical__cover,
  .blog-sidebar-card,
  .blog-pitfalls,
  .fact-card,
  .trust-card,
  .cta-banner-inner,
  .pain-panel,
  .offer-panel,
  .final-cta-panel
) {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  background: var(--surface);
  box-shadow: none;
}

body:not(.is-landing) :is(.card, .stack-tile, .stack-card, .solution-item, .faq-item, .blog-card, .trust-card):hover {
  transform: none;
  border-color: var(--text-faint);
  box-shadow: none;
}

body:not(.is-landing) :is(.card h3, .project-card h3, .service-card h3, .contact-link-card strong, .stack-tile h3, .stack-card h3) {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

body:not(.is-landing) .chip-list li,
body:not(.is-landing) .stack-tags span,
body:not(.is-landing) .trust-row span {
  border-radius: 8px !important;
  background: transparent;
  border-color: var(--line);
}

body:not(.is-landing) .catalog-hero::before,
body:not(.is-landing) .catalog-hero-prompts::before,
body:not(.is-landing) .catalog-hero-skills::before,
body:not(.is-landing) .catalog-hero-agents::before {
  background: none;
  opacity: 0;
}

@media (max-width: 720px) {
  body:not(.is-landing) :is(.hero-title, .section-heading h1, .blog-article__hero h1, .catalog-hero h1, .workshop-hero h1) {
    font-size: clamp(2.2rem, 7.5vw, 3.25rem);
  }
}
