

:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --canvas: #f3f2ef;
  --soft: #e9e9ed;
  --soft-strong: #dedee5;
  --line: rgba(0, 0, 0, 0.08);
  --panel: #f5f5f7;
  --blue: #0071e3;
  --cyan: #0071e3;
  --violet: #725cff;
  --amber: #bf7a00;
  --pointer-x: 50vw;
  --pointer-y: 35vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { color: #fff; background: var(--blue); }
:focus-visible { outline: 3px solid rgba(0, 113, 227, 0.28); outline-offset: 3px; }

.pointer-glow {
  position: fixed;
  z-index: 90;
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .16;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.72), rgba(117,153,210,.08) 36%, transparent 70%);
  filter: blur(24px);
  mix-blend-mode: soft-light;
  transition: opacity 280ms ease;
}
.interactive-surface { position: relative; overflow: hidden; }
.interactive-surface::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(260px circle at var(--surface-x, 50%) var(--surface-y, 50%), rgba(255,255,255,.2), rgba(138,166,224,.045) 42%, transparent 74%);
  mix-blend-mode: soft-light;
  transition: opacity 320ms ease;
}
.interactive-surface:hover::after { opacity: .72; }
.refined-action { position: relative; isolation: isolate; overflow: hidden; }
.refined-action::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(90px circle at var(--action-x, 50%) var(--action-y, 50%), rgba(255,255,255,.2), transparent 72%);
  transition: opacity 260ms ease;
}
.refined-action:hover::before, .refined-action:focus-visible::before { opacity: 1; }
.refined-action.is-pressed, .refined-action:active { transform: translateY(0) scale(.982) !important; filter: brightness(.96); transition-duration: 70ms !important; }

.site-shell { position: relative; isolation: isolate; min-height: 100vh; overflow: hidden; background: rgba(243,242,239,.5); }
.motion-background {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(140deg, #f3f2ef 0%, #e9edf0 46%, #f4f0ea 100%);
}
.motion-background::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.36) 48%, transparent 62%);
  transform: translate3d(-16%, 0, 0) rotate(4deg);
  opacity: .58;
  animation: background-sheen 22s ease-in-out infinite alternate;
}
.motion-field { position: absolute; display: block; border-radius: 50%; filter: blur(110px); will-change: transform; }
.motion-field-one { width: max(620px, 66vw); height: max(620px, 66vw); left: -28vw; top: -34vw; background: rgba(93,145,211,.25); animation: background-drift-one 26s cubic-bezier(.45,.05,.35,1) infinite alternate; }
.motion-field-two { width: max(560px, 58vw); height: max(560px, 58vw); right: -24vw; top: 12vh; background: rgba(119,102,201,.2); animation: background-drift-two 31s cubic-bezier(.45,.05,.35,1) infinite alternate; }
.motion-field-three { width: max(520px, 54vw); height: max(520px, 54vw); left: 20vw; bottom: -30vw; background: rgba(214,169,102,.14); animation: background-drift-three 29s cubic-bezier(.45,.05,.35,1) infinite alternate; }

