:root {
  --font-display: "Instrument Serif", "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --card-radius: 8px;
  --card-lift: translateY(-4px);
  --card-transition: 220ms ease;
}

:root[data-theme="night"] {
  color-scheme: dark;
  --bg: #030608;
  --bg-deep: #000203;
  --panel: #0d1118;
  --panel-2: #dcdff1;
  --panel-3: #c5d2e8;
  --surface: #0d1118;
  --surface-2: #a6c3e0;
  --text: #f4f1ea;
  --text-strong: #ffffff;
  --text-cool: #e6ebf2;
  --muted: #aeb6c2;
  --muted-2: #8f9aa8;
  --line: #2b3442;
  --line-soft: rgba(255, 255, 255, 0.12);
  --coral: #007dc6;
  --coral-dark: #2838c6;
  --accent: #007dc6;
  --accent-2: #d8a85d;
  --button-primary-text: #030608;
  --button-primary-hover: #388dff;
  --platinum: #d9dde5;
  --steel: #8d97a6;
  --amber: #c9aa6a;
  --focus: #ffd166;
  --body-glow: rgba(0, 125, 198, 0.08);
  --grid-line-x: rgba(255, 255, 255, 0.025);
  --grid-line-y: rgba(255, 255, 255, 0.018);
  --header-bg: rgba(3, 6, 8, 0.88);
  --header-border: rgba(255, 255, 255, 0.10);
  --dropdown-bg: rgba(13, 17, 24, 0.98);
  --mobile-menu-bg: #030608;
  --footer-bg: #010304;
  --footer-text: #f4f1ea;
  --footer-muted: #aeb6c2;
  --footer-line: rgba(255, 255, 255, 0.14);
  --footer-soft: rgba(255, 255, 255, 0.045);
  --card-bg: linear-gradient(180deg, rgba(255,255,255,.045), rgba(226, 239, 255,.02));
  --soft-bg: rgba(255,255,255,.035);
  --soft-bg-2: rgba(255,255,255,.025);
  --button-soft-bg: rgba(255,255,255,.045);
  --input-bg: rgba(0,0,0,.28);
  --media-grid: rgba(255,255,255,.045);
  --media-outline: rgba(255,255,255,.08);
  --logo-filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .42));
  --glow-coral: rgba(255, 81, 56, .24);
  --glow-platinum: rgba(216, 221, 229, .16);
  --cursor-glow-opacity: .16;
}

:root[data-theme="day"] {
  color-scheme: light;
  --bg: #f1f2f8;
  --bg-deep: #ffffff;
  --panel: #ffffff;
  --panel-2: #dcdff1;
  --panel-3: #c5d2e8;
  --surface: #ffffff;
  --surface-2: #a6c3e0;
  --text: #111827;
  --text-strong: #030608;
  --text-cool: #1f2937;
  --muted: #4b5563;
  --muted-2: #5f6875;
  --line: rgba(3,6,8,0.18);
  --line-soft: rgba(3,6,8,0.12);
  --coral: #007dc6;
  --coral-dark: #263196;
  --accent: #3239c7;
  --accent-2: #9a6a2f;
  --button-primary-text: #ffffff;
  --button-primary-hover: #2727a9;
  --platinum: #1f2937;
  --steel: #566170;
  --amber: #7b4e16;
  --focus: #7c3aed;
  --body-glow: rgba(0, 125, 198, 0.08);
  --grid-line-x: rgba(3, 6, 8, 0.045);
  --grid-line-y: rgba(3, 6, 8, 0.035);
  --header-bg: rgba(255, 255, 255, 0.91);
  --header-border: rgba(3, 6, 8, 0.11);
  --dropdown-bg: rgba(255, 255, 255, 0.98);
  --mobile-menu-bg: #ffffff;
  --footer-bg: #e2efff;
  --footer-text: #111827;
  --footer-muted: #4b5563;
  --footer-line: rgba(3, 4, 8, 0.14);
  --footer-soft: rgba(3, 4, 8, 0.035);
  --card-bg: linear-gradient(180deg, rgba(255,255,255,.94), rgba(226, 239, 255,.72));
  --soft-bg: rgba(255,255,255,.76);
  --soft-bg-2: rgba(255,255,255,.66);
  --button-soft-bg: rgba(166,195,224,.045);
  --input-bg: rgba(255,255,255,.88);
  --media-grid: rgba(3,6,8,.055);
  --media-outline: rgba(3,6,8,.10);
  --logo-filter: invert(1) contrast(1.08) drop-shadow(0 4px 12px rgba(0, 125, 198, .12));
  --glow-coral: rgba(0, 125, 198, .16);
  --glow-platinum: rgba(17, 24, 39, .07);
  --cursor-glow-opacity: .065;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 78px;
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, var(--body-glow), transparent 18rem),
    linear-gradient(90deg, var(--grid-line-x) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line-y) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 96px 96px, 96px 96px, auto;
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10000;
  padding: .7rem 1rem;
  background: var(--coral);
  color: #fff;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }
:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.site-cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  opacity: var(--cursor-glow-opacity);
  transform: translate3d(var(--cursor-x, -50vw), var(--cursor-y, -50vh), 0) translate(-50%, -50%);
  background: radial-gradient(circle, var(--glow-coral), transparent 62%);
  filter: blur(22px);
  mix-blend-mode: screen;
  will-change: transform;
}
:root[data-theme="day"] .site-cursor-glow { mix-blend-mode: multiply; }
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(3, 6, 8, .86);
  border-bottom-color: rgba(255, 81, 56, .24);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, .22),
    0 0 32px rgba(255, 81, 56, .08);
}

