/* ═══════════════════════════════════════════════════
   TAURUS SURGICAL — style.css  (refined edition)
   ═══════════════════════════════════════════════════ */

/* ─── SELF-HOSTED FONTS (no external dependencies) ─── */
@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/IBMPlexMono-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('fonts/IBMPlexMono-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --red:        #C41230;
  --red-dark:   #9B0E26;
  --red-bright: #E11D3C;
  --navy:       #111c4e;
  --navy-2:     #0c1640;
  --navy-deep:  #070d28;
  --navy-light: #263890;
  --ink:        #14181f;
  --ink-soft:   #3a414d;
  --white:      #FFFFFF;
  --paper:      #F6F4F0;   /* warm off-white */
  --gray-50:    #F4F2EE;
  --gray-100:   #ECE9E3;
  --gray-150:   #E4E0D8;
  --gray-200:   #DAD5CB;
  --gray-400:   #A39E92;
  --gray-600:   #6a655c;
  --gray-900:   #14181f;

  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  26px;
  --shadow-sm:  0 1px 2px rgba(20,24,31,.04), 0 4px 16px rgba(20,24,31,.05);
  --shadow-md:  0 8px 40px rgba(20,24,31,.10);
  --shadow-lg:  0 30px 80px rgba(7,13,40,.20);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --transition: all .35s var(--ease);
  --maxw:       1200px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  padding-bottom: 34px;
}

img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }

/* ─── UTILITY ─── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2.25rem; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--paper); }
.bg-navy   { background: var(--navy-deep); position: relative; }
.text-red      { color: var(--red); }
.text-navy     { color: var(--navy); }
.text-white    { color: var(--white) !important; }
.text-white-60 { color: rgba(255,255,255,.6) !important; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
  padding-left: 0;
}
.tag--light { color: rgba(255,255,255,.5); }

.section { padding: 130px 0; position: relative; }

.section-header { margin-bottom: 4.5rem; max-width: 760px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-size: 1.075rem;
  color: var(--gray-600);
  line-height: 1.72;
  max-width: 640px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(196,18,48,.28);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(196,18,48,.38);
}
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; font-size: 16px; padding: 17px; }

/* FEATURE / PROBLEM LISTS */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: 14.5px; color: rgba(255,255,255,.66); line-height: 1.55;
}
.feature-list li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E11D3C' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.feature-list--dark li { color: var(--gray-600); }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.problem-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: 14.5px; color: var(--gray-600); line-height: 1.58;
}
.problem-list li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C41230' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.problem-list strong, .feature-list strong { color: var(--ink); font-weight: 700; }
.feature-list--dark strong { color: var(--ink); }

