@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/geist-mono-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #161616;
  --paper: #fbfaf7;
  --paper-deep: #f1eee7;
  --muted: #696862;
  --line: rgba(22, 22, 22, 0.14);
  --blue: #1385a5;
  --orange: #ff8a16;
  --yellow: #ffd643;
  --navy: #101b36;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, .72);
  --header-bg: rgba(251, 250, 247, .88);
  --hover: rgba(22, 22, 22, .065);
  --copy: #494842;
  --studio-copy: #51504c;
  --card-detail: rgba(255, 255, 255, .8);
  --shadow: rgba(31, 25, 15, .08);
  --logo-blend: normal;
  --small-logo-filter: none;
  --hero-logo-filter: drop-shadow(0 24px 35px rgba(54, 39, 20, .1));
  --theme-control-bg: rgba(22, 22, 22, .07);
  --theme-control-border: rgba(22, 22, 22, .08);
  --pelican-panel: #eaf6f7;
  --pelican-ink: #10232b;
  --pelican-halo: #90d7e4;
  --pelican-action-bg: #10232b;
  --pelican-action-ink: #ffffff;
  --app-panel: #fff0d8;
  --app-ink: #2c2016;
  --app-dot: #e0b870;
  --app-action-bg: #2c2016;
  --app-action-ink: #ffffff;
  --radius: 32px;
  --page: min(1200px, calc(100vw - 48px));
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #f3f0e9;
  --paper: #211827;
  --paper-deep: #2b2032;
  --muted: #aaa79f;
  --line: rgba(255, 255, 255, .14);
  --surface: #2a202f;
  --surface-glass: rgba(42, 32, 47, .82);
  --header-bg: rgba(33, 24, 39, .9);
  --hover: rgba(255, 255, 255, .08);
  --copy: #c5c1b8;
  --studio-copy: #c5c1b8;
  --card-detail: rgba(38, 29, 43, .94);
  --shadow: rgba(0, 0, 0, .34);
  --logo-blend: normal;
  --small-logo-filter: none;
  --hero-logo-filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .32));
  --theme-control-bg: rgba(255, 255, 255, .09);
  --theme-control-border: rgba(255, 255, 255, .1);
  --pelican-panel: #123038;
  --pelican-ink: #e9f8f8;
  --pelican-halo: #286b78;
  --pelican-action-bg: #e9f8f8;
  --pelican-action-ink: #10232b;
  --app-panel: #332419;
  --app-ink: #fff0d8;
  --app-dot: #78562f;
  --app-action-bg: #fff0d8;
  --app-action-ink: #2c2016;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  html[data-theme="system"] {
    --ink: #f3f0e9;
    --paper: #211827;
    --paper-deep: #2b2032;
    --muted: #aaa79f;
    --line: rgba(255, 255, 255, .14);
    --surface: #2a202f;
    --surface-glass: rgba(42, 32, 47, .82);
    --header-bg: rgba(33, 24, 39, .9);
    --hover: rgba(255, 255, 255, .08);
    --copy: #c5c1b8;
    --studio-copy: #c5c1b8;
    --card-detail: rgba(38, 29, 43, .94);
    --shadow: rgba(0, 0, 0, .34);
    --logo-blend: normal;
    --small-logo-filter: none;
    --hero-logo-filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .32));
    --theme-control-bg: rgba(255, 255, 255, .09);
    --theme-control-border: rgba(255, 255, 255, .1);
    --pelican-panel: #123038;
    --pelican-ink: #e9f8f8;
    --pelican-halo: #286b78;
    --pelican-action-bg: #e9f8f8;
    --pelican-action-ink: #10232b;
    --app-panel: #332419;
    --app-ink: #fff0d8;
    --app-dot: #78562f;
    --app-action-bg: #fff0d8;
    --app-action-ink: #2c2016;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .22s ease, color .22s ease;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .27;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: var(--page);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px 9px 12px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: var(--header-bg);
  box-shadow: 0 12px 40px var(--shadow);
  backdrop-filter: blur(18px);
}
.studio-mark { display: inline-flex; align-items: center; gap: 11px; }
.studio-mark img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 13px;
  mix-blend-mode: var(--logo-blend);
  filter: var(--small-logo-filter);
}
.studio-mark span { display: flex; flex-direction: column; }
.studio-mark strong {
  font-size: 1.59rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
  -webkit-text-stroke: .25px currentColor;
}
.studio-mark small {
  margin-top: 2px;
  color: var(--muted);
  font: 500 .62rem/1.2 var(--mono);
  letter-spacing: .03em;
}
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a {
  padding: 11px 14px;
  border-radius: 11px;
  font-size: .86rem;
  font-weight: 650;
  transition: background .18s ease;
}
.site-nav a:hover { background: var(--hover); }
.theme-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-control-border);
  border-radius: 11px;
  background: var(--theme-control-bg);
  color: var(--ink);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.theme-toggle:hover { background: var(--hover); }
