:root {
    --ink: #0b1020;
    --cream: #fbf9f4;
    --pink: #fc6b87;
    --yellow: #ffd76b;
    --muted: #657083
}

.other-demos{padding:0 0 115px}.other-demos>div{display:grid;grid-template-columns:1fr 1fr;gap:18px}.other-demos a{min-height:210px;padding:28px;display:flex;flex-direction:column;justify-content:space-between;text-decoration:none;color:#fff;background:#252b22;transition:.2s}.other-demos a:last-child{background:linear-gradient(135deg,#ffb66d,#ff6f8a,#4442ad);color:#151a43}.other-demos a:hover{transform:translateY(-5px);box-shadow:7px 8px 0 #ffd76b}.other-demos small{font:10px 'DM Mono';letter-spacing:1px}.other-demos b{font:500 42px 'Playfair Display'}.other-demos span{font-size:12px;font-weight:800}@media(max-width:800px){.other-demos{padding-bottom:75px}.other-demos>div{grid-template-columns:1fr}.other-demos a{min-height:175px}}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif
}

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

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

.nav {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    line-height: .95;
    letter-spacing: 1.6px;
    font-weight: 600
}

.brand b {
    font-size: 16px;
    letter-spacing: 2.5px
}

.brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: Georgia;
    font-size: 22px;
    font-style: italic
}

.nav nav {
    display: flex;
    gap: 30px
}

.nav-toggle {
    display: none
}

.nav nav a,
.footer-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border: 0;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    padding: 15px 19px;
    font: 700 13px Manrope;
    cursor: pointer;
    box-shadow: 5px 5px 0 var(--yellow);
    transition: .2s
}

.button:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--yellow)
}

.button span {
    font-size: 18px
}

.button-small {
    padding: 12px 15px;
    font-size: 12px;
    box-shadow: 3px 3px 0 var(--pink)
}

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 30px;
    align-items: center;
    padding: 68px 0 90px
}

.kicker {
    font: 500 11px 'DM Mono', monospace;
    letter-spacing: 1.2px;
    margin: 0 0 23px;
    color: #3d4657
}

.kicker span {
    width: 20px;
    height: 1px;
    background: var(--pink);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px
}

.hero h1,
.section-heading h2,
.dashboard-copy h2,
.process h2,
.contact h2,
.legal h1 {
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: .99;
    letter-spacing: -4px;
    margin: 0;
    font-weight: 800
}

.hero h1 em,
h2 em {
    font-family: Georgia, serif;
    font-weight: 600;
    letter-spacing: -3px
}

.lead {
    max-width: 510px;
    line-height: 1.7;
    font-size: 16px;
    color: #566174;
    margin: 27px 0
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px
}

.text-link {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px
}

.text-link i {
    font-style: normal;
    margin-left: 6px
}

.trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 55px
}

.trust p {
    font-size: 12px;
    color: #657083
}

.avatars {
    display: flex
}

.avatars span {
    width: 25px;
    height: 25px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    margin-left: -5px;
    display: grid;
    place-items: center;
    font-size: 10px;
    background: var(--yellow)
}

.avatars span:nth-child(2) {
    background: var(--pink);
    color: #fff
}

.avatars span:nth-child(3) {
    background: #6bd1c2
}

.hero-art {
    height: 515px;
    position: relative;
    display: grid;
    place-items: center
}

.orb {
    position: absolute;
    border-radius: 50%
}

.orb-one {
    width: 420px;
    height: 420px;
    background: var(--yellow);
    right: 25px;
    top: 20px
}

.orb-two {
    width: 150px;
    height: 150px;
    background: var(--pink);
    left: 15px;
    bottom: 15px
}

.invite-card {
    width: 280px;
    height: 440px;
    background: #edf0e8;
    padding: 17px;
    position: relative;
    z-index: 1;
    box-shadow: 17px 17px 0 #0b10201f;
    text-align: center;
    transform: rotate(4deg)
}

.invite-top {
    display: flex;
    justify-content: space-between;
    font: 8px 'DM Mono'
}

.invite-image {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 22px auto 18px;
    border: 7px solid #fff
}

