:root {
  --bg: #fff;
  --fg: #050505;
  --muted: #5f6368;
  --soft: #8a8d91;
  --line: rgba(0,0,0,.105);
  --line-soft: rgba(0,0,0,.065);
  --surface: #f7f7f5;
  --surface-2: #efefec;
  --max: 1310px;
  --header: 64px;
  --mega: 286px;
  --radius: 10px;
  --ease: cubic-bezier(.22,1,.36,1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--fg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,.055);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  height: var(--header);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 116px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; width: max-content; }
.brand img { width: 94px; height: auto; }
.nav-center { display: flex; align-items: center; gap: 24px; }
.nav-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -.006em;
  color: rgba(0,0,0,.74);
  cursor: pointer;
  transition: color .18s var(--ease), opacity .18s var(--ease);
}
.nav-link:hover,
.nav-link[aria-expanded="true"] { color: #000; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-pill,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 35px;
  padding: 0 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 560;
  letter-spacing: -.01em;
  transition: transform .18s var(--ease), background .18s var(--ease), opacity .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.nav-pill:hover,
.small-btn:hover { transform: translateY(-1px); }
.nav-pill.muted,
.small-btn.light { background: rgba(0,0,0,.045); color: #0b0b0b; }
.nav-pill.muted:hover,
.small-btn.light:hover { background: rgba(0,0,0,.07); }
.nav-pill.dark,
.small-btn.dark { background: #050505; color: #fff; }
.nav-pill.dark:hover,
.small-btn.dark:hover { background: #202020; }
.mobile-toggle { display: none; }

.mega-layer {
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 90;
  height: 0;
  overflow: visible;
  pointer-events: none;
}
.mega-layer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--mega);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity .18s var(--ease), transform .24s var(--ease);
}
.mega-layer.active { height: var(--mega); pointer-events: auto; }
.mega-layer.active::before { opacity: 1; transform: translateY(0); }
.mega-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--mega);
  padding: 38px 0 36px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .24s var(--ease);
  display: none;
  position: relative;
}
.mega-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-grid { display: grid; gap: 88px; }
.mega-grid.two { grid-template-columns: 1fr 1fr; max-width: 880px; }
.mega-grid.three { grid-template-columns: 1fr .82fr .9fr; }
.mega-label {
  margin: 0 0 17px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .01em;
}
.mega-large {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 15px;
  font-size: 29px;
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 520;
  color: #000;
  transition: opacity .16s var(--ease), transform .16s var(--ease);
}
.mega-large:hover { opacity: .62; transform: translateX(2px); }
.mega-small {
  display: block;
  margin: 0 0 13px;
  font-size: 13px;
  font-weight: 650;
  color: #050505;
  transition: opacity .16s var(--ease), transform .16s var(--ease);
}
.mega-small:hover { opacity: .62; transform: translateX(2px); }
.mega-note { max-width: 300px; }
.mega-note p:not(.mega-label) {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.mega-note a { font-size: 13px; font-weight: 650; }
.menu-fog {
  position: fixed;
  z-index: 80;
  top: calc(var(--header) + var(--mega));
  left: 0;
  right: 0;
  bottom: 0;
  border: 0;
  padding: 0;
  background: rgba(235,235,233,.56);
  backdrop-filter: blur(26px) saturate(112%);
  -webkit-backdrop-filter: blur(26px) saturate(112%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}
.menu-fog.active { opacity: 1; pointer-events: auto; }

.page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 68px;
}
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: stretch;
}
.lead-feature { min-width: 0; }
.soft-visual {
  height: clamp(310px, 43vw, 548px);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #e9eef9;
  isolation: isolate;
}
.soft-orb { position: absolute; border-radius: 999px; filter: blur(34px); opacity: .9; mix-blend-mode: multiply; }
.soft-orb.one { width: 72%; height: 80%; left: -14%; bottom: -26%; background: linear-gradient(135deg, #ff8656, #f6a7db 58%, #ffd65d); }
.soft-orb.two { width: 54%; height: 68%; left: 28%; top: 18%; background: linear-gradient(135deg, #f779b7, #cba8ff 62%, #80cfff); }
.soft-orb.three { width: 36%; height: 55%; right: -10%; top: -12%; background: linear-gradient(135deg, #64d5ff, #ffa5f5 48%, #ffe66a); }
.visual-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.88);
  font-size: clamp(58px, 10vw, 124px);
  font-weight: 760;
  letter-spacing: -.08em;
  z-index: 3;
}
.lead-copy { padding: 21px 0 0; max-width: 760px; }
.label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 520;
}
.lead-copy > p:not(.label) {
  max-width: 610px;
  margin: 0 0 22px;
  color: #3d3d3b;
  font-size: 15px;
  line-height: 1.55;
}
.inline-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.inline-actions.center { justify-content: center; }
.side-stack { display: grid; gap: 16px; }
.product-rail {
  align-self: stretch;
  grid-template-rows: 1fr 1fr;
}
.side-card,
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  transition:
    transform .28s var(--ease),
    background .28s var(--ease),
    border-color .28s var(--ease),
    box-shadow .28s var(--ease);
  isolation: isolate;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,176,214,.42), transparent 34%),
    radial-gradient(circle at 84% 30%, rgba(160,190,255,.40), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,247,245,.96));
  transition: opacity .28s var(--ease);
}
.product-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(.22);
  transform-origin: left;
  opacity: .28;
  background: #050505;
  transition: transform .32s var(--ease), opacity .28s var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(0,0,0,.15);
  box-shadow: 0 18px 60px rgba(0,0,0,.065), inset 0 1px 0 rgba(255,255,255,.8);
}
.product-card:hover::before,
.product-card.is-featured::before { opacity: 1; }
.product-card:hover::after,
.product-card.is-featured::after { transform: scaleX(1); opacity: .9; }
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.side-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 23px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.045);
  color: rgba(0,0,0,.64);
  font-size: 11px;
  line-height: 1;
  letter-spacing: -.006em;
}
.product-arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,0,0,.055);
  font-size: 13px;
  transform: translate(-2px, 2px);
  opacity: .55;
  transition: transform .28s var(--ease), opacity .28s var(--ease), background .28s var(--ease);
}
.product-card:hover .product-arrow {
  transform: translate(0, 0);
  opacity: 1;
  background: #050505;
  color: #fff;
}
.product-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 16px;
  background: rgba(0,0,0,.92);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -.02em;
}
.identity-symbol {
  background: #f4f4f1;
  color: #050505;
  border: 1px solid rgba(0,0,0,.075);
}
.product-card-copy { margin-top: 26px; }
.side-card strong,
.product-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 560;
}
.product-card-copy > span {
  display: block;
  max-width: 230px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}
