:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-soft: #080a10;
  --surface: rgba(13, 17, 28, 0.78);
  --surface-strong: rgba(17, 22, 38, 0.94);
  --surface-glass: rgba(255, 255, 255, 0.035);
  --text: #f9fafb;
  --text-soft: #d1d5db;
  --text-faint: #9ca3af;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #6366f1;
  --accent-2: #a855f7;
  --accent-3: #14b8a6;
  --accent-soft: rgba(99, 102, 241, 0.12);
  --accent-glow: rgba(168, 85, 247, 0.22);
  --ok: #10b981;
  --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: #f9fafb;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-glass: rgba(15, 23, 42, 0.03);
  --text: #111827;
  --text-soft: #4b5563;
  --text-faint: #9ca3af;
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.12);
  --accent-soft: rgba(99, 102, 241, 0.08);
  --accent-glow: rgba(99, 102, 241, 0.15);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 8%, var(--accent-glow), transparent 35rem),
    radial-gradient(circle at 14% 20%, rgba(20, 184, 166, 0.08), transparent 25rem),
    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: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(130px, 1fr);
  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;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  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(--accent), var(--accent-2));
}

.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(--accent) 70%, var(--line));
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #7c2dff 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(157, 77, 255, 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) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

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

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

  .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: #070b18;
  --exact-panel: rgba(11, 15, 30, 0.88);
  --exact-panel-2: rgba(16, 22, 43, 0.82);
  --exact-line: rgba(150, 170, 255, 0.22);
  --exact-purple: #8a45ff;
  --exact-purple-2: #b266ff;
  --exact-blue: #2494ff;
  --exact-cyan: #64c7ff;
  --exact-text: #f7f8ff;
  --exact-muted: #c8cce0;
}

:root[data-theme='light'] {
  --exact-bg: #f7f9ff;
  --exact-bg-2: #eef4ff;
  --exact-panel: rgba(255, 255, 255, 0.92);
  --exact-panel-2: rgba(246, 249, 255, 0.94);
  --exact-line: rgba(36, 76, 160, 0.18);
  --exact-text: #101525;
  --exact-muted: #4d5a76;
}

.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, #2d7cff, 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: uppercase;
}

.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-purple), #1d7dff);
}

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

