:root {
    --ink: #172019;
    --ink-soft: #314039;
    --cream: #f7f2e8;
    --paper: #fffdf8;
    --lime: #caff66;
    --lime-dark: #a8dd45;
    --coral: #ff795e;
    --violet: #b4a3ff;
    --blue: #82d7ef;
    --line: rgba(23, 32, 25, .14);
    --muted: #68716b;
    --sans: "DM Sans", sans-serif;
    --display: "Manrope", sans-serif;
    --shadow: 0 30px 80px rgba(20, 30, 21, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}

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

button,
input,
select {
    font: inherit;
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(23, 32, 25, .08);
    background: var(--cream);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
    font-family: var(--display);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.8px;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    width: 28px;
    height: 28px;
}

.brand-mark i {
    display: block;
    width: 8px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: bottom;
}

.brand-mark i:nth-child(1) {
    height: 17px;
    transform: rotate(-36deg) translate(2px, -1px);
}

.brand-mark i:nth-child(2) {
    height: 26px;
}

.brand-mark i:nth-child(3) {
    height: 17px;
    transform: rotate(36deg) translate(-2px, -1px);
}

.brand-dot {
    color: #4d68ff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a,
.text-link {
    transition: opacity .2s ease;
}

.desktop-nav a:hover,
.text-link:hover {
    opacity: .58;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.text-link {
    font-size: 14px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 43px;
    padding: 0 20px;
    font-size: 13px;
}

.button-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 8px 24px rgba(23, 32, 25, .15);
}

.button-accent {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(121, 170, 54, .16);
}

.button-accent:hover {
    background: #d5ff83;
}

.button-light {
    background: #fff;
    color: var(--ink);
}

.is-disabled {
    cursor: default;
    opacity: .84;
}

.is-disabled:hover {
    transform: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 96px;
    background:
        radial-gradient(circle at 9% 24%, rgba(202, 255, 102, .32), transparent 21%),
        var(--cream);
}

.hero::after {
    position: absolute;
    right: -110px;
    bottom: -170px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(23, 32, 25, .08);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 86px;
}

.kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.kicker > span {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.kicker.light {
    color: var(--lime);
}

.hero h1,
.section-heading h2,
.split-heading h2,
.center-heading h2,
.organizer-copy h2,
.closing-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -3.8px;
    line-height: .99;
}

.hero h1 {
    max-width: 610px;
    font-size: clamp(58px, 6.4vw, 92px);
}

h1 em,
h2 em {
    position: relative;
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -3px;
}

.hero h1 em::after {
    position: absolute;
    left: 3%;
    right: -1%;
    bottom: 0;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-lede {
    max-width: 590px;
    margin: 30px 0 0;
    color: #526057;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.play-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 10px;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.trust-row p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.trust-row strong {
    color: var(--ink);
    font-size: 13px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    border: 3px solid var(--cream);
    border-radius: 50%;
    background: var(--coral);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: var(--blue);
}

.avatar-stack span:nth-child(2) {
    background: var(--violet);
}

.avatar-stack span:nth-child(3) {
    background: var(--lime);
}

.avatar-stack span:nth-child(4) {
    background: var(--ink);
    color: #fff;
}

.event-preview-wrap {
    position: relative;
    width: min(100%, 520px);
    margin: 0 auto;
}

.event-preview {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 430px;
    margin: 0 auto;
    border: 8px solid #fff;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.preview-label {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f0ece3;
    color: #657067;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.preview-top button {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 17px;
}

.preview-art {
    position: relative;
    overflow: hidden;
    min-height: 262px;
    padding: 28px;
    border-radius: 20px;
    background: var(--coral);
}

.preview-art::after {
    position: absolute;
    right: -32px;
    bottom: -70px;
    width: 225px;
    height: 225px;
    border: 40px solid var(--lime);
    border-radius: 50%;
    content: "";
}

.sun-shape {
    position: absolute;
    top: -24px;
    right: 36px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(23, 32, 25, .15);
    border-radius: 50%;
}

.arch-shape {
    position: absolute;
    left: -45px;
    bottom: -62px;
    width: 175px;
    height: 175px;
    border: 32px solid var(--violet);
    border-radius: 50%;
}

.preview-date {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    padding: 8px 12px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.preview-date span {
    font-family: var(--display);
    font-size: 21px;
}

.preview-art p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: var(--display);
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1.6px;
    line-height: 1.05;
}

.preview-art p strong {
    display: inline-block;
    padding: 2px 5px;
    background: var(--lime);
    font-family: Georgia, serif;
    font-weight: 400;
    transform: rotate(-1deg);
}

.preview-details {
    padding: 22px 21px 18px;
}

.preview-host {
    margin: 0 0 4px;
    color: #727b75;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.preview-details h2 {
    margin: 0 0 13px;
    font-family: var(--display);
    font-size: 23px;
    letter-spacing: -1.1px;
}

.preview-meta {
    display: flex;
    gap: 15px;
    color: #606c64;
    font-size: 11px;
}

.preview-meta b {
    color: var(--ink);
}

.preview-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 19px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.preview-footer div {
    display: flex;
    flex-direction: column;
}

.preview-footer div span {
    font-size: 15px;
    font-weight: 800;
}

.preview-footer small {
    color: var(--muted);
    font-size: 9px;
}

.preview-footer a {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.mini-note {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 13px 36px rgba(20, 30, 21, .15);
    font-size: 11px;
    font-weight: 700;
}

.mini-note span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--lime);
    font-size: 10px;
}

.note-top {
    top: 87px;
    right: -7px;
}

.note-bottom {
    bottom: 53px;
    left: -20px;
}

.note-bottom span {
    background: var(--violet);
}

.spark {
    position: absolute;
    z-index: 3;
    font-size: 35px;
}

.spark-one {
    top: 18px;
    left: -4px;
    color: #4d68ff;
    transform: rotate(-12deg);
}

.spark-two {
    right: 2px;
    bottom: -10px;
    color: var(--coral);
}

.search-band {
    position: relative;
    z-index: 5;
    margin-top: -31px;
}

.event-search {
    display: grid;
    grid-template-columns: 1.25fr .8fr auto;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(23, 32, 25, .1);
}

.event-search label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 62px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.event-search label span {
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.event-search input,
.event-search select {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
}

.event-search select {
    cursor: pointer;
}

.section {
    padding: 118px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.section-heading h2,
.split-heading h2,
.center-heading h2 {
    font-size: clamp(42px, 5vw, 65px);
}

.launch-badge {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.reset-link {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ink);
}

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

.event-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(23, 32, 25, .1);
}

.event-card-art {
    position: relative;
    overflow: hidden;
    min-height: 192px;
    padding: 20px;
}

.event-card-art::before,
.event-card-art::after,
.event-card-art i {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.event-card-art::before {
    right: -35px;
    bottom: -65px;
    width: 170px;
    height: 170px;
    border: 30px solid rgba(255, 255, 255, .55);
}

.event-card-art::after {
    left: -30px;
    bottom: -55px;
    width: 105px;
    height: 105px;
    background: rgba(23, 32, 25, .13);
}

.event-card-art i {
    right: 63px;
    top: 48px;
    width: 44px;
    height: 44px;
    border: 12px solid var(--ink);
}

.tone-lime { background: var(--lime); }
.tone-violet { background: var(--violet); }
.tone-coral { background: var(--coral); }
.tone-blue { background: var(--blue); }

.event-card-art > span {
    position: relative;
    z-index: 2;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.event-card-art strong {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    max-width: 85px;
    font-family: var(--display);
    font-size: 31px;
    letter-spacing: -1.8px;
    line-height: .8;
}

.event-card-copy {
    padding: 21px;
}

.event-card-copy h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -.7px;
    line-height: 1.25;
}

.event-card-copy > p {
    margin: 8px 0 17px;
    color: var(--muted);
    font-size: 12px;
}

.event-card-copy > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    font-weight: 700;
}

.round-arrow {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
}

.empty-state {
    padding: 54px;
    border: 1px dashed var(--line);
    border-radius: 20px;
    background: var(--cream);
    text-align: center;
}

.empty-state p {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
}

.empty-state a {
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.gathering-types {
    background: var(--ink);
    color: #fff;
}

.split-heading {
    display: grid;
    grid-template-columns: .65fr 1.25fr .65fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 62px;
}

.split-heading > p:last-child {
    margin: 0 0 5px;
    color: #aeb8b1;
    font-size: 14px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .17);
    border-left: 1px solid rgba(255, 255, 255, .17);
}

.type-grid article {
    position: relative;
    min-height: 245px;
    padding: 29px;
    border-right: 1px solid rgba(255, 255, 255, .17);
    border-bottom: 1px solid rgba(255, 255, 255, .17);
    transition: background .25s ease, color .25s ease;
}

.type-grid article:hover {
    background: var(--lime);
    color: var(--ink);
}

.type-grid article > span {
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
}

.type-grid article:hover > span {
    color: var(--ink);
}

.type-grid h3 {
    margin: 49px 0 9px;
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: -1px;
}

.type-grid p {
    max-width: 270px;
    margin: 0;
    color: #aeb8b1;
    font-size: 13px;
}

.type-grid article:hover p {
    color: var(--ink-soft);
}

.type-grid a {
    position: absolute;
    right: 25px;
    top: 25px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}

.type-grid article:hover a {
    border-color: var(--ink);
}

.center-heading {
    max-width: 730px;
    margin: 0 auto 70px;
    text-align: center;
}

.center-heading .kicker {
    justify-content: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.steps article {
    position: relative;
    min-height: 345px;
    padding: 38px 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
}

.steps article:nth-child(2) {
    background: var(--cream);
    transform: translateY(24px);
}

.steps article:nth-child(3) {
    background: var(--lime);
}

.step-number {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 40px 0 30px;
    border-radius: 28px;
    background: var(--ink);
    color: var(--lime);
    font-size: 31px;
    transform: rotate(-5deg);
}

.steps article:nth-child(2) .step-icon {
    background: var(--violet);
    color: var(--ink);
    transform: rotate(4deg);
}

.steps article:nth-child(3) .step-icon {
    background: #fff;
    color: var(--ink);
}

.steps h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: -.8px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.steps article:nth-child(3) p {
    color: var(--ink-soft);
}

.organizer-section {
    padding: 130px 0;
    background: var(--cream);
}

.organizer-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    min-height: 630px;
    border-radius: 34px;
    background: #4037d8;
    color: #fff;
}

.organizer-card::before {
    position: absolute;
    left: -80px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border: 50px solid rgba(202, 255, 102, .15);
    border-radius: 50%;
    content: "";
}

.organizer-copy {
    position: relative;
    z-index: 2;
    padding: 78px 0 70px 68px;
}

.organizer-copy h2 {
    max-width: 480px;
    font-size: clamp(44px, 4.7vw, 67px);
}

.organizer-copy > p:not(.kicker) {
    max-width: 480px;
    margin: 28px 0;
    color: #d6d2ff;
    font-size: 14px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 430px;
    margin-bottom: 33px;
}

.feature-pills span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.dashboard-preview {
    align-self: center;
    min-height: 490px;
    margin: 52px -25px 52px 55px;
    border: 7px solid rgba(255, 255, 255, .16);
    border-radius: 28px 0 0 28px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 30px 60px rgba(12, 7, 73, .25);
    transform: rotate(-1.5deg);
}

.dashboard-bar {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.dashboard-bar i {
    width: 23px;
    height: 23px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--lime);
}

.mini-brand {
    color: var(--ink);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
}

.dashboard-content {
    padding: 30px;
}

.dashboard-greeting,
.dashboard-event {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-greeting div {
    display: flex;
    flex-direction: column;
}

.dashboard-greeting small,
.dashboard-event small,
.dashboard-stats small,
.dashboard-chart small {
    color: var(--muted);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .8px;
}

.dashboard-greeting strong {
    font-family: var(--display);
    font-size: 19px;
}

.dashboard-greeting > span {
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 25px 0;
}

.dashboard-stats div {
    display: flex;
    flex-direction: column;
    padding: 17px;
    border-radius: 12px;
    background: var(--cream);
}

.dashboard-stats div:nth-child(2) {
    background: #eeeaff;
}

.dashboard-stats div:nth-child(3) {
    background: #e7f6ef;
}

.dashboard-stats strong {
    font-family: var(--display);
    font-size: 25px;
}

.dashboard-stats em {
    color: #47814f;
    font-size: 7px;
    font-style: normal;
}

.dashboard-event {
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.dashboard-thumb {
    display: grid;
    place-items: center;
    width: 48px;
    height: 52px;
    border-radius: 9px;
    background: var(--coral);
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    line-height: .8;
}

.dashboard-thumb small {
    color: var(--ink);
}

.dashboard-event > div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.dashboard-event > div strong {
    font-size: 11px;
}

.dashboard-event > div span {
    color: var(--muted);
    font-size: 8px;
}

.dashboard-event > b {
    padding: 5px 8px;
    border-radius: 999px;
    background: #e7f6ef;
    color: #347044;
    font-size: 7px;
}

.dashboard-chart {
    margin-top: 16px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
}

.dashboard-chart > div:first-child {
    display: flex;
    justify-content: space-between;
}

.dashboard-chart strong {
    font-size: 8px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 74px;
    margin-top: 15px;
    border-bottom: 1px solid var(--line);
}

.bars i {
    flex: 1;
    max-width: 27px;
    border-radius: 4px 4px 0 0;
    background: var(--violet);
}

.bars i:nth-child(6),
.bars i:nth-child(7) {
    background: var(--lime-dark);
}

.closing-cta {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    text-align: center;
}

.closing-cta::before,
.closing-cta::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.closing-cta::before {
    left: -110px;
    top: 20px;
    width: 270px;
    height: 270px;
    border: 45px solid var(--violet);
}

.closing-cta::after {
    right: -90px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border: 55px solid var(--lime);
}

.closing-cta .kicker {
    justify-content: center;
}

.closing-cta h2 {
    margin-bottom: 38px;
    font-size: clamp(45px, 5.3vw, 72px);
}

.closing-spark {
    display: block;
    margin-bottom: 22px;
    color: var(--coral);
    font-size: 34px;
}

footer {
    padding: 70px 0 25px;
    background: var(--ink);
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.brand-footer {
    color: #fff;
}

.brand-footer .brand-mark i {
    background: #fff;
}

.footer-main > div:first-child > p {
    max-width: 300px;
    color: #9eaaa2;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 7px;
    color: var(--lime);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    color: #c6cec8;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #89958d;
    font-size: 10px;
}

@media (max-width: 1040px) {
    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero-grid {
        gap: 35px;
    }

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

    .split-heading {
        grid-template-columns: 1fr 1.4fr;
    }

    .split-heading > p:last-child {
        grid-column: 2;
    }

    .organizer-card {
        grid-template-columns: 1fr;
    }

    .organizer-copy {
        padding-right: 68px;
    }

    .dashboard-preview {
        margin-top: 0;
    }
}

@media (max-width: 780px) {
    .shell {
        width: min(100% - 30px, 640px);
    }

    .site-header {
        position: static;
    }

    .header-inner {
        min-height: 70px;
    }

    .header-actions .text-link {
        display: none;
    }

    .hero {
        padding: 62px 0 82px;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero .kicker,
    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .hero h1,
    .hero-lede {
        margin-left: auto;
        margin-right: auto;
    }

    .event-preview-wrap {
        margin-top: 30px;
    }

    .event-preview {
        width: min(90%, 430px);
    }

    .note-top {
        right: 0;
    }

    .note-bottom {
        left: 0;
    }

    .event-search {
        grid-template-columns: 1fr;
    }

    .event-search label {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 88px 0;
    }

    .section-heading,
    .split-heading {
        display: block;
    }

    .section-heading > :last-child {
        display: inline-flex;
        margin-top: 22px;
    }

    .split-heading > p:last-child {
        margin-top: 24px;
    }

    .type-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .steps article:nth-child(2) {
        transform: none;
    }

    .organizer-card {
        width: calc(100% - 30px);
    }

    .organizer-copy {
        padding: 55px 30px;
    }

    .dashboard-preview {
        margin: 0 -25px 40px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .header-actions .button {
        min-height: 39px;
        padding: 0 15px;
    }

    .brand {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -3px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .event-preview {
        width: 100%;
    }

    .mini-note,
    .spark {
        display: none;
    }

    .preview-art {
        min-height: 235px;
    }

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

    .section-heading h2,
    .split-heading h2,
    .center-heading h2,
    .organizer-copy h2,
    .closing-cta h2 {
        font-size: 42px;
        letter-spacing: -2.6px;
    }

    .type-grid {
        border-left: 0;
    }

    .type-grid article {
        border-left: 1px solid rgba(255, 255, 255, .17);
    }

    .dashboard-content {
        padding: 18px;
    }

    .dashboard-stats {
        gap: 5px;
    }

    .dashboard-stats div {
        padding: 10px;
    }

    .dashboard-event > b {
        display: none;
    }

    .closing-cta::before,
    .closing-cta::after {
        opacity: .3;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        gap: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}

