:root {
  --ink-950: #090d1a;
  --ink-900: #10162a;
  --ink-800: #19223d;
  --ink-700: #2b3655;
  --ink-600: #4b5875;
  --ink-500: #68758f;
  --ink-300: #c9d1df;
  --ink-200: #dfe5ee;
  --ink-100: #eef2f7;
  --ink-50: #f7f9fc;
  --white: #ffffff;
  --violet-700: #5132d4;
  --violet-600: #6547eb;
  --violet-500: #7a5cff;
  --violet-200: #d9d0ff;
  --violet-100: #eeeaff;
  --mint-600: #07866f;
  --mint-500: #0aa98b;
  --mint-300: #69d8c4;
  --mint-100: #dcf8f1;
  --amber-500: #e59a22;
  --shadow-sm: 0 12px 30px rgba(23, 30, 55, 0.08);
  --shadow-lg: 0 28px 80px rgba(26, 22, 73, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 8% 2%, rgba(122, 92, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 96% 12%, rgba(10, 169, 139, 0.08), transparent 30rem),
    var(--ink-50);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-950);
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(201, 209, 223, 0.7);
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid var(--violet-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.brand-name {
  font-size: 1.08rem;
}

.brand-name span {
  color: var(--violet-600);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--ink-600);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--violet-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  color: var(--ink-600);
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  border: 1px solid var(--ink-200);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 14px 20px 22px;
  border-top: 1px solid var(--ink-200);
  background: var(--white);
}

.mobile-menu.is-open {
  display: grid;
  gap: 7px;
}

.mobile-menu a {
  padding: 11px 12px;
  color: var(--ink-700);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: var(--ink-50);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-600), var(--violet-700));
  box-shadow: 0 12px 28px rgba(81, 50, 212, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(81, 50, 212, 0.34);
}

.btn-secondary {
  color: var(--ink-800);
  border-color: var(--ink-200);
  background: rgba(255, 255, 255, 0.84);
}