:root[data-theme="day"] .site-header.is-scrolled {
    background: rgba(249, 249, 255, 0.88);
    border-bottom-color: rgba(60, 50, 199, 0.22);
    box-shadow: 0 14px 34px rgba(17, 20, 39, 0.1), 0 0 28px rgba(52, 50, 199, 0.055);
}
/*
:root[data-theme="day"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(199, 70, 50, .22);
  box-shadow:
    0 14px 34px rgba(17, 24, 39, .10),
    0 0 28px rgba(199, 70, 50, .055);
}
*/
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 78px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: min-height 220ms ease, gap 220ms ease, padding 220ms ease;
}
.site-header.is-scrolled .header-inner { min-height: 68px; gap: 18px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  position: relative;
  isolation: isolate;
  transition: transform 220ms ease, filter 220ms ease;
}
.brand::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 999px;
  opacity: 0;
  background: radial-gradient(circle, var(--glow-coral), transparent 62%);
  filter: blur(2px);
  transition: opacity 220ms ease;
}
.site-header.is-scrolled .brand {
  transform: scale(.93);
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, .16))
    drop-shadow(0 0 18px rgba(255, 81, 56, .12));
}
:root[data-theme="day"] .site-header.is-scrolled .brand {
  filter: drop-shadow(0 4px 14px rgba(17, 24, 39, .12));
}
.site-header.is-scrolled .brand::after { opacity: .85; }
.brand-logo {
    width: 220px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    /* [disabled]filter: var(--logo-filter); */
    transition: width 220ms ease, height 220ms ease, filter 220ms ease;
}
.footer-brand .brand-logo { width: 260px; height: 74px; }
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 241, 234, .42);
  border-radius: 8px;
  position: relative;
  background: linear-gradient(145deg, #121923, #05080b);
}
.brand-mark::before { content: ""; position: absolute; inset: 8px 13px 8px 8px; border: 2px solid var(--text); border-right: 0; border-radius: 12px 0 0 12px; }
.brand-mark::after { content: ""; position: absolute; right: 6px; top: 12px; width: 10px; height: 10px; background: var(--coral); }
.brand-word { font-family: var(--font-mono); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; padding: 26px 0; transition: padding 220ms ease; }
.site-header.is-scrolled .nav-item { padding: 20px 0; }
.nav-link {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color 180ms ease, text-shadow 180ms ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--coral);
  transition: transform 180ms ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open .nav-link {
  color: var(--text-strong);
  text-shadow: 0 0 16px var(--glow-coral);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item.is-open .nav-link::after { transform: scaleX(1); }
.dropdown-bridge { position: absolute; left: 0; top: 56px; width: 100%; height: 30px; }
.dropdown-panel {
  position: absolute;
  top: 76px;
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--coral);
  border-radius: 8px;
  background: var(--dropdown-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-item.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-kicker, .eyebrow {
  font-family: var(--font-mono);
  color: var(--coral);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dropdown-panel p { margin: 10px 0 0; color: var(--muted); font-size: .92rem; }
.dropdown-panel ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.dropdown-panel a { display: block; padding: 10px 12px; color: var(--platinum); border: 1px solid transparent; border-radius: 6px; }
.dropdown-panel a:hover, .dropdown-panel a:focus-visible { border-color: var(--line); background: var(--soft-bg); color: var(--text-strong); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  color: var(--text-strong);
  cursor: pointer;
  overflow: hidden;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 24px var(--glow-coral);
  transform: translateY(-1px);
}
.theme-toggle-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.82) rotate(-8deg);
  transition: opacity 180ms ease, transform 180ms ease;
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle-icon-moon svg path { fill: currentColor; stroke: none; }
:root[data-theme="day"] .theme-toggle-icon-moon,
:root[data-theme="night"] .theme-toggle-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.25;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-primary { background: var(--coral); border-color: var(--coral); color: var(--button-primary-text); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--button-primary-hover); }
.btn-secondary { background: var(--surface-2); color: var(--text); border-color: var(--coral); }
.btn-secondary:hover, .btn-secondary:focus-visible { border-color: var(--coral); }
.btn-tertiary { color: var(--platinum); background: transparent; }
.btn-header { min-height: 38px; padding: 9px 12px; color: var(--button-primary-text); background: var(--coral); border-color: var(--line-soft); }
.btn-header:hover, .btn-primary:focus-visible { background: var(--button-primary-hover); }
.nav-toggle {
  display: none;
  inline-size: 44px;
  block-size: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--button-soft-bg);
  color: var(--text);
  position: relative;
  z-index: 1003;
  cursor: pointer;
}
.nav-toggle:hover,
.nav-toggle:focus-visible { color: var(--coral); border-color: var(--coral); }
.nav-toggle-mark {
  position: relative;
  display: block;
  width: 26px;
  height: 22px;
  border-top: 2px solid currentColor;
  transition: border-color .18s ease;
}
.nav-toggle-mark::before,
.nav-toggle-mark::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 2px;
  height: 15px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, left .18s ease, right .18s ease, height .18s ease;
}
.nav-toggle-mark::before { left: 6px; }
.nav-toggle-mark::after { right: 6px; }
body.mobile-menu-open .nav-toggle-mark { border-top-color: transparent; }
body.mobile-menu-open .nav-toggle-mark::before {
  left: 12px;
  height: 22px;
  transform: translateY(-4px) rotate(45deg);
}
body.mobile-menu-open .nav-toggle-mark::after {
  right: 12px;
  height: 22px;
  transform: translateY(-4px) rotate(-45deg);
}
.mobile-menu { display: none; }

