@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Manrope:wght@600;700;800&display=swap");

/* =============================================
   DESIGN: SAGE — warm, orange + blue
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* ── Primary: orange ── */
  --accent: #E47B3E;
  --accent-hover: #D0672D;
  --accent-light: #FFF4ED;
  --accent-border: #FDDCBF;
  --accent-muted: #F0A070;

  --primary-cyan: #00ffff;

  /* ── Secondary: blue ── */
  --secondary: #3F66DD;
  --secondary-hover: #3358C4;
  --secondary-light: #EEF2FB;
  --secondary-border: #C3D0F5;
  --secondary-muted: #7A9AEA;

  /* ── Gradient: blue → orange ── */
  --gradient-text: linear-gradient(90deg, #3F66DD 0%, #E47B3E 100%);

  /* Surface — warm off-white */
  --bg: #fafaf9;
  --bg-alt: #f5f5f4;
  --bg-alt-2: #e7e5e4;
  --bg-white: #ffffff;
  --bg-black: #2b2927;

  /* Text */
  --text: #1c1917;
  --text-2: #292524;
  --muted: #78716c;

  /* Structure */
  --border: #e7e5e4;
  --border-strong: #d6d3d1;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .03);
  --shadow: 0 4px 16px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08), 0 4px 16px rgba(0, 0, 0, .04);

  /* Type */
  --font: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 12px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 36px;
  --sp-6: 52px;
  --sp-7: 72px;
  --sp-8: 96px;
  --max-w: 1400px;
  --section-content-max: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --section-left-offset: max(20px, 10vw);
  --font-size-base: 20px;
  --font-size-h1: 46px;
  ;
  --font-size-h2: 26px;
  --font-size-h3: 22px;
  ;
}

/* =============================================
   BASE
   ============================================= */

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

strong {
  font-weight: 600;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.section {
  padding: var(--sp-7) var(--sp-4) var(--sp-7) var(--section-left-offset);
}

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

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

.section--manifest {
  width: 100%;
  padding: var(--sp-1) var(--sp-4) var(--sp-1) var(--section-left-offset);
  background: var(--bg-black);
  color: var(--bg-white);
}

.section--manifest__inner {
  max-width: var(--section-content-max);
  margin: 0;
  padding: 28px 0 40px;
}

.section--manifest__header {
  margin-bottom: var(--sp-6);
  max-width: var(--section-content-max);
  width: 100%;
}

.section--manifest__header  h1 {
  margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.backend-strip__label {
  margin-bottom: 4px;
}

.lanes-manifest {
  margin-top: 20px;
  max-width: var(--section-content-max);
}

.lanes-manifest__entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: border-color 0.2s;
}

.lanes-manifest__entry:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lanes-manifest__entry::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.28s ease;
}

.lanes-manifest__entry:hover::before {
  width: 100%;
}

.lanes-manifest__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.lanes-manifest__num {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.7;
}

.lanes-manifest__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-alt2);
  line-height: 1.1;
  margin: 0;
}

.lanes-manifest__name--opt {
  color:var(--bg-alt);
}


.lanes-manifest__right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.lanes-manifest__what {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--bg-white);
  line-height: 1.5;
  margin: 0;
}

.lanes-manifest__why {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* =============================================
   NAV
   ============================================= */

.sg-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 249, .9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: var(--sp-3);
}


.site-topnav__sep {
  width: 1px;
  height: 16px;
  background: rgba(233, 238, 246, 0.1);
  flex-shrink: 0;
  margin: 0 4px;
}

.site-topnav__ai {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-topnav__ai a {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 8px;
  opacity: 0.5;
  transition: opacity 140ms ease, background 140ms ease, transform 140ms ease;
}

.site-topnav__ai a:hover {
  opacity: 1;
  background: rgba(233, 238, 246, 0.05);
  transform: translateY(-1px);
}

.site-topnav__ai img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}


@keyframes sg-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.75);
  }
}

.sg-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sg-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .14s, background .14s;
}

.sg-nav__link:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.sg-nav__link--cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background .14s, transform .14s;
}

.sg-nav__link--cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.sg-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: color .14s, background .14s;
}

.sg-nav__back:hover {
  color: var(--text-2);
  background: var(--bg-alt);
}



