/* Innominds â Enterprise institutional (hybrid light/dark) */

:root {
  /* Brand palette */
  --brand-cyan: #38bdf8;
  --brand-blue: #0ea5e9;
  --brand-violet: #818cf8;
  --brand-navy-deep: #07101c;
  --brand-navy: #0c1524;
  --brand-navy-mid: #132033;
  --brand-amber: #d97706;

  /* Dark family */
  --surface-dark-0: #07101c;
  --surface-dark-1: #0c1524;
  --surface-dark-2: #132033;
  --surface-dark-3: #1a2b40;
  --surface-brand: linear-gradient(125deg, #0b1a2e 0%, #123056 48%, #2a2860 100%);

  /* Light family (cool blue undertone) */
  --surface-light-0: #f5f8fc;
  --surface-light-1: #eef3f9;
  --surface-light-2: #e6eef7;
  --surface-soft: #f8fafc;
  --surface-offwhite: #f8fafc;

  /* Default page chrome = dark */
  --surface-0: var(--surface-dark-0);
  --surface-1: var(--surface-dark-1);
  --surface-2: var(--surface-dark-2);
  --surface-3: var(--surface-dark-3);

  /* Legacy aliases */
  --bg-deep: var(--surface-dark-0);
  --bg-base: var(--surface-dark-0);
  --bg-elevated: var(--surface-dark-3);
  --bg-card: var(--surface-dark-3);
  --bg-card-hover: #223550;

  /* Borders */
  --border-subtle: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --border: var(--border-subtle);
  --border-accent: rgba(56, 189, 248, 0.32);

  /* Text (dark context default) */
  --text-primary: #eef3fa;
  --text-secondary: #c2cddc;
  --text-muted: #8fa0b5;
  --text-soft: #6f8198;
  --text: var(--text-primary);

  /* Brand */
  --accent: var(--brand-cyan);
  --accent-soft: var(--brand-blue);
  --accent-violet: var(--brand-violet);
  --accent-glow: rgba(56, 189, 248, 0.14);
  --accent-warn: var(--brand-amber);
  --gradient-hero: radial-gradient(ellipse 75% 60% at 8% 0%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(129, 140, 248, 0.14), transparent 52%);

  /* Typography â presence on large viewports */
  --font: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --fs-display: clamp(2.75rem, 5vw, 3.75rem);
  --fs-h1: clamp(2.5rem, 4.5vw, 3.35rem);
  --fs-h2: clamp(2rem, 3.2vw, 2.65rem);
  --fs-h3: clamp(1.25rem, 1.6vw, 1.55rem);
  --fs-body-lg: clamp(1.125rem, 1.35vw, 1.25rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.8125rem;

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius: var(--radius-md);
  --radius-lg: 16px;
  --shadow-soft: 0 10px 28px rgba(7, 16, 28, 0.08);
  --shadow-lift: 0 14px 36px rgba(7, 16, 28, 0.12);
  --shadow: var(--shadow-soft);

  --header-h: 64px;
  --container: min(1280px, calc(100% - 3rem));
  --container-narrow: min(720px, 100%);
  --container-wide: min(1400px, calc(100% - 2.5rem));
  --section-pad-y: clamp(4.5rem, 9vw, 7rem);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset, var(--header-h)) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface-dark-0);
  -webkit-font-smoothing: antialiased;
}

body.site-nav-locked {
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--container-narrow);
  margin-inline: auto;
}

.container--wide {
  width: var(--container-wide);
  margin-inline: auto;
}

.narrow {
  max-width: var(--container-narrow);
}

/* Section surface variants */
.section {
  padding: var(--section-pad-y) 0;
  background: var(--surface-dark-1);
  color: var(--text-primary);
}

.section.hero {
  background: transparent;
}

.section-alt {
  border-block: none;
}