.exact-home {
  min-height: 100vh;
  color: var(--exact-text);
  background:
    radial-gradient(circle at 76% 12%, rgba(32, 115, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 32% 45%, rgba(138, 69, 255, 0.16), 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 var(--exact-purple);
  border-radius: 999px;
  color: #a9a5ff;
  background: rgba(138, 69, 255, 0.11);
  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: #020612;
  --exact-bg-2: #030817;
  --exact-panel: rgba(9, 13, 27, 0.86);
  --exact-panel-2: rgba(15, 19, 38, 0.88);
  --exact-line: rgba(132, 159, 255, 0.27);
  --exact-purple: #8d45ff;
  --exact-purple-2: #a763ff;
  --exact-blue: #236cff;
  --exact-blue-2: #59baff;
  --exact-text: #f9fbff;
  --exact-muted: #c7cbe0;
  --exact-font: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

:root[data-theme='light'] {
  --exact-bg: #f8faff;
  --exact-bg-2: #eef4ff;
  --exact-panel: rgba(255, 255, 255, 0.9);
  --exact-panel-2: rgba(246, 249, 255, 0.92);
  --exact-line: rgba(40, 71, 145, 0.2);
  --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,
.site-nav,
.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: 760px) {
  .site-header {
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .site-header .nav-shell {
    display: flex;
    gap: 14px;
    width: max-content;
    min-width: max-content;
    min-height: auto;
    padding: 12px 0;
    flex-wrap: nowrap;
  }

  .site-nav {
    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;
  }
}


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


/* 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 */
.page-home {
  --home-bg: #030712;
  --home-bg-soft: #0b0f19;
  --home-panel: rgba(17, 24, 39, 0.6);
  --home-panel-strong: rgba(17, 24, 39, 0.85);
  --home-line: rgba(255, 255, 255, 0.06);
  --home-line-strong: rgba(255, 255, 255, 0.12);
  --home-text: #f9fafb;
  --home-text-soft: #d1d5db;
  --home-text-faint: #9ca3af;
  --home-purple: #818cf8;
  --home-purple-soft: rgba(129, 140, 248, 0.12);
  --home-blue: #22d3ee;
  --home-blue-soft: rgba(34, 211, 238, 0.12);
  --home-accent-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --home-whatsapp-gradient: linear-gradient(135deg, #25D366, #128C7E);
  --home-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  --home-radius: 12px;
  --home-font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
  --home-font-body: 'Plus Jakarta Sans', sans-serif;
}

:root[data-theme='light'] .page-home {
  --home-bg: #f9fafb;
  --home-bg-soft: #f3f4f6;
  --home-panel: rgba(255, 255, 255, 0.8);
  --home-panel-strong: rgba(255, 255, 255, 0.95);
  --home-line: rgba(17, 24, 39, 0.08);
  --home-line-strong: rgba(17, 24, 39, 0.15);
  --home-text: #111827;
  --home-text-soft: #4b5563;
  --home-text-faint: #9ca3af;
  --home-purple-soft: rgba(99, 102, 241, 0.08);
  --home-blue-soft: rgba(6, 182, 212, 0.08);
  --home-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.page-home body,
.page-home {
  font-family: var(--home-font-body);
  background-color: var(--home-bg);
}

/* Header Adjustments */
.page-home .site-header {
  border-bottom-color: var(--home-line);
  background: color-mix(in srgb, var(--home-bg) 85%, transparent);
}

.page-home .brand-copy strong {
  font-family: var(--home-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--home-text);
}

.page-home .brand-kicker {
  border-color: var(--home-line-strong);
  background: linear-gradient(135deg, var(--home-purple-soft), var(--home-blue-soft));
  color: var(--home-purple);
}

.page-home .site-nav a.is-active::after,
.page-home .site-nav a:hover::after {
  background: var(--home-accent-gradient);
}

/* Global Content Styling */
.page-home .exact-home {
  color: var(--home-text);
  background:
    radial-gradient(circle at 75% 15%, rgba(99, 102, 241, 0.15), transparent 30rem),
    radial-gradient(circle at 20% 12%, rgba(34, 211, 238, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--home-bg) 0%, var(--home-bg-soft) 100%);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.92s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.72s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity, filter;
}

.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.page-home [data-reveal-kind='heading'] {
  transform: translate3d(0, 26px, 0) scale(0.99);
}

.page-home [data-reveal-kind='hero-visual'] {
  transform: translate3d(24px, 22px, 0) scale(0.94);
}

.page-home [data-reveal-kind='panel'] {
  transform: translate3d(0, 30px, 0) scale(0.975);
}

.page-home [data-reveal-kind='media-card'] {
  transform: translate3d(0, 42px, 0) scale(0.96);
}

/* Hero Section */
.page-home .exact-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  padding: clamp(50px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
}

.page-home .exact-hero-copy {
  position: relative;
}

.page-home .exact-pill {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 6px 14px;
  border: 1px solid var(--home-line-strong);
  border-radius: 999px;
  background: var(--home-purple-soft);
  color: var(--home-purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-home .exact-hero h1,
.page-home .exact-hero-title {
  margin: 0;
  font-family: var(--home-font-display);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--home-text);
}

.page-home .exact-hero-title-main,
.page-home .exact-hero-title-accent {
  display: block;
}

.page-home .exact-hero-title-accent {
  color: var(--home-purple);
  text-shadow: 0 0 34px rgba(129, 140, 248, 0.24);
}

.page-home .exact-hero-text {
  margin: 20px 0 0;
  color: var(--home-text-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

/* Hero Actions & Buttons */
.page-home .exact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.page-home .exact-primary-button,
.page-home .exact-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--home-radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: var(--home-shadow);
}

.page-home .exact-primary-button {
  border: none;
  background: var(--home-accent-gradient);
  color: #ffffff;
}

.page-home .exact-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(99, 102, 241, 0.25);
  filter: brightness(1.1);
}

.page-home .exact-btn-whatsapp {
  background: var(--home-whatsapp-gradient);
}

.page-home .exact-btn-whatsapp:hover {
  box-shadow: 0 20px 30px rgba(37, 211, 102, 0.25);
}

.page-home .exact-secondary-button {
  border: 1px solid var(--home-line-strong);
  background: var(--home-panel);
  color: var(--home-text);
  backdrop-filter: blur(12px);
}

.page-home .exact-secondary-button:hover {
  transform: translateY(-2px);
  border-color: var(--home-purple);
  background: var(--home-panel-strong);
}

.page-home .btn-icon svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  fill: currentColor;
}

.page-home .exact-contact-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--home-text-soft);
  transition: color 0.2s ease;
  margin-left: 8px;
}

.page-home .exact-contact-link:hover {
  color: var(--home-text);
  text-decoration: underline;
}

/* Cloudflare Badge Info */
.page-home .exact-cloudflare {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(40px, 6vw, 60px);
  padding: 20px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background: var(--home-panel);
  backdrop-filter: blur(12px);
  max-width: 620px;
}

.page-home .exact-cloud-logo {
  flex-shrink: 0;
}

.page-home .exact-cloudflare-mark {
  width: 120px;
  height: auto;
}

.page-home .exact-cloudflare strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-text);
}

.page-home .exact-cloudflare p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--home-text-faint);
  line-height: 1.4;
}