main { overflow: hidden; scroll-margin-top: 92px; }
.breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.breadcrumbs a:hover { color: var(--text); }
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 138px) 32px clamp(48px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.hero-home { min-height: calc(80vh - 78px); padding-bottom: 42px; }
.hero-image-background {
  max-width: none;
  min-height: calc(100vh - 78px);
  margin: 0;
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  grid-template-columns: minmax(0, 860px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 2, 3, .92) 0%, rgba(0, 2, 3, .74) 46%, rgba(0, 2, 3, .36) 100%),
    linear-gradient(180deg, rgba(0, 2, 3, .08), rgba(0, 2, 3, .52)),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid var(--line-soft);
}
.hero-image-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--grid-line-x) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line-y) 1px, transparent 1px);
  background-size: 96px 96px;
}
.hero-image-background .hero-copy { position: relative; z-index: 1; }
.hero-copy { min-width: 0; }
.hero-image-background .hero-copy,
.hero-region-immersive .hero-copy {
  --text: #f4f1ea;
  --text-strong: #ffffff;
  --muted: #d9dde5;
  --platinum: #e6ebf2;
}
.hero-image-background .media-frame { display: none; }
.hero-industry-immersive {
  background-image:
    linear-gradient(90deg, rgba(0, 2, 3, .94) 0%, rgba(0, 2, 3, .76) 44%, rgba(0, 2, 3, .34) 100%),
    linear-gradient(180deg, rgba(255, 81, 56, .12), rgba(0, 2, 3, .34) 42%, rgba(0, 2, 3, .72)),
    var(--hero-bg-image);
}
/*--------------------------------------------*/
#video_box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* Black overlay with 50% opacity */
  z-index: 1; /* Sits directly on top of the video */
}
.home {
    position: relative;
}
.home-content {
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;
    color: #fff;
    text-align: center;
	width: 100%;	
	z-index: 2;
}
#herowrap {
	max-width: 1400px;
   margin:0 10px;
   display: flex !important; 
}
#left_col {
   width:50%;
	line-height: .92;
    color: var(--text);
text-align: left;
	margin: 0 0 40px 0;
}
#right_col {
   width:50%; 
   padding: 60px;
margin-left: 30px;
	margin-top: 10%;
}

#herowrap h1 {
    font-size: 5.6rem;
 font-weight: 400 !important;
  font-family: var(--font-display);
	color:#ffffff;
	margin: 10px 0;
}
#herowrap p {
font-size: 1.16rem;
line-height: 1.6;
color: #ffffff;
}
video {
    position: absolute;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
/*---------------------------------------------*/






.industry-hero {
  background-image: var(--industry-hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
:root[data-theme="night"] .industry-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 6, 8, .94) 0%, rgba(3, 6, 8, .76) 42%, rgba(3, 6, 8, .28) 100%),
    linear-gradient(to bottom, rgba(3, 6, 8, .18), rgba(3, 6, 8, .56)),
    var(--industry-hero-image);
}
:root[data-theme="day"] .industry-hero {
  background-image: linear-gradient(90deg, rgba(241, 242, 248, 0.9) 0%, rgba(241, 242, 248, 0.68) 40%, rgba(248, 246, 241, .12) 100%), linear-gradient(to bottom, rgba(242, 241, 248, 0.08), rgba(242, 241, 248, 0.3)), var(--industry-hero-image);
}
:root[data-theme="day"] .industry-hero .hero-copy {
  --text: #111827;
  --text-strong: #030608;
  --muted: #374151;
  --platinum: #1f2937;
}
.hero-industry-immersive h1 { max-width: 940px; }
.hero-industry-immersive p { max-width: 760px; }
.hero-industries-hub {
  background-image:
    linear-gradient(90deg, rgba(0, 2, 3, .94) 0%, rgba(0, 2, 3, .66) 44%, rgba(0, 2, 3, .10) 76%, rgba(0, 2, 3, .34) 100%),
    linear-gradient(180deg, rgba(255, 81, 56, .08), rgba(0, 2, 3, .08) 46%, rgba(0, 2, 3, .38)),
    var(--hero-bg-image);
  background-position: center center;
}
.hero-region-immersive {
  max-width: none;
  min-height: calc(100vh - 78px);
  margin: 0;
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  grid-template-columns: minmax(0, 760px) minmax(280px, 440px);
  gap: clamp(44px, 8vw, 112px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background-image: var(--region-hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.region-hero { background-repeat: no-repeat; }
:root[data-theme="night"] .region-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 6, 8, .95) 0%, rgba(3, 6, 8, .78) 40%, rgba(3, 6, 8, .32) 100%),
    linear-gradient(to bottom, rgba(3, 6, 8, .18), rgba(3, 6, 8, .54)),
    var(--region-hero-image);
}
:root[data-theme="day"] .region-hero {
    background-image: linear-gradient(90deg, rgba(242, 241, 248, 0.92) 0%, rgba(242, 241, 248, 0.7) 42%, rgba(248, 246, 241, .18) 100%), linear-gradient(to bottom, rgba(241, 241, 248, 0.08), rgba(241, 242, 248, 0.3)), var(--region-hero-image);
}
:root[data-theme="day"] .region-hero .hero-copy {
  --text: #111827;
  --text-strong: #030608;
  --muted: #374151;
  --platinum: #1f2937;
}
.hero-region-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--grid-line-x) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line-y) 1px, transparent 1px);
  background-size: 96px 96px;
}
.hero-region-immersive h1 {
  max-width: 760px;
  font-size: 5.45rem;
  line-height: .94;
}
.hero-region-immersive p { max-width: 660px; }
.hero-region-immersive .hero-copy {
  position: relative;
  z-index: 1;
}
.hero-region-immersive .media-frame {
  width: min(34vw, 440px);
  min-height: 0;
  aspect-ratio: 949 / 1658;
  justify-self: end;
  align-self: center;
  border-color: var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58), 0 0 0 1px rgba(255, 255, 255, .04);
}
.hero-region-immersive .media-frame::before {
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 24%, rgba(0,0,0,.24));
  z-index: 2;
}
.hero-region-immersive .media-frame > img {
  object-fit: cover;
  object-position: center center;
}
.hero h1 {
  margin: 14px 0 22px;
  max-width: 920px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 6.7rem;
  line-height: .92;
  color: var(--text);
  letter-spacing: 0;
}
.hero:not(.hero-home) h1 { font-size: 6.25rem; }
.hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.16rem; overflow-wrap: break-word; }
.hero-home { padding-top: 96px; padding-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.video-module, .media-frame {
  min-height: 323px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--coral) 18%, transparent), transparent 32%),
    repeating-linear-gradient(90deg, var(--media-grid) 0 1px, transparent 1px 32px),
    linear-gradient(180deg, var(--panel-2), var(--bg-deep));
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 30px 90px rgba(0,0,0,.35);
}
.video-module::before, .media-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--media-outline);
  border-radius: 6px;
  pointer-events: none;
}
.video-fallback, .media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 28px;
  color: var(--text);
}
.homeimg {
padding: 20px 0;
}
.fallback-kicker { color: var(--coral); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.media-fallback strong, .video-fallback strong { font-family: var(--font-display); font-weight: 400; font-size: 2.7rem; line-height: 1; }
.media-fallback span:last-child, .video-fallback span:last-child { color: var(--muted); font-family: var(--font-mono); font-size: .74rem; overflow-wrap: anywhere; }
.media-frame > img, .video-module video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
body[data-page="region"] .hero .media-frame > img {
  object-fit: contain;
  object-position: center center;
  background: #020506;
}
body[data-page="region"] .hero .media-frame {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--coral) 12%, transparent), transparent 34%),
    linear-gradient(180deg, var(--panel-2), var(--bg-deep));
}
.has-media .media-fallback, .has-video .video-fallback { display: none; }