.surface-dark {
  --text-primary: #eef3fa;
  --text-secondary: #c2cddc;
  --text-muted: #8fa0b5;
  --text-soft: #6f8198;
  --border-subtle: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --bg-card: var(--surface-dark-3);
  --bg-card-hover: #223550;
  background: var(--surface-dark-1);
  color: var(--text-primary);
}

.surface-navy {
  --text-primary: #eef3fa;
  --text-secondary: #c2cddc;
  --text-muted: #93a4b8;
  --text-soft: #73859c;
  --border-subtle: rgba(148, 163, 184, 0.16);
  --bg-card: rgba(26, 43, 64, 0.65);
  --bg-card-hover: rgba(34, 53, 80, 0.85);
  background: var(--surface-dark-2);
  color: var(--text-primary);
}

.surface-light,
.surface-soft {
  --text-primary: #0f1c2e;
  --text-secondary: #334155;
  --text-muted: #5b6b7f;
  --text-soft: #7a8ba0;
  --border-subtle: rgba(15, 28, 46, 0.08);
  --border-strong: rgba(15, 28, 46, 0.14);
  --border-accent: rgba(14, 165, 233, 0.35);
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --accent: #0284c7;
  --accent-soft: #0369a1;
  background: var(--surface-light-0);
  color: var(--text-primary);
}

.surface-soft {
  background: var(--surface-offwhite);
}

.surface-brand,
.section--brand,
.section-commercial-cta {
  --text-primary: #eef3fa;
  --text-secondary: #d5deea;
  --text-muted: #a8b7cb;
  background: var(--surface-brand);
  color: var(--text-primary);
  border-block: none;
}

.surface-light .section-tag,
.surface-soft .section-tag {
  color: var(--accent-soft);
}

.surface-light .specialty-card,
.surface-light .philosophy-card,
.surface-light .project-card,
.surface-light .product-card,
.surface-light .article-card,
.surface-soft .specialty-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.surface-light .specialty-card:hover,
.surface-light .project-card:hover,
.surface-light .product-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(14, 165, 233, 0.28);
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--surface-0);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(7, 16, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header.is-nav-open {
  border-color: var(--border-subtle);
  background: rgba(12, 21, 36, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
  font-weight: 600;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-violet));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-image {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.site-header.is-nav-open .nav-menu-trigger {
  border-color: var(--border-accent);
  background: rgba(56, 189, 248, 0.08);
  color: var(--text-primary);
}

.nav-menu-trigger__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.site-header.is-nav-open .nav-menu-trigger__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.site-header.is-nav-open .nav-menu-trigger__label::after {
  content: " â fechar";
  font-weight: 500;
  color: var(--text-muted);
}

.header-cta {
  margin-left: 0;
}

.site-nav-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 18, 32, 0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid transparent;
}

.site-header.is-nav-open .site-nav-drawer {
  grid-template-rows: 1fr;
  border-top-color: var(--border-subtle);
}

.site-header.is-nav-open .site-nav-drawer__inner {
  max-height: calc(100dvh - var(--header-offset, var(--header-h)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.site-nav-drawer__inner {
  overflow: hidden;
  min-height: 0;
}

.site-nav-flow__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding-top: 1rem;
  padding-bottom: 0.35rem;
}

.site-nav-flow__caption {
  margin: 0;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav-flow__hint {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.site-nav-flow__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  margin: 0;
  padding: 0.65rem 0 1.25rem;
  list-style: none;
}

.site-nav-flow__item {
  position: relative;
  opacity: 0;
  transform: translateY(8px);
}

.site-header.is-nav-open .site-nav-flow__item {
  animation: navFlowIn 0.35s ease forwards;
  animation-delay: var(--nav-flow-delay, 0ms);
}

.site-nav-flow__item:not(:last-child)::after {
  content: none;
}

.site-nav-flow__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  text-align: left;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.site-nav-flow__link:hover,
.site-nav-flow__link:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
  outline: none;
}

.site-nav-flow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  transition: color var(--transition);
}

.site-nav-flow__label {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
  transition: color var(--transition);
}

.site-nav-flow__link:hover .site-nav-flow__label,
.site-nav-flow__link:focus-visible .site-nav-flow__label {
  color: var(--text-primary);
}

.site-nav-flow__link.is-active {
  background: rgba(56, 189, 248, 0.06);
  border-left-color: var(--accent);
}

.site-nav-flow__link.is-active .site-nav-flow__step {
  color: var(--accent);
}

.site-nav-flow__link.is-active .site-nav-flow__label {
  color: var(--text-primary);
}

.site-nav-flow__link.is-passed .site-nav-flow__step {
  color: var(--accent-soft);
}

@keyframes navFlowIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--surface-0) !important;
  background: var(--accent) !important;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-soft) !important;
  transform: translateY(-1px);
}

