:root {
    --orange: #ff4d0a;
    --yellow: #ffc928;
    --black: #11100f;
    --paper: #f7efe6;
    --muted: #81786f;
    --line: #d7cdc2;
    --display: "Space Grotesk", sans-serif;
    --body: "DM Sans", sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--black);
    font-family: var(--body);
    overflow-x: hidden
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 80;
    color: #fff;
    transition: .3s
}

header.scrolled {
    background: #11100fee;
    backdrop-filter: blur(14px)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font: 600 11px/1 var(--display)
}

.brand img {
    height: 54px;
    width: auto;
    display: block
}

.brand>span {
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 20px
}

.brand b {
    font-weight: 600
}

nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 11px;
    font-weight: 600
}

nav a {
    opacity: .82
}

nav a:hover {
    opacity: 1
}

.nav-cta {
    background: #fff;
    color: var(--black);
    padding: 12px 17px;
    border-radius: 50px;
    opacity: 1
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    font-size: 22px
}

.hero {
    min-height: 100vh;
    padding: 145px 5vw 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #ff4d0a, #e9390b 50%, #ff8b00)
}

.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    right: -320px;
    top: -350px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffc92866, transparent 62%)
}

.rings {
    position: absolute;
    inset: -40%;
    background: repeating-radial-gradient(ellipse at 65% 35%, transparent 0 55px, #fff1 56px 58px);
    animation: rotate 50s linear infinite
}

.hero-copy,
.box-area,
.event-meta {
    position: relative;
    z-index: 2
}

.eyebrow {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    display: flex;
    gap: 11px;
    align-items: center
}

.eyebrow i {
    width: 25px;
    height: 2px;
    background: var(--yellow)
}

h1,
h2,
h3 {
    font-family: var(--display)
}

h1 {
    font-size: clamp(72px, 10vw, 150px);
    line-height: .77;
    letter-spacing: -.09em;
    margin: 28px 0 32px
}

em {
    font-style: normal;
    color: var(--yellow)
}

.hero-copy p {
    font-size: 16px;
    line-height: 1.4
}

.actions {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 32px
}

.btn {
    border: 0;
    padding: 16px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-size: 11px;
    font-weight: 700;
    transition: .25s
}

.btn:hover {
    transform: translateY(-3px)
}

.btn.dark {
    background: var(--black);
    color: #fff
}

.btn.light {
    background: #fff;
    color: var(--black)
}

.btn.big {
    min-width: 240px
}

.text-link {
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid #fff7;
    padding-bottom: 6px
}

.box-area {
    height: 570px;
    display: grid;
    place-items: center;
    perspective: 1300px
}

.box-halo {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffc92877, transparent 65%);
    filter: blur(8px)
}

.box-area::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 60px;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, #1a0a0066, transparent 75%);
    filter: blur(6px);
    z-index: 0
}

.box {
    width: 310px;
    height: 310px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-10deg) rotateY(-25deg);
    transition: transform .15s
}