.invite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.invite-type {
    font: 9px 'DM Mono';
    letter-spacing: 1.5px;
    margin: 0
}

.invite-card h2 {
    font: 600 52px Georgia;
    margin: -5px 0 -12px;
    color: #ef6a7e
}

.invite-event {
    font: italic 17px Georgia;
    margin: 0
}

.invite-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font: 8px 'DM Mono';
    margin-top: 15px
}

.invite-date strong {
    font: 700 25px Manrope
}

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

.s1 {
    top: 10px;
    right: 8px
}

.s2 {
    bottom: 32px;
    left: 35px;
    color: #fff
}

.floating-chip {
    position: absolute;
    background: #fff;
    z-index: 3;
    box-shadow: 0 10px 30px #0b102033;
    padding: 11px 15px;
    display: flex;
    gap: 10px;
    align-items: center
}

.floating-chip small {
    display: block;
    font: 9px 'DM Mono';
    color: #798396
}

.floating-chip b {
    font-size: 11px
}

.chip-rsvp {
    right: -5px;
    bottom: 79px
}

.chip-detail {
    left: 20px;
    top: 82px
}

.check {
    color: #36a58e;
    font-weight: bold
}

.marquee {
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    white-space: nowrap;
    padding: 18px 0;
    font: 500 14px 'DM Mono';
    letter-spacing: 2px
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: move 25s linear infinite;
    will-change: transform
}

.marquee-group {
    flex: none
}

.marquee b {
    color: var(--yellow);
    padding: 0 20px
}

@keyframes move {
    to {
        transform: translateX(-50%)
    }
}

.service {
    padding: 135px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px
}

.section-heading h2,
.process h2 {
    font-size: 55px
}

.service-intro {
    padding-top: 35px;
    max-width: 425px
}

.service-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #566174;
    margin: 0 0 30px
}

.features {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 65px
}

.feature-card {
    min-height: 425px;
    padding: 22px 24px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 8px 9px 0 var(--ink)
}

.feature-no {
    font: 10px 'DM Mono';
    letter-spacing: .4px
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.feature-sticker {
    padding: 5px 7px;
    font: 8px 'DM Mono';
    letter-spacing: .3px;
    border: 1px solid currentColor;
    border-radius: 20px
}

.feature-visual {
    height: 175px;
    position: relative;
    margin: 17px -3px 20px;
    display: grid;
    place-items: center
}

.feature-card h3 {
    font-size: 21px;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -.6px
}

.feature-card p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    max-width: 295px
}

.feature-design {
    background: var(--yellow);
    color: var(--ink)
}

.feature-design .feature-sticker {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.visual-design {
    background: #ff8ca2;
    overflow: hidden;
    transform: rotate(-2deg)
}

.visual-design:before,
.visual-design:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #fdf8ed
}

.visual-design:before {
    width: 122px;
    height: 122px;
    left: 14px;
    top: 28px
}

.visual-design:after {
    width: 78px;
    height: 78px;
    right: 18px;
    bottom: -18px
}

.visual-design i {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid var(--ink);
    transform: rotate(45deg)
}

.visual-design i:first-child {
    top: 12px;
    right: 30px
}

.visual-design i:nth-child(2) {
    bottom: 21px;
    left: 38px;
    border-color: #fff
}

.visual-design b {
    position: relative;
    z-index: 1;
    font: 700 38px/.84 'DM Mono';
    letter-spacing: -3px;
    text-align: center;
    transform: rotate(-4deg)
}

.feature-details {
    background: var(--ink);
    color: #fff
}

.feature-details .feature-sticker {
    color: var(--yellow)
}

.visual-details {
    background: #5ec8be;
    color: var(--ink);
    grid-template-columns: auto auto auto;
    gap: 9px;
    align-items: center
}

.visual-details span {
    font: 10px 'DM Mono';
    transform: rotate(-90deg)
}

.visual-details strong {
    font: 800 105px/.8 Manrope;
    letter-spacing: -9px
}

.visual-details b {
    position: absolute;
    right: 15px;
    top: 11px;
    font-size: 25px
}

