@font-face{font-family:'Manrope';src:url('/fonts/manrope.woff2') format('woff2');font-weight:500;font-display:swap}:root{--font-body:'Manrope',sans-serif;--color-text:#041316;--color-accent:#091E21;--color-bg:#FAFCF7}html,body{margin:0;padding:0;background:var(--color-bg);color:var(--color-text);font-family:var(--font-body);font-size: 20px;line-height:1.5}*{box-sizing:border-box}header{display:flex;flex-direction:column;justify-content:flex-end;height:80vh;background-color:#DCBA4E;padding:100px;color:#091E21}header h1{font-family:var(--font-body);font-size:50px;letter-spacing:0.05em;max-width:30ch;line-height:1.3em;text-transform:uppercase;}main{padding:100px}main h2,main h3,main h4{font-family:var(--font-body);color:#091E21;letter-spacing: 0.05em;}main h2{font-size:32px;text-transform:uppercase;margin-bottom:10px}main h3{font-size:24px;margin-bottom:10px}p{margin-bottom:1.2em}main p a:not(.button) {text-decoration:underline;}@media(max-width:1200px){header{padding:100px 30px}footer{padding:30px}}@media(max-width:768px){header{padding:160px 20px 60px;height:auto;min-height:60vh}footer{padding:20px;flex-direction:column;gap:20px}main{padding:50px;}}.skip-link{position:absolute;top:-40px;left:0;background-color:#fff;color:var(--color-accent);padding:8px 16px;z-index:100;text-decoration:none;font-weight:600;border-radius:4px;transition:top .2s ease,opacity .2s ease;opacity:0;outline:0}.skip-link:focus,.skip-link:active{top:10px;left:10px;opacity:1}

header {
    position: relative;
}

header p {
    font-size: 24px;
    max-width: 42ch;
    line-height: 1.4em;
    margin: 0;
}

header p a {
    color: #091E21;
}


main > section {
    max-width: 1024px;
}
@media (min-width:1025px) {
    .home-grid {
        display: flex;
        column-gap: 100px;
        width: calc(100vw - 200px);
    }
    
    .home-grid article {
        width: calc(33.33% - ((100px * 2) / 3));
    }
}

.home-link {
    position: absolute;
    top: 50px;
    left: 50px;
    letter-spacing: 0.05em;
    font-size: 32px;
    text-transform: uppercase;
    color: #091E21;
    text-decoration: none;
}

header nav {
    position: absolute;
    top: 62px;
    right: 50px;
    display: flex;
    justify-content: flex-end;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    column-gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul a {
    text-decoration: none;
    font-size: 20px;
    color: #091E21;
}

@media (max-width: 768px) {
    
    .home-link {
        top: 30px;
        left: 30px;
        font-size: 24px;
    }
    
    header nav {
        top: 42px;
        right: 30px;
    }
    
    header nav ul a {
        font-size: 14px;
    }
    
    header h1 {
        font-size: 32px;
    }
    
    header p {
        font-size: 24px;
    }
}

main a {
    color: #091E21;
    text-decoration: none;
}

.glossary-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer{border-top:2px dotted #091E21;padding:200px 100px 100px;display:flex;flex-direction:column;flex-wrap:wrap;font-size:.9rem}
.footer-link {
    letter-spacing: 0.05em;
    font-size: 32px;
    text-transform: uppercase;
    color: #091E21;
    text-decoration: none;
    margin-bottom: 50px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 768px) {
    footer {
        padding: 50px 30px;
    }
    .footer-link {
        font-size: 24px;
    }
    
    .footer-inner {
        flex-direction: column;
        row-gap: 30px;
    }
}
footer ul{display:flex;gap:10px;flex-wrap:wrap;list-style:none;padding:0;margin:0}footer a{color:#091E21;text-decoration:none}footer p{margin:0}footer a:hover{text-decoration:underline}


.tabs-wrapper {
    padding-bottom: 100px;
    border-bottom:2px dotted #091E21;
    margin-bottom: 100px;
    width: calc(100vw - 200px);
}

.tabs-wrapper:not(:first-child) {
    padding-top: 30px;
}

.tabs-wrapper > h2 {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .tabs-wrapper {
        width: calc(100vw - 60px);
    }
}

.tabs-nav{
  display: flex;
  column-gap: 20px;
  user-select: none;
}

.tab-item,
.button {
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 18px;
}

.button {
    display:inline-flex;
    margin-bottom: 50px;
}
.tab-content{
    position:relative;
  padding: 40px 100px 50px 50px;
  max-width: 1030px;
}

.tab-content p:last-of-type:not(:last-child) {
    margin-bottom: 50px;
}


.tab-content::before,
.tab-content::after{
    position: absolute;
    display: block;
    border-radius: 8px;
    background-color: var(--color-accent);
    content: '';
}
.tab-content::before {
    height: calc(100% - 50px);
    width: 10px;
    right: 0;
    bottom: 0;
}

.tab-content::after {
    height: 10px;
    width: 100%;
    right: 0;
    bottom: 0;
}

.tab-item input{
  display: none;
}

.button,
.tab-item:has(input:checked){
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.tab-content{
  display: none;
}

.tabs-wrapper:has(#tab-a-toggle:checked) #tab-a-content{
  display: block;
}
.tabs-wrapper:has(#tab-b-toggle:checked) #tab-b-content{
  display: block;
}
.tabs-wrapper:has(#tab-c-toggle:checked) #tab-c-content{
  display: block;
}



.screenshot {
    display: flex;
    aspect-ratio:16/10;
    margin: 0 0 100px;
    flex-direction: column;
    width: calc(100vw - 400px);
}

@media (max-width: 1024px) {
    .screenshot {
        width: calc(100vw - 100px);
    }
}

.screenshot img {
    width: 100%;
    object-fit: cover;
}

.screenshot figcaption {
    font-size: 12px;
    margin-top: 10px;
}