.box-face {
    position: absolute;
    width: 310px;
    height: 310px;
    border: 1px solid #fff4;
    background: linear-gradient(135deg, #ff8c0a, #d92d08);
    box-shadow:
        inset 0 0 50px #7c170c44,
        inset 0 1px 0 #ffffff33
}

.front {
    transform: translateZ(155px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.box-logo {
    width: 70px;
    height: auto;
    margin-bottom: 12px
}

.front b {
    font: 700 37px/.84 var(--display);
    letter-spacing: -.08em
}

.side {
    transform: rotateY(90deg) translateZ(155px);
    display: grid;
    place-items: center;
    writing-mode: vertical-rl;
    font: 700 20px var(--display);
    color: #fff9;
    background: linear-gradient(200deg, #d92e08, #8e1604);
    box-shadow: inset 0 0 50px #4a0b0055
}

.top {
    transform: rotateX(90deg) translateZ(155px);
    background: linear-gradient(135deg, #ffb10a, #ff4d0a)
}

.lid {
    position: absolute;
    width: 310px;
    height: 310px;
    left: 0;
    top: -310px;
    transform-origin: bottom;
    transform: rotateX(58deg) translateZ(1px);
    background: linear-gradient(135deg, #ffc928, #ff7900);
    display: grid;
    place-items: center;
    color: var(--black);
    font: 700 27px/.84 var(--display);
    text-align: center;
    border: 1px solid #fff5
}

.inside {
    position: absolute;
    top: 55px;
    left: 35px;
    right: 35px;
    display: grid;
    gap: 8px;
    transform: translateZ(165px);
    font: 700 9px var(--display);
    letter-spacing: .12em;
    color: var(--black);
    opacity: .82
}

.box-tip {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 8px;
    letter-spacing: .17em;
    text-align: right;
    opacity: .6
}

.event-meta {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.4fr;
    gap: 20px;
    border-top: 1px solid #fff4;
    padding-top: 15px
}

.event-meta small {
    display: block;
    font-size: 7px;
    letter-spacing: .17em;
    opacity: .65
}

.event-meta b {
    font: 600 12px var(--display)
}

.countdown {
    justify-self: end;
    font: 600 21px var(--display);
    letter-spacing: .06em
}

.section {
    padding: 120px 5vw
}

.dark {
    background: var(--black);
    color: #fff
}

.section-label {
    font-size: 9px;
    letter-spacing: .18em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 55px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw
}

.section h2 {
    font-size: clamp(58px, 7vw, 105px);
    line-height: .83;
    letter-spacing: -.08em;
    margin: 22px 0
}

.split>div>small,
.program-head small,
.test-inner small,
.venue small {
    font-size: 8px;
    letter-spacing: .16em;
    color: #817970
}

.copy {
    padding-top: 70px
}

.lead {
    font: 500 clamp(28px, 3.3vw, 48px)/1.05 var(--display);
    letter-spacing: -.045em;
    max-width: 630px
}

.copy p:last-child {
    color: #8c8580;
    line-height: 1.7;
    max-width: 470px
}

.marquee {
    margin: 110px -5vw -120px;
    padding: 17px 0;
    border-top: 1px solid #fff1;
    border-bottom: 1px solid #fff1;
    overflow: hidden;
    white-space: nowrap;
    font: 700 23px var(--display);
    color: #fff2
}

.marquee span {
    display: inline-block;
    animation: marquee 22s linear infinite
}

.section-title,
.program-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px
}

.section-title p,
.program-head>p {
    max-width: 260px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.module {
    min-height: 330px;
    border: 1px solid var(--line);
    background: transparent;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: .35s;
    color: var(--black)
}

.module:after {
    content: "";
    position: absolute;
    inset: 100% 0 0;
    background: var(--orange);
    transition: .4s
}

.module>* {
    position: relative;
    z-index: 1
}

.module:hover {
    color: #fff;
    transform: translateY(-7px);
    border-color: var(--orange)
}

.module:hover:after {
    inset: 0
}

.module span {
    font-size: 10px
}

.module h3 {
    font-size: 31px;
    letter-spacing: -.07em;
    margin: 0
}

.module b {
    align-self: flex-end;
    font-size: 22px
}

.mentor-intro>p {
    color: #8c8580;
    font-size: 13px;
    line-height: 1.7;
    max-width: 390px;
    padding-top: 45px
}

.mentor-intro code {
    color: var(--yellow)
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px
}

.mentor {
    min-width: 0
}

.mentor-photo {
    height: 290px;
    background: linear-gradient(145deg, #302923, #111);
    border: 1px dashed #655a52;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative
}

.mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mentor-photo span {
    font: 700 10px var(--display);
    letter-spacing: .14em;
    color: #887d74
}

.mentor h3 {
    font-size: 18px;
    margin: 12px 0 3px;
    letter-spacing: -.04em
}

.mentor p {
    font-size: 9px;
    color: #817a75;
    line-height: 1.4;
    margin: 0
}

.mentor:nth-child(1) {
    grid-column: span 2
}

.mentor:nth-child(1) .mentor-photo {
    height: 470px
}

.mentor:nth-child(1) h3 {
    font-size: 30px
}

.admin-note {
    font-size: 10px;
    color: #665e58;
    margin-top: 28px
}

.timeline {
    border-top: 1px solid var(--line)
}

.timeline>div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line)
}

.timeline time {
    font: 600 15px var(--display);
    color: var(--orange)
}

.timeline article {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.timeline b {
    font: 600 17px var(--display)
}

.timeline span {
    font-size: 11px;
    color: var(--muted)
}

.test-section {
    position: relative;
    overflow: hidden
}

.test-section:after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    right: -260px;
    top: -250px;
    background: radial-gradient(circle, var(--orange), transparent 65%);
    opacity: .55
}

.test-inner {
    position: relative;
    z-index: 1;
    max-width: 820px
}

.test-inner p {
    color: #8c8580;
    max-width: 510px;
    line-height: 1.7;
    margin: 25px 0 30px
}

.venue>div:first-child>p {
    color: #746c65;
    line-height: 1.7;
    margin: 30px 0
}

.dark-link {
    color: var(--black);
    border-color: #aaa
}

.map {
    height: 470px;
    position: relative;
    overflow: hidden;
    background: #e5dbd0;
    border: 1px solid #cfc2b5
}

.ticket {
    padding: 95px 5vw;
    background: var(--orange)
}

.ticket-card {
    min-height: 390px;
    background: var(--yellow);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ticket h2 {
    margin: 20px 0
}

.ticket h2 em {
    color: var(--orange)
}

.ticket-mark {
    text-align: center;
    color: #1118
}

.ticket-mark img {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 10px
}

.ticket-mark small {
    font: 600 10px var(--display);
    letter-spacing: .15em
}

footer {
    background: var(--black);
    color: #7d756f;
    padding: 35px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px
}

footer a {
    color: #fff
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: #000c;
    backdrop-filter: blur(12px);
    display: none;
    place-items: center;
    padding: 20px
}

.modal.open {
    display: grid
}

.modal-box {
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--paper);
    color: var(--black);
    padding: 48px;
    position: relative
}

.modal-box>small {
    color: var(--orange);
    font-size: 8px;
    letter-spacing: .18em
}

.modal-box h2 {
    font-size: clamp(45px, 7vw, 80px);
    margin: 22px 0;
    line-height: .85
}

.modal-box p {
    color: #746c65;
    line-height: 1.65
}

.close {
    position: absolute;
    right: 15px;
    top: 8px;
    border: 0;
    background: none;
    font-size: 30px
}

.form {
    display: grid;
    gap: 13px;
    max-height: 90vh;
    overflow: auto
}

.form label {
    display: grid;
    gap: 6px;
    font-size: 10px;
    font-weight: 700
}

.form input,
.form textarea {
    border: 1px solid var(--line);
    background: #fff8;
    padding: 12px;
    font: inherit;
    outline: none
}

.form textarea {
    min-height: 75px;
    resize: vertical
}

.form input:focus,
.form textarea:focus {
    border-color: var(--orange)
}

.check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    display: grid !important;
    grid-template-columns: 16px 1fr;
    align-items: start;
    font-weight: 400 !important
}

.form-status {
    margin: 0 !important;
    color: var(--orange) !important;
    font-size: 11px
}

.vagas-info {
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 700;
    color: var(--orange) !important
}

.vagas-modal {
    text-align: center;
    background: linear-gradient(135deg, #ff4d0a, #e9390b 50%, #ff8b00);
    color: #fff
}

.vagas-modal>small {
    color: var(--yellow) !important
}

.vagas-modal p {
    color: #fff !important;
    opacity: .85
}

.vagas-modal .close {
    color: #fff
}

.vagas-modal .btn {
    margin: 20px auto 0;
    justify-content: center
}

.quiz h2 {
    font-size: clamp(32px, 6vw, 60px)
}

.quiz #qAnswers {
    display: grid;
    gap: 8px
}

.quiz #qAnswers button {
    border: 1px solid var(--line);
    background: transparent;
    text-align: left;
    padding: 13px;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    width: 100%;
    white-space: normal;
    word-break: break-word
}

.quiz #qAnswers button:hover {
    background: var(--orange);
    color: #fff
}

@keyframes rotate {
    to {
        transform: rotate(360deg)
    }
}

@keyframes marquee {
    to {
        transform: translateX(-100%)
    }
}

@media(max-width:900px) {
    nav {
        display: none
    }

    nav.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #11100ff5;
        backdrop-filter: blur(14px);
        padding: 28px 5vw 34px;
        z-index: 120;
        font-size: 15px
    }

    nav.open .nav-cta {
        align-self: flex-start
    }

    .menu-btn {
        display: block;
        z-index: 130;
        position: relative
    }

    .hero {
        grid-template-columns: 1fr
    }

    .box-area {
        display: none
    }

    .event-meta {
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr)
    }

    .countdown {
        justify-self: start
    }

    .split,
    .venue {
        grid-template-columns: 1fr
    }

    .copy {
        padding-top: 20px
    }

    .module-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mentor-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .mentor:nth-child(1) {
        grid-column: span 3
    }

    .mentor:nth-child(1) .mentor-photo {
        height: 400px
    }

    .section-title,
    .program-head {
        display: block
    }

    .section-title p,
    .program-head>p {
        margin-top: 25px
    }

    .ticket-card {
        align-items: flex-start;
        gap: 30px
    }
}

@media(max-width:560px) {
    header {
        padding: 0 20px;
        height: 68px
    }

    .hero,
    .section,
    .ticket {
        padding-left: 20px;
        padding-right: 20px
    }

    .hero {
        padding-top: 110px
    }

    h1 {
        font-size: 22vw
    }

    .event-meta {
        grid-template-columns: 1fr 1fr
    }

    .module-grid,
    .mentor-grid {
        grid-template-columns: 1fr
    }

    .mentor:nth-child(1) {
        grid-column: auto
    }

    .mentor:nth-child(1) .mentor-photo,
    .mentor-photo {
        height: 330px
    }

    .ticket-card {
        padding: 30px;
        display: block
    }

    .ticket-mark {
        margin-top: 40px
    }

    .ticket-mark img {
        width: 100px
    }

    .modal-box {
        padding: 35px 25px
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }
}