.feature-details p {
    color: #c8d0db
}

.feature-rsvp {
    background: #ff8ca2;
    color: var(--ink)
}

.feature-rsvp .feature-sticker {
    background: #fff;
    border-color: #fff
}

.visual-rsvp {
    background: #f7f8f1;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 22px;
    box-shadow: 6px 6px 0 var(--ink)
}

.visual-rsvp>div:first-child small {
    display: block;
    font: 9px 'DM Mono'
}

.visual-rsvp>div:first-child strong {
    display: block;
    font-size: 67px;
    line-height: .9;
    letter-spacing: -5px
}

.mini-bars {
    flex: 1;
    display: grid;
    gap: 9px
}

.mini-bars i {
    display: block;
    height: 9px;
    background: #dce2dc;
    border-radius: 9px;
    overflow: hidden
}

.mini-bars i:after {
    content: '';
    display: block;
    height: 100%;
    background: #5ec8be;
    width: 82%
}

.mini-bars i:nth-child(2):after {
    width: 57%;
    background: var(--yellow)
}

.mini-bars i:nth-child(3):after {
    width: 35%;
    background: var(--pink)
}

.visual-rsvp>b {
    position: absolute;
    right: -9px;
    top: -19px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--yellow);
    font-size: 28px
}
}

.dashboard-section {
    background: var(--ink);
    color: #fff;
    padding: 110px 0;
    overflow: hidden
}

.demo-showcase{display:grid;grid-template-columns:.9fr 1.1fr;gap:90px;align-items:center;padding:125px 0}.demo-showcase-art{height:440px;position:relative;display:grid;place-items:center;background:#bcefe7;overflow:hidden}.demo-showcase-art:before{content:'';position:absolute;width:370px;height:370px;border-radius:50%;background:#ffcf76;right:-90px;top:-110px}.demo-showcase-art:after{content:'';position:absolute;width:210px;height:210px;border-radius:50%;background:#ff91a6;left:-70px;bottom:-80px}.demo-showcase-art img{position:relative;z-index:1;width:78%;height:78%;object-fit:cover;border-radius:50%;border:9px solid #fff;box-shadow:10px 12px 0 #15203b}.demo-dot{position:absolute;z-index:2;font-size:39px}.dot-one{right:27px;bottom:25px;color:#15203b}.dot-two{left:27px;top:26px;color:#fff}.demo-showcase-copy h2{font-size:55px;line-height:1;letter-spacing:-3px;margin:0}.demo-showcase-copy p:not(.kicker){max-width:430px;color:#5a6678;line-height:1.75;font-size:16px;margin:24px 0}.demo-showcase-actions{display:flex;align-items:center;gap:28px}.demo-showcase-copy small{display:block;margin-top:26px;color:#8791a0;font-size:11px}

.dashboard-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center
}

.light {
    color: #c8cfda
}

.light span {
    background: var(--yellow)
}

.dashboard-copy h2 {
    font-size: 52px
}

.dashboard-copy>p:not(.kicker) {
    line-height: 1.7;
    color: #b3bdcc;
    max-width: 405px;
    margin: 25px 0
}

.dashboard-copy ul {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.dashboard-copy li {
    font-size: 13px;
    margin: 13px 0;
    color: #e0e4e9
}

.dashboard-copy li span {
    color: var(--yellow);
    padding-right: 9px
}

.button-pink {
    background: var(--pink);
    box-shadow: 5px 5px 0 var(--yellow)
}

.dashboard-window {
    background: #f5f5f5;
    color: var(--ink);
    box-shadow: 18px 18px 0 #ffd76b;
    min-width: 590px
}

.window-bar {
    height: 37px;
    background: #e7e9eb;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px
}

.window-bar>span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7287
}

.window-bar>span:nth-child(2) {
    background: #ffd76b
}

.window-bar>span:nth-child(3) {
    background: #74d8c7
}

.window-bar b {
    font: 10px 'DM Mono';
    margin: auto;
    color: #6c7685
}

.window-bar i {
    font-style: normal;
    color: #6c7685
}