.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.product-points span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: rgba(0,0,0,.62);
  font-size: 11px;
  line-height: 1;
}
.compact-section { padding: 90px 0 76px; }
.section-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 560px);
  gap: 44px;
  align-items: start;
  margin-bottom: 26px;
}
.section-intro h2,
.editorial-copy h2,
.narrow-cta h2 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 520;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tile {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.tile:hover { background: var(--surface); border-color: rgba(0,0,0,.12); transform: translateY(-2px); }
.tile span { font-size: 12px; color: var(--muted); margin-bottom: auto; }
.tile strong { font-size: 18px; line-height: 1.15; letter-spacing: -.03em; font-weight: 560; margin-bottom: 10px; }
.tile em { font-style: normal; color: var(--muted); font-size: 12px; }
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 64px;
  padding: 74px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.editorial-copy p:not(.label) {
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
}
.text-link { font-size: 13px; font-weight: 650; }
.doc-list { border-top: 1px solid var(--line); }
.doc-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.doc-list a:hover { opacity: .62; transform: translateX(2px); }
.doc-list span { font-size: 15px; font-weight: 560; letter-spacing: -.015em; }
.doc-list em { font-style: normal; color: var(--muted); font-size: 12px; text-align: right; }
.narrow-cta {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  padding: 82px 0 28px;
}
.narrow-cta p:not(.label) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  margin: 18px auto 24px;
  max-width: 520px;
}
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  color: var(--muted);
}
.site-footer img { width: 92px; margin-bottom: 14px; }
.site-footer p { max-width: 320px; margin: 0; font-size: 12px; line-height: 1.55; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { font-size: 12px; }
.site-footer a:hover { color: #000; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Shared inner pages */
.inner-page { padding: 66px 0 78px; }
.inner-hero { max-width: 760px; margin-bottom: 56px; }
.inner-hero h1 { font-size: clamp(36px, 4.8vw, 64px); }
.inner-hero p { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 620px; }
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.content-card { min-height: 210px; padding: 20px; border: 1px solid var(--line-soft); border-radius: 5px; background: #fff; }
.content-card h2 { font-size: 19px; line-height: 1.2; letter-spacing: -.03em; margin-bottom: 12px; }
.content-card p { color: var(--muted); font-size: 13px; line-height: 1.55; }

@media (max-width: 980px) {
  :root { --header: 58px; --mega: auto; }
  .nav { width: min(100% - 28px, var(--max)); grid-template-columns: 1fr auto; }
  .brand img { width: 88px; }
  .nav-center, .nav-actions .nav-pill { display: none; }
  .mobile-toggle {
    display: inline-flex; width: 36px; height: 36px; border: 0; border-radius: 999px; background: rgba(0,0,0,.055); align-items: center; justify-content: center;
  }
  .mobile-toggle span,
  .mobile-toggle span::before,
  .mobile-toggle span::after { content: ""; display: block; width: 15px; height: 1.4px; background: #111; position: relative; transition: transform .22s var(--ease), opacity .22s var(--ease); }
  .mobile-toggle span::before { position: absolute; transform: translateY(-5px); }
  .mobile-toggle span::after { position: absolute; transform: translateY(5px); }
  body.mobile-menu .mobile-toggle span { background: transparent; }
  body.mobile-menu .mobile-toggle span::before { transform: rotate(45deg); }
  body.mobile-menu .mobile-toggle span::after { transform: rotate(-45deg); }
  .mega-layer { top: var(--header); height: 0; overflow: hidden; background: #fff; }
  .mega-layer::before { display: none; }
  .mega-layer.active { height: calc(100vh - var(--header)); overflow: auto; border-bottom: 1px solid var(--line-soft); }
  .mega-panel { width: min(100% - 28px, var(--max)); min-height: auto; padding: 28px 0 40px; }
  .mega-grid, .mega-grid.two, .mega-grid.three { grid-template-columns: 1fr; gap: 28px; }
  .mega-large { font-size: 26px; margin-bottom: 14px; }
  .menu-fog { display: none; }
  .page { width: min(100% - 28px, var(--max)); padding-top: 30px; }
  .lead-grid { grid-template-columns: 1fr; }
  .soft-visual { height: 340px; }
  .side-stack { grid-template-columns: 1fr 1fr; gap: 12px; }
  .side-card { min-height: 190px; }
  .section-intro { grid-template-columns: 1fr; gap: 8px; }
  .link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .editorial-grid { grid-template-columns: 1fr; gap: 30px; padding: 54px 0; }
  .doc-list a { grid-template-columns: 1fr; gap: 4px; }
  .doc-list em { text-align: left; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .lead-copy { padding-top: 18px; }
  h1 { font-size: 34px; line-height: 1.02; }
  .soft-visual { height: 260px; }
  .visual-text { font-size: 54px; }
  .side-stack, .link-grid { grid-template-columns: 1fr; }
  .compact-section { padding: 58px 0 50px; }
  .site-footer { flex-direction: column; gap: 26px; }
}

/* Product-focused refinement */
.brand img { width: 104px; }
.nav-actions { position: relative; }
.signin-menu { position: relative; }
.signin-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.045);
  font-size: 13px;
  font-weight: 560;
  cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.signin-trigger:hover { background: rgba(0,0,0,.075); transform: translateY(-1px); }
.signin-trigger span { font-size: 12px; transform: translateY(-1px); color: rgba(0,0,0,.55); }
.signin-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 248px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  opacity: 0;
  transform: translateY(-6px) scale(.985);
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .22s var(--ease);
}
.signin-menu:hover .signin-dropdown,
.signin-menu:focus-within .signin-dropdown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.signin-dropdown a {
  display: block;
  padding: 12px 13px;
  border-radius: 11px;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.signin-dropdown a:hover { background: rgba(0,0,0,.045); transform: translateX(2px); }
.signin-dropdown strong { display: block; font-size: 13px; line-height: 1.15; margin-bottom: 4px; }
.signin-dropdown span { display: block; font-size: 12px; line-height: 1.42; color: var(--muted); }

.animated-visual {
  background: linear-gradient(120deg, #edf3ff, #f6d6ef, #f6b8c5, #dfeaff, #d9f6ff);
  background-size: 280% 280%;
  animation: gradientDrift 14s ease-in-out infinite;
}
.animated-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 23% 22%, rgba(255,255,255,.55), transparent 28%),
    radial-gradient(circle at 70% 64%, rgba(255,255,255,.42), transparent 34%),
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,.20));
  z-index: 2;
  pointer-events: none;
}
.animated-visual .soft-orb { animation: orbFloat 18s ease-in-out infinite alternate; }
.animated-visual .soft-orb.two { animation-delay: -5s; }
.animated-visual .soft-orb.three { animation-delay: -10s; }
.visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 4;
  color: #fff;
  text-shadow: 0 1px 28px rgba(0,0,0,.30);
}
.caption-kicker {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .01em;
  opacity: .86;
}
.rotating-line {
  display: block;
  max-width: 620px;
  font-size: clamp(24px, 3.3vw, 44px);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 560;
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}
.rotating-line.is-changing { opacity: 0; transform: translateY(6px); }

.product-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  gap: 28px;
  align-items: stretch;
  padding: 74px 0;
  border-top: 1px solid var(--line-soft);
}
.spotlight-copy {
  padding: 10px 0;
  max-width: 670px;
}
.spotlight-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 520;
}
.spotlight-copy p:not(.label) {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.spotlight-panel,
.identity-card {
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f7f7f5;
  overflow: hidden;
}
.spotlight-panel {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 22% 20%, rgba(168,198,255,.58), transparent 32%),
    radial-gradient(circle at 80% 74%, rgba(245,188,218,.58), transparent 31%),
    #f6f6f2;
}
.mini-window {
  width: min(100%, 420px);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.075);
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  overflow: hidden;
}
.mini-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(0,0,0,.06); }
.mini-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.18); }
.mini-list { padding: 10px; }
.mini-list div { padding: 14px; border-radius: 12px; }
.mini-list div + div { border-top: 1px solid rgba(0,0,0,.055); }
.mini-list strong { display: block; font-size: 13.5px; margin-bottom: 5px; }
.mini-list span { display: block; font-size: 12px; line-height: 1.45; color: var(--muted); }
.identity-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0) 45%),
    #f7f7f5;
}
.identity-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #050505;
  color: #fff;
  font-weight: 650;
  margin-bottom: auto;
}
.identity-card strong { font-size: 24px; line-height: 1.1; letter-spacing: -.04em; margin-bottom: 12px; }
.identity-card p { margin: 0 0 18px; color: var(--muted); font-size: 13.5px; line-height: 1.58; max-width: 360px; }
.identity-card ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(0,0,0,.08); }
.identity-card li { padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 13px; color: rgba(0,0,0,.78); }

