/* ─── HOME PAGE — page-specific styles only ────────
   Global reset, typography, utilities → global.css
   Nav, footer, buttons, cards         → components.css
   Design tokens                       → variables.css

   Ported from the React "premium home" build
   (enestock-main-updated/src/home-premium.css). The
   home page has its own self-contained design system
   (eh- prefixed classes) distinct from the shared
   site-nav / site-footer used on every other page —
   that split is intentional in the source design, not
   a bug. Scope root is <body class="premium-home">.  */

.premium-home {
  --eh-blue: #163883;
  --eh-blue-deep: #0c214e;
  --eh-blue-bright: #2257b5;
  --eh-blue-pale: #dce8fb;
  --eh-canvas: #f5f7fb;
  --eh-ink: #182033;
  --eh-muted: #68738a;
  --eh-line: #dce3ef;
  --eh-white: #fff;
  background: var(--eh-canvas);
  color: var(--eh-ink);
  font-family: var(--font);
  overflow: clip;
}

.premium-home *, .premium-home *::before, .premium-home *::after { box-sizing: border-box; }
.premium-home h1, .premium-home h2, .premium-home h3, .premium-home p { margin: 0; }
.premium-home h1, .premium-home h2, .premium-home h3 { color: inherit; }
.premium-home a { color: inherit; }
.eh-shell { width: min(100% - 48px, 1408px); margin-inline: auto; }
.eh-section { padding: 132px 0; }

