/* ==========================================================================
   EgoLog Homepage V2 - isolated design prototype
   All selectors are prefixed with .egohome- so nothing can collide with the
   live site's globalHeader / shopPage / legalCenter / guides stylesheets.
   Palette, typography and radii are taken from the live EgoLog build.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
.egohome {
  /* surfaces, straight from the live build */
  --egohome-bg: #07101f;
  --egohome-bg-deep: #050b15;
  --egohome-bg-header: #010307;
  --egohome-panel: #0b192b;
  --egohome-panel-raised: #0e1e33;
  --egohome-panel-quiet: #0a1729;

  /* lines */
  --egohome-line: #172c47;
  --egohome-line-strong: #213958;
  --egohome-line-active: #416db8;
  --egohome-border-control: #2b476c;

  /* text */
  --egohome-text: #e9f2ff;
  --egohome-text-soft: #a1b5ce;
  --egohome-text-quiet: #7890ad;
  --egohome-text-nav: #a7b8ce;

  /* accents */
  --egohome-teal: #49d2b5;
  --egohome-blue: #5b86ff;
  --egohome-blue-deep: #4377ff;
  --egohome-blue-ink: #102746;

  /* product tones, matching the live catalogue cards */
  --egohome-tone-cyan: #43c8e2;
  --egohome-tone-blue: #6d94ff;
  --egohome-tone-green: #39d0b4;
  --egohome-tone-violet: #9d82ff;
  --egohome-tone-amber: #efbd54;
  --egohome-tone-rose: #ec74a1;

  /* type */
  --egohome-font-sans: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
  --egohome-font-mono: var(--font-geist-mono), ui-monospace, monospace;
  --egohome-font-display: var(--font-display), var(--egohome-font-mono);

  /* rhythm */
  --egohome-gutter: clamp(18px, 5vw, 72px);
  --egohome-max: 1360px;
  --egohome-radius: 14px;
  --egohome-radius-sm: 9px;
  --egohome-section-y: clamp(56px, 7vw, 108px);
}

/* --- Base ----------------------------------------------------------------- */
.egohome {
  box-sizing: border-box;
  margin: 0;
  background: var(--egohome-bg);
  color: var(--egohome-text);
  font-family: var(--egohome-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.egohome *,
.egohome *::before,
.egohome *::after { box-sizing: border-box; }

.egohome img,
.egohome svg { max-width: 100%; }

.egohome :focus-visible {
  outline: 2px solid var(--egohome-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.egohome-srOnly {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.egohome-skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--egohome-blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--egohome-radius-sm);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: top .16s ease;
}
.egohome-skip:focus { top: 12px; }

.egohome-shell {
  width: 100%;
  max-width: var(--egohome-max);
  margin-inline: auto;
  padding-inline: var(--egohome-gutter);
}

/* --- Shared section furniture -------------------------------------------- */
.egohome-section { padding-block: var(--egohome-section-y); }
.egohome-section + .egohome-section { padding-top: 0; }

.egohome-head { max-width: 760px; }
.egohome-eyebrow {
  display: block;
  color: var(--egohome-teal);
  font-family: var(--egohome-font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  margin: 0 0 12px;
}
.egohome-head h2 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0;
}
.egohome-head p {
  color: var(--egohome-text-soft);
  font-size: clamp(14px, 1.1vw, 15px);
  margin: 14px 0 0;
  max-width: 62ch;
}

.egohome-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--egohome-line-strong), transparent);
  border: 0;
  margin: 0;
}