.dashboard-body {
    display: grid;
    grid-template-columns: 135px 1fr;
    min-height: 340px
}

.dashboard-body aside {
    padding: 19px 12px;
    background: #fafafa;
    border-right: 1px solid #e3e5e6
}

.dash-logo {
    background: var(--ink);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font: italic 16px Georgia;
    margin-bottom: 22px
}

.dashboard-body aside a {
    display: block;
    padding: 8px;
    font-size: 10px;
    color: #8992a0
}

.dashboard-body aside .active {
    background: #ffd76b;
    color: var(--ink);
    font-weight: bold
}

.profile {
    margin-top: 53px;
    font-size: 12px;
    font-weight: bold
}

.profile span {
    font-size: 8px;
    color: #8992a0
}

.dash-main {
    padding: 25px
}

.dash-title {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dash-title small,
.stat-row small,
.guest small {
    font-size: 9px;
    color: #8892a0
}

.dash-title h3 {
    margin: 3px 0;
    font-size: 16px
}

.dash-title button {
    border: 0;
    background: var(--ink);
    color: #fff;
    font: 9px Manrope;
    padding: 8px
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 20px 0
}

.stat-row>div {
    background: #fff;
    padding: 12px
}

.stat-row small {
    display: block
}

.stat-row strong {
    font-size: 24px;
    display: block;
    margin: 5px 0
}

.stat-row em {
    font-size: 8px;
    color: #43a58d;
    font-style: normal
}

.recent {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 8px
}

.recent a {
    color: #ed667d
}

.guest {
    display: flex;
    align-items: center;
    border-top: 1px solid #e9ebed;
    padding: 7px 0;
    gap: 8px;
    font-size: 10px
}

.guest>div {
    flex: 1
}

.guest b,
.guest small {
    display: block
}

.guest>em {
    font-size: 8px;
    color: #3da68b;
    font-style: normal
}

.guest .pending {
    color: #a5aab3
}

.guest-avatar {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 8px;
    font-weight: bold
}

.yellow {
    background: var(--yellow)
}

.blue {
    background: #a5d8e8
}

.pink {
    background: #ffc0cc
}

.process {
    padding: 130px 0
}

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

.steps article {
    border-top: 2px solid var(--ink);
    padding-top: 16px
}

.steps span {
    font: 11px 'DM Mono';
    color: var(--pink)
}

.steps h3 {
    font-size: 18px;
    margin: 25px 0 9px
}

.steps p {
    font-size: 13px;
    line-height: 1.6;
    color: #657083;
    margin: 0
}

.contact {
    padding-bottom: 120px
}

.contact-card {
    background: #26324b;
    color: #fff;
    padding: 67px 75px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    overflow: hidden
}

.contact-card:after {
    content: '✦';
    position: absolute;
    right: -15px;
    bottom: -67px;
    font-size: 220px;
    color: #33415d
}

.contact h2 {
    font-size: 52px;
    position: relative;
    z-index: 1
}

.contact>div>div>p:not(.kicker) {
    color: #c3ccdb;
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
    position: relative;
    z-index: 1
}

.contact form {
    position: relative;
    z-index: 1
}

.contact label {
    display: block;
    font: 10px 'DM Mono';
    margin-bottom: 15px;
    color: #d8deea
}

.contact input,
.contact textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #8d9aaf;
    color: #fff;
    padding: 10px 0;
    font: 14px Manrope;
    outline: none
}

.contact textarea {
    height: 65px;
    resize: vertical
}

.contact .consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin: 12px 0;
    color: #d8deea;
    font: 11px/1.5 Manrope;
    letter-spacing: 0
}

.contact .consent input {
    width: 15px;
    height: 15px;
    flex: none;
    margin: 1px 0 0;
    padding: 0;
    accent-color: #fc6b87
}

.contact .consent a {
    color: #fff;
    font-weight: 800
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #a5afbf
}

.contact form .button {
    margin-top: 15px
}

.form-note {
    font-size: 10px;
    color: #bdc6d4;
    margin: 17px 0 0
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0b1020b8;
    backdrop-filter: blur(6px)
}

.legal-modal.open {
    display: flex
}