.logo {
  display: inline-flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  text-shadow: none;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo::before {
  content: '>';
  margin-right: 0.2rem;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  transition: 0.3s ease;
  font-size: 1.6rem;
}

.logo::after {
  content: '_';
  animation: blink 1s infinite;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* =============================================
   HERO — left-aligned, two-column
   ============================================= */

.sg-hero {
  padding: var(--sp-5) var(--sp-4) var(--sp-5) var(--section-left-offset);
  background: var(--bg);
}

.sg-hero > .container {
  width: 100%;
  max-width: var(--section-content-max);
  margin: 0;
  padding: 0;
}

.sg-hero__layout {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: var(--sp-1);
  align-items: start;
}

.sg-hero__text {
  min-width: 0;
}

.sg-hero__media {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
}

.sg-hero__image {
  width: min(800px, 100%);
  max-width: 800px;
  height: auto;
  flex: 0 0 auto;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 100%),
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 100%),
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.sg-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}

.sg-hero h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 var(--sp-3);
}

.sg-hero__headline-line {
    display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #081d33;
  margin: 0 0 18px;
  width: 100%;
}

.sg-hero h1 strong {
  color: var(--accent);
  font-weight: 800;
}

.sg-hero__lead {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 var(--sp-5);
}

.sg-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   STAT ROW (small trust metrics)
   ============================================= */

.sg-stats {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.sg-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sg-stat__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.sg-stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(228, 123, 62, .3);
}

.btn--outline {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  background: var(--bg-alt);
  color: var(--text);
}

/* =============================================
   CODE CARD
   ============================================= */

.sg-code-card {
  background: rgb(17, 17, 16, 0.95);
  border: 1px solid #292524;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sg-code-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid #292524;
  background: #111110;
}

.sg-code-card__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(168, 162, 158, .85);
  margin-left: 4px;
}

.sg-code-card pre {
  margin: 0;
  padding: 20px 30px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  line-height: 1.75;
  color: #d6d3d1;
  overflow-x: auto;
  text-align: left;
}

.sg-code-card pre .kw {
  color: #c084fc;
}

.sg-code-card pre .fn {
  color: #818cf8;
}

.sg-code-card pre .str {
  color: #86efac;
}

.sg-code-card pre .cm {
  color: #76736d;
  font-style: italic;
}

.sg-code-card pre .op {
  color: #57534e;
}

.sg-code-card pre .kv {
  color: #67e8f9;
}

/* =============================================
   SECTION HEADER
   ============================================= */

.section-header {
  margin-bottom: var(--sp-6);
  max-width: var(--section-content-max);
  width: 100%;
}

.section-header--center {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--sp-6);
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0 0 var(--sp-2);
  color: var(--text);
}

.section-header h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 var(--sp-2);
  color: var(--text);
}


.section-header p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   ALTERNATING FEATURE ROWS
   ============================================= */

.sg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
}

.sg-row:last-child {
  border-bottom: none;
}

.sg-row--reverse .sg-row__visual {
  order: -1;
}

.sg-row__text {
  text-align: start;
  align-self: start;
}



.sg-row__text h1 {
  font-family: var(--font-display);
   margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
}

.sg-row__text p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 var(--sp-3);
}

.sg-row__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 3px 12px;
  border-radius: 999px;
}

.sg-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-row-manifest {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-2) var(--sp-1);
  max-width: var(--section-content-max);
  width: 100%;
  margin: 0;
  text-align: left;
}

.sg-row-manifest__text h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 var(--sp-2);
  color: var(--accent-light);

}
.sg-row-manifest__text h1 {
  font-family: var(--font-display);
    margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.sg-row-manifest__text p {
  font-size: var(--font-size-base);
  color: var(--accent-light);
  line-height: 1.75;
  margin: 0 0 var(--sp-3);
}


/* Visual panels used inside rows */
.sg-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  width: 100%;
}

.sg-panel__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sp-3);
}

.sg-mem-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-mem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color .16s, background .16s;
}

.sg-mem-item:hover {
  border-color: var(--accent-border);
  background: var(--accent-light);
}

.sg-mem-item__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 72px;
  text-align: center;
}

.sg-mem-item__text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Ownership diagram */
.sg-ownership {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sg-own-level {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  transition: box-shadow .18s;
}

.sg-own-level:hover {
  box-shadow: var(--shadow);
}

.sg-own-level__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.sg-own-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sg-own-dot--agent {
  background: var(--accent);
}

.sg-own-dot--user {
  background: #0891b2;
}

.sg-own-dot--project {
  background: #059669;
}

.sg-own-level__label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
}

.sg-own-level__desc {
  font-size: 0.8rem;
  padding: 8px 16px;
  color: var(--muted);
}

/* RLM steps */
.sg-rlm {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sg-rlm-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px 14px 0px;
  position: relative;
}

.sg-rlm-step+.sg-rlm-step {
  border-top: 1px solid var(--border);
}

.sg-rlm-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sg-rlm-step__body {}