/* --- Buttons -------------------------------------------------------------- */
.egohome-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--egohome-radius-sm);
  font-family: var(--egohome-font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.egohome-btn--primary {
  background: var(--egohome-blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(48, 89, 210, .3);
}
.egohome-btn--primary:hover { background: #6f95ff; transform: translateY(-1px); }
.egohome-btn--secondary {
  background: rgba(16, 39, 70, .72);
  border-color: var(--egohome-border-control);
  color: var(--egohome-text);
}
.egohome-btn--secondary:hover { border-color: var(--egohome-line-active); background: #14304f; transform: translateY(-1px); }
.egohome-btn--ghost {
  background: transparent;
  border-color: var(--egohome-line-strong);
  color: var(--egohome-text-soft);
}
.egohome-btn--ghost:hover { color: var(--egohome-text); border-color: var(--egohome-line-active); }
.egohome-btn--full { width: 100%; }
.egohome-btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

.egohome-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--egohome-teal);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  min-height: 32px;
}
.egohome-link:hover { color: #6fe3c9; }
.egohome-link::after { content: "→"; font-size: 14px; transition: transform .16s ease; }
.egohome-link:hover::after { transform: translateX(3px); }

/* --- Prototype banner ----------------------------------------------------- */
.egohome-protobar {
  background: repeating-linear-gradient(135deg, #12233a, #12233a 10px, #162943 10px, #162943 20px);
  border-bottom: 1px solid var(--egohome-line-strong);
  color: var(--egohome-text-soft);
  font-size: 11px;
  line-height: 1.45;
}
.egohome-protobar .egohome-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding-block: 9px;
}
.egohome-protobar b {
  font-family: var(--egohome-font-mono);
  letter-spacing: .16em;
  font-size: 10px;
  color: var(--egohome-teal);
  border: 1px solid rgba(73, 210, 181, .4);
  border-radius: 5px;
  padding: 3px 8px;
  flex: none;
}

/* --- Header --------------------------------------------------------------- */
.egohome-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 3, 7, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--egohome-line-strong);
}
.egohome-header .egohome-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
}
.egohome-logo {
  display: flex;
  align-items: center;
  flex: none;
  width: 175px;
  max-width: 40vw;
}
.egohome-logo img { width: 162px; max-width: 100%; height: auto; display: block; }

.egohome-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: clamp(8px, 2vw, 30px);
}
.egohome-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--egohome-text-nav);
  font-family: var(--egohome-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.egohome-nav a:hover { color: #fff; }
.egohome-nav a[aria-current="page"] { color: #fff; }

.egohome-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}
.egohome-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--egohome-panel);
  border: 1px solid var(--egohome-border-control);
  border-radius: var(--egohome-radius-sm);
  padding: 3px;
}
.egohome-lang a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 6px;
  border-radius: 6px;
  color: var(--egohome-text-nav);
  font-family: var(--egohome-font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}
.egohome-lang a:hover { color: var(--egohome-text); background: #14304f; }
.egohome-lang a[aria-current="page"] { background: var(--egohome-blue-ink); color: #fff; }

.egohome-cart {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--egohome-radius-sm);
  background: var(--egohome-blue);
  color: #fff;
  font-family: var(--egohome-font-display);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.egohome-cart:hover { background: #6f95ff; }
.egohome-cart span {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 6px;
  background: var(--egohome-bg);
  font-family: var(--egohome-font-mono);
  font-size: 10px;
}

/* --- Hero ----------------------------------------------------------------- */
.egohome-hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 34%, rgba(67, 119, 255, .26), transparent 42%),
    linear-gradient(140deg, #0a1729, #07101f 62%);
  border-bottom: 1px solid var(--egohome-line);
  overflow: hidden;
}
.egohome-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(33, 57, 88, .35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(33, 57, 88, .35) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 30% 40%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 10%, transparent 72%);
}
.egohome-hero .egohome-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: clamp(560px, 76vh, 860px);
  padding-block: clamp(48px, 6vw, 84px);
}
.egohome-heroCopy { min-width: 0; }
.egohome-heroCopy .egohome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(73, 210, 181, .32);
  background: rgba(73, 210, 181, .07);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 22px;
  font-size: 10px;
}
.egohome-heroCopy .egohome-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--egohome-teal);
  box-shadow: 0 0 10px var(--egohome-teal);
  flex: none;
}
.egohome-heroCopy h1 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 20px;
  max-width: 15ch;
  text-wrap: balance;
}
.egohome-heroLead {
  color: var(--egohome-text-soft);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 28px;
}
.egohome-heroCtas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.egohome-heroNote {
  color: var(--egohome-text-quiet);
  font-size: 11px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0;
}