.legal-modal-card {
    width: min(650px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow: auto;
    position: relative;
    padding: 48px;
    background: #fbf9f4;
    box-shadow: 11px 11px 0 var(--yellow)
}

.legal-close {
    position: absolute;
    right: 17px;
    top: 12px;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-size: 32px;
    line-height: 1
}

.legal-panel h2 {
    margin: 0 0 24px;
    font-size: 42px;
    letter-spacing: -2px
}

.legal-panel h3 {
    margin: 25px 0 7px;
    font-size: 15px
}

.legal-panel p {
    color: #536073;
    font-size: 14px;
    line-height: 1.75
}

.legal-panel .kicker {
    margin-bottom: 13px
}

.legal-policy-frame {
    display: block;
    width: 100%;
    height: 560px;
    border: 1px solid #deded9;
    background: #fff
}

footer {
    background: #e9e6df;
    padding: 42px 0 20px
}

.cookie-banner {
    position: fixed;
    z-index: 60;
    right: 22px;
    bottom: 22px;
    width: min(560px, calc(100vw - 32px));
    padding: 27px 29px;
    background: var(--ink);
    color: #fff;
    box-shadow: 10px 10px 0 var(--yellow)
}

.cookie-banner[hidden] {
    display: none
}

.cookie-banner .kicker {
    color: #d7dfea;
    margin: 0 0 12px
}

.cookie-banner .kicker span {
    background: var(--yellow)
}

.cookie-banner h2 {
    margin: 0;
    font-size: 27px
}

.cookie-banner p {
    margin: 12px 0;
    color: #d7dfea;
    font-size: 12px;
    line-height: 1.65
}

.cookie-banner p a {
    color: #fff;
    font-weight: 800
}

.cookie-options {
    border-top: 1px solid #ffffff2b;
    border-bottom: 1px solid #ffffff2b;
    margin: 18px 0;
    padding: 5px 0
}

.cookie-options label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    font-size: 12px
}

.cookie-options b,
.cookie-options small {
    display: block
}

.cookie-options small {
    margin-top: 4px;
    color: #c2cbd9;
    font-size: 10px
}

.cookie-options input {
    width: 18px;
    height: 18px;
    accent-color: var(--pink)
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.cookie-actions button,
.cookie-settings {
    border: 1px solid #ffffff80;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 10px 13px;
    font: 700 10px Manrope
}

.cookie-actions .cookie-accept,
.cookie-actions .cookie-save {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--ink)
}

.cookie-settings {
    padding: 0;
    border: 0;
    color: inherit;
    font: 11px Manrope
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    align-items: start
}

.footer-main p {
    font-size: 10px;
    color: #748093;
    margin: 0 0 5px
}

.footer-main strong {
    font-size: 14px
}

.footer-main strong a {
    color: inherit
}

.footer-main strong+small {
    display: block;
    margin-top: 5px;
    color: #748093;
    font-size: 10px
}

.footer-links {
    display: flex;
    gap: 17px;
    justify-content: flex-end
}

.footer-links a {
    font-size: 11px
}

.footer-bottom {
    border-top: 1px solid #c7c5c0;
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: #778090;
    font: 10px 'DM Mono'
}

.legal {
    padding: 90px 0;
    max-width: 760px
}

.legal .kicker {
    margin-top: 55px
}

.legal h1 {
    font-size: 56px;
    margin-bottom: 12px
}

.legal h2 {
    margin: 38px 0 10px;
    font-size: 23px
}

.legal p {
    line-height: 1.8;
    color: #566174;
    font-size: 15px
}

.legal-embed iframe {
    display: block;
    width: 100%;
    height: min(900px, calc(100vh - 210px));
    min-height: 620px;
    border: 1px solid #d8d6d1;
    background: #fff
}

