/* Shared stylesheet for the rebuilt pages: fonts, design tokens, page shell, header and footer.
   One file linked from every page, so the browser downloads it once and reuses it — the Framer export
   instead inlined ~160 kB of CSS into each of the 10 HTML files.

   The site uses exactly three faces: DM Sans 400 and 700 (one variable file covers both) and Syne 800.
   The Framer export declared 279 @font-face rules, mostly Inter in nine weights that nothing uses. */

@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Syne'; font-style: normal; font-weight: 800; font-display: swap; src: url(/assets/fonts/fontshare/wf/WMLFYK4WLAEGUZI75GLRKSJSV36DAKYG/7FN34JXVUK5CO2P2QCUTGI3KYPETO6GN/J3Z3UROQ6US22LVWHD2QJ5SGZQKV5FDW.woff2) format('woff2'); }

:root{
  --bg:#000;
  --fg:#fff;
  --muted:#808080;
  --line:#2e2e2e;
  --accent:#39ff99;
  --radius:24px;
  --content:1100px;       /* width of the content column */
  --pad:20px;             /* side padding of the content column */
  --nav-pad:20px;         /* the header sits in a wider 1400px band of its own */
}
@media (min-width:768px){ :root{ --pad:40px; --nav-pad:40px } }
@media (min-width:1400px){ :root{ --pad:0px; --nav-pad:80px } }

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--bg);color:var(--fg);
  font:400 16px/1.4 "DM Sans",sans-serif;
  overflow-x:hidden;
}
img,video{display:block;max-width:100%}
a{color:inherit}

.page{width:100%;max-width:calc(var(--content) + var(--pad) * 2);margin:0 auto;padding-inline:var(--pad)}

/* ---------------------------------------------------------------- buttons */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 24px;border-radius:var(--radius);
  background:var(--fg);color:#000;text-decoration:none;
  border:1px solid transparent;
  transition:background-color .2s,color .2s,border-color .2s;
}
.btn--sm{padding:8px 16px}
@media (hover:hover){ .btn:hover{background:transparent;color:var(--fg);border-color:var(--line)} }

/* ---------------------------------------------------------------- header */
.nav{position:relative;z-index:10;width:100%;background:linear-gradient(180deg,#000 0%,rgba(0,0,0,0) 100%)}
.nav__inner{display:flex;align-items:center;gap:24px;max-width:1400px;margin:0 auto;padding:25px var(--nav-pad) 24px}
.nav__row{flex:1 0 0;display:flex;align-items:center;justify-content:space-between;height:44px}
.nav__logo{display:block;flex:none}
.nav__logo img{height:32px;width:auto;opacity:1;transition:opacity .2s}
@media (hover:hover){ .nav__logo:hover img{opacity:.7} }
.nav__menu{display:flex;align-items:center;gap:24px}

/* menu item: two copies of the label stacked, the second slides up on hover */
.nav__link{height:22px;overflow:hidden;display:flex;flex-direction:column;text-decoration:none;flex:none}
.nav__link span{flex:none;height:22px;line-height:22px;white-space:pre}
.nav__link span+span{opacity:.6}
.nav__link>*{transition:transform .3s cubic-bezier(.44,0,.56,1)}
@media (hover:hover){ .nav__link:hover>*{transform:translateY(-22px)} }

/* burger, phones only */
.nav__burger{display:none;flex:none;width:32px;height:32px;padding:0;border:0;background:none;cursor:pointer;position:relative}
.nav__burger span{position:absolute;left:calc(50% - 12px);width:24px;height:2px;background:var(--fg);transition:transform .3s cubic-bezier(.44,0,.56,1),opacity .2s}
.nav__burger span:nth-child(1){top:7px}
.nav__burger span:nth-child(2){top:calc(50% - 1px)}
.nav__burger span:nth-child(3){bottom:7px}
.nav__burger[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.nav__burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav__burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

@media (max-width:767.98px){
  .nav__inner{flex-direction:column;align-items:stretch;gap:16px;padding:25px var(--nav-pad) 24px}
  .nav__row{flex:none}
  .nav__burger{display:block}
  .nav__menu{display:none;flex-direction:column;align-items:center;gap:32px;padding:24px 0 8px}
  .nav--open .nav__menu{display:flex}
  .nav--open{background:var(--bg)}
  .nav__link{height:auto;overflow:visible}
  .nav__link span+span{display:none}
  .nav__link span{font-size:20px;height:auto;line-height:1.4}
}

/* ---------------------------------------------------------------- footer */
.foot{padding-block:0 40px}
.foot__top{display:flex;gap:40px;justify-content:space-between}
.foot__cta{width:565px;max-width:100%}
.foot__cta p{margin:0 0 32px;font-size:20px;line-height:28px}
.foot__links{flex:none;width:385px;max-width:100%}
.foot__label{margin:0 0 32px;font-size:10px;line-height:14px;color:var(--fg)}
/* two columns: the site's own page on the left, the outside profiles on the right */
.foot__cols{display:grid;grid-template-columns:198px 1fr;width:100%}
.foot__cols>div{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.foot__cols a{height:22px;overflow:hidden;display:flex;flex-direction:column;text-decoration:none;width:max-content}
.foot__cols a span{flex:none;height:22px;line-height:22px}
.foot__cols a span+span{opacity:.6}
.foot__cols a>*{transition:transform .3s cubic-bezier(.44,0,.56,1)}
@media (hover:hover){ .foot__cols a:hover>*{transform:translateY(-22px)} }
.foot__note{margin:80px 0 0;font-size:14px;color:var(--muted)}

@media (max-width:767.98px){
  .foot__top{flex-direction:column;gap:56px}
  .foot__cta p{font-size:16px;line-height:22.4px}
  .foot__cols{grid-template-columns:repeat(2,1fr)}
  .foot__note{margin-top:56px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
}
