/* sora-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100;
  src: url('/assets/fonts/sora-v17-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 200;
  src: url('/assets/fonts/sora-v17-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  src: url('/assets/fonts/sora-v17-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/sora-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/sora-v17-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/sora-v17-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/sora-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* sora-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  src: url('/assets/fonts/sora-v17-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --ink: #100f0d;
  --paper: #fbfaf7;
  --rule-light: #e3e0d9;
  --muted: #6e6a62;

  --font-display: 'Sora', Helvetica, Arial, sans-serif;
  --font-body: 'Sora', Helvetica, Arial, sans-serif;

  --color-green-dark: #323523;
  --color-green-muted: #A3A797;
  --color-green-lightest: #E9EEDB;
  --color-green-light: #DDE6C2;
  --color-accent: #98D4F2;
  --color-accent-hover: #80C2E0;
  --color-folder-stroke: #323523;

  --font-size-xs: 0.75rem; /* 12px */
  --font-size-s: 0.875rem; /* 14px */
  --font-size-m: 1rem; /* 16px */
  --font-size-l: 1.125rem; /* 18px */
  --font-size-xl: 1.5rem; /* 24px */
  --font-size-2xl: 2rem; /* 32px */
  --font-size-3xl: 2.5rem; /* 40px */
  --font-size-4xl: 3rem; /* 48px */
  --font-size-5xl: 3.5rem; /* 56px */
  --font-size-6xl: 4rem; /* 64px */

  --corner-radius-s: 2px;
  --corner-radius-m: 4px;
  --corner-radius-l: 8px;
  --corner-radius-xl: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/** Basic CSS Reset */
html, body, div, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, img, ol, ul, li,
form, label, legend,
article, aside, canvas, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
}



body {
  margin: 0;
  background: var(--color-green-muted);
  /* background-image: url('/assets/hairline_spaced.svg');
  background-size: 48px;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed; */
  color: var(--color-green-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

:where(button, [role='button'], a, summary):focus-visible {
  outline: 1.5px solid var(--ink);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--rule-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}


.page {
  --page-pad-x: 64px;
  --page-pad-top: 28px;
  --header-h: 48px;
  --folder-tab-h: 71px;
  --folder-sticky-top: calc(var(--page-pad-top) + var(--header-h) + 12px);

  max-width: calc(1400px + var(--page-pad-x) * 2);
  margin: 0 auto;
  padding: var(--page-pad-top) var(--page-pad-x) 32px var(--page-pad-x);
}


.site-header {
  position: sticky;
  top: var(--page-pad-top);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--header-h);
  margin-bottom: 12px;
  z-index: 10;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--color-green-dark);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav-login {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--corner-radius-m);
  border: 1px solid var(--color-green-dark);
  background: var(--color-accent);
  color: var(--ink);
  letter-spacing: 0.06em;
  transition: background 0.1s ease-in-out;
  white-space: nowrap;

}

.site-nav-login:hover {
  background: var(--color-accent-hover);
}


.folders {
  display: flex;
  flex-direction: column;
}

.folder {
  position: sticky;
  top: var(--folder-sticky-top);
  z-index: var(--folder-z, 1);
  color: var(--folder-fg, var(--color-green-dark));
}


.folder:not(:first-of-type) {
  margin-top: -100px;
}

.folder-shell {
  position: relative;
  overflow: visible;

  min-height: var(--folder-equal-h, 0px);
}

/* .folder--dark .folder-shell {
  min-height: 0;
} */


.folder-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.folder-frame--stroke {
  z-index: 2;
}

.folder-shape {
  fill: var(--folder-bg);
  stroke: none;
  shape-rendering: geometricPrecision;
}

.folder-tab-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.folder-logo {
  height: 32px;
}

.folder-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--folder-tab-h) + 80px) 56px 160px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}