.proof-bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 44px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}
.proof-bar article {
  min-height: 126px;
  padding: 18px;
  background: var(--soft-bg);
  border: 1px solid var(--line-soft);
}
.proof-bar span { display: block; width: 28px; height: 2px; background: var(--coral); margin-bottom: 20px; }
.proof-bar p { margin: 0; color: var(--platinum); font-size: .88rem; }
.section { max-width: 1280px; margin: 0 auto; padding: clamp(58px, 8vw, 40px) 32px; }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section-heading h2, .closing-cta h2, .footer-cta h2 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--text);
  font-size: 4.4rem;
}
.section-heading p { color: var(--muted); font-size: 1.02rem; max-width: 760px; }
.card-grid, .product-grid, .founder-grid, .link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card, .product-card, .founder-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--card-bg);
}
.feature-card h3, .product-card h3, .founder-card h3 { margin: 0 0 12px; color: var(--text); font-size: 1.08rem; letter-spacing: 0; }
.feature-card p, .product-card p, .founder-card p { margin: 0; color: var(--muted); }
.card-index { display: block; width: 34px; height: 1px; background: var(--coral); margin-bottom: 34px; }
.contact-location-card { min-height: 300px; }
.contact-region {
  display: inline-flex;
  margin: -16px 0 16px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.protected-contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.protected-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.protected-contact-button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: var(--button-soft-bg);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.protected-contact-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.protected-contact-button:hover,
.protected-contact-button:focus-visible,
.protected-contact.is-revealed .protected-contact-button {
  color: var(--coral);
  border-color: var(--coral);
  background: color-mix(in srgb, var(--coral) 10%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 0 22px var(--glow-coral);
}
.protected-contact-value {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.protected-contact-value a {
  color: var(--text);
  border-bottom: 1px solid var(--coral);
}
.protected-contact-value a:hover,
.protected-contact-value a:focus-visible { color: var(--coral); }
.text-link { display: inline-flex; margin-top: 22px; color: var(--text); font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid var(--coral); }
.text-link:hover, .text-link:focus-visible { color: var(--coral); }
.product-media { min-height: 220px; margin: -8px -8px 20px; }
.product-card { padding: 16px; }
.table-wrap { overflow-x: auto; margin-top: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--soft-bg-2); }
table { width: 100%; min-width: 820px; border-collapse: collapse; }
caption { text-align: left; padding: 18px; color: var(--text); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
th, td { padding: 16px; border-top: 1px solid var(--line-soft); color: var(--muted); vertical-align: top; text-align: left; }
th { color: var(--platinum); font-weight: 600; }
thead th { background: var(--soft-bg); color: var(--text); }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: 8px; background: var(--soft-bg); padding: 0 20px; }
.faq-item summary { cursor: pointer; padding: 18px 0; color: var(--text); font-weight: 600; }
.faq-item p { margin: 0; padding: 0 0 20px; color: var(--muted); }
.internal-links .link-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.link-grid a { padding: 18px; border: 1px solid var(--line-soft); border-radius: 8px; color: var(--platinum); background: var(--soft-bg-2); }
.link-grid a:hover, .link-grid a:focus-visible { border-color: var(--coral); color: var(--text-strong); }
.closing-cta, .footer-cta {
  max-width: 1280px;
  margin: 30px auto clamp(70px, 8vw, 120px);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--coral) 14%, transparent), var(--soft-bg) 40%, var(--soft-bg-2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.closing-cta p, .footer-cta p { color: var(--muted); max-width: 720px; }
.cta-stack { display: grid; gap: 10px; min-width: 260px; }
.tool-grid, .static-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft-bg);
}
label { display: grid; gap: 8px; color: var(--platinum); font-size: .9rem; }
input, textarea {
  width: 100%;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
}
input:focus, textarea:focus { border-color: var(--coral); }
.wide, .tool-output { grid-column: 1 / -1; }
.tool-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.tool-reset { min-width: 150px; }
.tool-output {
  display: grid;
  gap: 4px;
  padding: 24px;
  border: 1px solid rgba(255,81,56,.45);
  border-radius: 8px;
  background: color-mix(in srgb, var(--coral) 10%, var(--surface));
}
.tool-output span, .tool-output small { color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.tool-output strong { font-family: var(--font-display); font-size: 4.6rem; line-height: 1; font-weight: 400; color: var(--text); }
.elevated-card,
.radiant-hover,
.interactive-surface,
.feature-card,
.product-card,
.founder-card,
.proof-bar article,
.faq-item,
.link-grid a,
.tool-grid,
.static-form,
.tool-output,
.table-wrap,
.closing-cta,
.footer-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: var(--line-soft);
  transition:
    transform var(--card-transition),
    border-color var(--card-transition),
    box-shadow var(--card-transition),
    background var(--card-transition);
  will-change: transform;
}
.elevated-card::before,
.radiant-hover::before,
.interactive-surface::before,
.feature-card::before,
.product-card::before,
.founder-card::before,
.proof-bar article::before,
.faq-item::before,
.link-grid a::before,
.tool-grid::before,
.static-form::before,
.tool-output::before,
.table-wrap::before,
.closing-cta::before,
.footer-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--card-transition);
  background:
    radial-gradient(
      520px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      var(--glow-coral),
      transparent 42%
    );
}
.elevated-card::after,
.radiant-hover::after,
.interactive-surface::after,
.feature-card::after,
.product-card::after,
.founder-card::after,
.proof-bar article::after,
.faq-item::after,
.link-grid a::after,
.tool-grid::after,
.static-form::after,
.tool-output::after,
.table-wrap::after,
.closing-cta::after,
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity var(--card-transition), transform 420ms ease;
  background:
    linear-gradient(
      135deg,
      transparent 0%,
      var(--glow-platinum) 46%,
      transparent 72%
    );
}
.elevated-card > *,
.radiant-hover > *,
.interactive-surface > *,
.feature-card > *,
.product-card > *,
.founder-card > *,
.proof-bar article > *,
.faq-item > *,
.tool-grid > *,
.static-form > *,
.tool-output > *,
.table-wrap > *,
.closing-cta > *,
.footer-cta > * {
  position: relative;
  z-index: 1;
}
.elevated-card:hover,
.radiant-hover:hover,
.interactive-surface:hover,
.feature-card:hover,
.product-card:hover,
.founder-card:hover,
.proof-bar article:hover,
.faq-item:hover,
.link-grid a:hover,
.tool-grid:hover,
.static-form:hover,
.tool-output:hover,
.table-wrap:hover,
.closing-cta:hover,
.footer-cta:hover,
.elevated-card:focus-within,
.radiant-hover:focus-within,
.interactive-surface:focus-within,
.feature-card:focus-within,
.product-card:focus-within,
.founder-card:focus-within,
.proof-bar article:focus-within,
.faq-item:focus-within,
.link-grid a:focus-visible,
.tool-grid:focus-within,
.static-form:focus-within,
.tool-output:focus-within,
.table-wrap:focus-within,
.closing-cta:focus-within,
.footer-cta:focus-within {
  transform: var(--card-lift);
  border-color: var(--coral);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .18),
    0 0 0 1px rgba(255, 255, 255, .035),
    0 0 36px var(--glow-coral);
}
:root[data-theme="day"] .elevated-card:hover,
:root[data-theme="day"] .radiant-hover:hover,
:root[data-theme="day"] .interactive-surface:hover,
:root[data-theme="day"] .feature-card:hover,
:root[data-theme="day"] .product-card:hover,
:root[data-theme="day"] .founder-card:hover,
:root[data-theme="day"] .proof-bar article:hover,
:root[data-theme="day"] .faq-item:hover,
:root[data-theme="day"] .link-grid a:hover,
:root[data-theme="day"] .tool-grid:hover,
:root[data-theme="day"] .static-form:hover,
:root[data-theme="day"] .tool-output:hover,
:root[data-theme="day"] .table-wrap:hover,
:root[data-theme="day"] .closing-cta:hover,
:root[data-theme="day"] .footer-cta:hover,
:root[data-theme="day"] .elevated-card:focus-within,
:root[data-theme="day"] .radiant-hover:focus-within,
:root[data-theme="day"] .interactive-surface:focus-within,
:root[data-theme="day"] .feature-card:focus-within,
:root[data-theme="day"] .product-card:focus-within,
:root[data-theme="day"] .founder-card:focus-within,
:root[data-theme="day"] .proof-bar article:focus-within,
:root[data-theme="day"] .faq-item:focus-within,
:root[data-theme="day"] .link-grid a:focus-visible,
:root[data-theme="day"] .tool-grid:focus-within,
:root[data-theme="day"] .static-form:focus-within,
:root[data-theme="day"] .tool-output:focus-within,
:root[data-theme="day"] .table-wrap:focus-within,
:root[data-theme="day"] .closing-cta:focus-within,
:root[data-theme="day"] .footer-cta:focus-within {
  box-shadow:
    0 18px 38px rgba(17, 24, 39, .12),
    0 0 0 1px rgba(3, 6, 8, .035),
    0 0 24px var(--glow-coral);
}
.elevated-card:hover::before,
.radiant-hover:hover::before,
.interactive-surface:hover::before,
.feature-card:hover::before,
.product-card:hover::before,
.founder-card:hover::before,
.proof-bar article:hover::before,
.faq-item:hover::before,
.link-grid a:hover::before,
.tool-grid:hover::before,
.static-form:hover::before,
.tool-output:hover::before,
.table-wrap:hover::before,
.closing-cta:hover::before,
.footer-cta:hover::before,
.elevated-card:hover::after,
.radiant-hover:hover::after,
.interactive-surface:hover::after,
.feature-card:hover::after,
.product-card:hover::after,
.founder-card:hover::after,
.proof-bar article:hover::after,
.faq-item:hover::after,
.link-grid a:hover::after,
.tool-grid:hover::after,
.static-form:hover::after,
.tool-output:hover::after,
.table-wrap:hover::after,
.closing-cta:hover::after,
.footer-cta:hover::after,
.elevated-card:focus-within::before,
.radiant-hover:focus-within::before,
.interactive-surface:focus-within::before,
.feature-card:focus-within::before,
.product-card:focus-within::before,
.founder-card:focus-within::before,
.proof-bar article:focus-within::before,
.faq-item:focus-within::before,
.link-grid a:focus-visible::before,
.tool-grid:focus-within::before,
.static-form:focus-within::before,
.tool-output:focus-within::before,
.table-wrap:focus-within::before,
.closing-cta:focus-within::before,
.footer-cta:focus-within::before,
.elevated-card:focus-within::after,
.radiant-hover:focus-within::after,
.interactive-surface:focus-within::after,
.feature-card:focus-within::after,
.product-card:focus-within::after,
.founder-card:focus-within::after,
.proof-bar article:focus-within::after,
.faq-item:focus-within::after,
.link-grid a:focus-visible::after,
.tool-grid:focus-within::after,
.static-form:focus-within::after,
.tool-output:focus-within::after,
.table-wrap:focus-within::after,
.closing-cta:focus-within::after,
.footer-cta:focus-within::after {
  opacity: 1;
}
.elevated-card:hover::after,
.radiant-hover:hover::after,
.interactive-surface:hover::after,
.feature-card:hover::after,
.product-card:hover::after,
.founder-card:hover::after,
.proof-bar article:hover::after,
.faq-item:hover::after,
.link-grid a:hover::after,
.tool-grid:hover::after,
.static-form:hover::after,
.tool-output:hover::after,
.table-wrap:hover::after,
.closing-cta:hover::after,
.footer-cta:hover::after,
.elevated-card:focus-within::after,
.radiant-hover:focus-within::after,
.interactive-surface:focus-within::after,
.feature-card:focus-within::after,
.product-card:focus-within::after,
.founder-card:focus-within::after,
.proof-bar article:focus-within::after,
.faq-item:focus-within::after,
.link-grid a:focus-visible::after,
.tool-grid:focus-within::after,
.static-form:focus-within::after,
.tool-output:focus-within::after,
.table-wrap:focus-within::after,
.closing-cta:focus-within::after,
.footer-cta:focus-within::after {
  transform: translateX(0);
}
.glass-panel {
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(16px);
}
.magnetic-lite { transition: transform 180ms ease, box-shadow 180ms ease; }
.magnetic-lite:hover,
.magnetic-lite:focus-visible { transform: translateY(-2px); }
.form-status { grid-column: 1 / -1; margin: 0; min-height: 1.5em; color: var(--amber); }
.founder-card { text-align: left; }
.founder-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  background: linear-gradient(145deg, var(--panel-3), var(--bg-deep));
  border: 1px solid rgba(255,81,56,.55);
  color: var(--platinum);
  font-family: var(--font-display);
  font-size: 2.1rem;
}
.founder-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}
.founder-photo span { position: relative; z-index: 2; }
.founder-photo.has-media span { display: none; }
.founder-photo-vikas-chauhan img { object-position: center 30%; }
.founder-photo-venkatesh-prabhu img { object-position: center 34%; }
.founder-role { color: var(--coral) !important; font-family: var(--font-mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px !important; }
.founder-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: var(--button-soft-bg);
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.founder-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.founder-social-link:hover,
.founder-social-link:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
  background: color-mix(in srgb, var(--coral) 10%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--glow-coral);
}
.site-footer {
  border-top: 1px solid var(--footer-line);
  background:
    linear-gradient(180deg, var(--footer-soft), transparent 18rem),
    var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(64px, 8vw, 104px) 32px 30px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.32fr) repeat(5, minmax(132px, 1fr));
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: start;
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand .brand-logo { width: 250px; height: 70px; }
.footer-brand-line {
  margin: 0 0 10px;
  color: var(--footer-text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.08;
}
.footer-brand-secondary,
.footer-ownership,
.footer-bottom-meta p {
  color: var(--footer-muted);
}
.footer-brand-secondary {
  margin: 0 0 16px;
  font-size: .95rem;
  line-height: 1.6;
}
.footer-ownership { margin: 0; font-size: .86rem; }
.footer-ownership a,
.footer-bottom-meta a { color: var(--footer-text); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-heading {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  color: var(--footer-text);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-link,
.footer-col a,
.footer-cookie-button {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: .88rem;
}
.footer-link:hover,
.footer-link:focus-visible,
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--coral);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--footer-line);
  border-radius: 999px;
  color: var(--footer-muted);
  background: transparent;
  transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease;
}
.social-icon svg { width: 17px; height: 17px; fill: currentColor; }
.social-icon:hover,
.social-icon:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
  background: color-mix(in srgb, var(--coral) 10%, transparent);
  transform: translateY(-1px);
}
.footer-bottom {
  max-width: 1440px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--footer-line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-cookie-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.footer-bottom-meta {
  display: grid;
  gap: 4px;
  text-align: right;
  min-width: 260px;
}
.footer-bottom-meta p { margin: 0; font-size: .84rem; }
.legal-grid { align-items: stretch; }
.legal-card .text-link + .text-link { margin-left: 14px; }
.cookie-modal[hidden] { display: none; }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}
body.cookie-modal-open { overflow: hidden; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(8px);
}
.cookie-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .42);
}
.cookie-dialog h2 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 400;
}
.cookie-dialog p { color: var(--muted); }
.cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--button-soft-bg);
  color: var(--text);
  cursor: pointer;
}
.cookie-close::before,
.cookie-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.cookie-close::before { transform: rotate(45deg); }
.cookie-close::after { transform: rotate(-45deg); }
.cookie-form { display: grid; gap: 12px; margin-top: 22px; }
.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--soft-bg);
}
.cookie-option strong { display: block; color: var(--text); margin-bottom: 4px; }
.cookie-option small { display: block; color: var(--muted); line-height: 1.45; }
.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--coral);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
/*--------------------------------*/
.hero-home {
		display: none;
	}