.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.nav-menu-trigger__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
}

.nav-menu-trigger__icon span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-nav-open .nav-menu-trigger__icon span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.site-header.is-nav-open .nav-menu-trigger__icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-menu-trigger__icon span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Sections (shared structure; color via .surface-*) */
.section.hero {
  background: transparent;
}

.section--continuation {
  padding-top: 0;
  background: inherit;
}

.section--continuation .card-grid,
.section--continuation .about-principles {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.section-header {
  margin-bottom: clamp(2rem, 4.5vw, 3rem);
  max-width: 40rem;
}

.section-header--wide {
  max-width: 48rem;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-primary);
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-body-lg);
  line-height: 1.65;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  min-height: min(100dvh, 920px);
  display: flex;
  align-items: center;
  padding-top: var(--header-offset, var(--header-h));
  overflow: hidden;
  transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 32, 0.15), transparent 40%),
    linear-gradient(90deg, transparent 55%, rgba(99, 102, 241, 0.04));
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, var(--surface-0), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}

.hero-institutional .hero-grid {
  align-items: center;
}

.hero-proof {
  display: grid;
  gap: 0.85rem;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
}

.hero-role {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.hero-institutional .hero-role {
  max-width: 34ch;
}

.hero-subtitle {
  margin: 0 0 0.85rem;
  font-size: var(--fs-body-lg);
  color: var(--text-secondary);
  max-width: 34rem;
  line-height: 1.55;
}

.hero-lead {
  margin: 0 0 1.85rem;
  color: var(--text-secondary);
  max-width: 36rem;
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.hero-resume-menu {
  position: relative;
}

.hero-resume-menu > summary {
  list-style: none;
}

.hero-resume-menu > summary::-webkit-details-marker {
  display: none;
}

.hero-resume-menu[open] > summary {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.28);
}

.hero-resume-menu__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 5;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface-3);
  box-shadow: var(--shadow-soft);
}

.hero-resume-menu__item {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero-resume-menu__item:hover,
.hero-resume-menu__item:focus-visible {
  background: rgba(99, 102, 241, 0.12);
  color: var(--text-primary);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.hero-institutional .hero-aside {
  padding-bottom: 0.25rem;
}

.hero-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(10, 18, 32, 0.55), transparent);
  pointer-events: none;
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--surface-0);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.hero-institutional .hero-stats {
  border-top: none;
  gap: 1.25rem 1.75rem;
}

.stat-card {
  padding: 1rem 0 0.35rem;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  transition: none;
}

.hero-institutional .stat-card {
  padding: 0;
  border-left: 2px solid rgba(56, 189, 248, 0.35);
  padding-left: 0.85rem;
}

.stat-card:hover {
  border-color: transparent;
  transform: none;
}

.hero-institutional .stat-card:hover {
  border-left-color: var(--accent);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.stat-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-brand-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  min-height: 10rem;
}