.eh-eyebrow {
  color: var(--eh-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  margin-bottom: 18px !important;
  text-transform: uppercase;
}
.eh-eyebrow--light { color: rgba(255,255,255,.78); }

.eh-section-head { margin-bottom: 58px; max-width: 850px; }
.eh-section-head h2,
.eh-intro h2,
.eh-impact h2 {
  color: var(--eh-ink);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .99;
}
.eh-section-head--split {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  max-width: none;
}
.eh-section-head--split > p { color: var(--eh-muted); font-size: 18px; line-height: 1.65; padding-bottom: 5px; }

.eh-pill {
  align-items: center;
  align-self: start;
  background: var(--eh-blue-deep);
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 18px;
  justify-self: start;
  max-width: 100%;
  padding: 7px 7px 7px 22px;
  transition: background .25s ease, transform .25s ease;
  width: fit-content;
}
.eh-pill:hover { background: var(--eh-blue-bright); transform: translateY(-2px); }
.eh-pill__icon {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--eh-blue-deep);
  display: inline-flex;
  font-size: 18px;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.eh-pill--light { background: #fff; color: var(--eh-blue-deep) !important; }
.eh-pill--light .eh-pill__icon { background: var(--eh-blue-deep); color: #fff; }
.eh-pill--light:hover { background: var(--eh-blue-pale); }

/* Header */
.eh-nav {
  left: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), background .25s ease;
  will-change: transform;
  z-index: 1000;
}
.eh-nav.is-hidden { transform: translateY(-102%); }
.eh-nav .eh-shell { max-width: none; width: 100%; }
.eh-nav__inner {
  align-items: center;
  background: linear-gradient(110deg, rgba(255,255,255,.38), rgba(255,255,255,.18));
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  box-shadow: 0 10px 38px rgba(4,17,43,.12), inset 0 1px 0 rgba(255,255,255,.5);
  display: flex;
  min-height: 76px;
  padding: 10px clamp(18px, 3vw, 48px);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
  transition: box-shadow .25s ease, background .25s ease;
}
.eh-nav.is-scrolled { padding-top: 0; }
.eh-nav.is-scrolled .eh-nav__inner {
  background: linear-gradient(110deg, rgba(255,255,255,.74), rgba(244,248,255,.58));
  border-bottom-color: rgba(255,255,255,.68);
  box-shadow: 0 12px 42px rgba(12,33,78,.14), inset 0 1px 0 rgba(255,255,255,.72);
}
.eh-brand { align-items: center; display: inline-flex; flex: 0 0 auto; }
.eh-brand img { height: 45px; object-fit: contain; width: auto; }
.eh-menu { align-items: center; display: flex; gap: 2px; margin: 0 auto; }
.eh-menu a { border-radius: 999px; color: #34405a; font-size: 14px; font-weight: 600; padding: 10px 14px; transition: background .2s, color .2s; }
.eh-menu a:hover { background: var(--eh-blue-pale); color: var(--eh-blue); }
.eh-nav__cta { align-items: center; background: var(--eh-blue-deep); border-radius: 999px; color: #fff !important; display: inline-flex; font-size: 14px; font-weight: 600; gap: 12px; padding: 12px 18px; transition: background .2s, transform .2s; }
.eh-nav__cta:hover { background: var(--eh-blue-bright); transform: translateY(-1px); }
.eh-menu-toggle { background: none; border: 0; display: none; flex-direction: column; gap: 5px; padding: 10px; }
.eh-menu-toggle span { background: var(--eh-ink); border-radius: 2px; display: block; height: 2px; transition: transform .25s, opacity .25s; width: 23px; }
.eh-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eh-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.eh-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.eh-hero { align-items: flex-end; background: #071329; display: flex; min-height: 100svh; overflow: hidden; position: relative; }
.eh-hero__media, .eh-hero__video, .eh-hero__veil { inset: 0; position: absolute; }
.eh-hero__video { height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; width: 100%; }
.eh-hero__video.is-active { opacity: .96; }
.eh-hero__veil {
  background:
    linear-gradient(90deg, rgba(4,13,33,.7) 0%, rgba(4,13,33,.26) 52%, rgba(4,13,33,.15) 100%),
    linear-gradient(180deg, rgba(4,13,33,.15) 10%, transparent 45%, rgba(4,13,33,.66) 100%);
}
.eh-hero__inner { align-items: end; display: flex; justify-content: space-between; padding-bottom: 78px; position: relative; z-index: 2; }
.eh-hero__copy { color: #fff; max-width: 850px; }
.eh-hero__copy h1 { color: #fff; font-size: clamp(48px, 6.4vw, 96px); font-weight: 400; letter-spacing: -.052em; line-height: .91; margin-bottom: 36px; text-shadow: 0 5px 35px rgba(0,0,0,.2); }
.eh-hero__copy { animation: eh-copy-in .55s ease both; }
@keyframes eh-copy-in { from { opacity: 0; transform: translateY(14px); } }
.eh-hero-next {
  background: rgba(8,22,51,.52);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  color: #fff;
  flex: 0 0 340px;
  padding: 12px;
  text-align: left;
  transition: background .25s, transform .25s;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.eh-hero-next:hover, .eh-hero-next:focus-within { background: rgba(8,22,51,.76); transform: translateY(-3px); }
.eh-hero-next__main { align-items: center; background: none; border: 0; color: #fff; display: flex; gap: 16px; padding: 0; text-align: left; width: 100%; }
.eh-hero-next__main:focus-visible { border-radius: 12px; outline: 2px solid #fff; outline-offset: 3px; }
.eh-hero-next__main > img { background: #dce8fb; border-radius: 12px; height: 82px; object-fit: cover; width: 82px; }
.eh-hero-next__copy { display: flex; flex: 1; flex-direction: column; gap: 4px; min-width: 0; }
.eh-hero-next small { color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .06em; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.eh-hero-next strong { color: #fff; font-size: 18px; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.eh-hero-dots { display: flex; gap: 5px; margin: 9px 0 0 98px; }
.eh-hero-dots > button { background: rgba(255,255,255,.3); border: 0; border-radius: 99px; display: block; height: 3px; padding: 0; transition: background .25s, width .25s; width: 24px; }
.eh-hero-dots > button.is-active { background: #fff; width: 34px; }
.eh-hero__scroll { align-items: center; bottom: 24px; color: rgba(255,255,255,.65); display: flex; font-size: 10px; gap: 10px; left: 50%; letter-spacing: .14em; position: absolute; text-transform: uppercase; transform: translateX(-50%); z-index: 3; }
.eh-hero__scroll span { animation: eh-scroll 1.6s ease-in-out infinite; background: #fff; display: block; height: 1px; transform-origin: left; width: 38px; }
@keyframes eh-scroll { 50% { opacity: .35; transform: scaleX(.5); } }

/* Scroll-controlled product sequence */
.eh-sequence {
  background: #071326;
  color: #fff;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}
.eh-sequence__poster,
.eh-sequence__canvas,
.eh-sequence__shade { inset: 0; position: absolute; }
.eh-sequence__poster {
  background: #071326 url('../../../image-sequence-optimized/frame_001.jpg') center / cover no-repeat;
  filter: saturate(.92) contrast(1.03);
}
.eh-sequence__canvas {
  height: 100%;
  opacity: 0;
  transition: opacity .45s ease;
  width: 100%;
}
.eh-sequence.is-ready .eh-sequence__canvas { opacity: 1; }
.eh-sequence__shade {
  background:
    linear-gradient(90deg, rgba(4,13,29,.86) 0%, rgba(4,13,29,.48) 31%, rgba(4,13,29,.08) 58%, rgba(4,13,29,.36) 100%),
    linear-gradient(180deg, rgba(4,13,29,.2) 0%, transparent 40%, rgba(4,13,29,.64) 100%);
  pointer-events: none;
}
.eh-sequence__content { height: 100%; position: relative; z-index: 2; }
.eh-sequence__panel {
  left: 0;
  max-width: min(650px, 48vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}
.eh-sequence__panel--two { left: auto; right: 0; text-align: right; }
.eh-sequence__panel--three { top: 53%; }
.eh-sequence__kicker {
  color: #b8cefb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 20px !important;
  text-transform: uppercase;
}
.eh-sequence__panel h2 {
  color: #fff;
  font-size: clamp(52px, 6.3vw, 98px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
  text-shadow: 0 8px 34px rgba(0,0,0,.25);
}
.eh-sequence__panel > p:not(.eh-sequence__kicker) {
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.65;
  margin-top: 26px;
  max-width: 520px;
}
.eh-sequence__panel--two > p:last-child { margin-left: auto; }
.eh-sequence__panel .eh-pill { margin-top: 32px; }
.eh-sequence__footer {
  align-items: center;
  bottom: 26px;
  color: rgba(255,255,255,.62);
  display: grid;
  font-size: 10px;
  gap: 18px;
  grid-template-columns: auto minmax(120px, 320px) auto;
  left: 50%;
  letter-spacing: .14em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), 680px);
  z-index: 3;
}
.eh-sequence__progress { background: rgba(255,255,255,.25); display: block; height: 1px; overflow: hidden; }
.eh-sequence__progress-fill { background: #fff; display: block; height: 100%; width: 100%; }

/* Marquee */
.eh-marquee { background: #fff; border-bottom: 1px solid var(--eh-line); overflow: hidden; padding: 24px 0; }
.eh-marquee__track { animation: eh-marquee 30s linear infinite; display: flex; width: max-content; }
.eh-marquee__group { align-items: center; display: flex; }
.eh-marquee__group span { align-items: center; color: #6d7890; display: flex; font-size: 13px; font-weight: 600; letter-spacing: .06em; margin: 0 34px; text-transform: uppercase; white-space: nowrap; }
.eh-marquee__group span::before { color: var(--eh-blue); content: '✦'; font-size: 8px; margin-right: 28px; }
@keyframes eh-marquee { to { transform: translateX(-50%); } }

/* Intro and capability bento */
.eh-intro { background: #fff; }
.eh-intro__grid { align-items: start; display: grid; gap: 100px; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.eh-intro h2 { margin-bottom: 42px; }
.eh-intro__statement { padding-top: 36px; }
.eh-intro__statement > p { color: #3d485f; font-size: clamp(24px, 3vw, 40px); font-weight: 400; letter-spacing: -.025em; line-height: 1.35; }
.eh-intro__statement > span { border-top: 1px solid var(--eh-line); color: var(--eh-muted); display: block; font-size: 13px; letter-spacing: .04em; margin-top: 42px; padding-top: 20px; }
.eh-capabilities { background: var(--eh-canvas); }
.eh-bento { display: grid; gap: 18px; grid-template-columns: 1.3fr .7fr .7fr; }
.eh-bento > a { border-radius: 28px; min-height: 500px; overflow: hidden; position: relative; }
.eh-bento__image img { height: 116%; inset: -8% 0 auto; object-fit: cover; position: absolute; width: 100%; will-change: transform; }
.eh-bento__shade { background: linear-gradient(180deg, rgba(7,19,41,.05), rgba(7,19,41,.82)); inset: 0; position: absolute; }
.eh-bento__copy { bottom: 0; color: #fff; display: flex; flex-direction: column; gap: 18px; left: 0; padding: 34px; position: absolute; right: 0; }
.eh-bento small { font-size: 11px; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eh-bento strong { color: inherit; font-size: clamp(25px, 2.1vw, 35px); font-weight: 500; letter-spacing: -.025em; line-height: 1.14; }
.eh-bento__copy > span:last-child, .eh-bento__card > span { font-size: 13px; font-weight: 600; margin-top: 12px; }
.eh-bento__card { display: flex; flex-direction: column; justify-content: space-between; padding: 34px; transition: transform .3s ease, box-shadow .3s ease; }
.eh-bento__card:hover { box-shadow: 0 24px 50px rgba(12,33,78,.14); transform: translateY(-5px); }
.eh-bento__card--blue { background: var(--eh-blue); color: #fff !important; }
.eh-bento__card--blue small,
.eh-bento__card--blue strong,
.eh-bento__card--blue p,
.eh-bento__card--blue > span { color: #fff !important; }
.eh-bento__card--pale { background: var(--eh-blue-pale); color: var(--eh-blue-deep); }
.eh-bento__card p { color: inherit; font-size: 15px; line-height: 1.65; opacity: .72; }

/* Metrics */
.eh-impact { background: var(--eh-blue-deep); color: #fff; padding: 90px 0; }
.eh-impact__grid { align-items: stretch; display: grid; grid-template-columns: 1.35fr repeat(4, .65fr); }
.eh-impact__intro { padding-right: 50px; }
.eh-impact .eh-eyebrow { color: #a9c8ff; }
.eh-impact h2 { color: #fff; font-size: clamp(36px, 3.4vw, 52px); margin-bottom: 20px; }
.eh-impact__intro > p:last-child { color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.6; max-width: 360px; }
.eh-metric { border-left: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; justify-content: flex-end; padding: 25px 28px; }
.eh-metric strong { color: #fff; font-size: clamp(42px, 4vw, 64px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.eh-metric span { color: rgba(255,255,255,.6); font-size: 12px; margin-top: 16px; }

/* Services */
.eh-services { background: #fff; padding-top: 132px; }
.eh-service-stage { align-items: center; background: #eef3fb; display: flex; min-height: 100svh; overflow: hidden; }
.eh-service-stage__grid { align-items: center; display: grid; gap: 72px; grid-template-columns: .72fr 1.28fr; }
.eh-service-list { border-top: 1px solid #cfd9e9; }
.eh-service-item { align-items: center; border-bottom: 1px solid #cfd9e9; color: #8290a8; display: grid; gap: 16px; grid-template-columns: 38px 1fr 20px; min-height: 70px; transition: color .25s, padding .25s; }
.eh-service-item > span { font-size: 10px; letter-spacing: .12em; }
.eh-service-item strong { color: inherit; font-size: clamp(17px, 1.4vw, 22px); font-weight: 500; letter-spacing: -.015em; }
.eh-service-item i { font-size: 17px; font-style: normal; opacity: 0; transform: translateX(-5px); transition: opacity .25s, transform .25s; }
.eh-service-item.is-active { color: var(--eh-blue); padding-left: 10px; }
.eh-service-item.is-active i { opacity: 1; transform: none; }
.eh-service-visual { border-radius: 30px; height: min(74vh, 760px); overflow: hidden; position: relative; }
.eh-service-media { inset: 0; position: absolute; visibility: hidden; }
.eh-service-media.is-first { visibility: inherit; }
.eh-service-media > img { height: 100%; object-fit: cover; width: 100%; }
.eh-service-media__shade { background: linear-gradient(180deg, rgba(5,18,42,.04), rgba(5,18,42,.78)); inset: 0; position: absolute; }
.eh-service-media > div { bottom: 0; color: #fff; left: 0; max-width: 690px; padding: 46px; position: absolute; }
.eh-service-media small { font-size: 11px; letter-spacing: .14em; }
.eh-service-media h3 { color: #fff; font-size: clamp(36px, 4vw, 64px); font-weight: 400; letter-spacing: -.04em; line-height: .98; margin: 15px 0 18px; }
.eh-service-media p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.6; max-width: 560px; }
.eh-service-mobile { display: none; }

/* Products */
.eh-products { background: var(--eh-canvas); }
.eh-product-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.eh-product { background: #fff; border: 1px solid var(--eh-line); border-radius: 24px; display: flex; flex-direction: column; min-height: 410px; overflow: hidden; padding: 24px; transition: border-color .25s, box-shadow .25s, transform .25s; }
.eh-product:hover { border-color: #a9bfe6; box-shadow: 0 24px 52px rgba(16,43,94,.1); transform: translateY(-5px); }
.eh-product--wide { grid-column: span 2; }
.eh-product__top { align-items: center; color: var(--eh-muted); display: flex; font-size: 11px; justify-content: space-between; letter-spacing: .08em; text-transform: uppercase; }
.eh-product__top i { align-items: center; background: var(--eh-blue-pale); border-radius: 50%; color: var(--eh-blue); display: inline-flex; font-size: 16px; font-style: normal; height: 36px; justify-content: center; width: 36px; }
.eh-product > img { height: 270px; margin: auto; object-fit: contain; transition: transform .4s ease; width: 100%; }
.eh-product:hover > img { transform: scale(1.035) translateY(-3px); }
.eh-product h3 { color: var(--eh-ink); font-size: 22px; font-weight: 500; letter-spacing: -.02em; }

/* Industries */
.eh-industries { background: #fff; }
.eh-industry-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.eh-industry { border-radius: 26px; height: 460px; overflow: hidden; position: relative; }
.eh-industry > img { height: 100%; object-fit: cover; transition: transform .55s ease; width: 100%; }
.eh-industry:hover > img { transform: scale(1.035); }
.eh-industry__shade { background: linear-gradient(180deg, rgba(4,15,37,.02), rgba(4,15,37,.82)); inset: 0; position: absolute; }
.eh-industry > div { bottom: 0; color: #fff; left: 0; padding: 34px; position: absolute; right: 0; }
.eh-industry small { font-size: 11px; letter-spacing: .12em; }
.eh-industry h3 { color: #fff; font-size: 38px; font-weight: 400; letter-spacing: -.035em; margin: 12px 0 9px; }
.eh-industry p { color: rgba(255,255,255,.7); font-size: 14px; }
.eh-industry-tags { border-bottom: 1px solid var(--eh-line); display: flex; flex-wrap: wrap; margin-top: 35px; }
.eh-industry-tags span { border-top: 1px solid var(--eh-line); color: #556176; flex: 1 0 30%; font-size: 14px; padding: 20px 5px; }
.eh-industry-tags span::before { color: var(--eh-blue); content: '·'; font-size: 26px; line-height: 0; margin-right: 13px; }

/* Interactive 3D model */
.eh-model { background: #fff; }
.eh-model__grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 6vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
}
.eh-model__text { color: var(--eh-muted); font-size: 17px; line-height: 1.7; margin: 28px 0 34px !important; max-width: 460px; }
.eh-model__stage {
  aspect-ratio: 1 / 1;
  background: #fff;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.eh-model__viewer {
  background: transparent;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
  --poster-color: transparent;
}
.eh-model__placeholder {
  align-items: center;
  color: var(--eh-muted);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 14px;
  left: 50%;
  letter-spacing: .12em;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.eh-model__bar {
  background: var(--eh-line);
  border-radius: 99px;
  display: block;
  height: 2px;
  overflow: hidden;
  width: 160px;
}
.eh-model__bar > i {
  background: var(--eh-blue);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
  width: 100%;
}
.eh-model__hint {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(8,20,46,.6);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  bottom: 18px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  left: 18px;
  letter-spacing: .08em;
  padding: 9px 15px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

/* Experience */
.eh-experience { background: var(--eh-canvas); }
.eh-experience__frame { background: var(--eh-blue-deep); border-radius: 30px; box-shadow: 0 30px 80px rgba(12,33,78,.15); min-height: min(72vw, 780px); overflow: hidden; position: relative; }
.eh-360 { height: 100%; inset: 0; min-height: inherit; overflow: hidden; position: absolute; width: 100%; }
.eh-360::after {
  background: linear-gradient(180deg, rgba(4,13,29,.08), transparent 52%, rgba(4,13,29,.42));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.eh-360__canvas {
  cursor: grab;
  display: block;
  height: 100%;
  outline: none;
  touch-action: none;
  width: 100%;
}
.eh-360__canvas:focus-visible { box-shadow: inset 0 0 0 3px #fff; }
.eh-360.is-dragging .eh-360__canvas { cursor: grabbing; }
.eh-360__video { height: 1px; left: -9999px; opacity: 0; pointer-events: none; position: absolute; width: 1px; }
.eh-360__play {
  align-items: center;
  background: rgba(5,16,37,.88);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 29px;
  height: 104px;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background .2s ease, opacity .2s ease, transform .2s ease;
  width: 104px;
  z-index: 3;
}
.eh-360__play:hover { background: var(--eh-blue); transform: translate(-50%, -50%) scale(1.04); }
.eh-360__play:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.eh-360.is-playing .eh-360__play {
  border-radius: 50%;
  bottom: 20px;
  height: 50px;
  left: auto;
  opacity: .76;
  right: 20px;
  top: auto;
  transform: none;
  width: 50px;
}
.eh-360.is-playing .eh-360__play:hover { opacity: 1; transform: scale(1.04); }
.eh-360__hint,
.eh-360__badge {
  background: rgba(8,24,55,.72);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 10px 15px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.eh-360__hint { bottom: 20px; left: 20px; }
.eh-360__hint span { font-size: 16px; margin-right: 7px; vertical-align: -1px; }
.eh-360__badge { right: 20px; top: 20px; }

/* Outcomes */
.eh-outcomes { background: #fff; }
.eh-outcome-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.eh-outcome { background: var(--eh-canvas); border-radius: 26px; display: flex; flex-direction: column; justify-content: space-between; min-height: 390px; padding: 34px; }
.eh-outcome--blue { background: var(--eh-blue); color: #fff; }
.eh-outcome > span { color: var(--eh-blue); font-size: 12px; letter-spacing: .14em; }
.eh-outcome--blue > span { color: #b9d1ff; }
.eh-outcome h3 { color: inherit; font-size: clamp(28px, 2.5vw, 40px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; margin-top: auto; }
.eh-outcome p { color: inherit; font-size: 15px; line-height: 1.65; margin-top: 20px; opacity: .68; }

/* Articles and CTA */
.eh-insights { background: var(--eh-canvas); }
.eh-insights .eh-section-head--split > .eh-pill { justify-self: end; }
.eh-article-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.eh-article > div { aspect-ratio: 4 / 5; background: #edf2f8; border-radius: 22px; margin-bottom: 24px; overflow: hidden; }
.eh-article img { display: block; height: 100%; object-fit: contain; object-position: center; transition: transform .5s ease; width: 100%; }
.eh-article:hover img { transform: none; }
.eh-article small { color: var(--eh-blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eh-article h3 { color: var(--eh-ink); font-size: clamp(22px, 2vw, 29px); font-weight: 500; letter-spacing: -.025em; line-height: 1.18; margin: 12px 0 20px; }
.eh-article > span { color: var(--eh-muted); font-size: 13px; font-weight: 600; }
.eh-cta { background: var(--eh-canvas); padding: 0 0 36px; }
.eh-cta__card { border-radius: 32px; min-height: 660px; overflow: hidden; position: relative; }
.eh-cta__card > img { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.eh-cta__shade { background: linear-gradient(90deg, rgba(5,18,43,.9), rgba(5,18,43,.32)); inset: 0; position: absolute; }
.eh-cta__card > div { color: #fff; left: 0; max-width: 780px; padding: 70px; position: absolute; top: 50%; transform: translateY(-50%); }
.eh-cta h2 { color: #fff; font-size: clamp(48px, 6vw, 86px); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.eh-cta__card > div > p:not(.eh-eyebrow) { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.65; margin: 25px 0 34px; max-width: 580px; }

/* Footer */
.eh-footer { background: var(--eh-blue-deep); color: #fff; padding: 85px 0 28px; }
.eh-footer__top { display: grid; gap: 90px; grid-template-columns: 1.1fr .9fr; padding-bottom: 80px; }
.eh-footer__brand img { height: auto; margin-bottom: 24px; max-width: 190px; width: 100%; }
.eh-footer__brand p { color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.7; max-width: 440px; }
.eh-footer__links { display: grid; gap: 36px; grid-template-columns: repeat(3, 1fr); }
.eh-footer__links > div { display: flex; flex-direction: column; gap: 11px; }
.eh-footer__links strong { color: #fff; font-size: 12px; letter-spacing: .12em; margin-bottom: 8px; text-transform: uppercase; }
.eh-footer__links a { color: rgba(255,255,255,.58); font-size: 13px; transition: color .2s; }
.eh-footer__links a:hover { color: #fff; }
.eh-footer__bottom { border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.43); display: flex; font-size: 11px; justify-content: space-between; letter-spacing: .04em; padding-top: 24px; }

@media (max-width: 1100px) {
  .eh-menu a { padding-inline: 9px; }
  .eh-hero-next { flex-basis: 300px; }
  .eh-bento { grid-template-columns: repeat(2, 1fr); }
  .eh-bento__image { grid-column: 1 / -1; }
  .eh-bento > a { min-height: 430px; }
  .eh-impact__grid { grid-template-columns: repeat(4, 1fr); }
  .eh-impact__intro { grid-column: 1 / -1; margin-bottom: 48px; }
  .eh-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 899px) {
  .eh-shell { width: min(100% - 32px, 760px); }
  .eh-section { padding: 90px 0; }
  .eh-nav { padding-top: 0; }
  .eh-nav__inner { min-height: 68px; padding: 8px 16px; }
  .eh-brand img { height: 40px; }
  .eh-nav__cta { display: none; }
  .eh-menu-toggle { display: flex; margin-left: auto; }
  .eh-menu { align-items: stretch; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.7); border-radius: 0 0 18px 18px; box-shadow: 0 22px 50px rgba(11,34,79,.15); display: flex; flex-direction: column; gap: 2px; left: 0; opacity: 0; padding: 12px 16px; pointer-events: none; position: absolute; right: 0; top: 68px; transform: translateY(-8px); transition: opacity .2s, transform .2s; -webkit-backdrop-filter: blur(24px) saturate(150%); backdrop-filter: blur(24px) saturate(150%); }
  .eh-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .eh-menu a { padding: 12px 14px; }
  .eh-hero__inner { align-items: start; flex-direction: column; gap: 34px; padding-bottom: 68px; }
  .eh-hero-next { flex-basis: auto; max-width: 350px; width: 100%; }
  .eh-hero-next__main > img { height: 66px; width: 66px; }
  .eh-hero-dots { margin-left: 82px; }
  .eh-hero__scroll { display: none; }
  .eh-sequence { min-height: 620px; }
  .eh-sequence__shade {
    background:
      linear-gradient(180deg, rgba(4,13,29,.14) 0%, rgba(4,13,29,.08) 38%, rgba(4,13,29,.9) 100%),
      linear-gradient(90deg, rgba(4,13,29,.48), transparent 70%);
  }
  .eh-sequence__panel,
  .eh-sequence__panel--two,
  .eh-sequence__panel--three { bottom: 90px; left: 0; max-width: 620px; right: auto; text-align: left; top: auto; transform: none; }
  .eh-sequence__panel h2 { font-size: clamp(48px, 10vw, 72px); }
  .eh-sequence__panel--two > p:last-child { margin-left: 0; }
  .eh-intro__grid, .eh-section-head--split, .eh-footer__top { gap: 45px; grid-template-columns: 1fr; }
  .eh-intro__statement { padding-top: 0; }
  .eh-impact__grid { grid-template-columns: repeat(2, 1fr); }
  .eh-metric:nth-child(even) { border-left: 0; }
  .eh-service-stage { display: none; }
  .eh-service-mobile { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); padding-bottom: 90px; }
  .eh-service-mobile__card { background: var(--eh-canvas); border-radius: 24px; overflow: hidden; padding: 18px 18px 25px; }
  .eh-service-mobile__card img { border-radius: 17px; height: 240px; margin-bottom: 22px; object-fit: cover; width: 100%; }
  .eh-service-mobile__card > span { color: var(--eh-blue); font-size: 10px; letter-spacing: .12em; }
  .eh-service-mobile__card h3 { font-size: 24px; font-weight: 500; letter-spacing: -.025em; margin: 8px 0 12px; }
  .eh-service-mobile__card p { color: var(--eh-muted); font-size: 14px; line-height: 1.6; }
  .eh-outcome-grid, .eh-article-grid { grid-template-columns: 1fr; }
  .eh-outcome { min-height: 330px; }
  .eh-article-grid { gap: 50px; }
  .eh-article > div { aspect-ratio: 4 / 5; }
  .eh-footer__top { gap: 60px; }
  .eh-model__grid { gap: 40px; grid-template-columns: 1fr; }
  .eh-model__stage { aspect-ratio: 4 / 3; max-width: 520px; }
  .eh-model__text { margin: 22px 0 28px !important; }
}

@media (max-width: 640px) {
  .eh-model__stage { aspect-ratio: 1 / 1; }
  .eh-model__hint { bottom: 14px; font-size: 10px; left: 14px; padding: 8px 12px; }
  .eh-section { padding: 76px 0; }
  .eh-section-head { margin-bottom: 40px; }
  .eh-section-head h2, .eh-intro h2 { font-size: 39px; }
  .eh-hero { min-height: 780px; }
  .eh-hero__inner { padding-bottom: 38px; }
  .eh-hero__copy h1 { font-size: clamp(43px, 12.4vw, 62px); margin-bottom: 26px; }
  .eh-hero-next { flex-basis: auto; }
  .eh-sequence { min-height: 680px; }
  .eh-sequence__poster { background-position: center; }
  .eh-sequence__panel,
  .eh-sequence__panel--two,
  .eh-sequence__panel--three { bottom: 78px; max-width: calc(100% - 8px); }
  .eh-sequence__kicker { font-size: 9px; margin-bottom: 13px !important; }
  .eh-sequence__panel h2 { font-size: clamp(42px, 13vw, 58px); }
  .eh-sequence__panel > p:not(.eh-sequence__kicker) { font-size: 14px; line-height: 1.55; margin-top: 17px; max-width: 390px; }
  .eh-sequence__panel .eh-pill { margin-top: 22px; }
  .eh-sequence__footer { bottom: 21px; gap: 12px; grid-template-columns: auto 1fr; width: calc(100% - 32px); }
  .eh-sequence__footer > span:last-child { display: none; }
  .eh-marquee__group span { margin-inline: 19px; }
  .eh-intro__grid { gap: 50px; }
  .eh-intro__statement > p { font-size: 23px; }
  .eh-bento { grid-template-columns: 1fr; }
  .eh-bento__image { grid-column: auto; }
  .eh-bento > a { min-height: 400px; }
  .eh-bento__card { min-height: 340px !important; }
  .eh-impact { padding: 72px 0; }
  .eh-impact__grid { grid-template-columns: 1fr; }
  .eh-impact__intro { margin-bottom: 26px; padding-right: 0; }
  .eh-metric, .eh-metric:nth-child(even) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 24px 0; }
  .eh-service-mobile { grid-template-columns: 1fr; }
  .eh-service-mobile__card img { height: 220px; }
  .eh-product-grid, .eh-industry-grid { grid-template-columns: 1fr; }
  .eh-product--wide { grid-column: auto; }
  .eh-product { min-height: 370px; }
  .eh-industry { height: 390px; }
  .eh-industry-tags span { flex-basis: 50%; }
  .eh-experience__frame { min-height: 520px; }
  .eh-360__play { border-radius: 18px; height: 82px; width: 82px; }
  .eh-360__hint { bottom: 16px; left: 16px; }
  .eh-360__badge { right: 16px; top: 16px; }
  .eh-360.is-playing .eh-360__play { bottom: 16px; right: 16px; }
  .eh-cta { padding-bottom: 16px; }
  .eh-cta__card { min-height: 620px; width: calc(100% - 24px); }
  .eh-cta__card > div { padding: 34px 26px; }
  .eh-cta h2 { font-size: 49px; }
  .eh-footer { padding-top: 68px; }
  .eh-footer__links { grid-template-columns: repeat(2, 1fr); }
  .eh-footer__bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-home *, .premium-home *::before, .premium-home *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .eh-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
  .eh-sequence__panel:first-child { opacity: 1 !important; visibility: visible !important; }
}