.btn-secondary:hover {
  border-color: var(--violet-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-mint {
  color: #053c32;
  border-color: rgba(10, 169, 139, 0.18);
  background: var(--mint-100);
}

.hero {
  padding: 82px 0 72px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--violet-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 6px rgba(10, 169, 139, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 23px;
  color: var(--ink-950);
  font-size: clamp(2.65rem, 5.6vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.hero-emphasis {
  color: transparent;
  background: linear-gradient(115deg, var(--violet-600), #884fe8 52%, var(--mint-600));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--ink-600);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 30px;
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  color: var(--mint-600);
}

.agent-stage {
  position: relative;
  min-height: 510px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(122, 92, 255, 0.23);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 80% 0%, rgba(105, 216, 196, 0.18), transparent 38%),
    linear-gradient(145deg, #12172c, #191536);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: var(--shadow-lg);
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stage-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-status {
  padding: 6px 9px;
  color: #aaf1e3;
  border: 1px solid rgba(105, 216, 196, 0.25);
  border-radius: 999px;
  background: rgba(10, 169, 139, 0.12);
  font-size: 0.67rem;
  font-weight: 800;
}

.agent-flow {
  position: relative;
  display: grid;
  gap: 14px;
}

.agent-flow::before {
  position: absolute;
  z-index: 0;
  top: 34px;
  bottom: 34px;
  left: 25px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--violet-500), var(--mint-300));
  opacity: 0.6;
}

.flow-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr auto;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.flow-card.featured {
  border-color: rgba(122, 92, 255, 0.42);
  background: linear-gradient(120deg, rgba(122, 92, 255, 0.19), rgba(255, 255, 255, 0.08));
}

.flow-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dcd4ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.flow-card h2 {
  margin: 0 0 2px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.flow-state {
  color: #aaf1e3;
  font-size: 0.65rem;
  font-weight: 800;
  text-align: right;
}

.stage-note {
  margin: 18px 4px 0;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.68);
  border-left: 2px solid var(--mint-300);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.75rem;
  line-height: 1.55;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(122, 92, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 5% 90%, rgba(10, 169, 139, 0.14), transparent 28rem),
    var(--ink-950);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  color: var(--ink-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.signal {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--ink-200);
}

.signal:last-child {
  border-right: 0;
}

.signal-number {
  display: block;
  margin-bottom: 22px;
  color: var(--violet-600);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.signal p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--violet-200);
  box-shadow: var(--shadow-lg);
}

.service-card.primary {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 216, 196, 0.19), transparent 16rem),
    linear-gradient(145deg, var(--ink-900), #21184c);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  color: var(--violet-600);
  border: 1px solid var(--violet-200);
  border-radius: 16px;
  background: var(--violet-100);
  font-size: 1.25rem;
}

.primary .service-icon {
  color: #cfc4ff;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--ink-950);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.service-card.primary h3 {
  color: var(--white);
}

.service-card > p {
  margin-bottom: 20px;
  color: var(--ink-600);
  font-size: 0.93rem;
}

.service-card.primary > p {
  color: rgba(255, 255, 255, 0.64);
}

.service-list {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card.primary .service-list li {
  color: rgba(255, 255, 255, 0.78);
}

.service-list i {
  margin-top: 2px;
  color: var(--mint-500);
}

.security-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.security-copy {
  position: sticky;
  top: 112px;
}

.security-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.security-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
}

.security-principles {
  display: grid;
  gap: 12px;
}

.principle {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.principle-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b9f0e5;
  border-radius: 13px;
  background: rgba(10, 169, 139, 0.12);
}

.principle h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.79rem;
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 225px;
  padding: 24px;
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: -20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\2192";
  color: var(--violet-600);
  border: 1px solid var(--ink-200);
  border-radius: 50%;
  background: var(--ink-50);
  font-weight: 900;
}

.process-index {
  display: inline-flex;
  margin-bottom: 35px;
  color: var(--violet-600);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 9px;
  color: var(--ink-950);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.82rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.proof-intro {
  padding: 32px;
  color: var(--white);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 216, 196, 0.2), transparent 18rem),
    linear-gradient(145deg, var(--violet-700), #302079);
  box-shadow: var(--shadow-lg);
}

.proof-intro .eyebrow {
  color: #d9d0ff;
}

.proof-intro h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.proof-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.proof-founder {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.proof-founder strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.proof-founder span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

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

.proof-card {
  min-height: 200px;
  padding: 23px;
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  background: var(--white);
}

.proof-tag {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 5px 8px;
  color: var(--violet-700);
  border-radius: 999px;
  background: var(--violet-100);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.proof-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.79rem;
}

.product-band {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 34px 38px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--violet-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-band h2 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  letter-spacing: -0.045em;
}

.product-band p {
  max-width: 740px;
  margin: 0;
  color: var(--ink-600);
  font-size: 0.92rem;
}

.nav-active {
  color: var(--violet-600) !important;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 94px 0 80px;
  border-bottom: 1px solid rgba(201, 209, 223, 0.72);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
}

.page-hero h1 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
}

.page-hero-copy > p {
  margin-bottom: 24px;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.legend-row,
.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-live {
  color: #07614f;
  border-color: rgba(10, 169, 139, 0.22);
  background: var(--mint-100);
}

.status-building {
  color: #70500d;
  border-color: rgba(229, 154, 34, 0.25);
  background: #fff5da;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.portfolio-featured {
  min-height: 430px;
  grid-column: 1 / -1;
  color: var(--white);
  border-color: rgba(122, 92, 255, 0.22);
  background:
    radial-gradient(circle at 82% 10%, rgba(105, 216, 196, 0.18), transparent 27rem),
    radial-gradient(circle at 18% 100%, rgba(122, 92, 255, 0.25), transparent 31rem),
    var(--ink-950);
}

.portfolio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.product-symbol {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-600);
  border: 1px solid var(--violet-200);
  border-radius: 15px;
  background: var(--violet-100);
  font-size: 1.2rem;
}

.portfolio-featured .product-symbol {
  color: #d8d0ff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-kicker {
  margin-bottom: 8px;
  color: var(--violet-600);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-featured .portfolio-kicker {
  color: var(--mint-300);
}

.portfolio-card h2 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.portfolio-featured h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.portfolio-lead {
  max-width: 730px;
  margin-bottom: 22px;
  color: var(--ink-600);
  font-size: 0.91rem;
}

.portfolio-featured .portfolio-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
}

.portfolio-list {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.portfolio-list li {
  display: flex;
  gap: 8px;
  color: var(--ink-700);
  font-size: 0.79rem;
  font-weight: 700;
}

.portfolio-list i {
  color: var(--mint-500);
}

.portfolio-featured .portfolio-list li {
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}

.text-link {
  color: var(--violet-600);
  font-size: 0.8rem;
  font-weight: 800;
}

.portfolio-featured .text-link {
  color: #d9d0ff;
}

.development-note {
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
  font-size: 0.72rem;
}

.platform-principles {
  display: grid;
  align-items: end;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.platform-principles .section-heading {
  margin-bottom: 0;
}

.mini-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-principle {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-principle i {
  color: var(--mint-300);
  font-size: 1.1rem;
}

.mini-principle span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-cta {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 38px;
  padding: 38px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-cta h2 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: -0.05em;
}

.product-cta p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.publicapro-hero {
  border-bottom: 0;
}

.publicapro-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
}

.publicapro-hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

.subtle-label {
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 750;
}

.publicapro-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border: 1px solid var(--violet-200);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(10, 169, 139, 0.13), transparent 23rem),
    linear-gradient(145deg, var(--violet-100), #f7f5ff 55%, #e8f8f4);
  box-shadow: var(--shadow-lg);
}

.publicapro-window {
  width: min(100%, 465px);
  overflow: hidden;
  border: 1px solid rgba(16, 22, 42, 0.13);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 25px 58px rgba(35, 29, 78, 0.18);
}

.window-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid var(--ink-200);
  background: var(--ink-50);
}

.window-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-300);
}

.window-domain {
  margin-left: auto;
  color: var(--ink-500);
  font-size: 0.62rem;
  font-weight: 750;
}

.window-body {
  padding: 16px;
}

.window-nav {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
  color: var(--ink-500);
  font-size: 0.58rem;
  font-weight: 750;
}

.window-nav span:first-child {
  margin-right: auto;
  color: var(--violet-600);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
}

.window-hero-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  color: var(--white);
  border-radius: 15px;
  background:
    radial-gradient(circle at 85% 20%, rgba(105, 216, 196, 0.27), transparent 10rem),
    linear-gradient(145deg, var(--ink-900), var(--violet-700));
}

