/* CSS Document */

/* ==================================================================== */
/* Reset all kinds of defaults */
/* ==================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==================================================================== */

html {
    font-size: 16px;
    background-color: #35211D;
}

body {
    color: #A68577;
    font-family: "Aleo", serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: italic;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
}

strong {
    font-weight: 700;
}

.inter-550 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-800 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.letter {
    margin-top: 200px;
    max-width: 620px;
    margin-inline: auto;
    font-size: 1.25rem;
    padding: 32px;
}

.letter p {
    margin-bottom: 2rem;
}

.chapter {
    margin-bottom: 5rem;
}

.chapter-heading {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-block: 2rem;
}

.chapter-number {
    color: #ffffff;
}

.chapter-divider {
    width: 1px;
    height: 38px;
    background-color: #F97F33;
}

.chapter-name {
    text-transform: uppercase;
    letter-spacing: 0.5rem
}


.sign-off {
    color: #ffffff;
}


.arc-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.arc-stack {
  position: absolute;
  left: 50%;
  top: -480px;
  transform: translateX(-50%);
}


.arcs {
  display: block;
  animation: spin 20s linear infinite;
}


.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


.pill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-bottom: 96px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
}

.pill:hover {
    border-color: rgba(255,255,255,1);
    background: rgba(255,255,255,0.2);
}

.pill img {
  width: 16px;
  height: 16px;
  display: block;
}


@media (max-width: 600px) {
    .arcs {
        scale: 0.75;
    }

    .letter {
        margin-top: 160px;
        font-size: 1.125rem;
    }

    .chapter-heading {
        flex-direction: column;
    }

    .chapter-divider {
        width: 36px;
        height: 1px;
    }
}