/* Visual Column */
.page-home .exact-ai-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  isolation: isolate;
}

.page-home .exact-ai-visual::before,
.page-home .exact-ai-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home .exact-ai-visual::before {
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.2), transparent 68%);
  opacity: 0.75;
  transform: translate3d(-28px, -18px, 0) scale(0.9);
}

.page-home .exact-ai-visual::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  opacity: 0.55;
  transform: translate3d(64px, 46px, 0) scale(0.86);
}

.page-home .exact-ai-visual.is-visible::before,
.page-home .exact-ai-visual.is-visible::after {
  transform: translate3d(0, 0, 0) scale(1);
}

.page-home .exact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  margin-top: -160px;
  margin-left: -160px;
  border: 1px dashed var(--home-line-strong);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.page-home .exact-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-purple);
  box-shadow: 0 0 15px var(--home-purple);
}

.page-home .exact-orbit span:nth-child(1) { top: 15%; left: 15%; }
.page-home .exact-orbit span:nth-child(2) { bottom: 15%; right: 15%; }
.page-home .exact-orbit span:nth-child(3) { top: 50%; right: -5px; }

.page-home .exact-chip {
  z-index: 2;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home .exact-ai-visual.is-visible .exact-chip {
  transform: scale(1);
}

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

/* Dividers */
.page-home .exact-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-line), transparent);
  margin: clamp(40px, 8vw, 80px) auto;
}

/* Section Headings */
.page-home .exact-section-heading {
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 50px);
}

.page-home .exact-section-heading h2 {
  font-family: var(--home-font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--home-text);
}