@media(max-width:800px) {
    .wrap {
        width: min(100% - 34px, 600px)
    }

    .nav {
        height: 78px;
        position: relative
    }

    .nav nav {
        display: none;
        position: absolute;
        z-index: 20;
        top: 69px;
        left: 0;
        right: 0;
        padding: 14px;
        background: var(--ink);
        box-shadow: 6px 7px 0 var(--yellow)
    }

    .nav.nav-open nav {
        display: grid;
        gap: 0
    }

    .nav.nav-open nav a {
        color: #fff;
        padding: 13px 8px;
        border-bottom: 1px solid #ffffff2b
    }

    .nav-toggle {
        display: grid;
        gap: 5px;
        width: 39px;
        height: 39px;
        margin-left: auto;
        margin-right: 10px;
        padding: 10px;
        border: 1px solid var(--ink);
        background: transparent;
        cursor: pointer
    }

    .nav-toggle i {
        display: block;
        height: 2px;
        background: var(--ink)
    }

    .nav .button-small {
        padding: 10px;
        font-size: 10px;
        gap: 7px
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 65px 0
    }

    .hero-art {
        height: 430px;
        margin-top: 15px
    }

    .orb-one {
        width: 335px;
        height: 335px;
        right: 0
    }

    .invite-card {
        transform: rotate(3deg) scale(.88)
    }

    .chip-rsvp {
        right: 0
    }

    .service,
    .dashboard-grid,
    .contact-card {
        grid-template-columns: 1fr
    }

    .service {
        padding: 85px 0
    }

    .features {
        grid-template-columns: 1fr;
        margin-top: 35px
    }

    .feature-card,
    .features article+article {
        min-height: 0;
        padding: 22px 20px 25px;
        border: 0
    }

    .dashboard-section {
        padding: 80px 0
    }

    .demo-showcase{grid-template-columns:1fr;gap:38px;padding:85px 0}.demo-showcase-art{height:350px;max-width:500px}.demo-showcase-copy h2{font-size:46px}

    .dashboard-grid {
        gap: 45px
    }

    .dashboard-window {
        min-width: 0;
        box-shadow: 9px 9px 0 var(--yellow);
        overflow: hidden
    }

    .dashboard-body {
        grid-template-columns: 90px 1fr
    }

    .dashboard-body aside {
        padding: 15px 7px
    }

    .dashboard-body aside a {
        font-size: 8px
    }

    .dash-main {
        padding: 16px
    }

    .stat-row {
        gap: 4px
    }

    .stat-row>div {
        padding: 8px
    }

    .stat-row strong {
        font-size: 19px
    }

    .process {
        padding: 85px 0
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        margin-top: 35px;
        gap: 25px
    }

    .contact {
        padding-bottom: 70px
    }

    .contact-card {
        padding: 42px 25px;
        gap: 35px
    }

    .legal-modal-card {
        padding: 38px 25px
    }

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

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap
    }

    .footer-bottom {
        gap: 10px;
        flex-direction: column
    }

    .hero h1,
    .section-heading h2,
    .process h2 {
        letter-spacing: -2.5px
    }

    .dashboard-copy h2,
    .contact h2 {
        font-size: 42px
    }

    .section-heading h2 {
        font-size: 46px
    }
}

@media(max-width:410px) {
    .hero-art {
        transform: scale(.88);
        margin-left: -20px
    }

    .hero-actions {
        gap: 15px
    }

    .dashboard-body aside {
        display: none
    }

    .dashboard-body {
        grid-template-columns: 1fr
    }

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

    .nav .brand {
        transform: scale(.84);
        transform-origin: left
    }

    .nav .button-small {
        font-size: 0
    }

    .nav .button-small span {
        font-size: 16px
    }
}

.faq{padding:110px 0 45px}.faq>h2{max-width:650px;margin:18px 0 48px;font-size:clamp(42px,5.5vw,76px);line-height:.94;letter-spacing:-3px}.faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:#d8d5d1;border:1px solid #d8d5d1}.faq-grid article{padding:30px;background:#fffdf9}.faq-grid h3{margin:0 0 12px;font-size:20px;letter-spacing:-.6px}.faq-grid p{margin:0;max-width:480px;color:#616778;line-height:1.65}@media(max-width:650px){.faq{padding:72px 0 25px}.faq>h2{font-size:44px}.faq-grid{grid-template-columns:1fr}.faq-grid article{padding:25px}}