.egohome-heroFacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  background: var(--egohome-line);
  border: 1px solid var(--egohome-line);
  border-radius: var(--egohome-radius);
  overflow: hidden;
}
.egohome-heroFacts li {
  background: rgba(11, 25, 43, .78);
  padding: 16px 18px;
  min-width: 0;
}
.egohome-heroFacts b {
  display: block;
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: -.02em;
  color: var(--egohome-text);
}
.egohome-heroFacts span {
  display: block;
  margin-top: 4px;
  color: var(--egohome-text-quiet);
  font-size: 10px;
  line-height: 1.4;
}

.egohome-heroArt {
  min-width: 0;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, .55));
}
.egohome-heroArt svg { width: 100%; height: auto; max-height: 62vh; }

/* --- Trust strip ---------------------------------------------------------- */
.egohome-trustGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}
.egohome-trustCard {
  background: linear-gradient(180deg, rgba(14, 30, 51, .9), rgba(11, 25, 43, .9));
  border: 1px solid var(--egohome-line);
  border-radius: var(--egohome-radius);
  padding: 24px;
  min-width: 0;
  transition: border-color .16s ease, transform .16s ease;
}
.egohome-trustCard:hover { border-color: var(--egohome-line-active); transform: translateY(-2px); }
.egohome-trustCard h3 {
  font-family: var(--egohome-font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.01em;
  margin: 14px 0 8px;
}
.egohome-trustCard p {
  color: var(--egohome-text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.egohome-icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(91, 134, 255, .12);
  border: 1px solid rgba(91, 134, 255, .26);
  color: var(--egohome-teal);
}
.egohome-icon svg { width: 20px; height: 20px; display: block; }

/* --- Paths ---------------------------------------------------------------- */
.egohome-pathGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}
.egohome-pathCard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 268px;
  padding: 26px;
  border: 1px solid var(--egohome-line-strong);
  border-radius: var(--egohome-radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(91, 134, 255, .16), transparent 58%),
    var(--egohome-panel);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.egohome-pathCard:hover,
.egohome-pathCard:focus-within {
  border-color: var(--egohome-line-active);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .34);
}
.egohome-pathCard .egohome-icon { margin-bottom: 16px; }
.egohome-pathKicker {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--egohome-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(120, 144, 173, .6);
}
.egohome-pathCard h3 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.egohome-pathCard h3 a { color: inherit; text-decoration: none; }
.egohome-pathCard h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.egohome-pathCard p {
  color: var(--egohome-text-soft);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.egohome-pathCta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--egohome-teal);
  font-size: 12px;
  font-weight: 800;
}
.egohome-pathCta::after { content: "→"; transition: transform .16s ease; }
.egohome-pathCard:hover .egohome-pathCta::after { transform: translateX(3px); }