/* FADE ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
#navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(246,244,240,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(246,244,240,.92);
  border-bottom: 1px solid var(--gray-150);
  box-shadow: 0 6px 30px rgba(20,24,31,.06);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 2.25rem; height: 78px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img {
  height: 36px; width: auto; flex-shrink: 0; object-fit: contain;
  transform: none !important; rotate: none !important;
  image-orientation: none;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  color: var(--navy); letter-spacing: -.01em;
}
.nav-logo-name-accent { color: var(--red); }
.nav-logo-sub {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  color: var(--gray-400); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav-links a {
  position: relative; text-decoration: none; font-size: 14.5px; font-weight: 600;
  color: var(--ink-soft); transition: color .25s;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--ink); color: #fff !important; padding: 10px 20px; border-radius: 100px;
  transition: var(--transition);
}
.nav-cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav-cta:hover { background: var(--red); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }

.nav-mobile {
  display: none; flex-direction: column; background: var(--paper);
  border-top: 1px solid var(--gray-150); padding: 1rem 2.25rem 1.4rem; gap: .2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  text-decoration: none; font-size: 16px; font-weight: 600; color: var(--ink);
  padding: .85rem 0; border-bottom: 1px solid var(--gray-100); transition: color .2s;
}
.nav-mobile-link:hover { color: var(--red); }
.nav-mobile-cta {
  margin-top: .85rem; background: var(--red); color: #fff !important;
  padding: .95rem 1.5rem; border-radius: 100px; text-align: center; border-bottom: none;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 80% 10%, #1a2664 0%, transparent 55%),
    radial-gradient(110% 100% at 10% 90%, #0e1640 0%, transparent 60%),
    linear-gradient(160deg, #0c1438 0%, #070d28 100%);
  padding: 120px 0 80px;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 60% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 80% at 60% 40%, #000 30%, transparent 80%);
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(20px); }
.hero-glow--1 {
  width: 620px; height: 620px; right: -120px; top: 18%;
  background: radial-gradient(circle, rgba(196,18,48,.22) 0%, transparent 68%);
  animation: drift1 14s ease-in-out infinite alternate;
}
.hero-glow--2 {
  width: 460px; height: 460px; left: -80px; bottom: 4%;
  background: radial-gradient(circle, rgba(60,90,220,.18) 0%, transparent 70%);
  animation: drift2 18s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-40px, 30px); } }
@keyframes drift2 { to { transform: translate(40px, -30px); } }

.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem;
  align-items: center; width: 100%; position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 7px 16px 7px 14px; margin-bottom: 2.1rem;
  backdrop-filter: blur(6px); opacity: 0; animation: heroReveal .9s var(--ease) .15s forwards;
}
.hero-badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 0 rgba(225,29,60,.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225,29,60,.55); }
  70% { box-shadow: 0 0 0 8px rgba(225,29,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(225,29,60,0); }
}
.hero-badge span:last-child {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px;
  color: rgba(255,255,255,.72); text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: .98; letter-spacing: -.02em;
  color: #fff; margin-bottom: 1.6rem;
  opacity: 0; animation: heroReveal 1s var(--ease) .28s forwards;
}
.hero-title em { font-style: italic; color: var(--red-bright); }

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.62); line-height: 1.7;
  max-width: 480px; margin-bottom: 2.4rem;
  opacity: 0; animation: heroReveal 1s var(--ease) .42s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.2rem;
  opacity: 0; animation: heroReveal 1s var(--ease) .56s forwards;
}
@keyframes heroReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-metrics {
  display: flex; align-items: center; gap: 1.6rem;
  opacity: 0; animation: heroReveal 1s var(--ease) .7s forwards;
}
.hero-metric { display: flex; flex-direction: column; gap: 3px; }
.hero-metric-num {
  font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: #fff; line-height: 1;
}
.hm-unit { font-size: 1.1rem; color: var(--red-bright); margin-left: 1px; }
.hero-metric-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.42); }
.hero-metric-div { width: 1px; height: 36px; background: rgba(255,255,255,.13); }

/* Hero visual */
.hero-visual { position: relative; height: 480px; opacity: 0; animation: heroReveal 1.1s var(--ease) .5s forwards; }
.hero-img-main {
  position: absolute; top: 10px; right: 0; width: 90%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12);
}
.hero-img-main img { width: 100%; height: 360px; object-fit: cover; object-position: center; }
.hero-img-tag {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .5px; color: #fff;
  background: rgba(7,13,40,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); padding: 6px 12px; border-radius: 100px;
}
.hero-img-float {
  position: absolute; bottom: 0; left: 0; width: 56%; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: 0 24px 60px rgba(7,13,40,.6); border: 2px solid rgba(255,255,255,.16);
  animation: floaty 6s ease-in-out infinite;
}
.hero-img-float img { width: 100%; height: 190px; object-fit: cover; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-readout {
  position: absolute; top: -16px; left: 4%; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(7,13,40,.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 8px 16px;
}
.hr-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ee089; box-shadow: 0 0 10px #2ee089; animation: pulse 2s infinite; }
.hr-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hr-val { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #fff; }

.hero-scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.4); text-decoration: none; z-index: 2;
}
.hero-scroll-hint span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-hint svg { width: 20px; height: 20px; animation: bobble 2.2s ease-in-out infinite; }
@keyframes bobble { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--ink); padding: 22px 0; overflow: hidden; }
.trust-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4); white-space: nowrap;
}
.trust-items {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(255,255,255,.85);
}
.trust-sep { color: var(--red-bright); }

/* ═══════════════════════════════════════════════════
   CHALLENGE
   ═══════════════════════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-bottom: 3rem; }
.stat-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2.2rem;
  border: 1px solid var(--gray-150); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden; transition: var(--transition);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-number {
  font-family: var(--font-display); font-size: 3.3rem; font-weight: 600;
  color: var(--red); line-height: 1; margin-bottom: .7rem; letter-spacing: -.02em;
}
.stat-label { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2.4rem; }
.split-card {
  background: var(--white); border-radius: var(--radius-md); padding: 2.4rem;
  border: 1px solid var(--gray-150); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.split-card:hover { box-shadow: var(--shadow-md); }
.split-card-head {
  display: flex; align-items: center; gap: .9rem; margin-bottom: 1.6rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--gray-100);
}
.split-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,18,48,.08); color: var(--red);
}
.split-icon svg { width: 22px; height: 22px; }
.split-card-head h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }

.callout {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  background: var(--ink); border-radius: var(--radius-md); padding: 2.4rem 2.8rem; position: relative; overflow: hidden;
}
.callout::after {
  content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,18,48,.3) 0%, transparent 70%);
}
.callout-mark {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-bright); border: 1px solid rgba(225,29,60,.4); padding: 7px 14px; border-radius: 100px; flex-shrink: 0;
}
.callout p {
  font-family: var(--font-display); font-size: clamp(1.25rem,2.4vw,1.7rem); font-weight: 500;
  color: #fff; line-height: 1.35; position: relative; z-index: 1;
}
.callout em { font-style: italic; color: var(--red-bright); }

/* ═══════════════════════════════════════════════════
   SOLUTION
   ═══════════════════════════════════════════════════ */
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: start; margin-bottom: 5rem; }
.syncra-word { font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--red); }