.hero-brand-wrap::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-brand-logo {
  position: relative;
  width: min(200px, 55%);
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

.hero-stats-note {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 28rem;
}

.hero-founder-back {
  margin: 1.25rem 0 0;
}

.founder-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.founder-spotlight-photo-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.founder-spotlight-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.founder-spotlight-copy p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.founder-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.article-author {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--accent);
  line-height: 1.4;
}

.prose p {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: 1.7;
}

.prose p:last-child {
  margin-bottom: 0;
}

.about-principles {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-editorial__principles {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--border-subtle);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}

.principle-block {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.principle-block:first-child {
  padding-top: 0;
}

.principle-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.principle-block h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-primary);
}

.principle-block p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.specialty-card,
.philosophy-card {
  padding: 1.4rem 1.35rem;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.specialty-card:hover,
.philosophy-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.specialty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.9;
}

.specialty-card h3,
.philosophy-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-primary);
}

.specialty-card p,
.philosophy-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Expertise / markets / pains / authority / capabilities */
.expertise-list,
.pain-list,
.authority-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 920px;
}

.expertise-item,
.pain-item,
.authority-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.expertise-item:first-child,
.pain-item:first-child,
.authority-item:first-child {
  padding-top: 0;
}

.expertise-item:last-child,
.pain-item:last-child,
.authority-item:last-child {
  border-bottom: none;
}

.pain-item {
  grid-template-columns: 1fr;
  padding-left: 1rem;
  border-left: 2px solid rgba(248, 113, 113, 0.35);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.75rem;
  background: transparent;
}

.authority-item {
  grid-template-columns: 1fr;
  padding: 1.15rem 0 1.15rem 1rem;
  border-left: 2px solid rgba(56, 189, 248, 0.35);
  border-bottom: none;
  margin-bottom: 0.85rem;
}

.expertise-item__mark,
.capability-row__mark {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.expertise-item__body h3,
.pain-item h3,
.authority-item h3,
.capability-row h3,
.market-rail__item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-primary);
}