.window-hero-card span {
  margin-bottom: 6px;
  color: #baf3e7;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.window-hero-card strong {
  max-width: 280px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.window-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.window-properties span {
  height: 72px;
  border-radius: 9px;
  background: linear-gradient(145deg, #e7e1ff, #d9f3ed);
}

.product-float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--ink-800);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.67rem;
  font-weight: 800;
}

.product-float-card i {
  color: var(--violet-600);
}

.float-ai { top: 58px; right: 18px; }
.float-brand { bottom: 86px; left: 14px; }
.float-lead { right: 34px; bottom: 28px; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.outcome-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border-right: 1px solid var(--ink-200);
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-card i {
  margin-bottom: 24px;
  color: var(--violet-600);
  font-size: 1.1rem;
}

.outcome-card strong {
  margin-bottom: 4px;
  color: var(--ink-950);
  font-size: 0.86rem;
}

.outcome-card span {
  color: var(--ink-600);
  font-size: 0.73rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.capability-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--ink-200);
  border-radius: 17px;
  background: var(--white);
}

.capability-card > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--violet-600);
  border-radius: 12px;
  background: var(--violet-100);
}

.capability-card h3 {
  margin-bottom: 7px;
  color: var(--ink-950);
  font-size: 0.91rem;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.74rem;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
}

.comparison-layout .section-heading {
  margin-bottom: 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.comparison-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.comparison-highlight {
  border-color: rgba(105, 216, 196, 0.28);
  background: rgba(10, 169, 139, 0.09);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--mint-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
}

.model-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.model-layout .section-heading {
  margin-bottom: 0;
}

.model-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.model-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--ink-200);
  border-radius: 17px;
  background: var(--white);
}