.sg-rlm-step__title {
  font-family: var(--font-display);
  font-size: var(--font-size-base);
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--text);
}

.sg-rlm-step__desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* =============================================
   FEATURE GRID (small cards)
   ============================================= */

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

.sg-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
  align-content: start;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.sg-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sg-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: background .2s, color .2s;
}
.sg-card__text {
  width: fit-content;
  max-width: 100%;
  height: 38px;
  border-radius: 9px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  text-align: left;
  color: var(--accent);
  transition: background .2s, color .2s;
}


.sg-card:hover .sg-card__icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sg-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.sg-card p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   CTA BANNER
   ============================================= */

.sg-cta {
  background: var(--text);

  padding: var(--sp-7) var(--sp-4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-5);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sg-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 102, 221, .35) 0%, transparent 70%);
  pointer-events: none;
}

.sg-cta__text {}

.sg-cta__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-muted);
  display: block;
  margin-bottom: var(--sp-2);
}

.sg-cta h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 var(--sp-2);
}

.sg-cta p {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

.sg-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.btn--cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}

.btn--cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--cta-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}

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

/* =============================================
   FOOTER
   ============================================= */

.sg-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  align-items: start;
  column-gap: var(--sp-8);
  padding: var(--sp-8) 0 var(--sp-4);
}



.sg-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;

  margin-bottom: 20px;
}

.sg-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  align-self: stretch;
}

.uma-footer__feedback {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.uma-footer__feedback-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sg-footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sg-footer__brand p {
  font-size: var(--font-size-base);
  color: var(--muted);
}

.sg-footer__brand-image {
  display: block;
  width: min(200px, 100%);
  height: auto;
}

.sg-footer__brand:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}



.sg-footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color .14s;
}

.sg-footer__links a:hover {
  color: var(--text);
}

.sg-footer__copy {
  font-size: 0.82rem;
  color: var(--muted);
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.sm_icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sm_icons:hover {
  background-color: rgba(255, 217, 168, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.sm_icons svg {
  width: 25px;
  height: 25px;
  display: block;
}

/* =============================================
   GRADIENT TEXT UTILITY
   ============================================= */

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for environments that don't support background-clip: text */
  color: var(--accent);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

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

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .15s;
}

.reveal-delay-3 {
  transition-delay: .22s;
}

.reveal-delay-4 {
  transition-delay: .30s;
}

.reveal-delay-5 {
  transition-delay: .38s;
}



/* -----------------------------------------------
       Trust bar (from Slate, violet-adapted)
    ----------------------------------------------- */
.sg-trust {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.sg-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sg-trust__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.sg-trust__sep {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

.backend-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: border-color .14s, color .14s;
}

.backend-tag:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

/* -----------------------------------------------
       How it works — connected panel row (from Slate, violet-adapted)
    ----------------------------------------------- */
.sg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.sg-step {
  background: var(--bg-white);
  padding: 32px 28px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: background .18s;
}

.sg-step:hover {
  background: var(--accent-light);
}

.sg-step__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 10px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  display: inline-block;
  width: max-content;
}

.sg-step h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.sg-step p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}


/* -----------------------------------------------
       Cycling hero phrase
    ----------------------------------------------- */
.hero-phrase {
  display: block;
  position: relative;
  white-space: nowrap;
   font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
   font-family: var(--font-display);
  font-size: 50px;
  min-height: 80px;
  margin-top: 10px;
  width: 100%;
}

.hero-phrase2 {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  font-weight: 800;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

.hero-word-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.hero-phrase.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-phrase.is-entering {
  opacity: 0;
  transform: translateY(12px);
}

.hero-phrase strong {
  font-weight: 800;
}

.strong {
  font-weight: 800;
}


.timeline-section {
  display: flex;
  justify-content: center;
  padding: var(--sp-3) 0 0;
  background: transparent;
}

.timeline-wrap {
  width: min(880px, 100%);
  min-width: 720px;
  margin: 0 auto;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 28px;
  min-height: 144px;
  text-align: left;
}

.timeline-item:last-child {
  min-height: auto;
}

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-white);
  box-shadow: 0 0 0 6px rgba(250, 250, 249, .95);
  transition:
    background 450ms ease,
    border-color 450ms ease,
    transform 450ms ease,
    box-shadow 450ms ease;
}

.timeline-line {
  position: absolute;
  top: 28px;
  width: 2px;
  height: calc(100% - 28px);
  background: var(--border);
  overflow: hidden;
}

.timeline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 700ms ease;
}