.expertise-item__body p,
.pain-item p,
.authority-item p,
.capability-row p,
.market-rail__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.market-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.market-rail__item {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.capability-rows {
  display: grid;
  gap: 0;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem 2rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.capability-row:first-child {
  padding-top: 0;
}

.capability-row:last-child {
  border-bottom: none;
}

.capability-row__title {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.principle-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 860px;
}

.principle-line {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.principle-line:last-child {
  border-bottom: none;
}

.principle-line__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.principle-line__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
}

.principle-line__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Stack */
.stack-groups {
  display: grid;
  gap: 1.5rem;
}

.stack-group {
  padding: 1.25rem 1.35rem;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.stack-group h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-tags span {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition);
}

.stack-tags span:hover {
  border-color: var(--border-accent);
  background: rgba(56, 189, 248, 0.08);
}

.section--compact .section-header {
  margin-bottom: 1.5rem;
}

.section--compact .section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section--compact .stack-groups {
  gap: 1rem;
}

.section--compact .stack-group {
  padding: 1rem 1.25rem;
}

.section--compact .stack-group h3 {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.section--compact .stack-tags span {
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 860px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.timeline-marker--accent {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.timeline-body time {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.timeline-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-org {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.timeline-body p {
  margin: 0;
  color: var(--text-muted);
}

.timeline-list {
  margin: 0;
  padding: 0;
}

.timeline-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-item--highlight .timeline-body {
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.04));
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.timeline-context {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.timeline-list-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.timeline-segment {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.timeline-segment span {
  font-weight: 700;
  color: var(--accent);
}

.journey-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.journey-stat {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.journey-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.journey-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.journey-stat span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .journey-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .journey-stats {
    grid-template-columns: 1fr;
  }
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  padding: 1.5rem;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.65rem 1.5rem;
  background: linear-gradient(180deg, rgba(21, 35, 56, 0.95), rgba(16, 28, 46, 0.98));
  border-color: rgba(56, 189, 248, 0.18);
}

.product-card:hover {
  border-color: var(--border-accent);
}

.product-card__cta {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.product-card__cta:hover,
.product-card__cta:focus-visible {
  text-decoration: underline;
}

.project-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border-radius: var(--radius-sm);
}

.project-status {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.project-card h3,
.project-card h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.project-group-title {
  margin: 2rem 0 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-group-title:first-of-type {
  margin-top: 0;
}

.project-card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list span {
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

/* Differentials */
.diff-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  transition: color var(--transition);
}

.diff-list li:hover {
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.diff-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  background: var(--accent);
  border-radius: 50%;
}

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}

.article-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.article-card time {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.article-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.article-link:hover {
  text-decoration: underline;
}

/* Process steps â timeline */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-3);
}

.process-step__marker {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.process-step__body h3 {
  margin: 0 0 0.4rem;
  font-size: var(--fs-h3);
}

.process-step__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.15rem;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), var(--border-subtle));
  pointer-events: none;
}

.process-timeline__item {
  position: relative;
  padding: 0 0.85rem 0 0;
  min-width: 0;
}

.process-timeline__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-timeline__body h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.process-timeline__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Commercial CTA */
.section--brand,
.section-commercial-cta {
  background: var(--surface-brand), var(--surface-2);
  border-block: 1px solid var(--border-subtle);
}

.commercial-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.commercial-cta__lead {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  max-width: 48ch;
  line-height: 1.6;
}

.commercial-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.commercial-cta__prompts {
  margin: 0;
  padding: 1.25rem 1.35rem;
  list-style: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(10, 18, 32, 0.35);
  display: grid;
  gap: 0.75rem;
}

.commercial-cta__prompts li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.commercial-cta__prompts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Contact */
.section--contact .contact-grid {
  align-items: stretch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.contact-intro__lead,
.contact-intro p {
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  max-width: 36ch;
}

.contact-intro__trust {
  margin-top: 2rem;
}

.contact-intro__trust-label {
  margin: 0 0 0.75rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
}

.social-links:empty {
  display: none;
  margin-top: 0;
}

.social-links--channels {
  margin-top: 0.85rem;
}

.social-links-icons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.social-links-icons:empty {
  display: none;
}

.header-actions .social-links-icons {
  margin-right: 0.15rem;
}

.hero-content .social-links-icons {
  margin-top: 1.35rem;
}

.founder-spotlight-actions .social-links-icons {
  margin-left: 0.15rem;
}

.footer-inner .social-links-icons {
  order: 3;
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.social-links-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.social-links-icons a:hover {
  color: var(--text);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-links a:hover {
  color: var(--text);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.social-links a i {
  width: 1.15rem;
  text-align: center;
  font-size: 1rem;
  color: var(--accent);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-form {
  position: relative;
  padding: 1.65rem 1.5rem;
  background: var(--surface-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-feedback.is-success {
  color: #34d399;
}

.form-feedback.is-error {
  color: #f87171;
}

.u-hidden {
  display: none !important;
}

.contact-form.is-submitting {
  position: relative;
}

.contact-form.is-submitting input,
.contact-form.is-submitting textarea {
  opacity: 0.72;
  cursor: wait;
}

.contact-form .btn.is-loading,
.contact-form .btn:disabled {
  opacity: 0.9;
  cursor: wait;
  transform: none;
}

.contact-form-hint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.contact-privacy {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.contact-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-turnstile {
  margin-top: 0.5rem;
}

.contact-form.is-submitting .contact-form-hint {
  color: var(--accent);
}

.contact-spinner {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  margin-right: 0.4em;
  border: 2px solid rgba(10, 15, 24, 0.25);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: contact-spin 0.7s linear infinite;
  vertical-align: -0.12em;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--surface-0);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.back-top {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.footer-company-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.footer-company-link:hover,
.footer-company-link:focus-visible {
  text-decoration: underline;
}

.site-nav-flow__link--external .site-nav-flow__label {
  color: var(--accent);
}

.back-top:hover {
  text-decoration: underline;
}

.site-scroll-top-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 110;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: rgba(10, 15, 24, 0.96);
  color: var(--accent);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.site-scroll-top-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-scroll-top-fab:hover,
.site-scroll-top-fab:focus-visible {
  background: rgba(56, 189, 248, 0.16);
  border-color: var(--accent);
  outline: none;
}

.site-scroll-top-fab__icon {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg) translateY(0.12rem);
}

body.site-nav-locked .site-scroll-top-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav-drawer {
    transition: none;
  }

  .site-header.is-nav-open .site-nav-flow__item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .stat-card:hover,
  .specialty-card:hover,
  .philosophy-card:hover,
  .project-card:hover,
  .product-card:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-nav-flow__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .about-editorial,
  .capability-row,
  .contact-grid,
  .commercial-cta {
    grid-template-columns: 1fr;
  }

  .about-editorial__principles {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-brand-wrap {
    justify-content: flex-start;
    min-height: 0;
  }

  .hero-brand-logo {
    width: min(140px, 40%);
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .process-timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .process-timeline__item:last-child {
    border-bottom: none;
  }

  .process-timeline__marker {
    margin-bottom: 0;
  }

  .market-rail {
    grid-template-columns: 1fr;
  }

  .site-nav-flow__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-scroll-top-fab {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .site-nav-flow__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    gap: 0.5rem;
    padding-block: 0.65rem;
  }

  .header-actions .social-links-icons {
    display: none;
  }

  .header-cta {
    font-size: 0.8rem;
    padding: 0.45rem 0.7rem;
  }

  .logo-text {
    max-width: 9rem;
  }

  .site-nav-flow__track {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding-bottom: 1rem;
  }

  .site-nav-flow__item {
    width: 100%;
  }

  .site-nav-flow__item:not(:last-child)::after {
    content: none;
  }

  .site-nav-flow__link {
    width: 100%;
    min-height: 2.5rem;
  }

  .nav-menu-trigger__label {
    display: none;
  }

  .site-header.is-nav-open .nav-menu-trigger__label {
    display: inline;
  }

  .nav-menu-trigger {
    width: auto;
    justify-content: center;
    padding-inline: 0.75rem;
  }

  .header-cta {
    padding-inline: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .founder-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .founder-spotlight-actions {
    flex-direction: column;
  }

  .founder-spotlight-actions .btn {
    width: 100%;
  }

  .commercial-cta__actions {
    flex-direction: column;
  }

  .commercial-cta__actions .btn {
    width: 100%;
  }

  .expertise-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .logo-text {
    font-size: 0.85rem;
    max-width: 7rem;
  }

  .logo-mark,
  .logo-image {
    width: 34px;
    height: 34px;
  }

  .nav-menu-trigger {
    padding: 0.45rem 0.6rem;
  }

  .header-cta {
    max-width: 5.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.innominds-site-update-toast {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: 1.25rem;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1.1rem;
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-accent);
  border-left: 4px solid var(--accent);
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.innominds-site-update-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.innominds-site-update-toast.is-hiding {
  opacity: 0;
  transform: translateY(-0.5rem);
}

.innominds-site-update-toast__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--accent);
}

.innominds-site-update-toast__text {
  padding-top: 0.15rem;
}

@media (max-width: 575px) {
  .innominds-site-update-toast {
    top: auto;
    bottom: 5.5rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-page h1,
.legal-page h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.validation-summary-errors {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  font-size: 0.9rem;
}

.validation-summary-errors ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.field-validation-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #f87171;
}

/* ===== Redesign 2 ï¿½ composition & visual language ===== */

.brand-motif {
  width: 100%;
  height: auto;
  max-width: 480px;
  color: var(--text-muted);
}

.brand-motif--hero { max-width: 100%; max-height: 320px; opacity: 0.95; }

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  max-height: 340px;
}

.hero-proof {
  margin-top: 0;
}

.hero-stats--editorial {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.brand-motif--about,
.brand-motif--expertise,
.brand-motif--product { max-width: 360px; opacity: 0.85; }
.brand-motif--cta { position: absolute; inset: auto -4% -20% auto; width: min(420px, 45%); opacity: 0.22; pointer-events: none; }

.arch-flow {
  width: 100%;
  max-width: 720px;
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.hero-institutional {
  min-height: min(100vh, 920px);
  min-height: min(100dvh, 920px);
}

.hero-brand-line {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  margin: 0 0 1rem !important;
  font-size: var(--fs-h1) !important;
  max-width: 18ch;
  line-height: 1.08 !important;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
  align-items: center !important;
  gap: clamp(2rem, 5vw, 4rem) !important;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.hero-brand-logo--overlay {
  position: absolute;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero-stats--editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.hero-institutional .stat-card {
  border-left: 2px solid rgba(56, 189, 248, 0.45);
  padding-left: 0.9rem;
}

.hero-institutional .stat-card strong {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: var(--fs-body-lg) !important;
  max-width: 38rem !important;
}

.btn {
  padding: 0.9rem 1.45rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9375rem !important;
}

.surface-light .btn-secondary,
.surface-soft .btn-secondary {
  border-color: rgba(15, 28, 46, 0.18);
  color: var(--text-primary);
  background: #fff;
}

.surface-light .btn-primary,
.surface-soft .btn-primary {
  color: #fff;
}

.about-editorial--rich {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-editorial__visual {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.about-flow-caption {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
}

.about-principles-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}

.about-principles-band .principle-block {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border-subtle);
}

.about-principles-band .principle-block:last-child {
  border-right: none;
}

.specialty-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  font-size: 1.1rem;
}

.specialty-card__cta {
  display: inline-flex;
  margin-top: 1rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--accent);
}

.expertise-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.expertise-split__visual {
  position: sticky;
  top: calc(var(--header-offset, var(--header-h)) + 1.5rem);
}

.market-matrix {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.market-matrix__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.market-matrix__icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.pain-solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.pain-solution {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.25rem 2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid rgba(217, 119, 6, 0.55);
  border-radius: var(--radius-md);
  background: #fff;
}

.pain-solution__problem {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pain-solution__icon {
  color: var(--accent-warn);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.pain-solution__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.pain-solution__action p,
.pain-solution__problem h3 {
  margin: 0;
}

.pain-solution__problem h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--text-primary);
}

.pain-solution__action p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.authority-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.authority-card--primary {
  min-height: 11rem;
}

.authority-card--secondary {
  opacity: 0.92;
}

.authority-card__icon {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 1.15rem;
}

.authority-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
}

.authority-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.capability-row__scenario {
  margin: 0.2rem 0 0;
  font-size: var(--fs-small);
  color: var(--accent);
  font-weight: 600;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(26, 43, 64, 0.9), rgba(12, 21, 36, 0.95));
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-showcase__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-showcase__title {
  margin: 0.5rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.product-showcase__desc {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  max-width: 40ch;
}

.product-showcase__cta {
  margin-top: 1.25rem;
}

.product-showcase__visual {
  min-width: 0;
  width: 100%;
}

.product-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 280px;
  padding: 1.25rem 1.25rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(7, 16, 28, 0.72);
  overflow: hidden;
  box-sizing: border-box;
}

.product-frame__canvas {
  position: relative;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
}

.product-frame__motif {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.product-frame--has-image .product-frame__motif {
  opacity: 0;
}

.product-frame__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
}

.product-frame__carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  max-height: none;
  overflow: hidden;
  border-radius: inherit;
}

.product-frame__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.product-frame__slide {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-frame__slide .product-frame__image {
  width: 100%;
  height: 100%;
}

.product-frame__dots {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
  transform: translateX(-50%);
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(7, 16, 28, 0.45);
  backdrop-filter: blur(6px);
}

.product-frame__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.product-frame__dot.is-active {
  background: rgba(56, 189, 248, 0.95);
  width: 0.85rem;
}

.product-frame--has-image {
  min-height: 320px;
  padding: 0;
  background: rgba(7, 16, 28, 0.4);
}

.product-frame--has-image .product-frame__canvas {
  min-height: 280px;
  border-radius: 0;
  background: transparent;
}

.product-frame--has-image .product-frame__canvas > .product-frame__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-frame__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
  flex-shrink: 0;
  min-width: 0;
  background: transparent;
}

.product-frame--has-image .product-frame__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  margin: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(7, 16, 28, 0) 0%,
    rgba(7, 16, 28, 0.18) 40%,
    rgba(7, 16, 28, 0.32) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-frame--has-image .product-frame__dots {
  bottom: 3.25rem;
}

.product-frame__label {
  margin: 0;
  min-width: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.product-frame--has-image .product-frame__label {
  color: rgba(226, 232, 240, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.product-frame__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(7, 16, 28, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-frame--has-image .product-frame__cta {
  background: rgba(7, 16, 28, 0.35);
  border-color: rgba(148, 163, 184, 0.38);
}

.product-frame__cta i {
  font-size: 0.62rem;
  opacity: 0.85;
}

.product-frame__cta:hover,
.product-frame__cta:focus-visible {
  color: var(--text-primary);
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(14, 165, 233, 0.16);
  outline: none;
}

.section-commercial-cta {
  position: relative;
  overflow: hidden;
}

.cta-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.founder-spotlight-name {
  margin: 0.35rem 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.founder-spotlight-role {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: var(--fs-body);
}

.surface-light .contact-form,
.surface-soft .contact-form {
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.surface-light .social-links a,
.surface-soft .social-links a {
  background: #fff;
  border-color: var(--border-subtle);
  color: var(--text-secondary);
}

.surface-light .form-group input,
.surface-light .form-group textarea,
.surface-light .form-group select,
.surface-soft .form-group input,
.surface-soft .form-group textarea,
.surface-soft .form-group select {
  background: #f8fafc;
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.process-timeline {
  gap: 0.5rem;
}

.process-timeline__body h3 {
  font-size: 1.05rem;
}

.process-timeline__body p {
  font-size: 0.9rem;
}

.manifesto-flow {
  margin-bottom: 0.5rem;
  overflow-x: auto;
}

@media (max-width: 1100px) {
  .about-editorial--rich,
  .expertise-split,
  .pain-solution {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .about-principles-band {
    grid-template-columns: 1fr;
  }

  .about-principles-band .principle-block {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .market-matrix,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .expertise-split__visual {
    position: static;
  }

  .brand-motif--cta {
    display: none;
  }
}

@media (max-width: 800px) {
  .product-showcase {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-showcase__visual {
    width: 100%;
  }

  .product-frame {
    min-height: 240px;
  }

  .product-frame__canvas {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-stats--editorial {
    grid-template-columns: 1fr 1fr;
  }

  .hero-headline {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero-stats--editorial {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-motif,
  .arch-flow {
    transition: none;
  }
}

.arch-flow__track {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0;
  position: relative;
}

.arch-flow__track::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  top: 0.55rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-violet));
  opacity: 0.4;
}

.arch-flow__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 4.5rem;
  flex: 1 1 0;
  text-align: center;
}

.arch-flow__node {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1.75px solid var(--accent);
  background: var(--surface-dark-1);
}

.surface-light .arch-flow__node,
.surface-soft .arch-flow__node {
  background: #fff;
}

.arch-flow__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 700px) {
  .arch-flow__track {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .arch-flow__track::before {
    left: 0.3rem;
    right: auto;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 1px;
    height: auto;
  }

  .arch-flow__step {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.75rem;
    min-width: 0;
  }
}