.model-card > span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--violet-600);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.model-card h3 {
  margin-bottom: 7px;
  color: var(--ink-950);
  font-size: 0.95rem;
}

.model-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.73rem;
}

.contact-section {
  padding: 88px 0 100px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-copy {
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(105, 216, 196, 0.2), transparent 17rem),
    var(--ink-950);
}

.contact-copy h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-details {
  display: grid;
  gap: 11px;
  margin-top: 36px;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-details i {
  color: var(--mint-300);
}

.contact-form-wrap {
  padding: 42px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-600);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink-900);
  border: 1px solid var(--ink-200);
  border-radius: 12px;
  outline: none;
  background: var(--ink-50);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 132px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 92, 255, 0.11);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.message {
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 700;
}

.message-success {
  color: #086552;
  border: 1px solid #bcebdd;
  background: #e8faf5;
}

.message-error {
  color: #9b2c2c;
  border: 1px solid #f5c2c2;
  background: #fff0f0;
}

.site-footer {
  padding: 28px 0;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.footer-inner strong {
  color: var(--ink-900);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 17px;
  background: #18b77e;
  box-shadow: 0 14px 32px rgba(8, 112, 76, 0.28);
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.contact-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 13, 26, 0.72);
  backdrop-filter: blur(8px);
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-panel {
  width: min(100%, 430px);
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--mint-600);
  border-radius: 18px;
  background: var(--mint-100);
  font-size: 1.7rem;
}

.modal-icon.is-error {
  color: #b53a3a;
  background: #ffe8e8;
}

.contact-modal h2 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.contact-modal p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.86rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .desktop-nav,
  .login-link,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-grid,
  .security-grid,
  .proof-layout,
  .contact-shell,
  .page-hero-grid,
  .publicapro-hero-grid,
  .platform-principles,
  .comparison-layout,
  .model-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .publicapro-hero-grid,
  .platform-principles,
  .comparison-layout,
  .model-layout {
    gap: 38px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 46px;
  }

  .agent-stage {
    width: min(100%, 640px);
    min-height: 0;
  }

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

  .signal:nth-child(2) {
    border-right: 0;
  }

  .signal:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink-200);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-featured {
    grid-column: 1 / -1;
  }

  .outcome-card:nth-child(2) {
    border-right: 0;
  }

  .outcome-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink-200);
  }

  .model-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 0;
  }

  .security-copy {
    position: static;
  }

  .proof-layout {
    gap: 18px;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 34px;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .hero {
    padding: 44px 0 52px;
  }

  .page-hero {
    padding: 54px 0 58px;
  }

  .page-hero h1,
  .publicapro-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  h1 {
    font-size: clamp(2.42rem, 13vw, 3.45rem);
  }

  .hero-actions .btn,
  .form-footer .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .agent-stage {
    padding: 15px;
    border-radius: 24px;
  }

  .flow-card {
    grid-template-columns: 44px 1fr;
    padding: 12px;
  }

  .flow-icon {
    width: 38px;
    height: 38px;
  }

  .flow-state {
    display: none;
  }

  .section,
  .contact-section {
    padding: 66px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .signal-strip,
  .process-grid,
  .proof-cards,
  .form-row,
  .portfolio-grid,
  .capability-grid,
  .outcome-grid,
  .mini-principles,
  .comparison-grid,
  .model-cards {
    grid-template-columns: 1fr;
  }

  .portfolio-featured {
    grid-column: auto;
  }

  .portfolio-card,
  .portfolio-featured {
    min-height: 0;
    padding: 23px;
  }

  .portfolio-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .portfolio-actions .btn {
    width: 100%;
  }

  .outcome-card,
  .outcome-card:nth-child(2),
  .outcome-card:nth-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink-200);
  }

  .outcome-card:last-child {
    border-bottom: 0;
  }

  .product-cta {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .product-cta .btn {
    width: 100%;
  }

  .publicapro-visual {
    min-height: 390px;
    padding: 14px;
  }

  .window-nav span:not(:first-child) {
    display: none;
  }

  .window-hero-card {
    min-height: 155px;
  }

  .product-float-card {
    display: none;
  }

  .model-card {
    min-height: 0;
  }

  .model-card > span {
    margin-bottom: 34px;
  }

  .signal,
  .signal:nth-child(2),
  .signal:nth-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink-200);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .signal-number {
    margin-bottom: 12px;
  }

  .service-card,
  .proof-intro {
    padding: 24px;
  }

  .service-icon {
    margin-bottom: 28px;
  }

  .security-grid {
    gap: 36px;
  }

  .principle {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .principle-icon {
    width: 38px;
    height: 38px;
  }

  .process-step {
    min-height: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-index {
    margin-bottom: 22px;
  }

  .product-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .product-band .btn {
    width: 100%;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 27px 22px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* GoodAir v3: navegación por páginas, contenido breve y movimiento editorial. */
.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--mint-500), var(--violet-500));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 249, 252, 0.96);
  box-shadow: 0 12px 32px rgba(20, 26, 48, 0.07);
}