.mobhead {
   font-size: 3.05rem;
    line-height: .96;
    font-family: var(--font-display);
	font-weight: 300;
}

/*--------------------------------*/
.cookie-status { margin: 2px 0 0; min-height: 1.4em; font-family: var(--font-mono); font-size: .76rem; }

@media (max-width: 1200px) {
  body { padding-top: 78px; }
  .desktop-nav, .btn-header, .theme-toggle-desktop { display: none; }
  .header-inner { justify-content: space-between; }
  .nav-toggle { display: inline-flex; }
  body.mobile-menu-open { overflow: hidden; }
  .mobile-menu-backdrop {
    position: fixed;
    inset: 78px 0 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .44);
    backdrop-filter: blur(8px);
  }
  .mobile-menu-backdrop[hidden] { display: none; }
  .mobile-menu {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1002;
    width: min(440px, 100vw);
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 18px 24px 34px;
    background: var(--mobile-menu-bg);
    border-left: 1px solid var(--line);
    box-shadow: -28px 0 80px rgba(0,0,0,.34);
  }
  body.mobile-menu-open .mobile-menu { display: block; }
  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-menu-top .brand-logo { width: 168px; height: 48px; }
  .mobile-menu-close {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--button-soft-bg);
    color: var(--text);
    cursor: pointer;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible { color: var(--coral); border-color: var(--coral); }
  .mobile-menu-close span::before,
  .mobile-menu-close span::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 21px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }
  .mobile-menu-close span::before { transform: rotate(45deg); }
  .mobile-menu-close span::after { transform: rotate(-45deg); }
  .mobile-accordion { border: 1px solid var(--line-soft); border-radius: 8px; margin-bottom: 10px; background: var(--soft-bg); }
  .mobile-accordion summary { padding: 16px; cursor: pointer; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
  .mobile-accordion-panel { display: grid; gap: 4px; padding: 0 16px 16px; }
  .mobile-accordion-panel a { padding: 11px 0; color: var(--muted); }
  .mobile-menu-actions { margin-top: 18px; }
  .mobile-menu-actions .theme-toggle {
    margin-bottom: 14px;
  }
  .hero { grid-template-columns: 1fr; }
  .hero-image-background {
    min-height: auto;
    padding-left: 32px;
    padding-right: 32px;
    background-position: center center;
  }
  .hero-region-immersive {
    min-height: auto;
    padding-left: 32px;
    padding-right: 32px;
    grid-template-columns: minmax(0, 1fr);
    background-position: center center;
  }
  .hero-region-immersive h1 { font-size: 4.35rem; }
  .hero-region-immersive .media-frame {
    width: min(62vw, 360px);
    justify-self: start;
  }
  .hero-home { min-height: auto; }
  .hero h1 { font-size: 5.05rem; }
  .hero:not(.hero-home) h1 { font-size: 4.85rem; }
  .section-heading h2, .closing-cta h2, .footer-cta h2 { font-size: 3.45rem; }
  .media-fallback strong, .video-fallback strong { font-size: 2.35rem; }
  .tool-output strong { font-size: 3.7rem; }
  .proof-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(150px, 1fr)); }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-meta { text-align: left; min-width: 0; }
	/*-----------------------------------------*/
	#herowrap h1 {
    font-size: 3.25rem;
    font-weight: 400 !important;
    font-family: var(--font-display);
}
	#herowrap {
   margin:0 30px;
   display: block !important; 
}
	#left_col {
    width: 100% !important;
	}
	#right_col {
    width: 100% !important;
	margin-top: 0;
	padding: 10px;
}
	/*-----------------------------------------*/
}