@keyframes gradientDrift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes orbFloat {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(4%, -5%, 0) scale(1.05); }
}

@media (max-width: 980px) {
  .signin-menu { display: none; }
  .product-spotlight { grid-template-columns: 1fr; padding: 54px 0; }
  .spotlight-panel, .identity-card { min-height: 300px; }
}
@media (max-width: 620px) {
  .visual-caption { left: 18px; right: 18px; bottom: 18px; }
  .rotating-line { font-size: 25px; }
  .spotlight-copy h2 { font-size: 31px; }
}


/* Company and Manifesto pages */
.about-hero { max-width: 860px; }
.about-hero .inline-actions { margin-top: 22px; }
.about-story {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  padding: 72px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.story-marker span {
  display: block;
  font-size: 54px;
  line-height: .95;
  letter-spacing: -.065em;
  font-weight: 520;
}
.story-marker em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
}
.story-copy h2 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.05em;
  font-weight: 520;
}
.story-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}
.principles-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.principles-strip a {
  min-height: 145px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s var(--ease), opacity .2s var(--ease);
}
.principles-strip a:hover { background: var(--surface); }
.principles-strip span { font-size: 12px; color: var(--muted); }
.principles-strip strong { font-size: 17px; line-height: 1.18; letter-spacing: -.03em; font-weight: 560; }
.company-manifesto { border-top: 0; }
.manifesto-page { padding-top: 64px; }
.manifesto-hero {
  max-width: 920px;
  padding: 0 0 60px;
}
.manifesto-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 520;
}
.manifesto-hero p:not(.label) {
  max-width: 670px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}