.hero-v3,
.page-hero-simple {
  position: relative;
  overflow: clip;
}

.hero-v3 {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 82px 0 92px;
}

.hero-grid-v3 {
  align-items: center;
}

.hero-grid-v3 h1 {
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  line-height: 0.96;
}

.hero-grid-v3 .hero-copy {
  max-width: 510px;
  font-size: 1.08rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.hero-orb-one {
  top: 3%;
  left: -11rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.14), rgba(122, 92, 255, 0));
}

.hero-orb-two {
  right: -10rem;
  bottom: -12rem;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(10, 169, 139, 0.13), rgba(10, 169, 139, 0));
}

.compact-trust {
  gap: 18px;
}

.agent-stage-v3 {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.stage-glow {
  position: absolute;
  top: -9rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 216, 196, 0.22), transparent 68%);
  pointer-events: none;
}

.stage-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-300);
  box-shadow: 0 0 0 6px rgba(105, 216, 196, 0.1);
}

.simple-flow {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
}

.simple-flow article {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 800;
}

.simple-flow article i {
  color: var(--mint-300);
  font-size: 1.35rem;
}

.simple-flow .simple-flow-ai {
  border-color: rgba(122, 92, 255, 0.45);
  background: linear-gradient(145deg, rgba(122, 92, 255, 0.28), rgba(255, 255, 255, 0.06));
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.3);
}

.stage-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(105, 216, 196, 0.18);
  border-radius: 16px;
  background: rgba(10, 169, 139, 0.08);
}

.stage-result span {
  color: var(--mint-300);
  font-size: 0.72rem;
  font-weight: 800;
}

.stage-result strong {
  color: var(--white);
  font-size: 0.82rem;
}

.route-section {
  padding-top: 100px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.route-card:hover {
  transform: translateY(-8px);
  border-color: var(--violet-200);
  box-shadow: var(--shadow-lg);
}

.route-card > i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 52px 0 27px;
  color: var(--violet-600);
  border-radius: 16px;
  background: var(--violet-100);
  font-size: 1.3rem;
}

.route-index {
  color: var(--ink-400, #8a95aa);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.route-card h3 {
  margin-bottom: 8px;
  color: var(--ink-950);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.route-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.83rem;
}

.route-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--violet-600);
  font-size: 0.78rem;
  font-weight: 850;
}

.route-card-dark {
  border-color: var(--ink-950);
  background: var(--ink-950);
}

.route-card-dark h3,
.route-card-dark .route-link {
  color: var(--white);
}

.route-card-dark p {
  color: rgba(255, 255, 255, 0.58);
}

.route-card-dark > i {
  color: var(--mint-300);
  background: rgba(255, 255, 255, 0.08);
}

.control-band {
  padding: 78px 0;
}

.control-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.control-layout h2 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.control-points {
  display: grid;
  gap: 10px;
}

.control-points span {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
}

.control-points i {
  color: var(--mint-300);
}