.timeline-content {
  padding-bottom: 42px;
  opacity: 0.52;
  transform: translateY(10px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.timeline-content h3 {
  margin: -2px 0 6px;
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--muted);
  transition: color 450ms ease;
}

.timeline-box {
  max-width: 520px;
  padding: 0;
  border-radius: 18px;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    background 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.timeline-box p {
  margin: 0;
  color: var(--text-2);
  font-size: var(--font-size-base);
  line-height: 1.72;
}

/* Active state */
.timeline-item.is-active .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(228, 123, 62, .14);
}

.timeline-item.is-active .timeline-line::after {
  transform: scaleY(1);
}

.timeline-item.is-active .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.is-active .timeline-content h3 {
  color: var(--text);
}

.timeline-item.is-active .timeline-box {
  opacity: 1;
  transform: translateX(0);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

/* Completed state keeps previous items visible */
.timeline-item.is-complete .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(228, 123, 62, .12);
}

.timeline-item.is-complete .timeline-line::after {
  transform: scaleY(1);
}

.timeline-item.is-complete .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.is-complete .timeline-content h3 {
  color: var(--text);
}

.timeline-item.is-complete .timeline-box {
  opacity: 1;
  transform: translateX(0);
  border-color: transparent;
  background: transparent;
}

/* Mobile */

@media (prefers-reduced-motion: reduce) {

  .timeline-dot,
  .timeline-line::after,
  .timeline-content,
  .timeline-content h3,
  .timeline-box {
    transition: none;
  }
}


.backend-strip {
  padding: 56px var(--sp-4) 56px var(--section-left-offset);
  overflow: hidden;
  background: var(--bg-white);
}

.backend-strip__label {
  margin: 0 0 28px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section > .container,
.backend-strip > .container {
  width: 100%;
  max-width: var(--section-content-max);
  margin: 0;
  padding: 0;
}

.backend-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.backend-marquee::before,
.backend-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.backend-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.backend-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.backend-marquee__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: backend-scroll 34s linear infinite;
}

.backend-marquee:hover .backend-marquee__track {
  animation-play-state: paused;
}

.backend-logo {
  display: block;
  width: auto;
  height: 34px;
  opacity: 0.58;
  filter: grayscale(1);
  transition:
    opacity 240ms ease,
    filter 240ms ease,
    transform 240ms ease;
}

.backend-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

@keyframes backend-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


@media (prefers-reduced-motion: reduce) {
  .backend-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
  }
}



.uma-feature-section {
  padding: 32px 16px;
  background: #ffffff;
}

.uma-feature-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.uma-feature-card {
  min-height: 164px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 92, 255, 0.035), transparent 36%),
    #ffffff;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 10px 28px rgba(17, 24, 39, 0.045);
}

.uma-feature-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.uma-feature-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
}

.uma-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uma-feature-card h3 {
  margin: 0;
  color: currentColor;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: var(--font-size-h3);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.uma-feature-card p {
  margin: 0;
  color: #111827;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.48;
  font-weight: 450;
  letter-spacing: -0.01em;
}

.uma-feature-card--blue {
  color: #0066ff;
}

.uma-feature-card--purple {
  color: #6c38ff;
}

.uma-feature-card--teal {
  color: #00a3a3;
}

.uma-feature-card--orange {
  color: #ff6a00;
}


/* =============================================
   RETRIEVAL USE CASES
   ============================================= */

.uma-retrieval-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.uma-retrieval-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(63, 102, 221, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(245, 245, 244, .94) 100%);
  box-shadow: var(--shadow);
}

.uma-retrieval-card--accent {
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 123, 62, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 244, 237, .96) 100%);
  border-color: var(--accent-border);
}

.uma-retrieval-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.uma-retrieval-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid var(--secondary-border);
  border-radius: 999px;
  color: var(--secondary);
  background: var(--secondary-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uma-retrieval-card--accent .uma-retrieval-card__badge {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-light);
}

.uma-retrieval-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.uma-retrieval-card__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.uma-retrieval-card code,
.uma-retrieval-decision code {
  color: var(--accent);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    Menlo,
    monospace;
  font-size: var(--font-size-base);
  font-weight: 650;
}

.uma-retrieval-list {
  margin-top: 22px;
}

.uma-retrieval-list h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.uma-retrieval-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
  color: var(--text-2);
  font-size: 0.96rem;
  line-height: 1.55;
}

.uma-code {
  margin: 24px 0 0;
  max-width: 100%;
  padding: 18px;
  overflow-x: auto;
  border: 1px solid #292524;
  border-radius: 18px;
  color: #d6d3d1;
  background: #111110;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.uma-code code {
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.65;
  font-weight: 500;
}

.uma-retrieval-decision {
  background:
    radial-gradient(circle at top right, rgba(63, 102, 221, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 244, 237, .8), rgba(255, 255, 255, .96));
  box-shadow: var(--shadow-sm);
}