.page-home .exact-section-heading h2 span {
  background: var(--home-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .exact-section-heading p {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--home-text-soft);
  margin: 0 auto;
}

/* Portfolio Section & Cards override */
.page-home .exact-portfolio {
  padding: 20px 0;
}

.page-home .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.page-home .project-card {
  position: relative;
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  border-radius: var(--home-radius);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.page-home .project-card::before,
.page-home .exact-youtube-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(129, 140, 248, 0.16), transparent 40%),
    linear-gradient(180deg, transparent 35%, rgba(3, 7, 18, 0.18));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.page-home .project-card.is-visible::before,
.page-home .exact-youtube-card.is-visible::before,
.page-home .project-card:hover::before,
.page-home .exact-youtube-card:hover::before {
  opacity: 1;
}

.page-home .project-card:hover {
  transform: translateY(-6px);
  border-color: var(--home-purple);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.page-home .project-card__media {
  position: relative;
  border-bottom: 1px solid var(--home-line);
  border-top-left-radius: calc(var(--home-radius) - 1px);
  border-top-right-radius: calc(var(--home-radius) - 1px);
  overflow: hidden;
  display: block;
  aspect-ratio: 1.8;
}

.page-home .project-card__media::after,
.page-home .exact-youtube-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.3));
  opacity: 0.86;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.page-home .project-card.is-visible .project-card__media::after,
.page-home .exact-youtube-card.is-visible .exact-youtube-thumbnail::after {
  opacity: 0.22;
  transform: translateY(100%);
}

.page-home .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home .project-card.is-visible .project-card__media img {
  transform: scale(1);
}

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

.page-home .project-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-home .project-card__domain {
  font-family: var(--home-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--home-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: inline-block;
}

.page-home .project-card h3 {
  font-family: var(--home-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--home-text);
  letter-spacing: -0.02em;
}

.page-home .project-card p {
  font-size: 0.9rem;
  color: var(--home-text-soft);
  line-height: 1.5;
  margin: 0 0 20px;
  flex-grow: 1;
}

.page-home .chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.page-home .chip-list li {
  border: 1px solid var(--home-line-strong);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  color: var(--home-text-soft);
}

.page-home .card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-text);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: transform 0.25s ease;
}

.page-home .card-link::after {
  content: '→';
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.page-home .project-card:hover .card-link::after {
  transform: translateX(4px);
}

/* Solutions Section */
.page-home .exact-solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.page-home .exact-solution-card {
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  border-radius: var(--home-radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .exact-solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-purple);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.page-home .exact-solution-card-alt:hover {
  border-color: var(--home-blue);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.1);
}

.page-home .exact-solution-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.page-home .exact-solution-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--home-purple-soft);
  color: var(--home-purple);
}

.page-home .exact-solution-card-alt .exact-solution-icon {
  background: var(--home-blue-soft);
  color: var(--home-blue);
}

.page-home .exact-solution-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.page-home .exact-solution-card h3 {
  font-family: var(--home-font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  color: var(--home-text);
  letter-spacing: -0.02em;
}

.page-home .exact-solution-card > p {
  font-size: 0.95rem;
  color: var(--home-text-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}

.page-home .exact-solution-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.page-home .exact-solution-bullets li {
  font-size: 0.9rem;
  color: var(--home-text-soft);
  position: relative;
  padding-left: 24px;
}

.page-home .exact-solution-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--home-purple);
  font-weight: 700;
}

.page-home .exact-solution-card-alt .exact-solution-bullets li::before {
  color: var(--home-blue);
}

.page-home .exact-solution-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--home-accent-gradient);
  color: #ffffff;
  margin-top: auto;
  transition: all 0.25s ease;
}

.page-home .exact-solution-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.page-home .exact-solution-btn-alt {
  background: transparent;
  border: 1px solid var(--home-line-strong);
  color: var(--home-text);
}

.page-home .exact-solution-btn-alt:hover {
  background: var(--home-panel-strong);
  border-color: var(--home-blue);
}

/* WhatsApp Community Banner */
.page-home .exact-community {
  padding: 20px 0;
}

.page-home .exact-community-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  background:
    radial-gradient(circle at right top, rgba(37, 211, 102, 0.12), transparent 25rem),
    var(--home-panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--home-shadow);
}