.spotlight-shell {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.65fr;
  gap: 30px;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 30%, rgba(105, 216, 196, 0.22), transparent 20rem),
    linear-gradient(140deg, var(--violet-700), var(--ink-950));
  box-shadow: var(--shadow-lg);
}

.spotlight-shell .eyebrow {
  margin-top: 24px;
  color: var(--mint-300);
}

.spotlight-shell h2 {
  max-width: 650px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.spotlight-shell p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.strong-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  font-size: 0.84rem;
}

.spotlight-shell .strong-link {
  color: var(--white);
}

.spotlight-symbol {
  justify-self: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(7rem, 15vw, 12rem);
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(-5deg);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.28));
}

.contact-section-v3 {
  padding-top: 70px;
}

.site-footer-expanded {
  padding: 55px 0 22px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: var(--ink-500);
  font-size: 0.78rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--violet-600);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
  font-size: 0.7rem;
}

.page-hero-simple {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.page-hero-simple .page-hero-grid {
  align-items: center;
}

.page-hero-simple h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.98;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-row {
  display: grid;
  align-items: center;
  grid-template-columns: 70px 0.9fr 1.1fr;
  gap: 30px;
  padding: 32px;
  border: 1px solid var(--ink-200);
  border-radius: 20px;
  background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-row:hover {
  transform: translateX(7px);
  border-color: var(--violet-200);
}

.service-row-featured {
  color: var(--white);
  border-color: var(--ink-950);
  background: var(--ink-950);
}

.service-row-number {
  color: var(--violet-500);
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-row-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-row-title > i {
  color: var(--violet-500);
  font-size: 1.25rem;
}

.service-row h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.service-row > div:last-child > p {
  margin: 0 0 12px;
  color: var(--ink-600);
  font-size: 0.83rem;
}

.service-row-featured h2 {
  color: var(--white);
}

.service-row-featured > div:last-child > p {
  color: rgba(255, 255, 255, 0.64);
}

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

.inline-list li {
  padding: 5px 9px;
  color: var(--ink-600);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 750;
}

.service-row-featured .inline-list li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}

.split-heading,
.network-layout,
.model-v3 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
}

.split-heading h2,
.network-layout h2,
.model-v3 h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 4.7vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.safe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.safe-card {
  min-height: 175px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.safe-card i {
  display: block;
  margin-bottom: 35px;
  color: var(--mint-300);
  font-size: 1.15rem;
}

.safe-card h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.9rem;
}

.safe-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.method-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.method-line article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--ink-200);
}

.method-line article:last-child {
  border-right: 0;
}

.method-line span {
  display: block;
  margin-bottom: 70px;
  color: var(--violet-600);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.method-line h3 {
  margin-bottom: 5px;
  color: var(--ink-950);
}

.method-line p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.78rem;
}

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