.uma-retrieval-decision h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: var(--font-size-h3);
  letter-spacing: -0.035em;
}

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

.uma-decision-grid div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, .8);
}

.uma-decision-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 850;
}

.uma-decision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-size-base);
  line-height: 1.55;
}

/* =============================================
   TWO WAYS TO USE UMA — split panel (Option C)
   ============================================= */

.twc-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  min-height: 360px;

}

.twc-half {
  padding: 48px 40px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.twc-half--light {
  background:
    radial-gradient(circle at 18% 0%, rgba(63, 102, 221, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(245, 245, 244, .94) 100%);
}

.twc-half--dark {
  background: #1e1c1a;
}

.twc-half__badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.twc-half--light .twc-half__badge {
    background:
    radial-gradient(circle at 18% 0%, rgba(63, 102, 221, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,245,244,.94) 100%);
  color: var(--secondary);
  border: 1px solid var(--secondary-border);
}

.twc-half--dark .twc-half__badge {
  background: rgba(228, 123, 62, .15);
  color: var(--accent);
  border: 1px solid rgba(228, 123, 62, .3);
}

.twc-half__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0;
}

.twc-half--light .twc-half__title {
  color: var(--text);
}

.twc-half--dark .twc-half__title {
  color: rgba(255, 255, 255, .92);
}

.twc-half__lead {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.twc-half--light .twc-half__lead {
  color: var(--muted);
}

.twc-half--dark .twc-half__lead {
  color: rgba(255, 255, 255, .4);
}

.twc-half__lead code {
  font-family: var(--font-mono);
  font-size: .88em;
}

.twc-half--light .twc-half__lead code {
  color: var(--secondary);
}

.twc-half--dark .twc-half__lead code {
  color: var(--accent-muted);
}

.twc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.twc-list li {
  display: flex;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.twc-half--light .twc-list li {
  color: var(--text-2);
}

.twc-half--dark .twc-list li {
  color: rgba(255, 255, 255, .55);
}

.twc-list li::before {
  content: '—';
  font-family: var(--font-mono);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.twc-half--light .twc-list li::before {
  color: var(--secondary);
  opacity: .6;
}

.twc-half--dark .twc-list li::before {
  color: var(--accent);
  opacity: .6;
}

.twc-list code {
  font-family: var(--font-mono);
  font-size: .86em;
}

.twc-half--light .twc-list code {
  color: var(--secondary);
}

.twc-half--dark .twc-list code {
  color: var(--accent-muted);
}

.twc-code {
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
  max-width: 100%;
  min-width: 0;
}

.twc-half--light .twc-code {
  background: #111110;
  border: 1px solid #292524;
  color: #d6d3d1;
}

.twc-half--dark .twc-code {
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .6);
}

.twc-fn-embed {
  color: #7A9AEA;
}

.twc-fn-mcp {
  color: var(--accent-muted);
}

.twc-str {
  color: rgba(214, 211, 209, .45);
}

.twc-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt-2);
  position: relative;
}

.twc-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-alt-2) 40%, #1e1c1a 60%, #1e1c1a);
  pointer-events: none;
}

.twc-divider__or {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
}

/* =============================================
   FINAL CTA / SECOND HERO
   ============================================= */

.uma-final-hero {
  position: relative;
  overflow: hidden;
  padding: 96px var(--sp-4) 96px var(--section-left-offset);
  background: var(--bg-black);
  color: #ffffff;
}

.uma-final-hero > .container {
  width: 100%;
  max-width: var(--section-content-max);
  margin: 0;
  padding: 0;
}

.uma-final-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.uma-final-hero__content {
  width: 100%;
  max-width: none;
  margin-bottom: 30px;
}

.uma-final-hero h1 {
  margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.uma-final-hero__content p {
  margin: 26px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-base);
  line-height: 1.65;
}

.uma-final-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-dark-primary,
.btn-dark-secondary,
.btn-animus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.btn-dark-primary {
  background: #ffffff;
  color: var(--bg-black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-dark-primary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.btn-dark-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.uma-final-hero__panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  margin-bottom: 30px;
}

.uma-final-hero__panel-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* =============================================
   ANIMUS PROMO
   ============================================= */

.animus-promo__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}


.animus-promo__content h2 {
  margin: 0 0 12px;
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.animus-promo__content p {
  margin: 0;
  font-size: var(--font-size-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
}

.animus-promo__content strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.animus-promo__actions {
  flex-shrink: 0;
  align-self: end;
  justify-self: start;
  display: flex;
  align-items: flex-end;
}