.page-home .exact-community-eyebrow {
  margin: 0 0 10px;
  color: var(--home-purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-home .exact-community-copy h2 {
  font-family: var(--home-font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--home-text);
  line-height: 1.1;
}

.page-home .exact-community-copy p {
  margin: 12px 0 0;
  font-size: 1rem;
  color: var(--home-text-soft);
  line-height: 1.5;
}

.page-home .exact-community-button {
  min-width: 220px;
  box-shadow: none;
}

/* Bottom Benefits Grid */
.page-home .exact-bottom-benefits {
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
}

/* Footer Custom Color for Redesigned Home */
.page-home .site-footer {
  background: #020408;
  border-top: 1px solid var(--home-line);
}

:root[data-theme='light'] .page-home .site-footer {
  background: #f3f4f6;
  border-top: 1px solid var(--home-line);
}

.page-home .exact-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.page-home .exact-benefit-card {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  border-radius: var(--home-radius);
  backdrop-filter: blur(12px);
}

.page-home .exact-benefit-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--home-purple-soft);
  color: var(--home-purple);
  flex-shrink: 0;
}

.page-home .exact-benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.page-home .exact-benefit-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-text);
  line-height: 1.2;
}

.page-home .exact-benefit-card p {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--home-text-faint);
  line-height: 1.35;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .page-home .exact-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-home .exact-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-home .exact-hero-actions {
    justify-content: center;
  }
  .page-home .exact-cloudflare {
    max-width: 100%;
  }
  .page-home .exact-ai-visual {
    min-height: 320px;
  }
  .page-home .exact-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-home .exact-solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-home .exact-community-panel {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .page-home .exact-community-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .page-home .exact-bottom-grid {
    grid-template-columns: 1fr;
  }
  .page-home .exact-hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .page-home .exact-primary-button,
  .page-home .exact-secondary-button {
    width: 100%;
  }
  .page-home .exact-contact-link {
    text-align: center;
    margin-top: 10px;
  }
  .page-home .exact-cloudflare {
    flex-direction: column;
    text-align: center;
  }
}

/* YouTube Section Styling */
.page-home .exact-youtube-section {
  padding: 20px 0;
}

.page-home .exact-youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .exact-youtube-card {
  position: relative;
  border: 1px solid var(--home-line);
  background: var(--home-panel);
  border-radius: var(--home-radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.page-home .exact-youtube-card:hover {
  transform: translateY(-4px);
  border-color: var(--home-purple);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.page-home .exact-youtube-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
}

.page-home .exact-yt-mockup {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home .exact-youtube-card.is-visible .exact-yt-mockup {
  transform: scale(1);
}

.page-home .exact-youtube-card:hover .exact-yt-mockup {
  transform: scale(1.03);
}

.page-home .exact-youtube-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-home .exact-youtube-body h3 {
  font-family: var(--home-font-display);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px;
}

.page-home .exact-youtube-body h3 a {
  color: var(--home-text);
  transition: color 0.2s ease;
}

.page-home .exact-youtube-body h3 a:hover {
  color: var(--home-purple);
}

.page-home .exact-youtube-platform {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--home-text-faint);
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-home .exact-youtube-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.page-home .exact-youtube-btn {
  min-width: 220px;
}

@media (max-width: 900px) {
  .page-home .exact-youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-home .exact-youtube-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal],
  .page-home .project-card__media img,
  .page-home .exact-yt-mockup,
  .page-home .project-card__media::after,
  .page-home .exact-youtube-thumbnail::after,
  .page-home .exact-ai-visual::before,
  .page-home .exact-ai-visual::after,
  .page-home .exact-chip {
    transition: none;
    transform: none;
    filter: none;
    opacity: 1;
  }

  .page-home .exact-orbit {
    animation: none;
  }
}


/* 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.8rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  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: 1120px) {
  .site-header {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .site-header .nav-shell {
    display: flex;
    width: auto;
    min-width: max-content;
    min-height: 70px;
    margin: 0;
    padding: 0 14px;
  }

  .site-header .brand-mark,
  .site-header .site-nav,
  .site-header .header-actions {
    flex: 0 0 auto;
  }

  .site-header .site-nav {
    order: initial;
    padding: 0;
    overflow: visible;
  }

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

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

@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;
}