.case-row {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr 1fr 55px;
  gap: 24px;
  min-height: 135px;
  padding: 25px 28px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  background: var(--white);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.case-row:hover {
  color: var(--white);
  background: var(--ink-950);
  transform: scale(1.012);
}

.case-tag {
  color: var(--violet-600);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-row h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.case-row p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.78rem;
}

.case-row > i,
.case-row > a {
  color: var(--violet-500);
  font-size: 1.35rem;
  text-align: right;
}

.case-row:hover h2,
.case-row:hover p {
  color: var(--white);
}

.case-row:hover .case-tag {
  color: var(--mint-300);
}

.case-row-product {
  border-color: var(--violet-200);
  background: var(--violet-100);
}

.expertise-cloud {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-cloud span {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.75rem;
  font-weight: 750;
}

.product-showcase {
  display: grid;
  gap: 16px;
}

.product-hero-card {
  min-height: 390px;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 38px;
  padding: 38px;
  color: var(--white);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 0%, rgba(105, 216, 196, 0.2), transparent 24rem),
    linear-gradient(140deg, #1f145c, var(--ink-950));
  box-shadow: var(--shadow-lg);
}

.product-hero-card .portfolio-kicker {
  margin-top: 35px;
  color: var(--mint-300);
}

.product-hero-card h2 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
}

.product-hero-card p,
.product-hero-card ul {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.product-hero-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.coming-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.coming-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.coming-card > i {
  margin: 52px 0 20px;
  color: var(--violet-500);
  font-size: 1.25rem;
}

.coming-card h2 {
  margin-bottom: 6px;
  color: var(--ink-950);
  font-size: 1.25rem;
}

.coming-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.77rem;
}

.coming-card small {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
  font-size: 0.66rem;
}

.capability-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.compact-outcomes .outcome-card {
  min-height: 135px;
}

.model-v3 {
  align-items: center;
}

.model-v3-points {
  display: grid;
  gap: 10px;
}

.model-v3-points article {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.model-v3-points span {
  color: var(--mint-300);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.model-v3-points h3 {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.88rem;
}

.model-v3-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
}

.js .reveal {
  transition-delay: var(--reveal-delay, 0ms);
  transition-duration: 680ms;
  transition-timing-function: cubic-bezier(0.2, 0.72, 0.2, 1);
}

.js .reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.js .reveal[data-reveal="right"] {
  transform: translateX(28px);
}

.js .reveal.is-visible[data-reveal="left"],
.js .reveal.is-visible[data-reveal="right"] {
  transform: translateX(0);
}

.js .reveal[data-parallax] {
  transform: translate3d(0, calc(18px + var(--parallax-y, 0px)), 0);
}

.js .reveal.is-visible[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

@media (max-width: 1020px) {
  .hero-v3 {
    min-height: 0;
  }

  .route-grid,
  .product-coming-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 290px;
  }

  .control-layout,
  .spotlight-shell,
  .split-heading,
  .network-layout,
  .model-v3,
  .product-hero-card {
    grid-template-columns: 1fr;
  }

  .spotlight-symbol {
    position: absolute;
    right: 35px;
    bottom: -30px;
    opacity: 0.22;
  }

  .service-row {
    grid-template-columns: 45px 0.9fr 1.1fr;
  }

  .case-row {
    grid-template-columns: 115px 1fr 1fr 40px;
  }

  .product-hero-card {
    align-items: start;
  }

  .product-hero-card .btn {
    justify-self: start;
  }

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

@media (max-width: 680px) {
  .hero-v3 {
    padding: 54px 0 64px;
  }

  .hero-grid-v3 h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .agent-stage-v3 {
    min-height: 350px;
    padding: 23px;
  }

  .simple-flow {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .simple-flow article {
    min-height: 95px;
  }

  .simple-flow .flow-arrow {
    display: none;
  }

  .stage-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-section {
    padding-top: 70px;
  }

  .route-card {
    min-height: 270px;
    padding: 23px;
  }

  .control-layout {
    gap: 38px;
  }

  .spotlight-shell {
    min-height: 410px;
    padding: 28px;
  }

  .contact-section-v3 {
    padding-top: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero-simple {
    min-height: 0;
    padding: 64px 0;
  }

  .page-hero-simple h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .service-row-number {
    margin-bottom: 8px;
  }

  .service-row:hover {
    transform: none;
  }

  .safe-grid,
  .method-line,
  .capability-grid-six {
    grid-template-columns: 1fr;
  }

  .method-line article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--ink-200);
  }

  .method-line article:last-child {
    border-bottom: 0;
  }

  .method-line span {
    margin-bottom: 45px;
  }

  .case-row {
    grid-template-columns: 1fr 35px;
    gap: 10px;
    padding: 23px;
  }

  .case-row .case-tag,
  .case-row h2,
  .case-row p {
    grid-column: 1;
  }

  .case-row > i,
  .case-row > a {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .case-row:hover {
    transform: none;
  }

  .product-hero-card {
    min-height: 0;
    padding: 27px;
  }

  .product-hero-card .btn {
    width: 100%;
  }

  .coming-card {
    min-height: 285px;
  }

  .model-v3 {
    gap: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .spotlight-symbol,
  .agent-stage-v3,
  .js .reveal[data-parallax] {
    transform: none !important;
  }
}