.syncra-spec-card {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border: 1px solid var(--gray-150); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.spec-card-head {
  display: flex; align-items: center; gap: 10px; padding: 1.3rem 2rem;
  background: var(--ink); color: #fff;
}
.spec-card-head img { height: 22px; width: auto; }
.spec-card-head span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.8); }
.spec-block { padding: 1.5rem 2rem; border-bottom: 1px solid var(--gray-100); }
.spec-block--last { border-bottom: none; }
.spec-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: .6rem;
}
.spec-block p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.spec-reg { font-family: var(--font-mono); font-size: 12.5px !important; color: var(--navy) !important; font-weight: 500; }

.badge-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.badge {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 6px 15px; font-size: 12.5px; font-weight: 600; color: var(--ink);
}

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.pillar-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.6rem 2.2rem;
  border: 1px solid var(--gray-150); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(196,18,48,.2); }
.pillar-num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--gray-100); line-height: 1; user-select: none; transition: color .4s;
}
.pillar-card:hover .pillar-num { color: rgba(196,18,48,.12); }
.pillar-icon-wrap {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem; background: var(--ink); color: var(--red-bright); transition: background .4s;
}
.pillar-card:hover .pillar-icon-wrap { background: var(--red); color: #fff; }
.pillar-icon-wrap svg { width: 28px; height: 28px; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: .8rem; }
.pillar-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   NAVY SECTIONS (vision + market)
   ═══════════════════════════════════════════════════ */
.navy-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, #000 20%, transparent 75%);
          mask-image: radial-gradient(130% 90% at 50% 0%, #000 20%, transparent 75%);
}
.bg-navy .container { position: relative; z-index: 1; }

/* VISION */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-bottom: 4rem; }
.vision-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.vision-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); transform: translateY(-4px); }
.vision-card-visual { position: relative; height: 250px; overflow: hidden; }
.vision-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .8s var(--ease); }
.vision-card:hover .vision-card-img { transform: scale(1.05); }
.vision-card-label-overlay {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; background: rgba(7,13,40,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); padding: 6px 13px; border-radius: 100px;
}
.vision-card-body { padding: 2.2rem; }
.vision-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: .8rem; }
.vision-card p { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.5rem; }

.vision-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.1); }
.vision-feature { padding: .5rem; }
.vf-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--red-bright); margin-bottom: 1.2rem;
}
.vf-icon svg { width: 26px; height: 26px; }
.vision-feature h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: .6rem; }
.vision-feature p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   VALUE PROPOSITION
   ═══════════════════════════════════════════════════ */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.value-card {
  background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-md);
  padding: 2.4rem; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--gray-100); }
.value-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff;
  background: var(--ink); width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .4s;
}
.value-card:hover .value-num { background: var(--red); }
.value-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); }

/* ═══════════════════════════════════════════════════
   EVIDENCE / FEASIBILITY
   ═══════════════════════════════════════════════════ */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.milestones { display: flex; flex-direction: column; }
.milestone { display: flex; gap: 1.4rem; }
.ms-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.ms-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 0 4px rgba(196,18,48,.14);
}
.ms-line { width: 2px; flex: 1; background: var(--gray-200); margin: 8px 0; min-height: 30px; }
.ms-body { padding: 0 0 2.4rem; }
.ms-body h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.ms-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.tech-imgs-col { display: flex; flex-direction: column; gap: 1.4rem; position: sticky; top: 100px; }
.tech-img-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-150);
}
.tech-img-item img { height: 250px; object-fit: cover; object-position: center; width: 100%; transition: transform .8s var(--ease); }
.tech-img-item:hover img { transform: scale(1.05); }
.tech-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem 1.6rem;
  background: linear-gradient(to top, rgba(7,13,40,.85) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px; pointer-events: none;
}
.tech-img-label { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: #fff; }
.tech-img-desc { font-size: 13px; color: rgba(255,255,255,.72); }

/* ═══════════════════════════════════════════════════
   REGULATORY
   ═══════════════════════════════════════════════════ */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.reg-info { display: flex; flex-direction: column; gap: 1rem; }
.reg-card {
  background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-md);
  padding: 1.8rem; display: flex; gap: 1.2rem; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.reg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reg-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,28,78,.07); color: var(--navy);
}
.reg-card-icon svg { width: 24px; height: 24px; }
.reg-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.reg-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }

.timeline-wrap {
  background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-lg);
  padding: 2.4rem; box-shadow: var(--shadow-sm);
}
.timeline-title { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.8rem; }
.tl-step { display: flex; gap: 1.4rem; }
.tl-step--last .tl-line { display: none; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-circle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-display);
}
.tl-circle--red { background: var(--red); }
.tl-line { width: 2px; flex: 1; background: var(--gray-200); margin: 6px 0; min-height: 26px; }
.tl-body { padding: 6px 0 2.2rem; }
.tl-year { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; }
.tl-year--red { color: var(--red); }
.tl-body h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 4px 0; }
.tl-body p { font-size: 13.5px; color: var(--gray-600); line-height: 1.55; }

/* ═══════════════════════════════════════════════════
   MARKET
   ═══════════════════════════════════════════════════ */
.market-numbers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.4rem; }
.market-num-card {
  text-align: left; padding: 2.6rem 2rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); transition: var(--transition);
}
.market-num-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); transform: translateY(-4px); }
.mn-number { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: .8rem; letter-spacing: -.02em; }
.mn-number span { color: var(--red-bright); }
.mn-label { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.55; }

.market-model {
  background: linear-gradient(135deg, rgba(196,18,48,.12), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 2.6rem; display: flex; align-items: flex-start; gap: 1.6rem;
}
.mm-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: var(--red-bright);
}
.mm-icon svg { width: 28px; height: 28px; }
.market-model h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: .7rem; }
.market-model p { font-size: 14.5px; color: rgba(255,255,255,.62); line-height: 1.68; }

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info { padding-top: .5rem; }
.contact-points { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2.6rem; }
.contact-point { display: flex; align-items: flex-start; gap: 1.1rem; }
.cp-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,18,48,.08); color: var(--red);
}
.cp-icon svg { width: 22px; height: 22px; }
.cp-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.cp-sub { font-size: 13.5px; color: var(--gray-600); margin-top: 2px; }

.contact-form {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--gray-150); border-radius: var(--radius-lg);
  padding: 2.4rem; box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }

input, textarea, select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink); background: var(--paper);
  transition: border-color .25s, background .25s, box-shadow .25s; outline: none;
  appearance: none; -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(196,18,48,.1); }
input::placeholder, textarea::placeholder { color: var(--gray-400); }
textarea { height: 120px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a655c' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer { background: var(--navy-deep); padding: 3.5rem 0 2.5rem; position: relative; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo-img {
  height: 32px; width: auto; flex-shrink: 0; object-fit: contain;
  transform: none !important; rotate: none !important;
  image-orientation: none;
}
.footer-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.footer-logo-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 2px; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.5); transition: color .25s; }
.footer-nav a:hover { color: var(--red-bright); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-status { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .5px; color: rgba(255,255,255,.4); }
.footer-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); animation: pulse 2.2s infinite; }

/* ─── DISCLAIMER TICKER ─── */
.disclaimer-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(7,13,40,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196,18,48,.4); overflow: hidden; height: 34px; display: flex; align-items: center;
}
.disclaimer-track { display: flex; white-space: nowrap; animation: ticker 42s linear infinite; will-change: transform; }
.disclaimer-text {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .5px;
  color: rgba(255,255,255,.5); text-transform: uppercase; padding-right: 2rem; flex-shrink: 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .syncra-spec-card { position: static; }
  .tech-imgs-col { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .reg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 3rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 110px 0 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-metrics { flex-wrap: wrap; gap: 1.2rem; }
  .stats-row, .split-cards, .pillars, .vision-grid, .vision-features,
  .value-grid, .tech-grid, .market-numbers { grid-template-columns: 1fr; }
  .tech-grid { gap: 3rem; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.4rem; }
  .nav-inner { padding: 0 1.4rem; height: 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero-metric-div { display: none; }
  .hero-metrics { gap: 1.6rem; }
  .callout { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .split-card, .pillar-card, .value-card, .contact-form { padding: 1.8rem; }
  .trust-inner { gap: 1rem; }
}