.theme-toggle:active { transform: scale(.97); }
.theme-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.theme-toggle-icon {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}
.theme-toggle-icon svg {
  width: 13px;
  height: 13px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-button { display: none; }

.hero {
  width: var(--page);
  min-height: min(820px, 92vh);
  margin: 0 auto;
  padding: 180px 0 34px;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  grid-template-rows: 1fr auto;
  gap: 30px 55px;
  align-items: center;
}
.kicker {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 650 .68rem/1 var(--mono);
  letter-spacing: .105em;
  text-transform: uppercase;
}
.kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 7.3vw, 7.3rem);
  line-height: .88;
  letter-spacing: -.072em;
  font-weight: 760;
}
.hero h1 em {
  color: var(--orange);
  font-family: var(--serif);
  font-weight: 400;
}
.hero-note {
  max-width: 590px;
  margin: 32px 0 30px;
  color: var(--copy);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: -.018em;
}
.round-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  font-weight: 720;
}
.round-link i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-style: normal;
  transition: transform .2s ease;
}
.round-link:hover i { transform: translateY(4px); }
.hero-dog {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: min(430px, 35vw);
  object-fit: contain;
  mix-blend-mode: var(--logo-blend);
  filter: var(--hero-logo-filter);
}
.product-dock {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-glass);
  box-shadow: 0 18px 50px var(--shadow);
}
.product-dock a {
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border-radius: 15px;
  font-size: .78rem;
  font-weight: 700;
  transition: background .18s ease, transform .18s ease;
}
.product-dock a:hover { background: var(--paper-deep); transform: translateY(-2px); }
.product-dock img,
.dock-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  object-fit: contain;
}
.product-dock img { mix-blend-mode: multiply; }
.product-dock a:nth-child(2) img { mix-blend-mode: normal; }
.dock-cve { background: #0b1020; color: #fff; font: 700 .64rem/1 var(--mono); }

.products {
  width: var(--page);
  margin: 0 auto;
  padding: 70px 0;
}
.section-intro {
  max-width: 880px;
  margin: 0 0 48px;
}
.section-intro h2,
.studio h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.section-intro > p:last-child {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}
.product {
  position: relative;
  min-height: 730px;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}
.product::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.product-copy {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-number {
  width: 100%;
  margin: 0 0 45px;
  display: flex;
  justify-content: space-between;
  color: currentColor;
  font: 650 .65rem/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
  opacity: .72;
}
.product-number span { padding: 6px 9px; border: 1px solid currentColor; border-radius: 999px; }
.product-copy h3 {
  margin: 34px 0 20px;
  font-size: clamp(2.7rem, 4.4vw, 4.75rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.product-copy > p:not(.product-number) {
  max-width: 500px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.58;
  opacity: .78;
}
.cve-logo { width: min(335px, 90%); height: 94px; object-fit: contain; object-position: left center; }
.pelican-lockup,
.bd-lockup { display: flex; align-items: center; gap: 15px; }
.pelican-lockup img,
.bd-lockup img {
  width: 70px;
  height: 70px;
  border-radius: 17px;
  object-fit: contain;
}
.bd-lockup img { mix-blend-mode: var(--logo-blend); filter: var(--small-logo-filter); }
.pelican-lockup strong,
.bd-lockup strong { font-size: clamp(1.9rem, 3vw, 2.75rem); letter-spacing: -.055em; }
.pelican-lockup strong span { color: #0c819f; }
.chips {
  margin: 28px 0 34px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}
.chips li {
  padding: 8px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font: 570 .67rem/1 var(--mono);
  opacity: .72;
}
.product-actions { margin-top: auto; display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.primary-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 18px 0 20px;
  border-radius: 14px;
  background: currentColor;
  font-size: .87rem;
  font-weight: 730;
}
.primary-link span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}
.secondary-link { font-size: .78rem; font-weight: 700; border-bottom: 1px solid currentColor; }
.product-stage { position: relative; min-width: 0; overflow: hidden; }

.product-cve { background: #11192a; color: #fff; }
.product-cve .primary-link { color: #11192a; background: #b8f476; }
.product-cve .primary-link span { background: rgba(17, 25, 42, .12); }
.product-cve .cve-logo { filter: invert(1); }
.cve-stage {
  margin: 34px 34px 34px 0;
  align-self: center;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #f4f3ee;
  color: #102033;
  box-shadow: -35px 35px 90px rgba(0,0,0,.25);
  transform: rotate(1.25deg);
}
.cve-shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% top;
}
.browser-bar {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid #dfe2e8;
  background: #eceef2;
}
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #b5bac4; }
.browser-bar span {
  min-width: 190px;
  margin-left: 12px;
  padding: 7px 15px;
  border-radius: 7px;
  background: #fff;
  color: #717682;
  font: .58rem/1 var(--mono);
}
.cve-ui { padding: 24px 30px 28px; }
.cve-ui-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  font-size: .72rem;
}
.cve-ui-nav span { color: #707582; font: .56rem/1 var(--mono); }
.cve-ui h4 { margin: 22px 0 9px; text-align: center; font-size: clamp(2.45rem, 3.8vw, 4rem); font-weight: 600; line-height: 1.04; letter-spacing: -.045em; }
.cve-subtitle { max-width: 470px; margin: 0 auto 22px; color: #475569; text-align: center; font-size: .68rem; line-height: 1.6; }
.search-box {
  width: 92%;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 16px;
  border: 1px solid #c6c2b4;
  border-radius: 7px;
  background: #f4f3ee;
  color: #64748b;
  font-size: .72rem;
  box-shadow: 0 1px 2px rgba(16,24,40,.06), 0 12px 32px rgba(15,23,42,.04);
}
.search-box > span { flex: 1; }
.search-box kbd { padding: 6px 8px; border: 1px solid #dedbd0; border-radius: 5px; background: #ecebe4; font: .53rem/1 var(--mono); }
.search-box > b { height: 39px; padding: 0 13px; display: grid; place-items: center; border-radius: 5px; background: #1355d6; color: #fff; font-size: .6rem; }
.on-every { margin: 12px auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 12px; color: #64748b; font: .52rem/1.2 var(--mono); }
.on-every b { color: #102033; font-weight: 600; }
.threat-head { margin-top: 31px; padding-bottom: 11px; display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid #dedbd0; }
.threat-head div { display: flex; flex-direction: column; gap: 4px; }
.threat-head small { color: #64748b; font: 500 .49rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.threat-head b { font-size: .82rem; letter-spacing: -.02em; }
.threat-head span { padding: 6px 8px; border: 1px solid #dedbd0; border-radius: 5px; color: #64748b; font: .49rem/1 var(--mono); }
.sort-tabs { padding: 10px 0 2px; display: flex; gap: 15px; color: #64748b; font: .5rem/1 var(--mono); }
.sort-tabs b { color: #1355d6; }
.threat-row { min-height: 70px; display: grid; grid-template-columns: 35px 1fr 45px; align-items: center; gap: 8px; border-bottom: 1px solid #e5e6e9; font-size: .68rem; }
.threat-row strong { color: #969aa3; font: .56rem/1 var(--mono); }
.threat-row span { display: flex; flex-direction: column; gap: 5px; }
.threat-row span b { color: #cf3434; font: 650 .54rem/1 var(--mono); text-transform: uppercase; }
.threat-row:nth-of-type(2) span b { color: #e17822; }
.threat-row:nth-of-type(3) span b { color: #b59b16; }
.threat-row em { width: 41px; height: 41px; display: grid; place-items: center; border-radius: 50%; background: #f2e2e2; color: #a92424; font: 700 .65rem/1 var(--mono); font-style: normal; }

.product-pelican { background: var(--pelican-panel); color: var(--pelican-ink); }
.product-pelican .primary-link { color: var(--pelican-action-ink); background: var(--pelican-action-bg); }
.pelican-stage { min-height: 730px; }
.pelican-halo {
  position: absolute;
  width: 680px;
  height: 680px;
  top: 50%;
  left: 54%;
  border-radius: 50%;
  background: var(--pelican-halo);
  transform: translate(-50%, -50%);
}
.pelican-halo::after {
  position: absolute;
  inset: 45px;
  content: "";
  border: 1px dashed rgba(16,35,43,.25);
  border-radius: 50%;
}
.pelican-shot {
  position: absolute;
  z-index: 1;
  top: 95px;
  left: 7%;
  width: 122%;
  max-width: none;
  border: 1px solid rgba(16,35,43,.22);
  border-radius: 16px;
  box-shadow: 0 35px 90px rgba(18,71,84,.24);
  transform: rotate(-2.6deg);
}
.privacy-sticker {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 8%;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--pelican-ink);
  border-radius: 50%;
  background: #ffc576;
  font: 700 .62rem/1.2 var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.privacy-sticker span { display: block; font-size: 1.45rem; letter-spacing: -.04em; }

.product-app { background: var(--app-panel); color: var(--app-ink); }
.product-app .primary-link { color: var(--app-action-ink); background: var(--app-action-bg); }
.bd-stage {
  padding: 70px 0 0 40px;
  background-image: radial-gradient(var(--app-dot) 1px, transparent 1px);
  background-size: 18px 18px;
}
.bd-window {
  width: 113%;
  height: 620px;
  display: grid;
  grid-template-columns: 185px 1fr;
  overflow: hidden;
  border: 1px solid rgba(43,32,22,.22);
  border-radius: 19px 0 0 0;
  background: #fff;
  box-shadow: -25px 30px 80px rgba(95,58,16,.2);
  transform: rotate(1.2deg);
}
.bd-sidebar {
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid #e4e1dd;
  background: #f6f4f0;
}
.bd-mini-brand { display: flex; align-items: center; gap: 7px; margin-bottom: 15px; font-size: .74rem; }
.bd-mini-brand img { width: 27px; height: 27px; mix-blend-mode: multiply; }
.bd-sidebar button {
  padding: 11px 8px;
  border: 0;
  border-radius: 8px;
  background: #2c2016;
  color: #fff;
  text-align: left;
  font-size: .57rem;
  font-weight: 650;
}
.bd-sidebar > span { padding: 9px 7px; color: #716c66; font-size: .58rem; }
.bd-chat { padding: 0 25px 24px; }
.bd-chat-top {
  height: 62px;
  margin: 0 -25px 30px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8e5e0;
  font-size: .69rem;
  font-weight: 650;
}
.bd-chat-top i { color: #8a8580; font-style: normal; }
.bd-message { max-width: 330px; padding: 13px 15px; border-radius: 13px; font-size: .67rem; line-height: 1.45; }
.user-message { margin-left: auto; background: #2c2016; color: #fff; }
.dog-message { margin-top: 18px; display: flex; align-items: flex-start; gap: 9px; background: #f5f2ed; }
.dog-message img { width: 26px; height: 26px; flex: 0 0 auto; mix-blend-mode: multiply; }
.dog-message p { margin: 0; }
.source-card { max-width: 330px; margin-top: 10px; padding: 13px 15px; display: flex; flex-direction: column; gap: 7px; border: 1px solid #e0dcd5; border-radius: 10px; color: #6a655f; font-size: .55rem; }
.source-card b { color: #2c2016; font-size: .59rem; }
.prompt-bar {
  position: absolute;
  right: 4%;
  bottom: 5%;
  width: 55%;
  height: 50px;
  padding: 0 9px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dedad5;
  border-radius: 12px;
  background: #fff;
  color: #99928a;
  font-size: .65rem;
  box-shadow: 0 10px 25px rgba(67,49,29,.1);
}
.prompt-bar span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 8px; background: #2c2016; color: #fff; }
.beta-pin {
  position: absolute;
  z-index: 3;
  right: 6%;
  top: 5%;
  padding: 10px 14px;
  border: 1px solid var(--app-ink);
  border-radius: 999px;
  background: var(--yellow);
  font: 700 .62rem/1 var(--mono);
  transform: rotate(4deg);
}

.studio {
  width: var(--page);
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: .9fr .85fr 340px;
  gap: 60px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.studio h2 { font-size: clamp(3.1rem, 5.4vw, 5.6rem); }
.studio-copy { padding-top: 44px; }
.studio-copy p { margin: 0 0 21px; color: var(--studio-copy); font-size: 1rem; line-height: 1.66; }
.studio-copy .studio-lede { color: var(--ink); font-size: 1.38rem; line-height: 1.42; letter-spacing: -.026em; font-weight: 650; }
.studio-copy .studio-aside { padding: 16px 18px; border-left: 3px solid var(--orange); background: #f4ede4; font-family: var(--serif); font-style: italic; }
.studio-copy > a { display: inline-block; margin-top: 8px; font-size: .82rem; font-weight: 700; border-bottom: 1px solid currentColor; }
.studio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 22px 60px var(--shadow);
}
.studio-card > img {
  width: 100%;
  aspect-ratio: 1.2;
  padding: 18px 35px 0;
  object-fit: contain;
  mix-blend-mode: var(--logo-blend);
  filter: var(--small-logo-filter);
}
.studio-card dl { margin: 0; padding: 8px 24px 22px; background: var(--card-detail); }
.studio-card dl div { padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: .7rem; }
.studio-card dl div:last-child { border: 0; }
.studio-card dt { color: var(--muted); font-family: var(--mono); }
.studio-card dd { margin: 0; text-align: right; font-weight: 650; }

.contact {
  width: var(--page);
  margin: 0 auto 20px;
  padding: clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  border-radius: 20px;
  background: #171717;
  color: #fff;
}
.contact .kicker { color: #aaa9a4; }
.contact h2 { font-size: clamp(3.5rem, 6.4vw, 6.4rem); }
.contact-email {
  margin-top: 45px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #777;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 650;
}
.contact-email span { color: var(--yellow); }
.contact-links { align-self: end; }
.contact-links a {
  min-height: 83px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid #393939;
  transition: padding-left .2s ease;
}
.contact-links a:hover { padding-left: 10px; }
.contact-links span { color: #92928e; font: .61rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.contact-links b { font-size: .92rem; font-weight: 600; }

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 55px 0 35px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand span { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { font-size: .88rem; }
.footer-brand small { color: var(--muted); font-size: .69rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; font-size: .72rem; font-weight: 650; }
.site-footer > p { grid-column: 1 / -1; margin: 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font: .62rem/1.4 var(--mono); }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.legal { width: min(820px, calc(100vw - 48px)); min-height: 78vh; margin: 0 auto; padding: 150px 0 100px; }
.legal h1 { margin: 0 0 30px; font-size: clamp(3.8rem, 10vw, 7rem); line-height: .9; letter-spacing: -.07em; }
.legal h2 { margin: 42px 0 12px; font-size: 1.25rem; }
.legal p, .legal li { color: var(--studio-copy); line-height: 1.7; }
.legal a { border-bottom: 1px solid currentColor; }
.legal-meta { font: .62rem/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr .72fr; gap: 25px; }
  .hero h1 { font-size: clamp(3.7rem, 8vw, 6rem); }
  .product { grid-template-columns: .92fr 1.08fr; }
  .product-copy { padding: 46px; }
  .studio { grid-template-columns: 1fr 1fr; }
  .studio-card { grid-column: 2; width: 100%; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 28px); --radius: 24px; }
  .site-header { top: 8px; min-height: 60px; padding: 6px 7px 6px 8px; background: var(--header-bg); border-color: var(--line); backdrop-filter: blur(16px); }
  .studio-mark img { width: 43px; height: 43px; }
  .studio-mark small { max-width: 170px; font-size: .5rem; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 11px;
    background: var(--ink);
  }
  .menu-button i { width: 18px; height: 1.5px; background: var(--paper); transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-3.75px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 8px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--paper);
    box-shadow: 0 20px 40px var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; }
  .site-nav .theme-toggle { width: 45px; min-height: 45px; padding: 0; }
  .hero {
    min-height: 0;
    padding: 135px 0 25px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 38px;
  }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 5.2rem); }
  .hero-note { margin: 25px 0; font-size: 1rem; }
  .hero-dog { min-height: 380px; }
  .hero-logo { width: min(360px, 88vw); }
  .product-dock { width: 100%; grid-column: auto; justify-content: space-around; }
  .product-dock a { min-width: 0; padding: 5px; flex-direction: column; }
  .product-dock a > span:last-child { display: none; }
  .product-dock img, .dock-icon { width: 48px; height: 48px; }
  .products { padding: 45px 0; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2, .studio h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .section-intro > p:last-child { font-size: 1rem; }
  .product { min-height: 0; grid-template-columns: 1fr; }
  .product-copy { min-height: 620px; padding: 32px 26px; }
  .product-number { margin-bottom: 34px; }
  .product-copy h3 { margin-top: 28px; font-size: clamp(2.6rem, 12vw, 4rem); }
  .product-stage { min-height: 500px; }
  .cve-stage { margin: 0 18px 18px; min-height: 0; border-radius: 17px; transform: none; }
  .cve-shot { object-position: 48% top; }
  .cve-ui { padding: 21px 17px; }
  .cve-ui h4 { font-size: 2.55rem; }
  .cve-ui-nav span { display: none; }
  .pelican-stage { min-height: 520px; }
  .pelican-halo { width: 480px; height: 480px; }
  .pelican-shot { top: 70px; left: 6%; width: 155%; }
  .privacy-sticker { width: 105px; height: 105px; }
  .bd-stage { min-height: 530px; padding: 55px 0 0 18px; }
  .bd-window { height: 500px; grid-template-columns: 105px 1fr; }
  .bd-sidebar { padding: 11px 8px; }
  .bd-mini-brand b { display: none; }
  .bd-mini-brand img { width: 30px; height: 30px; }
  .bd-sidebar > span { font-size: .48rem; }
  .bd-chat { padding: 0 14px 18px; }
  .bd-chat-top { margin: 0 -14px 24px; padding: 0 14px; }
  .bd-message { font-size: .58rem; }
  .prompt-bar { width: 65%; }
  .studio { padding: 55px 0; grid-template-columns: 1fr; gap: 25px; }
  .studio-copy { padding-top: 15px; }
  .studio-card { grid-column: auto; margin-top: 15px; }
  .contact { margin: 0 auto 8px; padding: 44px 22px; grid-template-columns: 1fr; gap: 48px; border-radius: 18px; }
  .contact-email { font-size: .96rem; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
  .site-footer nav { justify-content: flex-start; gap: 16px; }
  .site-footer > p { grid-column: auto; }
}

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