.manifesto-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 86px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
  padding-top: 42px;
}
.manifesto-index {
  position: sticky;
  top: calc(var(--header) + 28px);
  display: grid;
  gap: 9px;
  padding-top: 4px;
}
.manifesto-index a {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.2;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.manifesto-index a:hover { color: #000; transform: translateX(2px); }
.manifesto-copy section {
  padding: 0 0 44px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 94px;
}
.manifesto-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 520;
}
.manifesto-copy p {
  color: #343434;
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 16px;
}
.manifesto-copy p strong { color: #000; }

@media (max-width: 980px) {
  .about-story, .manifesto-layout { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-index { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); border-bottom: 1px solid var(--line-soft); padding-bottom: 24px; }
  .principles-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .story-marker span { font-size: 42px; }
  .manifesto-hero h1 { font-size: 42px; }
  .principles-strip { grid-template-columns: 1fr; }
  .principles-strip a { min-height: 105px; }
}


/* Ackaia ID brand integration */
.btn-with-logo { gap: 7px; }
.btn-with-logo img { width: 14px; height: 14px; object-fit: contain; opacity: .82; }

.signin-dropdown a.signin-product {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.signin-product > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding: 5px;
  border-radius: 9px;
  background: rgba(0,0,0,.045);
}
.signin-product span { display: block; min-width: 0; }
.signin-dropdown .signin-product strong { margin-bottom: 3px; }
.signin-dropdown .signin-product em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.signin-product-id:hover > img { background: rgba(0,0,0,.075); }

.mega-brand-link { display: inline-flex; align-items: center; gap: 11px; }
.mega-brand-link img { width: 26px; height: 26px; object-fit: contain; opacity: .92; transform: translateY(1px); }

.identity-symbol {
  background: #f7f7f4;
  color: #050505;
  border: 1px solid rgba(0,0,0,.075);
}
.identity-symbol img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: .92;
}
.product-card:hover .identity-symbol { background: #fff; border-color: rgba(0,0,0,.12); }

.identity-logo {
  background: #fff;
  border: 1px solid rgba(0,0,0,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.identity-logo img { width: 34px; height: 34px; object-fit: contain; opacity: .94; }

.tile-with-logo span { display: inline-flex; align-items: center; gap: 7px; }
.tile-with-logo span img { width: 16px; height: 16px; object-fit: contain; opacity: .84; }

.footer-id-link { display: inline-flex; align-items: center; gap: 6px; }
.footer-id-link img { width: 14px; height: 14px; object-fit: contain; opacity: .72; }

@media (max-width: 620px) {
  .mega-brand-link img { width: 22px; height: 22px; }
}

/* Ackaia ID logo size correction */
.product-symbol.identity-symbol {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  overflow: hidden;
}
.product-symbol.identity-symbol img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: .96;
  transform: scale(1.28);
}
.signin-dropdown a.signin-product {
  grid-template-columns: 38px minmax(0, 1fr);
}
.signin-product > img {
  width: 38px;
  height: 38px;
  padding: 3px;
  transform: scale(1.12);
}
.mega-brand-link img {
  width: 32px;
  height: 32px;
}
.identity-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
}
.identity-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: .96;
  transform: scale(1.24);
}
.tile-with-logo span img {
  width: 20px;
  height: 20px;
  transform: scale(1.14);
}
.footer-id-link img {
  width: 17px;
  height: 17px;
  transform: scale(1.1);
}
.btn-with-logo img {
  width: 18px;
  height: 18px;
  transform: scale(1.1);
}