@media (max-width: 760px) {
  body { padding-top: 68px; }
  .header-inner { min-height: 68px; padding: 0 18px; gap: 10px; }
  .header-actions { margin-left: auto; }
  .brand-logo { width: 150px; height: 44px; }
  .brand-word { font-size: .8rem; }
  .mobile-menu-backdrop { inset: 68px 0 0; }
  .mobile-menu {
    top: 68px;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    max-height: calc(100vh - 68px);
    padding: 16px 18px 28px;
  }
  .breadcrumbs, .hero, .section, .proof-bar, .site-footer { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 54px; }
  .hero-image-background {
    padding-top: 72px;
    padding-bottom: 72px;
    background-image:
      linear-gradient(180deg, rgba(0, 2, 3, .86), rgba(0, 2, 3, .70)),
      var(--hero-bg-image);
  }
  :root[data-theme="night"] .industry-hero {
    background-image:
      linear-gradient(180deg, rgba(3, 6, 8, .84), rgba(3, 6, 8, .66)),
      var(--industry-hero-image);
  }
  :root[data-theme="day"] .industry-hero {
    background-image: linear-gradient(90deg, rgba(241, 242, 248, 0.9) 0%, rgba(241, 242, 248, 0.68) 40%, rgba(248, 246, 241, .12) 100%), linear-gradient(to bottom, rgba(242, 241, 248, 0.08), rgba(242, 241, 248, 0.3)), var(--industry-hero-image);
}
  .hero-region-immersive {
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 28px;
    background-size: cover;
    background-position: center center;
  }
  .hero-region-immersive .media-frame {
    width: min(76vw, 320px);
    justify-self: center;
  }
  .hero h1, .hero:not(.hero-home) h1 { font-size: 3.05rem; line-height: .96; overflow-wrap: break-word; }
  .hero p { font-size: 1rem; }
  .section-heading h2, .closing-cta h2, .footer-cta h2 { font-size: 2.55rem; }
  .media-fallback strong, .video-fallback strong { font-size: 2rem; }
  .tool-output strong { font-size: 3rem; }
  .video-module, .media-frame { min-height: 323px; }
  .proof-bar, .card-grid, .product-grid, .founder-grid, .internal-links .link-grid, .tool-grid, .static-form { grid-template-columns: 1fr; }
  .closing-cta, .footer-cta { grid-template-columns: 1fr; margin-left: 18px; margin-right: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { max-width: none; }
  .footer-brand .brand-logo { width: 210px; height: 60px; }
  .footer-bottom-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
  .cookie-dialog { padding: 24px 18px; }
  .cookie-option { grid-template-columns: 1fr; }
	
/*--------------------------------------*/
.home-content {
    position: relative;
    padding-top: 50px;
	padding-bottom: 10px;
    color: #fff;
    text-align: center;
	width: 100%;
	background: #00000029;
}

#herowrap {
   margin:0 10px;
   display: block !important; 
}
#left_col {
 width:100%;
 line-height: .92;
 color: var(--text);
 text-align: left;
 margin: 0;
 padding-left: 0px;
}
#right_col {
   width:100%; 
   padding: 10px;
	margin: 0 0 60px 0;
	height: 120px;
}
#herowrap h1 {
    font-size: 3.15rem;
    font-weight: 400 !important;
    font-family: var(--font-display);
}
	video {
    position: absolute;
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
	.hero-home {
		display:contents;
	}
	.hero-copy {
		margin: 20px !important; }
	.mobview {display: none; }

.homeimg {
    padding: 20px 0;
}
/*--------------------------------------*/
}