/* --- Products ------------------------------------------------------------- */
.egohome-products { scroll-margin-top: 100px; }
.egohome-productHead {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.egohome-productGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.egohome-productCard {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--egohome-panel);
  border: 1px solid #1e3758;
  border-radius: var(--egohome-radius);
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.egohome-productCard:hover {
  border-color: var(--egohome-line-active);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}
.egohome-productArt {
  position: relative;
  display: grid;
  place-items: center;
  height: 178px;
  background: radial-gradient(circle at 50% 45%, rgba(80, 128, 255, .22), transparent 38%), #0b1727;
  border-bottom: 1px solid var(--egohome-line);
}
.egohome-productArt::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 62%;
  height: 34px;
  border: 1px solid #264970;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(43, 105, 236, .18);
}
.egohome-cylinder {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 138px;
  border-radius: 30px 30px 10px 10px;
  border: 1px solid rgba(190, 215, 255, .34);
  background: linear-gradient(90deg, #091624, #3b5e80 30%, #9cb2c8 51%, #294b6c 72%, #07111e);
  box-shadow: 0 18px 26px rgba(0, 0, 0, .38);
}
.egohome-cylinder::before {
  content: "";
  position: absolute;
  top: -13px; left: 22px;
  width: 26px; height: 16px;
  border: 5px solid #5a7894;
  border-bottom: 0;
  border-radius: 4px;
}
.egohome-cylinder::after {
  content: "";
  position: absolute;
  top: 42px; left: 5px; right: 5px;
  height: 24px;
  background: linear-gradient(90deg, #1b5bc7, #6d94ff, #1b5bc7);
}
.egohome-cylinder b,
.egohome-cylinder small {
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
.egohome-cylinder b { top: 47px; font-family: var(--egohome-font-mono); font-size: 11px; font-weight: 900; }
.egohome-cylinder small { top: 79px; color: #ccdae8; font-size: 7px; letter-spacing: .13em; }
.egohome-tone-cyan   .egohome-cylinder::after { background: linear-gradient(90deg, #08758f, #43c8e2, #08758f); }
.egohome-tone-green  .egohome-cylinder::after { background: linear-gradient(90deg, #087c69, #39d0b4, #087c69); }
.egohome-tone-violet .egohome-cylinder::after { background: linear-gradient(90deg, #6345b0, #9d82ff, #6345b0); }
.egohome-tone-amber  .egohome-cylinder::after { background: linear-gradient(90deg, #9b6716, #efbd54, #9b6716); }
.egohome-tone-rose   .egohome-cylinder::after { background: linear-gradient(90deg, #963658, #ec74a1, #963658); }

.egohome-productBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  gap: 12px;
}
.egohome-productMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.egohome-productMeta b {
  background: var(--egohome-blue-ink);
  border-radius: 5px;
  padding: 4px 8px;
  color: var(--egohome-text);
  font-family: var(--egohome-font-mono);
}
.egohome-productMeta span { color: var(--egohome-text-quiet); }
.egohome-flag {
  border: 1px solid rgba(239, 189, 84, .4);
  color: var(--egohome-tone-amber);
  border-radius: 5px;
  padding: 4px 8px;
}
.egohome-productCard h3 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
  margin: 0;
}
.egohome-hazard {
  font-family: var(--egohome-font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--egohome-text-quiet);
  border-top: 1px dashed var(--egohome-line);
  border-bottom: 1px dashed var(--egohome-line);
  padding: 8px 0;
  margin: 0;
}
.egohome-slot {
  margin-top: auto;
  border: 1px dashed rgba(91, 134, 255, .42);
  border-radius: 10px;
  background: rgba(16, 39, 70, .35);
  padding: 12px;
}
.egohome-slot dl { margin: 0; display: grid; gap: 8px; }
.egohome-slot dt {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--egohome-blue);
}
.egohome-slot dd {
  margin: 2px 0 0;
  font-family: var(--egohome-font-mono);
  font-size: 11px;
  color: var(--egohome-text-soft);
}

.egohome-slotNote {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px dashed rgba(91, 134, 255, .38);
  border-radius: var(--egohome-radius-sm);
  background: rgba(16, 39, 70, .3);
  color: var(--egohome-text-soft);
  font-size: 11.5px;
  line-height: 1.55;
}
.egohome-slotNote::before {
  content: "◧";
  color: var(--egohome-blue);
  font-size: 13px;
  line-height: 1.3;
  flex: none;
}
.egohome-legalNote {
  color: var(--egohome-text-quiet);
  font-size: 11px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 90ch;
}
.egohome-legalNote + .egohome-legalNote { margin-top: 8px; }

/* --- Bulk ----------------------------------------------------------------- */
.egohome-bulk {
  border-block: 1px solid var(--egohome-line);
  background:
    radial-gradient(circle at 14% 50%, rgba(73, 210, 181, .12), transparent 46%),
    linear-gradient(180deg, var(--egohome-bg-deep), #08131f);
}
.egohome-bulk .egohome-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: var(--egohome-section-y);
}
.egohome-bulkList {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--egohome-line);
  border: 1px solid var(--egohome-line);
  border-radius: var(--egohome-radius);
  overflow: hidden;
}
.egohome-bulkList li { background: var(--egohome-panel); padding: 18px 20px; min-width: 0; }
.egohome-bulkList b {
  display: block;
  font-family: var(--egohome-font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.egohome-bulkList span { color: var(--egohome-text-soft); font-size: 12.5px; }
.egohome-bulkCtas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.egohome-bulkAside { min-width: 0; }
.egohome-bulk .egohome-legalNote { margin-top: 18px; }

/* --- Tools ---------------------------------------------------------------- */
.egohome-tools .egohome-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.egohome-toolSlot {
  border: 1px dashed rgba(91, 134, 255, .4);
  border-radius: var(--egohome-radius);
  padding: 14px;
  background: rgba(16, 39, 70, .22);
  min-width: 0;
}
.egohome-toolPreview {
  background: linear-gradient(180deg, var(--egohome-panel-raised), var(--egohome-panel));
  border: 1px solid var(--egohome-line-strong);
  border-radius: 10px;
  padding: 20px;
}
.egohome-toolPreview > b {
  display: block;
  font-family: var(--egohome-font-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--egohome-text-quiet);
  margin-bottom: 16px;
}
.egohome-toolFields { display: grid; gap: 10px; margin: 0 0 14px; }
.egohome-toolField {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--egohome-bg);
  border: 1px solid var(--egohome-border-control);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 46px;
}
.egohome-toolField dt { font-size: 11px; color: var(--egohome-text-soft); }
.egohome-toolField dd { margin: 0; font-family: var(--egohome-font-mono); font-size: 13px; color: var(--egohome-text-quiet); }
.egohome-toolResult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(73, 210, 181, .08);
  border: 1px solid rgba(73, 210, 181, .3);
  border-radius: 8px;
  padding: 14px;
}
.egohome-toolResult dt { font-size: 11px; font-weight: 800; color: var(--egohome-teal); }
.egohome-toolResult dd {
  margin: 0;
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--egohome-text);
}
.egohome-toolPreviewNote {
  margin: 12px 0 0;
  color: var(--egohome-text-quiet);
  font-size: 10.5px;
  line-height: 1.5;
}
.egohome-toolCtas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }

/* --- Knowledge ------------------------------------------------------------ */
.egohome-knowledge .egohome-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.egohome-panelHead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.egohome-panelHead h3 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 0;
}
.egohome-count {
  font-family: var(--egohome-font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--egohome-text-quiet);
}
.egohome-guideList { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.egohome-guideList a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid var(--egohome-line);
  border-radius: 10px;
  background: var(--egohome-panel);
  color: var(--egohome-text);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  transition: border-color .16s ease, transform .16s ease;
}
.egohome-guideList a:hover { border-color: var(--egohome-line-active); transform: translateX(3px); }
.egohome-guideList a::after { content: "→"; margin-left: auto; color: var(--egohome-teal); flex: none; }

.egohome-videoSlot {
  border: 1px dashed rgba(91, 134, 255, .4);
  border-radius: var(--egohome-radius);
  padding: 14px;
  background: rgba(16, 39, 70, .22);
  min-width: 0;
}
.egohome-videoFrame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--egohome-line-strong);
  background:
    radial-gradient(circle at 50% 45%, rgba(91, 134, 255, .18), transparent 55%),
    linear-gradient(160deg, var(--egohome-panel-raised), #081321);
  text-align: center;
  padding: 20px;
}
.egohome-playMark {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(73, 210, 181, .45);
  background: rgba(73, 210, 181, .1);
  color: var(--egohome-teal);
}
.egohome-playMark svg { width: 20px; height: 20px; display: block; }
.egohome-videoFrame span {
  font-family: var(--egohome-font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--egohome-text-quiet);
}
.egohome-videoBody { padding: 16px 4px 4px; }
.egohome-videoBody p { color: var(--egohome-text-soft); font-size: 13px; margin: 0 0 14px; }

/* --- Final CTA ------------------------------------------------------------ */
.egohome-finalPanel {
  border: 1px solid var(--egohome-line-strong);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 22%, rgba(91, 134, 255, .2), transparent 52%),
    linear-gradient(140deg, #0c1c31, #081524);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  display: grid;
  justify-items: center;
}
.egohome-final h2 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 20ch;
}
.egohome-final p {
  color: var(--egohome-text-soft);
  font-size: 14px;
  max-width: 54ch;
  margin: 0 0 26px;
}
.egohome-finalCtas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* --- Footer --------------------------------------------------------------- */
.egohome-footer {
  background: var(--egohome-bg-deep);
  border-top: 1px solid #1b3453;
  margin-top: var(--egohome-section-y);
}
.egohome-footer .egohome-shell { padding-block: 42px 34px; }
.egohome-footerGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}
.egohome-footerGrid h2 {
  font-family: var(--egohome-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 0 0 10px;
}
.egohome-footerGrid p,
.egohome-footerGrid a { color: var(--egohome-text-quiet); font-size: 12px; line-height: 1.6; }
.egohome-footerGrid p { margin: 0 0 8px; }
.egohome-footerGrid a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.egohome-footerGrid a:hover { color: #fff; }
.egohome-footerLinks { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.egohome-footerLinks a { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; }
.egohome-footerLinks svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

.egohome-compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--egohome-line);
}
.egohome-compliance a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--egohome-text-quiet);
  font-size: 10px;
  letter-spacing: .04em;
  text-decoration: none;
}
.egohome-compliance a:hover { color: #fff; }
.egohome-compliance img { width: 250px; max-width: 100%; height: auto; border-radius: 4px; }
.egohome-footerNote {
  margin: 20px 0 0;
  color: var(--egohome-text-quiet);
  font-size: 10.5px;
  line-height: 1.55;
}

/* --- Motion --------------------------------------------------------------- */
.egohome-js .egohome-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.egohome-js .egohome-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .egohome *,
  .egohome *::before,
  .egohome *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .egohome-js .egohome-reveal { opacity: 1; transform: none; }
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1180px) {
  .egohome-trustGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .egohome-pathGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .egohome-productGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .egohome-hero .egohome-shell { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); }
}

@media (max-width: 960px) {
  .egohome-header .egohome-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 68px auto;
    align-items: center;
    min-height: 0;
    row-gap: 0;
  }
  .egohome-logo { grid-area: 1 / 1; width: 138px; }
  .egohome-logo img { width: 132px; }
  .egohome-actions { grid-area: 1 / 2; }
  .egohome-nav {
    grid-area: 2 / 1 / auto / -1;
    margin: 0;
    gap: 0;
    justify-content: space-between;
    border-top: 1px solid var(--egohome-line);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .egohome-nav::-webkit-scrollbar { display: none; }
  .egohome-nav a { font-size: 10px; padding-inline: 6px; }

  .egohome-hero .egohome-shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    padding-block: 44px 40px;
  }
  .egohome-heroArt { order: -1; max-width: 420px; margin-inline: auto; }
  .egohome-heroArt svg { max-height: 34vh; }
  .egohome-heroCopy h1 { max-width: none; }

  .egohome-bulk .egohome-shell,
  .egohome-tools .egohome-shell,
  .egohome-knowledge .egohome-shell { grid-template-columns: minmax(0, 1fr); }

  .egohome-footerGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .egohome-footerGrid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  /* keep the welcome moment (badge + h1) inside the first screen on phones */
  .egohome-hero .egohome-shell { padding-block: 26px 34px; gap: 18px; }
  .egohome-heroArt { max-width: 320px; }
  .egohome-heroArt svg { max-height: 23vh; }
  .egohome-heroCopy .egohome-eyebrow { margin-bottom: 16px; }
  .egohome-heroFacts { grid-template-columns: minmax(0, 1fr); }
  .egohome-trustGrid,
  .egohome-pathGrid,
  .egohome-productGrid { grid-template-columns: minmax(0, 1fr); }
  .egohome-pathCard { min-height: 0; }
  .egohome-heroCtas .egohome-btn,
  .egohome-bulkCtas .egohome-btn,
  .egohome-finalCtas .egohome-btn { width: 100%; }
  .egohome-footerGrid { grid-template-columns: minmax(0, 1fr); }
  .egohome-cart span { display: none; }
}

@media (max-width: 400px) {
  .egohome-logo { width: 118px; }
  .egohome-logo img { width: 116px; }
  .egohome-lang a { min-width: 28px; padding-inline: 3px; }
  .egohome-cart { padding-inline: 10px; }
}

/* Live integration */
.egohome-tools--linked .egohome-shell{grid-template-columns:minmax(0,760px);justify-content:center}html[lang="ro"] main.shopPage .shopProducts{display:none}.egohome .shopProducts .shopSectionHead{max-width:760px}.egohome .shopProducts .shopSectionHead p{color:var(--egohome-text-soft);font-size:14px;line-height:1.6}.egohome .shopFooter{position:relative}.egohome .professionalSalesGate{margin:18px auto 0;width:min(1360px,calc(100% - 36px))}@media(max-width:720px){.globalNav a{padding-left:5px;padding-right:5px;font-size:8px}.egohome-hero{min-height:auto}}