.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.folder-pattern-fill {
  fill: url(#folder-hairline-grid);
  stroke: none;
  pointer-events: none;
}

.folder-fade-fill {
  stroke: none;
  pointer-events: none;
}

.folder-stroke {
  fill: none;
  stroke: var(--color-folder-stroke);
  stroke-width: 1;
  shape-rendering: geometricPrecision;
}

.folder-content--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 920px;
}

.folder-content--split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  padding-top: calc(var(--folder-tab-h) + 64px);
}

.folder-content--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Match the equalized folder height so the content centers against the full
     folder, not just its own intrinsic height. */
  min-height: var(--folder-equal-h, 0px);
  padding: calc(var(--folder-tab-h) + 80px) 56px;
}

.folder-content--about {
  display: flex;
  flex-direction: column;
  color: var(--color-green-dark);
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-intro {
  margin: 0;
  font-size: var(--font-size-2xl);
  font-weight: 300;
  line-height: 1.25;
}

.title-label{
  font-size: var(--font-size-s);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 8px;
}

.about-bios {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.about-bio{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-bio-photo {
  width: 50%;
  max-width: 50%;
  aspect-ratio: 1;
  flex-shrink: 0;
  align-self: flex-start;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--corner-radius-s);
  border: 1px solid var(--color-green-dark);
  background-color: var(--color-green-lightest);
}

.about-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;

}

.about-bio a{
  font-weight: 500;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-bio p {
  margin: 0 0 12px;
  font-size: var(--font-size-s);
  line-height: 1.5;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

h1.folder-headline {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: clamp(1px, 0.3vw, 3px);
}

.folder-headline--sm {
  font-size: var(--font-size-3xl);
  text-transform: none;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-sub {
  max-width: 27ch;
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.sponsors-wrapper {
  margin-top: 88px;
  display: flex;
  align-items: center;
  gap: 64px;
  background-color: var(--color-green-lightest);
  padding: 32px 88px;
  border-radius: var(--corner-radius-s);
  border: 1px solid var(--color-green-muted);
  position: relative;
}

.sponsor-container p {
  margin-bottom: 16px;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.sponsor-logo-container {
  display: flex;
  gap: 48px;
}

.sponsor-logo{
  height: 28px;
}

.support-hairline {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  fill: none;
}

.support-hairline line {
  stroke: var(--color-green-muted);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.support-hairline.top-left {
  top: 0;
  left: 0;
  transform: translate(-100%, -100%);
}

.support-hairline.top-right {
  top: 0;
  left: 100%;
  transform-origin: bottom left;
  transform: translate(100%, -100%) scaleX(-1);
}

.support-hairline.bottom-left {
  top: 100%;
  left: 0;
  transform-origin: top right;
  transform: translate(-100%, 100%) scaleY(-1);
}

.support-hairline.bottom-right {
  top: 100%;
  left: 100%;
  transform-origin: top left;
  transform: translate(100%, 100%) scale(-1);
}


.folder-headline-container{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.folder-headline-sub{
  font-size: var(--font-size-l);
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-grid li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-grid h3 {
  margin: 0 0 8px;
  font-size: var(--font-size-xl);
  font-weight: 400;
}

.feature-grid p {
  margin: 0;
  font-size: var(--font-size-m);
  line-height: 1.55;
}

.feature-icon{
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-right: auto;
}

.folder-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.folder-contact h3 {
  margin: 0;
  font-size: var(--font-size-2xl);
  font-weight: 400;
  line-height: 1.35;
  max-width: 30ch;
}

.cta-email-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--corner-radius-m);
  background: var(--color-green-light);
  color: var(--color-green-dark);
  font: inherit;
  font-size: var(--font-size-m);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.cta-email-button-address {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-email-button-icon {
  display: block;
  flex-shrink: 0;
}

.folder--dark .folder-contact h3 {
  color: var(--color-green-lightest);
}

.site-footer.folder-footer {
  position: relative;
  z-index: 5;
  margin-top: 48px;
}

.folder-footer-container{
  color: var(--color-green-dark);
  /* background-color: var(--color-green-lightest);
  background-image:
    linear-gradient(115deg, var(--color-green-lightest) 20%, transparent 80%),
    url('/assets/hairline-grid.svg'); */
  /* background-size: auto, 32px;
  background-position: center;
  background-repeat: no-repeat, repeat;
  margin-inline: 1px;
  width: calc(100% - 2px); */
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* border-block: 1px solid var(--color-folder-stroke); */
}

.folder-footer-content{
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.folder-footer-text-container{
  display: flex;
  gap: 32px;
  flex-basis: 50%;
}

.folder-footer-logo{
  height: 24px;
}

.folder-footer-text{
  font-size: var(--font-size-l);
  font-weight: 300;
  line-height: 1.25;
}

.folder-footer-social-icon{
  height: 40px;
}


.folder-footer-copyright{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: var(--font-size-xs);

}

.folder-footer-copyright a {
  color: inherit;
}



@media (max-width: 1024px){

  .site-header{
    position: relative;
    top: auto;
    margin-bottom: 24px;
  }


  .page {
    --page-pad-x: 24px;
  }

  .folders {
    --stack-overlap: 128px;
  }

  .folder {
    position: static;
    top: auto;
  }


  .folder:not(:first-of-type) {
    margin-top: calc(-1 * var(--stack-overlap));
  }

  .folder-shell {
    min-height: 0;
  }


  .folder-content--cta {
    min-height: 0;
  }

  .folder-content {
    padding: calc(var(--folder-tab-h) + 48px) 32px 32px;
  }


  .folder:not(:last-of-type) .folder-content {
    padding-bottom: calc(var(--stack-overlap) + 80px);
  }

  .folder-content--split {
    grid-template-columns: 1fr;
  }

  .about-bios {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .about-bio{
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .about-bio-photo {
    width: 30%;
    max-width: 30%;
    margin-bottom: 0;
  }

  .about-bio-text {
    flex-basis: 70%;
  }

}

/* Legal page styles */

.page--legal {
  padding-bottom: 48px;
}

.site-header--legal {
  justify-content: stretch;
}

.site-nav--legal {
  width: 100%;
  justify-content: space-between;
}

.legal-logo {
  display: block;
  height: 24px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 56px;
  border: 1px solid var(--color-folder-stroke);
  border-radius: var(--corner-radius-l);
  background: var(--color-green-lightest);
}

.legal-title {
  margin-bottom: 8px;
  font-size: var(--font-size-2xl);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.legal-effective {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: var(--font-size-s);
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: var(--font-size-s);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}


.legal-content p {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
  line-height: 1.55;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: var(--font-size-m);
  line-height: 1.55;
}

.legal-content li:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {

  .legal-content {
    padding: 32px 24px;
  }

  .sponsors-wrapper{
    padding: 32px;
  }

  .folder-contact h3{
    font-size: var(--font-size-xl);
  }

  .folder-footer-container{
    margin: 0;
  }

  .folder-footer-text-container{
    flex-basis: 100%;
  }

}

@media (max-width: 500px){
  .sponsors-wrapper{
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
  }

  .sponsor-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sponsor-logo-container{
    gap: 24px;
  }

  .sponsor-logo{
    height: 24px;
  }

  .feature-grid{
    display: flex;
    flex-direction: column;
    gap: 32px;

  }

  .feature-grid li{
    gap: 0;
  }
  
}

@media (max-width: 467px){

  .site-header{
    justify-content: center;
  }

  
  .site-nav{
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .site-nav-links{
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .folder-headline--sm{
    font-size: var(--font-size-2xl);
  }


  .folder-contact{
    align-items: flex-start;
  }

  .folder-contact h3{
    text-align: left;
  }

  .about-bio{
    flex-direction: column;
  }

  .about-bio-photo{
    width: 50%;
    max-width: 50%;
  }

  .folder-footer-text-container{
    flex-direction: column;
    align-items: flex-start;
  }
  
}