@media (max-width: 420px) {
  .hero h1, .hero:not(.hero-home) h1 { font-size: 2.55rem; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .brand-logo { width: 138px; }
  .nav-toggle { inline-size: 44px; block-size: 44px; }
  .footer-bottom-links { grid-template-columns: 1fr; }
   #herowrap h1 {font-size: 2.55em; }
	video {object-fit:fill; }
   #herowrap p {font-size: 1rem; }
  .homeimg {display: none; }
}

@media (max-width: 360px) {
	/*--------------------------------------*/
	#herowrap h1 {font-size: 2.55em;}
	#left_col {margin: 0 5px; padding-left: 0px; s}	
   #herowrap p {font-size: 1rem; }
  .homeimg {display: none; }
	#right_col {
	height: 120px;
}
/*--------------------------------------*/
}

@media (max-width: 340px) {
  .hero h1, .hero:not(.hero-home) 
	h1 { font-size: 2.34rem; }	
  .homeimg {display: none; }
   #herowrap p {font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .site-cursor-glow { display: none; }
  .elevated-card:hover,
  .radiant-hover:hover,
  .interactive-surface:hover,
  .feature-card:hover,
  .product-card:hover,
  .founder-card:hover,
  .proof-bar article:hover,
  .faq-item:hover,
  .link-grid a:hover,
  .tool-grid:hover,
  .static-form:hover,
  .tool-output:hover,
  .table-wrap:hover,
  .closing-cta:hover,
  .footer-cta:hover,
  .elevated-card:focus-within,
  .radiant-hover:focus-within,
  .interactive-surface:focus-within,
  .feature-card:focus-within,
  .product-card:focus-within,
  .founder-card:focus-within,
  .proof-bar article:focus-within,
  .faq-item:focus-within,
  .link-grid a:focus-visible,
  .tool-grid:focus-within,
  .static-form:focus-within,
  .tool-output:focus-within,
  .table-wrap:focus-within,
  .closing-cta:focus-within,
  .footer-cta:focus-within {
    transform: none;
  }
}
