:root {
  --bg: #0b0c0e;
  --bg-elev: #14161c;
  --text: #f3f2ed;
  --muted: rgba(243, 242, 237, .62);
  --line: rgba(255, 255, 255, .09);
  --accent: #f6c342;
  --accent-ink: #111212;
  --ok: #7dcea0;
  --warn: #e8c36a;
  --no: #c97a7a;
  --font: "Geist", "Segoe UI", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", monospace;
  --wrap: 1120px;
  --wrap-lg: 1280px;
  --nav-h: 4.5rem;
}

[data-theme="light"] {
  --bg: #f4f3ee;
  --bg-elev: #fff;
  --text: #121318;
  --muted: rgba(18, 19, 24, .62);
  --line: rgba(18, 19, 24, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; min-height: 100%; background: var(--bg); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.03em; font-weight: 600; margin: 0 0 .6rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.15rem; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .85rem;
}

.lead { font-size: 1.2rem; color: var(--muted); max-width: 40rem; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font);
  font-size: .925rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-decoration: none !important;
  border: 0;
  cursor: pointer;
  padding: .7rem 1.1rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 8px;
}
.btn:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-glaze {
  position: relative;
  display: inline-flex;
  isolation: isolate;
  overflow: hidden;
  padding: 1.5px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.015em;
  color: #f4f4f4;
  text-decoration: none !important;
  background: rgba(255, 255, 255, .14);
}
.btn-glaze::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 12rem;
  height: 12rem;
  top: 50%;
  left: 50%;
  margin: -6rem 0 0 -6rem;
  background: conic-gradient(
    from 0deg,
    transparent 0 88%,
    var(--accent) 92%,
    #fff4c4 94.5%,
    var(--accent) 97%,
    transparent 100%
  );
  animation: glaze-orbit 6.5s linear infinite;
}
.btn-glaze span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: .72rem 1.25rem;
  border-radius: inherit;
  background: #161616;
}
.btn-glaze:hover span { background: #1d1d1d; }
[data-theme="light"] .btn-glaze {
  color: #121212;
  background: rgba(18, 18, 18, .16);
}
[data-theme="light"] .btn-glaze span { background: #fff; }
[data-theme="light"] .btn-glaze:hover span { background: #f4f4f4; }
.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(var(--wrap), calc(100% - 2.5rem));
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text);
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand-lockup {
  display: flex;
  align-items: last baseline;
  gap: .28rem;
}
.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.03em;
  line-height: 1;
}
.brand-by {
  font-size: 11px;
  font-weight: 500;
  color: #c4a24a;
  letter-spacing: -.01em;
  white-space: nowrap;
  line-height: 1;
  transform: translateY(.08em);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
.brand-by span {
  color: var(--accent);
  font-size: 1.05em;
  font-weight: 500;
}
.brand:hover .brand-by { color: var(--accent); }
.logo { height: 1.35rem; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-links > a,
.nav-dd-btn {
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1;
  height: 1em;
  color: var(--muted);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.nav-extra a {
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.nav-links > a:hover,
.nav-links > a.is-active,
.nav-dd-btn:hover,
.nav-dd-btn.is-active,
.nav-dd-btn[aria-expanded="true"],
.nav-extra a:hover { color: var(--text); text-decoration: none; }
.nav-dd { position: relative; }
.nav-dd-btn { gap: .35rem; }
.nav-dd-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .45;
  translate: 0 1px;
}
.nav-dd-menu {
  position: absolute;
  left: 0;
  top: calc(100% + .55rem);
  min-width: 13.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .3rem;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}
.nav-dd-menu[hidden] { display: none; }
.nav-opt {
  display: block;
  padding: .48rem .65rem;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
}
.nav-opt:hover, .nav-opt.is-active { background: color-mix(in srgb, var(--text) 8%, transparent); text-decoration: none; }
.nav-extra { display: flex; align-items: center; gap: .75rem; margin-left: 1rem; }
.lang-dd { position: relative; }
.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 500;
  padding: .32rem .55rem;
  border-radius: 8px;
  cursor: pointer;
}
.lang-dd-btn img, .lang-opt img {
  width: 1.15rem;
  height: .78rem;
  object-fit: cover;
  border-radius: 1px;
  display: block;
}
.lang-dd-menu {
  position: absolute;
  right: 0;
  top: calc(100% + .35rem);
  min-width: 10.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .3rem;
  z-index: 50;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}
.lang-dd-menu[hidden] { display: none; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .55rem;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
}
.lang-opt:hover, .lang-opt.is-active { background: color-mix(in srgb, var(--text) 8%, transparent); text-decoration: none; }
.drawer .lang-dd { margin-top: .5rem; }
.drawer .lang-dd-menu { position: static; box-shadow: none; min-width: 0; }
.theme-btn, .menu-btn {
  background: none;
  border: 0;
  color: var(--text);
  padding: .35rem;
  cursor: pointer;
  display: inline-flex;
}
.theme-btn svg, .menu-btn svg, .to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-btn { display: none; }

.drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--bg);
  padding: 1.5rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 39;
  flex-direction: column;
  gap: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.drawer.is-open { display: flex; }
html.nav-open,
html.nav-open body {
  overflow: hidden;
}
.drawer-label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.15rem 0 .15rem;
}
.drawer-label:first-child { margin-top: 0; }
.drawer a {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}
.drawer a.is-active { color: var(--accent); }

@media (max-width: 1080px) {
  .nav-links, .nav-extra .theme-btn { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-extra { margin-left: auto; }
  .lang-dd-btn span { display: none; }
}
@media (max-width: 480px) {
  .site-nav .wrap { gap: .65rem; width: min(var(--wrap), calc(100% - 1.25rem)); }
  .brand { gap: .35rem; }
}

/* Hero — yellow fluid smoke (WebGL), punchline + sub + CTA */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #050506;
}
[data-theme="light"] .hero { background: #f4f3ee; }
.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-geo canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(56rem, 94vw);
  padding: 5rem 1.25rem 4.5rem;
}
.hero h1 {
  margin: 0 auto 1.15rem;
  max-width: none;
  font-size: clamp(2.2rem, 5.2vw, 3.95rem);
  letter-spacing: -.055em;
  font-weight: 600;
  line-height: 1.06;
  color: #f4f4f4;
}
[data-theme="light"] .hero h1 { color: var(--text); }
.hero .lead {
  margin: 0 auto 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(244, 244, 244, .62);
}
[data-theme="light"] .hero .lead { color: var(--muted); }

@keyframes glaze-orbit {
  to { transform: rotate(360deg); }
}

.page-hero > .wrap,
section.block > .wrap,
.cta-band > .wrap {
  width: min(var(--wrap-lg), calc(100% - 3rem));
}

.shot {
  border: 1px solid rgba(255, 255, 255, .06);
  background: #111214;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}
[data-theme="light"] .shot {
  background: var(--bg-elev);
  border-color: var(--line);
  box-shadow: 0 24px 60px rgba(18, 19, 24, .12);
}
.shot img { width: 100%; height: auto; display: block; }
.shot-open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.shot-open img { width: 100%; height: auto; display: block; }
.shot.is-sm {
  width: fit-content;
  max-width: min(100%, 280px);
  margin-inline: auto;
}
.shot.is-toast {
  width: fit-content;
  max-width: min(100%, 420px);
  margin-inline: auto;
}
.shot.is-access {
  width: fit-content;
  max-width: min(100%, 560px);
  margin-inline: auto;
}
.shot-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
}
.shot-pair .shot { margin: 0; }
.shot.is-soon {
  aspect-ratio: 16 / 10;
  min-height: 180px;
  width: 100%;
  display: grid;
  place-items: center;
}
.soon-mark {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9c9c9d;
}
[data-theme="light"] .soon-mark { color: var(--muted); }

.page-hero {
  padding: 80px 16px 128px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.page-hero h1 {
  margin: 0 auto 12px;
  max-width: none;
  font-size: 27px;
  letter-spacing: 0;
  line-height: normal;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 4px 4px #00000026;
  background: linear-gradient(90deg, #fffc -1.59%, #fff 49.71%, #ffffffcf 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
@media (min-width: 720px) {
  .page-hero h1 { font-size: 48px; }
}
[data-theme="light"] .page-hero h1 {
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
  text-shadow: none;
}
.page-hero .kicker,
.section-head .kicker,
.cta-band .kicker {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  text-transform: none;
  color: var(--muted);
  margin: 0;
}
.page-hero .lead {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .2px;
  color: #fff9;
  text-shadow: 0 1px 4px #000000bf;
}
[data-theme="light"] .page-hero .lead {
  color: var(--muted);
  text-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.hero-actions .btn,
.cta-band .btn {
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: .2px;
}
.hero-actions .text-link {
  color: #9c9c9d;
  letter-spacing: .2px;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  display: inline-flex;
  text-decoration: none;
}
.hero-actions .text-link:hover { color: var(--text); text-decoration: none; }
.hero-actions .text-link .link-arrow { transition: transform .2s; }
.hero-actions .text-link:hover .link-arrow { transform: translate(3px); }

main { overflow-x: clip; }
section.block { padding: 96px 0; overflow: visible; }

.section-head {
  text-align: left;
  max-width: none;
  margin: 0 0 32px;
}
.section-head.is-center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: normal;
  margin: 0 0 12px;
}
.section-head h5,
.section-head .lead {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1.5;
  color: #9c9c9d;
  margin: 0;
  max-width: 40rem;
}
.section-head.is-center h5,
.section-head.is-center .lead {
  margin-inline: auto;
}
[data-theme="light"] .section-head h5,
[data-theme="light"] .section-head .lead { color: var(--muted); }

.pro-heading {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  display: flex;
}
.pro-heading a {
  color: var(--text);
  letter-spacing: .2px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  display: inline-flex;
  text-decoration: none;
}
.pro-heading a:hover { color: var(--text); text-decoration: none; }
.pro-heading a .link-arrow { transition: transform .2s; display: block; }
.pro-heading a:hover .link-arrow { transform: translate(3px); }
.pro-heading h3,
.cta-band h2 {
  text-align: center;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: 0;
  max-width: none;
}
@media (min-width: 720px) {
  .pro-heading h3,
  .cta-band h2 { font-size: 52px; }
}
.pro-heading p {
  color: #fff9;
  text-align: center;
  letter-spacing: .3px;
  max-width: 800px;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 720px) {
  .pro-heading p { font-size: 20px; line-height: 28px; }
}
[data-theme="light"] .pro-heading p { color: var(--muted); }

.hl {
  z-index: 1;
  color: #fff4c4;
  text-shadow: 1px 0 10px #f6c342;
  margin-right: 2px;
  position: relative;
  font-style: normal;
  display: inline;
}
.hl::before {
  z-index: -1;
  content: "";
  background: linear-gradient(#f6c34240 50%, #c9a03026 100%);
  border-radius: 3px;
  width: 115%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: -7.5%;
  box-shadow: 0 0 27px #f6c34266;
}
[data-theme="light"] .hl {
  color: #7a5a00;
  text-shadow: 1px 0 8px #f6c34288;
}

.showcase {
  display: grid;
  grid-template-rows: 151px;
  grid-template-columns: 1fr;
  gap: 24px 64px;
  margin-top: 60px;
  margin-bottom: 80px;
  padding: 0 24px;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
@media (min-width: 840px) {
  .showcase {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 120px;
    padding: 0 32px;
  }
  .showcase.is-flip > :first-child { order: 2; }
}
.showcase-media { position: relative; }
.showcase-media > div {
  width: min(342px, 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 840px) {
  .showcase-media > div { width: min(596px, 100%); }
}
.showcase-media:has(.shot-stack) > div {
  position: static;
  transform: none;
  width: 100%;
}
.showcase-copy {
  text-align: center;
  flex-direction: column;
  gap: 24px;
  display: flex;
}
@media (min-width: 840px) {
  .showcase-copy { text-align: left; }
}
.showcase-copy > strong {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}
@media (min-width: 840px) {
  .showcase-copy > strong { justify-content: flex-start; }
}
.showcase-copy > strong > svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.showcase-copy > h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  margin: 0;
}
@media (min-width: 840px) {
  .showcase-copy > h2 { font-size: 30px; line-height: 36px; }
}
.showcase-copy > p {
  color: #fff9;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  max-width: none;
}
@media (min-width: 840px) {
  .showcase-copy > p { font-size: 16px; }
}
[data-theme="light"] .showcase-copy > p { color: var(--muted); }
.showcase-copy > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-copy > ul li {
  color: #9c9c9d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .2px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.showcase-copy > a {
  color: var(--text);
  letter-spacing: .2px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  display: inline-flex;
  text-decoration: none;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 840px) {
  .showcase-copy > a { margin-inline: 0; }
}
.showcase-copy > a:hover { color: var(--text); text-decoration: none; }
.showcase-copy > a .link-arrow { transition: transform .2s; display: block; }
.showcase-copy > a:hover .link-arrow { transform: translate(3px); }
.showcase .shot { margin: 0; }
.shot-stack { display: grid; gap: 16px; }

.feat-ico {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.link-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.check-ico {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  color: #cdcece;
  flex-shrink: 0;
  margin-top: 2px;
}
[data-theme="light"] .check-ico { color: var(--muted); }

.ctrl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .ctrl-grid { grid-template-columns: 1fr 1fr; }
}
.ctrl-card {
  gap: 16px;
  padding: 24px;
  background: linear-gradient(138deg, #1a1a1bb3 22.83%, #000000b3 82.19%), #07080a;
  border-radius: 20px;
  border: 1px solid #ffffff0f;
  flex-direction: column;
  display: flex;
  box-shadow: 0 0 40px 20px #2727291a, 0 0 20px 3px #3030301a, inset 0 1px #ffffff1a;
}
[data-theme="light"] .ctrl-card {
  background: var(--bg-elev);
  box-shadow: none;
  border-color: var(--line);
}
.ctrl-head {
  gap: 12px;
  align-items: center;
  display: flex;
}
.ctrl-ico {
  width: 36px;
  height: 36px;
  color: #fff;
  border-radius: 12px;
  background: #ffffff0f;
  border: 1px solid #ffffff0f;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}
[data-theme="light"] .ctrl-ico {
  color: var(--text);
  background: rgba(18, 19, 24, .06);
  border-color: var(--line);
}
.ctrl-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ctrl-card h3 {
  color: #fff;
  letter-spacing: .2px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
[data-theme="light"] .ctrl-card h3 { color: var(--text); }
.ctrl-card p {
  color: #9c9c9d;
  letter-spacing: .2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.ctrl-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ctrl-card li {
  color: #9c9c9d;
  letter-spacing: .2px;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  padding: 0;
  border: 0;
}

.shot-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 32px;
  margin-top: 32px;
}
@media (min-width: 720px) {
  .shot-cards { grid-template-columns: 1fr 1fr 1fr; }
}
.shot-card {
  border-radius: 16px;
  background: linear-gradient(137deg, #111214 4.87%, #0c0d0f 75.88%);
  padding: 16px;
  box-shadow: inset 0 1px #ffffff1a;
  overflow: hidden;
}
[data-theme="light"] .shot-card {
  background: var(--bg-elev);
  box-shadow: none;
  border: 1px solid var(--line);
}
.shot-card .shot {
  margin: 0;
  border-radius: 12px;
  box-shadow: none;
}
.shot-card .shot.is-sm {
  display: block;
  margin-inline: auto;
}
.shot-card .idx {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: #9c9c9d;
  letter-spacing: .2px;
  margin: 16px 0 0;
}
.shot-card h3 {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0;
}
.shot-card p {
  color: #9c9c9d;
  letter-spacing: .3px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 24px;
}

.cta-band {
  padding: 168px 0;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 20% 20% 30%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band .kicker { margin-bottom: 8px; }
.cta-band h2 { margin: 0 auto 24px; }
.cta-band .muted {
  margin: 0 auto 24px;
  max-width: 800px;
  color: #fff9;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 720px) {
  .cta-band .muted { font-size: 20px; line-height: 28px; }
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-elev);
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  font-family: var(--mono);
}
table.compare th, table.compare td {
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}
table.compare th:first-child, table.compare td:first-child { text-align: left; font-family: var(--font); }
table.compare thead th { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
table.compare thead th:nth-child(2) { color: var(--accent); }
.mark-yes { color: var(--ok); }
.mark-no { color: var(--no); }
.mark-part { color: var(--warn); }

.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.faq-list { max-width: 48rem; margin: 0 auto; }
details.faq {
  border-top: 1px solid var(--line);
  padding: .2rem 0;
}
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 500;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq .body { padding: 0 0 1.2rem; color: var(--muted); font-size: .98rem; }
details.faq .body ul { padding-left: 1.1rem; }

.pov-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}
.pov-tabs a {
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .5rem .95rem;
  border-radius: 999px;
  text-decoration: none;
}
.pov-tabs a:hover, .pov-tabs a:target, .pov-tabs a.is-on { color: var(--text); border-color: var(--accent); }

.sec-tab { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }
.sec-tab .wrap > strong {
  color: var(--accent);
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  margin: 0 0 12px;
}
.sec-tab .wrap > strong > svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sec-tab .wrap > h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .2px;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 36rem;
}
.sec-tab .wrap > .muted {
  margin: 0 0 32px;
  max-width: 40rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.sec-tab .shot-stack { margin-top: 24px; }
.block .shot-stack { margin-top: 32px; }
.sec-more {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
}
.sec-more a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sec-more a:hover { color: var(--accent); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.about-copy { max-width: none; }
.about-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffffff0f;
  min-height: 280px;
  height: 100%;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}
.about-copy .lead {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: .2px;
  color: var(--text);
  max-width: none;
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.about-copy p {
  color: #9c9c9d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .2px;
  margin: 0 0 1rem;
}
.about-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 8px;
}

.prose-card {
  max-width: 40rem;
  margin-inline: auto;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.25rem 2rem;
}
.prose-card .lead { margin-bottom: 1.1rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  font-size: 14px;
  color: var(--muted);
}
.foot-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
  margin: 0 0 48px;
}
@media (min-width: 900px) {
  .foot-map { grid-template-columns: repeat(4, 1fr); gap: 40px 48px; }
}
.foot-col h3 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0 0 16px;
}
.foot-col a {
  display: block;
  color: var(--muted);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  padding: 4px 0;
}
.foot-col a:hover,
.foot-col a.is-on { color: var(--text); }
.foot-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.foot-bar p { margin: 0; }
.foot-bar a { color: var(--muted); }
.foot-bar a:hover { color: var(--text); text-decoration: none; }
.flag-ch { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-left: .35rem; border-radius: 1px; }
.btn-linkedin {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 50%;
  background: #0a66c2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-linkedin:hover { filter: brightness(1.1); text-decoration: none; }

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.to-top.is-on { display: inline-flex; }

.prose { max-width: 40rem; }
.prose .lead { margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .split, .alt-row, .about-split { grid-template-columns: 1fr; }
  .about-photo { min-height: 220px; max-height: 320px; }
  .hero-copy { padding: 4rem 1rem 3.5rem; }
  .page-hero { padding: 80px 16px 64px; }
  section.block { padding: 64px 0; }
  .cta-band { padding: 96px 0; }
}
@media (max-width: 600px) {
  .alt-row { grid-template-columns: 1fr; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: rgba(8, 9, 11, .88);
  cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
  cursor: default;
}
.lightbox-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-x::before { content: "×"; }

@media (prefers-reduced-motion: reduce) {
  .btn-glaze::before { animation: none; }
}