.topbar, .footer, .section, .about-section, .article-nav, .article-shell, .article-footer, .studio-nav, .studio-main {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.topbar {
  position: sticky;
  top: 14px;
  z-index: 30;
  height: 62px;
  margin-top: 14px;
  padding-inline: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 20px;
  background: rgba(247,247,245,.68);
  box-shadow: 0 12px 36px rgba(31,35,45,.08), inset 0 1px rgba(255,255,255,.72);
  backdrop-filter: blur(24px) saturate(155%);
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 650; letter-spacing: 0.12em; }
.wordmark-glyph {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: linear-gradient(145deg, #1d1d1f, #08090c);
  border-radius: 9px;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 7px 18px rgba(38,48,67,.2);
  transition: color 360ms ease, transform 360ms cubic-bezier(.2,.8,.2,1), background 520ms ease, box-shadow 520ms ease;
  -webkit-box-reflect: below 2px linear-gradient(to bottom, transparent 58%, rgba(39,53,76,.1));
}
.wordmark:hover .wordmark-glyph, .wordmark:focus-visible .wordmark-glyph { color: #fff; transform: translateY(-1px); background: linear-gradient(135deg, #3f6178 0%, #6573a7 56%, #8b6f9c 100%); box-shadow: 0 10px 28px rgba(72,93,132,.32), 0 0 24px rgba(107,104,167,.2); }
.wordmark:active .wordmark-glyph { transform: translateY(0) scale(.94); }
.nav-links { display: flex; align-items: center; gap: 30px; color: #515154; font-size: 12px; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: var(--blue); }
.nav-links .studio-link {
  padding: 9px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}
.nav-links .studio-link:hover { color: #fff; background: #000; transform: translateY(-1px); }

.hero {
  width: min(1180px, calc(100% - 64px));
  min-height: 990px;
  margin: 0 auto;
  padding: 106px 0 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-bottom: 0;
}
.hero::after { display: none; }
.hero-copy { width: 100%; max-width: 1020px; z-index: 2; padding: 0; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #86868b;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
}
.eyebrow span { width: 18px; height: 1px; background: #a1a1a6; }
.hero h1 {
  margin: 32px auto 28px;
  max-width: 1020px;
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 690;
}
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 0;
  background: linear-gradient(100deg, #6b6c70 5%, #8588a0 45%, #556d7a 82%);
  background-clip: text;
  -webkit-background-clip: text;
  animation: none;
}
.hero-lede { margin: 0 auto; color: var(--muted); font-size: clamp(19px, 2vw, 25px); line-height: 1.55; letter-spacing: -0.025em; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.studio-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 999px;
  padding: 14px 19px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.studio-primary:hover { transform: translateY(-2px); background: #000; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14); }
.primary-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 192px;
  overflow: hidden;
  padding: 8px 9px 8px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, #242a34, #111318 70%);
  box-shadow: 0 12px 30px rgba(25,30,41,.16), inset 0 1px rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms ease, background 420ms ease;
}
.primary-action::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; background: linear-gradient(110deg, rgba(80,111,139,.72), rgba(104,94,151,.64)); transition: opacity 360ms ease; }
.primary-action:hover, .primary-action:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(38,52,77,.24), inset 0 1px rgba(255,255,255,.18); }
.primary-action:hover::before, .primary-action:focus-visible::before { opacity: 1; }
.primary-action:active { transform: translateY(-1px) scale(.985); }
.explore-pulse { position: relative; display: grid; place-items: center; width: 34px; height: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); }
.explore-pulse::before { content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.68); animation: explore-ripple 2.5s linear infinite; }
.explore-pulse i { position: relative; z-index: 1; font-style: normal; transition: transform 320ms cubic-bezier(.2,.8,.2,1); }
.primary-action:hover .explore-pulse i { transform: translate(2px, 2px); }
.text-action { color: var(--blue); font-size: 14px; }
.text-action::after { content: " ›"; }

.hero-object {
  width: min(980px, 100%);
  height: 480px;
  margin-top: 78px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255,255,255,.9), transparent 27%),
    radial-gradient(circle at 78% 86%, rgba(111, 88, 198, .36), transparent 35%),
    radial-gradient(circle at 68% 10%, rgba(89, 160, 178, .28), transparent 31%),
    linear-gradient(145deg, #d7dbe1, #aab5c0 48%, #777989);
  box-shadow: 0 34px 86px rgba(42,47,60,.17), inset 0 1px rgba(255,255,255,.76);
}
.core-surface {
  position: absolute;
  width: min(590px, 67%);
  height: 320px;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background: rgba(251,252,253,.62);
  box-shadow: 0 30px 80px rgba(26,31,44,.22), inset 0 1px rgba(255,255,255,.84);
  backdrop-filter: blur(32px) saturate(145%);
  animation: surface-float 8s ease-in-out infinite;
}
.core-window-bar { height: 50px; padding: 0 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(0,0,0,.055); }
.core-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(29,29,31,.18); }
.core-window-bar span { margin-left: auto; color: rgba(29,29,31,.48); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.core-preview { display: grid; grid-template-columns: .82fr 1.18fr; gap: 22px; height: 218px; padding: 24px; }
.preview-image { position: relative; overflow: hidden; border-radius: 18px; background: linear-gradient(145deg, #20242c, #596574 54%, #c6d1d4); box-shadow: inset 0 1px rgba(255,255,255,.18); }
.preview-image::before { content: ""; position: absolute; width: 110px; height: 110px; left: 50%; top: 48%; transform: translate(-50%,-50%); border-radius: 28px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(12px); }
.preview-image span { position: absolute; left: 14px; bottom: 12px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 650; letter-spacing: .08em; }
.preview-copy { align-self: center; }
.preview-copy small { color: #70747c; font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.preview-copy strong { display: block; margin: 9px 0 22px; color: #22242a; font-size: 27px; line-height: 1.05; letter-spacing: -.045em; }
.preview-copy p { margin: 10px 0 0; color: #71757c; font-size: 10px; }
.preview-progress { height: 5px; overflow: hidden; border-radius: 999px; background: rgba(29,29,31,.09); }
.preview-progress span { display: block; width: 73%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #506c80, #8173b7); }
.core-label { position: absolute; left: 0; right: 0; bottom: 17px; color: #737780; text-align: center; font-size: 8px; font-weight: 650; letter-spacing: .16em; }
.orbit { position: absolute; left: 50%; top: 54%; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); transform: translate(-50%, -50%); }
.orbit::before { display: none; }
.orbit-one { width: 690px; height: 690px; }
.orbit-two { width: 820px; height: 360px; transform: translate(-50%, -50%) rotate(-8deg); }
.float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  color: #555963;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(22px) saturate(150%);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  box-shadow: 0 12px 34px rgba(31,36,50,.12), inset 0 1px rgba(255,255,255,.76);
}
.float-chip b { color: var(--ink); font-size: 14px; }
.float-chip i { width: 7px; height: 7px; border-radius: 50%; background: #34c759; }
.chip-one { left: 7%; top: 26%; animation: chip-float 7s ease-in-out infinite; }
.chip-two { right: 7%; bottom: 24%; animation: chip-float 8s ease-in-out -3s infinite; }
.glass-card { position: absolute; z-index: 5; display: grid; border: 1px solid rgba(255,255,255,.58); border-radius: 22px; background: rgba(245,247,250,.5); box-shadow: 0 18px 50px rgba(31,36,50,.15), inset 0 1px rgba(255,255,255,.7); backdrop-filter: blur(26px) saturate(145%); }
.glass-card small { color: rgba(30,34,42,.52); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.glass-card strong { color: #24262c; letter-spacing: -.025em; }
.glass-note { left: 5%; bottom: 8%; width: 230px; padding: 18px; gap: 8px; transform: rotate(-2deg); }
.glass-note strong { font-size: 15px; }
.glass-note span { color: #586978; font-size: 9px; font-weight: 650; }
.glass-principle { right: 4%; top: 10%; width: 220px; padding: 20px; gap: 10px; transform: rotate(2deg); }
.glass-principle strong { font-size: 16px; line-height: 1.25; }
.scroll-mark { display: none; }

.section { padding: 132px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 58px; }
.section-index { display: block; margin-bottom: 16px; color: #86868b; font-size: 10px; font-weight: 600; letter-spacing: .14em; }
.section-head h2 { margin: 0; font-size: clamp(44px, 5.4vw, 72px); line-height: 1.03; letter-spacing: -.06em; font-weight: 650; }
.section-head > p { margin: 0 0 6px; max-width: 360px; color: var(--muted); line-height: 1.7; font-size: 15px; letter-spacing: -.01em; }
.products-section { border-bottom: 0; }
.product-showcase { position: relative; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; position: relative; }
.product-grid::before { content: ""; position: absolute; z-index: 0; inset: 12% -7% 3%; border-radius: 50%; background: radial-gradient(circle, rgba(109,132,163,.16), transparent 66%); filter: blur(34px); }
.product-card {
  grid-column: span 4;
  min-height: 510px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 32%),
    rgba(255,255,255,.54);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(47,51,62,.08), inset 0 1px rgba(255,255,255,.78);
  backdrop-filter: blur(24px) saturate(135%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease;
}
.product-card::before { content: ""; position: absolute; width: 260px; height: 260px; right: -140px; top: -150px; border-radius: 50%; background: var(--card-accent); filter: blur(80px); opacity: .14; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 28px 62px rgba(42,47,60,.14), inset 0 1px rgba(255,255,255,.82); }
.accent-cyan { --card-accent: #54c7ec; }
.accent-violet { --card-accent: #725cff; }
.accent-amber { --card-accent: #ff9f0a; }
.card-sequence { position: absolute; right: 27px; top: 20px; color: rgba(44,47,55,.13); font-size: 52px; font-weight: 650; letter-spacing: -.06em; }
.product-topline { display: flex; align-items: center; gap: 8px; color: #86868b; font-size: 9px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--card-accent); }
.product-mark { width: 82px; height: 82px; display: grid; place-items: center; margin: 46px 0 32px; border: 1px solid rgba(255,255,255,.72); border-radius: 22px; background: rgba(255,255,255,.58); box-shadow: 0 10px 30px rgba(39,44,55,.1), inset 0 1px rgba(255,255,255,.9); backdrop-filter: blur(18px); }
.product-mark span { color: var(--ink); font-size: 31px; font-weight: 680; }
.product-mark img { width: 72%; height: 72%; display: block; object-fit: contain; border-radius: 18%; }
.product-card h3 { margin: 0; font-size: 31px; letter-spacing: -.045em; font-weight: 650; }
.product-tagline { min-height: 48px; margin: 10px 0 16px; color: #424245; line-height: 1.55; letter-spacing: -.015em; }
.product-description { min-height: 68px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-meta { display: flex; gap: 8px; margin-top: 23px; }
.product-meta span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; color: #60636a; background: rgba(255,255,255,.43); font-size: 9px; font-weight: 600; letter-spacing: .04em; backdrop-filter: blur(12px); }
.product-footer { position: absolute; left: 30px; right: 30px; bottom: 28px; display: flex; align-items: center; justify-content: space-between; }
.download-action { position: relative; display: inline-flex; align-items: center; gap: 11px; padding: 4px 7px 4px 2px; color: #41444b; font-size: 11px; font-weight: 650; letter-spacing: .02em; transition: color 260ms ease, transform 320ms cubic-bezier(.2,.8,.2,1); }
.download-action::before, .download-action::after { content: ""; position: absolute; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--card-accent, #667ca1); opacity: 0; box-shadow: 0 0 10px color-mix(in srgb, var(--card-accent, #667ca1) 62%, transparent); transition: opacity 260ms ease, transform 420ms cubic-bezier(.2,.8,.2,1); }
.download-action::before { left: 14px; }
.download-action::after { right: 6px; }
.download-icon { position: relative; isolation: isolate; display: grid; place-items: center; width: 29px; height: 29px; overflow: hidden; border: 1.5px solid color-mix(in srgb, var(--card-accent, #667ca1) 64%, #6f737b); border-radius: 9px; color: #3c414a; background: rgba(255,255,255,.44); box-shadow: 0 5px 14px rgba(48,55,69,.08), inset 0 1px rgba(255,255,255,.72); font-size: 15px; transition: transform 360ms cubic-bezier(.34,1.56,.64,1), color 280ms ease, box-shadow 360ms ease; }
.download-icon::before { content: ""; position: absolute; z-index: -1; inset: -2px; border-radius: inherit; background: linear-gradient(145deg, color-mix(in srgb, var(--card-accent, #667ca1) 72%, #526b8c), #686497); opacity: 0; transform: scale(.3) rotate(-35deg); transition: opacity 300ms ease, transform 420ms cubic-bezier(.2,.8,.2,1); }
.download-label { transition: transform 320ms cubic-bezier(.2,.8,.2,1), color 260ms ease; }
.download-action:hover, .download-action:focus-visible { color: #252931; transform: translateY(-1px); }
.download-action:hover .download-icon, .download-action:focus-visible .download-icon { color: #fff; transform: scale(1.08); box-shadow: 0 7px 20px color-mix(in srgb, var(--card-accent, #667ca1) 28%, transparent), inset 0 1px rgba(255,255,255,.28); }
.download-action:hover .download-icon::before, .download-action:focus-visible .download-icon::before { opacity: 1; transform: scale(1) rotate(0); }
.download-action:hover .download-label, .download-action:focus-visible .download-label { transform: translateX(4px); }
.download-action:hover::before { opacity: .72; transform: translate(-13px, -50%); }
.download-action:hover::after { opacity: .72; transform: translate(12px, -50%); }
.download-action:active { transform: translateY(0) scale(.98); }
.download-action.disabled { padding: 10px 14px; border-radius: 999px; color: #86868b; background: rgba(226,227,231,.76); cursor: not-allowed; }
.download-action.disabled::before, .download-action.disabled::after { display: none; }
.file-size { color: #86868b; font-size: 10px; }
.product-empty { grid-column: 1 / -1; margin: 0; padding: 70px 30px; border: 1px solid rgba(255,255,255,.62); border-radius: 28px; color: var(--muted); background: rgba(255,255,255,.4); text-align: center; }

/* Product layouts by inventory size */
.product-count-1 .product-card { grid-column: 1 / -1; min-height: 540px; padding: 48px; }
.product-count-1 .product-card h3 { margin-top: 52px; font-size: clamp(46px, 6vw, 72px); }
.product-count-1 .product-mark { position: absolute; top: 46px; right: 48px; width: 132px; height: 132px; margin: 0; border-radius: 34px; }
.product-count-1 .product-mark span { font-size: 52px; }
.product-count-1 .product-tagline { max-width: 620px; margin-top: 18px; font-size: 21px; }
.product-count-1 .product-description { max-width: 620px; font-size: 15px; }
.product-count-1 .product-footer { left: 48px; right: 48px; bottom: 42px; }

.product-count-2 .product-card { grid-column: span 6; min-height: 560px; }

.product-count-3 .product-card:first-child { grid-column: span 7; grid-row: span 2; min-height: 762px; padding: 40px; }
.product-count-3 .product-card:first-child .product-mark { width: 108px; height: 108px; margin-top: 78px; border-radius: 29px; }
.product-count-3 .product-card:first-child .product-mark span { font-size: 42px; }
.product-count-3 .product-card:first-child h3 { font-size: 46px; }
.product-count-3 .product-card:first-child .product-tagline { max-width: 520px; font-size: 20px; }
.product-count-3 .product-card:first-child .product-description { max-width: 520px; font-size: 15px; }
.product-count-3 .product-card:first-child .product-footer { left: 40px; right: 40px; bottom: 38px; }
.product-count-3 .product-card:not(:first-child) { grid-column: span 5; min-height: 370px; padding: 24px; }
.product-count-3 .product-card:not(:first-child) .card-sequence { font-size: 38px; }
.product-count-3 .product-card:not(:first-child) .product-mark { width: 54px; height: 54px; margin: 26px 0 15px; border-radius: 16px; }
.product-count-3 .product-card:not(:first-child) .product-mark span { font-size: 22px; }
.product-count-3 .product-card:not(:first-child) h3 { font-size: 24px; }
.product-count-3 .product-card:not(:first-child) .product-tagline { min-height: 0; margin: 7px 0 10px; font-size: 13px; }
.product-count-3 .product-card:not(:first-child) .product-description { min-height: 0; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 11px; }
.product-count-3 .product-card:not(:first-child) .product-meta { margin-top: 12px; }
.product-count-3 .product-card:not(:first-child) .product-footer { left: 24px; right: 24px; bottom: 20px; }

.product-rail-controls { display: flex; align-items: center; justify-content: flex-end; gap: 9px; margin: -8px 0 20px; }
.product-rail-controls > span { margin-right: auto; color: #747880; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.product-rail-controls button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.66); border-radius: 50%; color: #2b2d33; background: rgba(255,255,255,.5); box-shadow: 0 8px 24px rgba(47,51,62,.08), inset 0 1px rgba(255,255,255,.75); backdrop-filter: blur(18px); cursor: pointer; transition: transform 180ms ease, opacity 180ms ease, background 180ms ease; }
.product-rail-controls button:hover:not(:disabled) { transform: translateY(-2px); background: rgba(255,255,255,.78); }
.product-rail-controls button:disabled { opacity: .28; cursor: default; }
.product-count-many .product-grid { display: flex; gap: 22px; overflow-x: auto; padding: 8px 3px 32px; scroll-snap-type: x mandatory; scroll-padding-left: 3px; scrollbar-width: none; overscroll-behavior-inline: contain; }
.product-count-many .product-grid::-webkit-scrollbar { display: none; }
.product-count-many .product-grid::before { display: none; }
.product-count-many .product-card { flex: 0 0 clamp(340px, 38vw, 430px); min-height: 540px; scroll-snap-align: start; }

.notes-section { padding-bottom: 142px; }
.notes-section::before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: linear-gradient(145deg, rgba(223,227,229,.84), rgba(207,210,216,.82) 55%, rgba(218,215,223,.82)); background-size: 150% 150%; backdrop-filter: blur(18px); animation: section-light-shift 20s ease-in-out infinite alternate; }
.notes-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; border: 0; }
.note-row { display: grid; grid-template-columns: 42px 1fr 36px; align-items: center; min-height: 220px; padding: 28px; border: 1px solid rgba(255,255,255,.62); border-radius: 28px; background: rgba(255,255,255,.46); box-shadow: 0 14px 40px rgba(49,53,66,.08), inset 0 1px rgba(255,255,255,.72); backdrop-filter: blur(22px) saturate(135%); transition: transform 240ms ease, box-shadow 240ms ease; }
.note-row:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(49,53,66,.13), inset 0 1px rgba(255,255,255,.78); }
.note-number { color: #898d95; font-size: 11px; font-weight: 600; }
.note-meta { display: flex; gap: 14px; margin-bottom: 12px; color: #86868b; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.note-meta span { color: var(--blue); }
.note-main h3 { margin: 0; color: var(--ink); font-size: 26px; letter-spacing: -.035em; font-weight: 620; }
.note-main p { margin: 9px 0 0; max-width: 680px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.note-arrow { justify-self: end; color: #86868b; font-size: 22px; transition: transform 200ms ease, color 200ms ease; }
.note-row:hover .note-arrow { transform: translate(4px, -4px); color: var(--blue); }

.about-section { position: relative; overflow: hidden; margin-block: 120px; padding: 92px; border: 1px solid rgba(255,255,255,.12); border-radius: 40px; color: #f5f5f7; background: radial-gradient(circle at 84% 16%, rgba(120,110,205,.28), transparent 27%), radial-gradient(circle at 8% 100%, rgba(64,126,141,.2), transparent 34%), #17181c; background-size: 130% 130%; box-shadow: 0 28px 70px rgba(35,38,48,.16); animation: about-light-shift 18s ease-in-out infinite alternate; }
.about-section::after { content: ""; position: absolute; width: 390px; height: 390px; right: -160px; bottom: -230px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.about-kicker { color: #a5a7ad; font-size: 10px; font-weight: 600; letter-spacing: .14em; }
.about-statement { margin: 48px 0 62px; font-size: clamp(36px, 5vw, 68px); line-height: 1.16; letter-spacing: -.055em; font-weight: 620; }
.about-statement p { margin: 0; }
.about-statement em { color: #a7aab3; font-style: normal; }
.about-foot { position: relative; z-index: 1; display: flex; justify-content: space-between; color: #8e9199; font-size: 13px; }
.about-foot a { color: #f5f5f7; }
.footer { min-height: 118px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #86868b; font-size: 9px; font-weight: 600; letter-spacing: .1em; }
.footer div { display: flex; align-items: center; gap: 9px; }
.signal { width: 7px; height: 7px; border-radius: 50%; background: #34c759; }

.site-share { position: fixed; left: 22px; bottom: 18px; z-index: 45; }
.share-toggle { position: relative; isolation: isolate; display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 96px; height: 42px; overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: #fff; background: linear-gradient(135deg, #506a84, #75659a); box-shadow: 0 10px 28px rgba(54,64,91,.22), inset 0 1px rgba(255,255,255,.22); cursor: pointer; font-size: 11px; font-weight: 650; letter-spacing: .04em; transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 360ms ease, background 420ms ease; }
.share-toggle::before { content: ""; position: absolute; z-index: -1; inset: -60%; opacity: 0; background: radial-gradient(circle, rgba(255,255,255,.36), transparent 58%); transform: scale(.4); transition: opacity 380ms ease, transform 500ms ease; }
.share-toggle:hover, .share-toggle:focus-visible, .site-share.is-open .share-toggle { transform: translateY(-3px); background: linear-gradient(135deg, #6e6092, #4b6b88); box-shadow: 0 16px 34px rgba(58,69,105,.3), inset 0 1px rgba(255,255,255,.26); }
.share-toggle:hover::before, .site-share.is-open .share-toggle::before { opacity: 1; transform: scale(1); }
.share-toggle:active { transform: translateY(-1px) scale(.975); }
.share-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform 420ms cubic-bezier(.2,.8,.2,1); }
.share-toggle:hover svg, .site-share.is-open .share-toggle svg { transform: rotate(180deg); }
.share-menu { position: absolute; left: 0; bottom: calc(100% + 12px); width: 246px; padding: 15px; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(10px) scale(.94); transform-origin: left bottom; border: 1px solid rgba(255,255,255,.72); border-radius: 22px; color: var(--ink); background: rgba(248,248,247,.82); box-shadow: 0 24px 58px rgba(38,43,56,.2), inset 0 1px rgba(255,255,255,.86); backdrop-filter: blur(28px) saturate(165%); transition: opacity 320ms ease, visibility 320ms ease, transform 420ms cubic-bezier(.2,.8,.2,1); }
.site-share.is-open .share-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.share-menu::after { content: ""; position: absolute; left: 36px; bottom: -7px; width: 13px; height: 13px; border-right: 1px solid rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.72); background: rgba(248,248,247,.9); transform: rotate(45deg); }
.share-options { display: flex; justify-content: center; gap: 12px; }
.share-option { display: grid; grid-template-rows: 38px auto; justify-items: center; gap: 5px; width: 58px; padding: 0; border: 0; color: #656970; background: transparent; cursor: pointer; font-size: 9px; }
.share-option svg { width: 38px; height: 38px; padding: 9px; overflow: visible; border: 1px solid rgba(0,0,0,.055); border-radius: 50%; fill: currentColor; stroke: currentColor; stroke-width: 1.5; background: rgba(255,255,255,.7); box-shadow: 0 5px 14px rgba(46,51,64,.08); transition: color 260ms ease, fill 260ms ease, background 300ms ease, transform 380ms cubic-bezier(.34,1.56,.64,1), box-shadow 320ms ease; }
.share-option.copy svg { fill: none; }
.share-option:hover svg, .share-option:focus-visible svg { color: #fff; transform: translateY(-4px) scale(1.07); box-shadow: 0 10px 22px rgba(49,57,77,.18); }
.share-option.wechat:hover svg, .share-option.wechat:focus-visible svg { background: linear-gradient(145deg, #527d75, #466c7d); }
.share-option.copy:hover svg, .share-option.copy:focus-visible svg { background: linear-gradient(145deg, #4c7696, #596d9b); }
.share-option.more:hover svg, .share-option.more:focus-visible svg { background: linear-gradient(145deg, #6e6592, #5a668a); }
.wechat-share-panel { display: grid; justify-items: center; gap: 7px; margin-bottom: 14px; padding: 12px; border: 1px solid rgba(0,0,0,.055); border-radius: 17px; background: rgba(255,255,255,.56); }
.wechat-share-panel[hidden] { display: none; }
.wechat-share-panel img { width: 152px; height: 152px; display: block; border-radius: 14px; box-shadow: 0 8px 22px rgba(37,42,54,.1); }
.wechat-share-panel strong { font-size: 12px; }
.wechat-share-panel > span { color: #7b7d83; font-size: 9px; }
.share-status { min-height: 12px; margin: 9px 0 -2px; color: #5c6f8c; text-align: center; font-size: 9px; }

.site-loader { --loader-tile: 8px; --loader-step: 12px; position: relative; display: inline-block; flex: 0 0 auto; width: calc(var(--loader-step) * 4 + var(--loader-tile)); height: calc(var(--loader-step) * 2 + var(--loader-tile)); vertical-align: middle; }
.site-loader.is-compact { --loader-tile: 5px; --loader-step: 7px; }
.site-loader i { position: absolute; width: var(--loader-tile); height: var(--loader-tile); border-radius: max(2px, calc(var(--loader-tile) * .28)); box-shadow: 0 3px 8px rgba(46,55,76,.16); will-change: transform; }
.site-loader i:nth-child(1) { left: 0; top: 0; background: #506d87; animation: loader-tile-one 2.4s ease-in-out infinite; }
.site-loader i:nth-child(2) { left: var(--loader-step); top: 0; background: #6876a2; animation: loader-tile-two 2.4s ease-in-out infinite; }
.site-loader i:nth-child(3) { left: calc(var(--loader-step) * 2); top: var(--loader-step); background: #887399; animation: loader-tile-three 2.4s ease-in-out infinite; }
.site-loader i:nth-child(4) { left: calc(var(--loader-step) * 3); top: var(--loader-step); background: #9a786f; animation: loader-tile-four 2.4s ease-in-out infinite; }
.site-loader i:nth-child(5) { left: calc(var(--loader-step) * 4); top: var(--loader-step); background: #607987; animation: loader-tile-five 2.4s ease-in-out infinite; }
.page-loader, .route-loading { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; background: rgba(239,240,241,.72); backdrop-filter: blur(26px) saturate(145%); }
.page-loader { visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 220ms ease, visibility 220ms ease; }
.page-loader.is-visible { visibility: visible; opacity: 1; }
.page-loader-card { min-width: 178px; display: grid; justify-items: center; gap: 16px; padding: 27px 30px 23px; border: 1px solid rgba(255,255,255,.76); border-radius: 24px; color: #777a81; background: rgba(255,255,255,.64); box-shadow: 0 24px 62px rgba(43,48,62,.15), inset 0 1px rgba(255,255,255,.88); font-size: 9px; font-weight: 600; letter-spacing: .08em; }
.page-loader-brand { color: #2c3037; font-size: 11px; font-weight: 700; letter-spacing: .16em; }

.jobs-trigger { position: fixed; right: 22px; bottom: 18px; z-index: 40; border: 1px solid rgba(0,0,0,.07); border-radius: 999px; padding: 10px 14px; color: #6e6e73; background: rgba(255,255,255,.86); backdrop-filter: blur(18px) saturate(160%); font-size: 9px; font-weight: 650; letter-spacing: .06em; box-shadow: 0 8px 24px rgba(0,0,0,.08); cursor: pointer; transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.jobs-trigger:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.jobs-egg { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; visibility: hidden; opacity: 0; transition: opacity 300ms ease, visibility 300ms ease; }
.jobs-egg.is-open { visibility: visible; opacity: 1; }
.jobs-egg-backdrop { position: absolute; inset: 0; border: 0; background: rgba(245,245,247,.76); backdrop-filter: blur(24px); cursor: default; }
.jobs-egg-card { width: min(650px, calc(100% - 36px)); min-height: 510px; position: relative; padding: 2px; border: 0; border-radius: 34px; color: #f5f5f7; background: linear-gradient(150deg, #4a7180 0%, #7168a0 52%, #9a6f78 100%); box-shadow: 0 38px 100px rgba(0,0,0,.28); transition: box-shadow 420ms ease, transform 420ms cubic-bezier(.2,.8,.2,1); }
.jobs-egg-card:hover { box-shadow: 0 40px 110px rgba(0,0,0,.3), 0 0 42px rgba(99,102,157,.28); }
.jobs-egg-inner { position: relative; min-height: 506px; overflow: hidden; padding: 54px; border-radius: 32px; background: radial-gradient(circle at 88% 0%, #292a32, transparent 38%), #08090b; transition: transform 360ms cubic-bezier(.2,.8,.2,1), border-radius 360ms ease; }
.jobs-egg-card:hover .jobs-egg-inner { transform: scale(.992); border-radius: 30px; }
.jobs-egg-inner::before { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -130px; bottom: -120px; }
.jobs-egg-close { position: absolute; top: 20px; right: 23px; border: 0; color: #86868b; background: transparent; font-size: 28px; cursor: pointer; }
.jobs-years { display: flex; gap: 8px; margin-bottom: 76px; }
.jobs-years span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #86868b; font-size: 8px; font-weight: 650; letter-spacing: .08em; }
.jobs-years span:last-child { color: #fff; border-color: rgba(255,255,255,.32); }
.jobs-kicker { color: #a1a1a6; font-size: 9px; font-weight: 650; letter-spacing: .2em; }
.jobs-egg-card h2 { margin: 18px 0 24px; font-size: clamp(48px, 8vw, 78px); line-height: .96; letter-spacing: -.075em; font-weight: 630; }
.jobs-copy { max-width: 450px; color: #a1a1a6; font-size: 15px; line-height: 1.8; }
.jobs-note { position: absolute; left: 56px; bottom: 42px; color: #6e6e73; font-size: 10px; line-height: 1.6; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Article */
.article-page { min-height: 100vh; background: radial-gradient(circle at 88% 2%, rgba(120,105,205,.13), transparent 28%), var(--canvas); }
.article-nav, .studio-nav { height: 72px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); color: #6e6e73; font-size: 12px; }
.article-shell { max-width: 790px; padding: 116px 0 88px; }
.article-meta { display: flex; gap: 16px; color: #86868b; font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.article-meta span { color: var(--blue); }
.article-shell h1 { margin: 30px 0 24px; font-size: clamp(48px, 7vw, 78px); line-height: 1.06; letter-spacing: -.065em; font-weight: 680; }
.article-excerpt { color: var(--muted); font-size: 20px; line-height: 1.75; letter-spacing: -.015em; }
.article-divider { height: 1px; background: var(--line); margin: 58px 0; }
.article-content { color: #424245; font-size: 17px; line-height: 2; }
.article-content p { margin: 0 0 28px; }
.article-footer { max-width: 790px; padding: 30px 0 100px; border-top: 1px solid var(--line); color: var(--blue); }

/* Studio */
.studio-page { min-height: 100vh; background: radial-gradient(circle at 80% 0%, rgba(87,151,166,.14), transparent 30%), var(--canvas); }
.studio-nav-actions { display: flex; gap: 22px; align-items: center; }
.studio-nav-actions a { color: #6e6e73; }
.studio-main { padding: 82px 0 120px; }
.studio-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.studio-heading h1 { margin: 12px 0 0; font-size: clamp(48px, 7vw, 78px); letter-spacing: -.065em; }
.studio-heading p { max-width: 440px; color: var(--muted); line-height: 1.7; }
.studio-eyebrow { color: #86868b; font-size: 10px; font-weight: 600; letter-spacing: .14em; }
.claim-panel, .locked-panel { max-width: 720px; padding: 42px; border: 1px solid rgba(255,255,255,.66); border-radius: 28px; background: rgba(255,255,255,.5); box-shadow: 0 18px 46px rgba(48,51,62,.08), inset 0 1px rgba(255,255,255,.78); backdrop-filter: blur(24px); }
.claim-panel h2, .locked-panel h2 { margin-top: 0; font-size: 30px; }
.claim-panel p, .locked-panel p { color: var(--muted); line-height: 1.7; }
.studio-primary { border: 0; cursor: pointer; margin-top: 18px; }
.studio-primary:disabled { opacity: .5; cursor: wait; }
.studio-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.studio-tab { padding: 11px 17px; border: 0; border-radius: 999px; background: var(--soft); color: #6e6e73; cursor: pointer; }
.studio-tab.active { color: #fff; background: var(--ink); }
.studio-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); gap: 20px; }
.studio-panel { padding: 30px; border: 1px solid rgba(255,255,255,.66); border-radius: 28px; background: rgba(255,255,255,.5); box-shadow: 0 18px 46px rgba(48,51,62,.08), inset 0 1px rgba(255,255,255,.78); backdrop-filter: blur(24px); }
.studio-panel h2 { margin: 0 0 24px; font-size: 24px; }
.studio-form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { color: #6e6e73; font-size: 11px; letter-spacing: .04em; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid rgba(0,0,0,.1); border-radius: 14px; background: #fff; color: var(--ink); padding: 13px 14px; outline: none; }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(0,113,227,.58); box-shadow: 0 0 0 4px rgba(0,113,227,.1); }
.field-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-field { display: flex; gap: 9px; align-items: center; color: #6e6e73; font-size: 12px; }
.studio-message { color: var(--blue); font-size: 12px; min-height: 18px; }
.studio-items { display: grid; gap: 10px; }
.studio-item { display: flex; justify-content: space-between; gap: 18px; padding: 16px; border: 0; border-radius: 16px; background: #fff; }
.studio-item h3 { margin: 0 0 7px; font-size: 14px; }
.studio-item p { margin: 0; color: #86868b; font-size: 11px; }
.studio-delete { align-self: center; border: 0; background: transparent; color: #d70015; cursor: pointer; font-size: 12px; }
.studio-product-item { align-items: center; }
.studio-product-summary { min-width: 0; display: flex; align-items: center; gap: 12px; }
.studio-product-logo { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; object-fit: contain; background: rgba(255,255,255,.68); }
.studio-product-logo.fallback { color: var(--ink); font-weight: 680; }
.studio-product-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.studio-logo-form { display: flex; align-items: center; gap: 6px; }
.studio-logo-form label { position: relative; overflow: hidden; display: inline-flex; align-items: center; border-radius: 999px; padding: 8px 11px; color: #505055; background: #f1f1f3; cursor: pointer; font-size: 11px; white-space: nowrap; }
.studio-logo-form input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.studio-logo-form button { border: 0; border-radius: 999px; padding: 8px 11px; color: #fff; background: var(--ink); cursor: pointer; font-size: 11px; }
.studio-logo-form button:disabled { opacity: .5; cursor: wait; }

@keyframes surface-float { 0%,100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 8px)); } }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes explore-ripple { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.14), 0 0 0 8px rgba(255,255,255,.1), 0 0 0 16px rgba(255,255,255,.055), 0 0 0 24px rgba(255,255,255,.02); } 100% { box-shadow: 0 0 0 8px rgba(255,255,255,.1), 0 0 0 16px rgba(255,255,255,.055), 0 0 0 24px rgba(255,255,255,.02), 0 0 0 32px transparent; } }
@keyframes loader-tile-one { 0%, 8%, 100% { transform: translate(0, 0); } 18%, 88% { transform: translateY(var(--loader-step)); } }
@keyframes loader-tile-two { 0%, 8%, 100% { transform: translate(0, 0); } 18% { transform: translateY(var(--loader-step)); } 32% { transform: translate(calc(var(--loader-step) * 2), var(--loader-step)); } 46% { transform: translate(calc(var(--loader-step) * 2), 0); } 60% { transform: translate(var(--loader-step), 0); } 74% { transform: translate(var(--loader-step), var(--loader-step)); } 88% { transform: translate(0, var(--loader-step)); } }
@keyframes loader-tile-three { 0%, 8%, 100% { transform: translate(0, 0); } 22% { transform: translateY(calc(var(--loader-step) * -1)); } 38% { transform: translate(var(--loader-step), calc(var(--loader-step) * -1)); } 54% { transform: translate(var(--loader-step), 0); } 70% { transform: translateY(var(--loader-step)); } 86% { transform: translate(calc(var(--loader-step) * -1), var(--loader-step)); } }
@keyframes loader-tile-four { 0%, 8%, 100% { transform: translate(0, 0); } 26% { transform: translate(var(--loader-step), 0); } 48% { transform: translate(var(--loader-step), var(--loader-step)); } 70% { transform: translate(0, var(--loader-step)); } 88% { transform: translate(0, 0); } }
@keyframes loader-tile-five { 0%, 8%, 100% { transform: translate(0, 0); } 24% { transform: translateY(calc(var(--loader-step) * -1)); } 48% { transform: translate(calc(var(--loader-step) * -1), calc(var(--loader-step) * -1)); } 72% { transform: translate(calc(var(--loader-step) * -1), 0); } 88% { transform: translate(0, 0); } }
@keyframes background-drift-one { from { transform: translate3d(-4%, -2%, 0) scale(1); } to { transform: translate3d(22%, 18%, 0) scale(1.12); } }
@keyframes background-drift-two { from { transform: translate3d(5%, -8%, 0) scale(1.04); } to { transform: translate3d(-24%, 24%, 0) scale(.92); } }
@keyframes background-drift-three { from { transform: translate3d(-12%, 8%, 0) scale(.96); } to { transform: translate3d(18%, -22%, 0) scale(1.1); } }
@keyframes background-sheen { from { transform: translate3d(-16%, 0, 0) rotate(4deg); } to { transform: translate3d(18%, 3%, 0) rotate(-3deg); } }
@keyframes section-light-shift { from { background-position: 0% 40%; } to { background-position: 100% 60%; } }
@keyframes about-light-shift { from { background-position: 20% 30%; } to { background-position: 82% 68%; } }

@media (max-width: 980px) {
  .topbar, .footer, .section, .article-nav, .article-shell, .article-footer, .studio-nav, .studio-main { width: min(100% - 36px, 760px); }
  .nav-links a:not(.studio-link) { display: none; }
  .hero { width: min(100% - 36px, 760px); min-height: 900px; padding-top: 96px; }
  .hero-object { height: 420px; }
  .glass-note { left: 3%; }
  .glass-principle { right: 3%; }
  .section { padding-block: 104px; }
  .product-card { grid-column: span 6; }
  .product-card:last-child { grid-column: span 12; }
  .notes-list { grid-template-columns: 1fr; }
  .about-section { width: min(100% - 36px, 760px); padding: 68px 52px; }
  .studio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { top: 8px; height: 58px; margin-top: 8px; padding-inline: 12px; border-radius: 17px; }
  .wordmark { font-size: 10px; }
  .nav-links { gap: 10px; }
  .nav-links .studio-link { padding: 8px 11px; }
  .hero { min-height: auto; padding: 82px 0 68px; }
  .hero h1 { margin-top: 25px; font-size: clamp(50px, 15vw, 72px); }
  .hero-lede { max-width: 340px; font-size: 18px; }
  .hero-lede br { display: none; }
  .hero-actions { margin-top: 32px; flex-direction: column; gap: 18px; }
  .hero-object { height: 390px; margin-top: 60px; border-radius: 28px; }
  .core-surface { width: 86%; height: 244px; top: 51%; border-radius: 22px; }
  .core-preview { grid-template-columns: .76fr 1.24fr; gap: 14px; height: 172px; padding: 16px; }
  .preview-image { border-radius: 14px; }
  .preview-copy strong { margin: 7px 0 16px; font-size: 19px; }
  .preview-copy p { font-size: 8px; }
  .core-label { bottom: 10px; }
  .orbit-one { width: 430px; height: 430px; }
  .orbit-two { width: 520px; }
  .chip-one { left: 4%; top: 10%; }
  .chip-two { right: 4%; bottom: 7%; }
  .glass-note { left: 4%; bottom: 6%; width: 170px; padding: 13px; }
  .glass-note strong { font-size: 12px; }
  .glass-principle { display: none; }
  .section-head, .studio-heading { align-items: start; flex-direction: column; }
  .section-head > p { max-width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card:last-child { grid-column: auto; min-height: 500px; border-radius: 26px; }
  .product-count-1 .product-card { grid-column: 1 / -1; min-height: 520px; padding: 28px; }
  .product-count-1 .product-card h3 { margin-top: 0; font-size: 31px; }
  .product-count-1 .product-mark { position: static; width: 82px; height: 82px; margin: 46px 0 32px; border-radius: 22px; }
  .product-count-1 .product-mark span { font-size: 31px; }
  .product-count-1 .product-tagline { margin-top: 10px; font-size: 16px; }
  .product-count-1 .product-description { font-size: 13px; }
  .product-count-1 .product-footer { left: 28px; right: 28px; bottom: 26px; }
  .product-count-2 .product-card { grid-column: 1 / -1; min-height: 500px; }
  .product-count-3 .product-card:first-child,
  .product-count-3 .product-card:not(:first-child) { grid-column: 1 / -1; grid-row: auto; min-height: 500px; padding: 28px; }
  .product-count-3 .product-card:first-child .product-mark,
  .product-count-3 .product-card:not(:first-child) .product-mark { width: 82px; height: 82px; margin: 46px 0 32px; border-radius: 22px; }
  .product-count-3 .product-card:first-child .product-mark span,
  .product-count-3 .product-card:not(:first-child) .product-mark span { font-size: 31px; }
  .product-count-3 .product-card:first-child h3,
  .product-count-3 .product-card:not(:first-child) h3 { font-size: 31px; }
  .product-count-3 .product-card:first-child .product-tagline,
  .product-count-3 .product-card:not(:first-child) .product-tagline { max-width: none; min-height: 48px; margin: 10px 0 16px; font-size: 16px; }
  .product-count-3 .product-card:first-child .product-description,
  .product-count-3 .product-card:not(:first-child) .product-description { max-width: none; min-height: 68px; display: block; overflow: visible; font-size: 13px; }
  .product-count-3 .product-card:first-child .product-meta,
  .product-count-3 .product-card:not(:first-child) .product-meta { margin-top: 23px; }
  .product-count-3 .product-card:first-child .product-footer,
  .product-count-3 .product-card:not(:first-child) .product-footer { left: 28px; right: 28px; bottom: 26px; }
  .product-count-many .product-grid { display: flex; }
  .product-count-many .product-card { flex-basis: min(86vw, 380px); min-height: 520px; }
  .note-row { grid-template-columns: 34px 1fr 26px; min-height: 184px; padding: 20px; border-radius: 24px; }
  .note-main h3 { font-size: 21px; }
  .note-main p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .about-section { width: min(100% - 36px, 760px); margin-block: 72px; padding: 54px 28px; border-radius: 28px; }
  .about-statement { font-size: 38px; }
  .about-foot, .footer { gap: 26px; align-items: flex-start; flex-direction: column; }
  .footer { padding-block: 34px; }
  .footer > span { display: none; }
  .article-shell { padding-top: 76px; }
  .article-shell h1 { font-size: 48px; }
  .article-excerpt { font-size: 17px; }
  .studio-main { padding-top: 54px; }
  .studio-panel { padding: 20px; border-radius: 22px; }
  .field-inline { grid-template-columns: 1fr; }
  .studio-product-item { align-items: flex-start; flex-direction: column; }
  .studio-product-actions { width: 100%; justify-content: space-between; }
  .jobs-trigger { right: 12px; bottom: 12px; }
  .site-share { left: 12px; bottom: 12px; }
  .share-menu { width: min(246px, calc(100vw - 24px)); }
  .jobs-egg-card { min-height: 520px; padding: 2px; border-radius: 28px; }
  .jobs-egg-inner { min-height: 516px; padding: 40px 26px; border-radius: 26px; }
  .jobs-years { margin-bottom: 62px; }
  .jobs-note { left: 28px; right: 28px; bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .pointer-glow { display: none; }
  .motion-field, .motion-background::after { animation: none !important; }
}

@media (pointer: coarse) {
  .pointer-glow { display: none; }
  .interactive-surface::after { display: none; }
}

@media print {
  .site-share, .jobs-trigger, .jobs-egg, .page-loader { display: none !important; }
}

.has-modal { overflow: hidden; }
.server-login-page { min-height: 100vh; }
.server-login { width: min(520px, calc(100% - 36px)); margin: 0 auto; padding: 110px 0; }
.server-login h1 { margin: 18px 0 12px; font-size: clamp(46px, 8vw, 72px); letter-spacing: -.065em; }
.server-login > p { margin: 0 0 38px; color: var(--muted); }
.server-login .studio-primary { width: 100%; border: 0; cursor: pointer; margin-top: 10px; }
.form-error { color: #d70015; padding: 12px 14px; border: 1px solid rgba(215,0,21,.16); border-radius: 14px; background: rgba(215,0,21,.05); font-size: 12px; }
.link-button { border: 0; padding: 0; color: #6e6e73; background: transparent; cursor: pointer; }
.studio-nav-actions form { margin: 0; }
.studio-flash { margin: -26px 0 28px; padding: 12px 16px; border: 1px solid rgba(0,113,227,.16); border-radius: 14px; color: var(--blue); background: rgba(0,113,227,.05); font-size: 12px; }
.selfhost-studio-grid { align-items: start; }
.large-textarea { min-height: 280px !important; }
.studio-item form { align-self: center; }
.studio-product-item { align-items: center; }
.studio-product-summary { min-width: 0; display: flex; align-items: center; gap: 12px; }
.studio-product-logo { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.68); border-radius: 12px; object-fit: contain; background: rgba(255,255,255,.68); }
.studio-product-logo.fallback { color: var(--ink); font-weight: 680; }
.studio-product-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.studio-logo-form { display: flex; align-items: center; gap: 7px; }
.studio-logo-form label { position: relative; overflow: hidden; display: inline-flex; align-items: center; padding: 8px 10px; border: 1px solid rgba(0,0,0,.08); border-radius: 999px; color: #565960; background: rgba(255,255,255,.62); font-size: 10px; cursor: pointer; }
.studio-logo-form label input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.studio-logo-form button { border: 0; padding: 8px 10px; border-radius: 999px; color: #fff; background: var(--ink); font-size: 10px; cursor: pointer; }
@media (max-width: 980px) { .selfhost-studio-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .studio-product-item, .studio-product-actions { align-items: flex-start; flex-direction: column; } }
