:root {
    --bg: #050505;
    --surface: #111;
    --surface-2: #181818;
    --line: rgba(255, 255, 255, .13);
    --muted: #a3a3a3;
    --soft: #d4d4d4;
    --white: #fafafa;
    --blue: #15a9e5;
    --radius: 28px;
    --max: 1280px;
    color-scheme: dark
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5
}

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

img {
    display: block;
    max-width: 100%
}

button {
    font: inherit
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link:focus {
    position: fixed;
    z-index: 100;
    width: auto;
    height: auto;
    clip: auto;
    margin: 12px;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    border-radius: 8px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(5, 5, 5, .84);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px)
}

.header-inner {
    height: 78px;
    max-width: var(--max);
    margin: auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 36px
}

.wordmark,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    font-size: .78rem
}

.wordmark img,
.footer-brand img {
    width: 31px;
    height: 31px;
    object-fit: cover;
    object-position: 50% 36%;
    border-radius: 50%
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    color: var(--soft);
    font-size: .9rem
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    transition: .2s ease
}

.header-cta {
    background: #fff;
    color: #050505;
    padding: 11px 19px
}

.header-cta:hover {
    transform: translateY(-1px)
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    padding: 10px
}

.menu-button span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: #fff;
    margin: 5px
}

.hero {
    max-width: var(--max);
    min-height: 760px;
    margin: auto;
    padding: 92px 64px 68px;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 54px;
    overflow: hidden
}

.eyebrow,
.section-number {
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

.eyebrow span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    margin-right: 9px
}

.hero h1 {
    font-size: clamp(3.75rem, 7vw, 7.3rem);
    line-height: .89;
    letter-spacing: -.068em;
    margin: 23px 0 30px;
    max-width: 780px
}

.hero h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(255, 255, 255, .8)
}

.hero-lede {
    max-width: 580px;
    color: var(--soft);
    font-size: 1.16rem;
    line-height: 1.7
}

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

.button-light {
    background: #fff;
    color: #050505;
    padding: 15px 24px
}

.button-light:hover {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .1)
}

.text-link {
    font-weight: 750
}

.text-link span {
    color: var(--blue);
    padding-left: 6px
}

.launch-note {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: .86rem
}

.launch-note strong {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 590px
}

.hero-visual:before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 63%)
}

.route-line {
    position: absolute;
    inset: 13% 0 13% 12%;
    border: 2px dashed rgba(255, 255, 255, .13);
    border-radius: 48% 52% 61% 39%;
    transform: rotate(-13deg)
}

.route-line i {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 7px rgba(21, 169, 229, .13)
}

.route-line i:nth-child(1) {
    left: 3%;
    top: 48%
}

.route-line i:nth-child(2) {
    right: 12%;
    top: 8%
}

.route-line i:nth-child(3) {
    right: 0;
    bottom: 25%
}

.phone {
    position: relative;
    width: 318px;
    height: 642px;
    padding: 26px 14px 16px;
    border: 8px solid #2a2a2a;
    border-radius: 47px;
    background: linear-gradient(#111, #050505);
    box-shadow: 0 38px 100px rgba(0, 0, 0, .65), inset 0 0 0 1px #4a4a4a;
    transform: rotate(3deg);
    overflow: hidden
}

.phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 18px;
    border-radius: 12px;
    background: #050505
}

.app-bar {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .62rem;
    padding: 0 9px
}

.app-bar img {
    width: 43px;
    height: 28px;
    object-fit: cover
}

.app-bar b {
    letter-spacing: 1px
}

.app-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px
}

.app-title-row h2 {
    font-size: 1.43rem;
    margin: 9px 0 12px
}

.app-title-row span {
    font-size: 1.45rem
}

.app-tabs {
    display: flex;
    gap: 20px;
    padding: 0 8px 10px;
    color: #777;
    font-size: .7rem;
    border-bottom: 1px solid #292929
}

.app-tabs b {
    color: #fff;
    position: relative
}

.app-tabs b:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: -11px
}

.activity-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #181818, #0b0b0b);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 13px
}

.map-art {
    position: relative;
    height: 145px;
    background: linear-gradient(26deg, #222 0 42%, #111 42% 56%, #2b2b2b 56%);
    overflow: hidden
}

.map-art:after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(70deg, transparent 0 42px, rgba(255, 255, 255, .05) 43px 45px)
}

.map-road {
    position: absolute;
    height: 5px;
    background: #494949;
    border: 1px solid #666;
    z-index: 1
}

.road-one {
    width: 120%;
    top: 52%;
    left: -10%;
    transform: rotate(-16deg)
}

.road-two {
    width: 83%;
    top: 18%;
    left: 17%;
    transform: rotate(33deg)
}

.road-three {
    width: 75%;
    bottom: 11%;
    left: -4%;
    transform: rotate(17deg)
}

.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .18)
}

.pin-one {
    left: 34%;
    top: 48%
}

.pin-two {
    right: 22%;
    top: 33%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(21, 169, 229, .2)
}

.map-art small {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #050505;
    border-radius: 999px;
    padding: 4px 7px;
    font-size: .51rem;
    font-weight: 900;
    letter-spacing: .1em
}

.activity-body {
    padding: 13px
}

.activity-kicker {
    display: flex;
    justify-content: space-between;
    font-size: .52rem;
    font-weight: 850;
    letter-spacing: .09em;
    color: #aaa
}

.activity-kicker span {
    color: #fff
}

.activity-body h3 {
    font-size: 1rem;
    margin: 8px 0 2px
}

.activity-body p {
    color: #999;
    font-size: .66rem;
    margin: 0
}

.activity-meta {
    display: flex;
    gap: 6px;
    margin-top: 11px
}

.activity-meta span,
.sheet-pills span {
    padding: 4px 7px;
    border: 1px solid #333;
    border-radius: 999px;
    font-size: .54rem;
    color: #ccc
}

.mini-card {
    margin-top: 9px
}

.mini-card .activity-body {
    padding: 12px
}

.mini-card h3 {
    font-size: .82rem;
    margin-top: 5px
}

.app-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    border-top: 1px solid #242424;
    background: rgba(5, 5, 5, .97);
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    color: #666
}

.app-nav b,
.app-nav span {
    font-size: 1rem
}

.app-nav b {
    color: #fff
}

.app-nav small {
    display: block;
    font-size: .45rem;
    margin-top: 3px;
    font-weight: 600
}

.statement {
    max-width: var(--max);
    margin: 0 auto;
    padding: 130px 64px 80px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px
}

.statement .section-number {
    grid-column: 1/-1
}

.statement h2,
.about h2,
.download h2 {
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 0
}

.statement h2 span {
    color: #626262
}

.statement>p:last-child {
    align-self: end;
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--soft);
    margin: 0 0 7px
}

.feature-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 64px 130px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.feature {
    position: relative;
    min-height: 430px;
    padding: 46px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #171717, #0a0a0a);
    overflow: hidden
}

.feature-wide {
    grid-column: 1/-1;
    min-height: 485px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 40px;
    align-items: center
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    font-size: 1.3rem;
    margin-bottom: 58px
}

.feature h3 {
    font-size: clamp(2rem, 3.4vw, 3.7rem);
    letter-spacing: -.045em;
    line-height: 1.02;
    max-width: 650px;
    margin: 13px 0 20px
}

.feature p:not(.eyebrow) {
    max-width: 510px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7
}

.create-sheet {
    align-self: end;
    background: #0b0b0b;
    border: 1px solid var(--line);
    border-radius: 27px 27px 0 0;
    padding: 24px 24px 35px;
    box-shadow: 0 24px 50px #000
}

.sheet-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #272727;
    padding-bottom: 18px;
    font-size: .76rem
}

.sheet-head span:last-child {
    font-weight: 800
}

.create-sheet label {
    display: block;
    color: #737373;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 15px 0;
    border-bottom: 1px solid #202020
}

.create-sheet strong {
    display: block;
    color: #eee;
    font-size: .8rem;
    letter-spacing: 0;
    margin-top: 5px
}

.sheet-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.sheet-pills {
    display: flex;
    gap: 7px;
    margin-top: 18px
}

.sheet-pills span {
    font-size: .6rem;
    padding: 6px 10px
}

.team-stack {
    position: absolute;
    left: 46px;
    right: 46px;
    bottom: 42px;
    display: grid;
    gap: 8px
}

.team-stack>span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 17px;
    background: #0b0b0b;
    border: 1px solid var(--line)
}

.team-stack b {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: #222;
    font-size: .65rem
}

.team-stack i {
    font-style: normal;
    font-weight: 750;
    font-size: .78rem
}

.team-stack small {
    display: block;
    color: #777;
    font-size: .6rem;
    font-weight: 500;
    margin-top: 2px
}

.feature-live small {
    display: block;
    position: absolute;
    bottom: 42px;
    left: 46px;
    right: 46px;
    color: #666;
    font-size: .7rem
}

.live-orbit {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid #2b2b2b;
    border-radius: 50%;
    right: -140px;
    top: -120px
}

.live-orbit:before,
.live-orbit:after {
    content: "";
    position: absolute;
    border: 1px solid #252525;
    border-radius: 50%
}

.live-orbit:before {
    inset: 55px
}

.live-orbit:after {
    inset: 115px
}

.live-orbit span {
    position: absolute;
    left: 43px;
    bottom: 53px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 10px rgba(21, 169, 229, .11)
}

.repeat-feature {
    min-height: 360px
}

.repeat-feature .feature-icon {
    margin-bottom: 28px
}

.repeat-days {
    display: flex;
    gap: 9px;
    justify-content: flex-end
}

.repeat-days span {
    display: grid;
    place-items: center;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: #777;
    font-weight: 750
}

.repeat-days .active {
    background: #fff;
    color: #050505;
    border-color: #fff
}

.about {
    max-width: var(--max);
    margin: auto;
    padding: 130px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    border-top: 1px solid var(--line)
}

.about-title .section-number {
    margin: 0 0 30px
}

.about-copy {
    padding-top: 54px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8
}

.about-copy .large-copy {
    font-size: 1.45rem;
    line-height: 1.55;
    color: #fff;
    margin-top: 0
}

.download {
    max-width: calc(var(--max) - 64px);
    margin: 0 auto 32px;
    padding: 80px;
    border-radius: 36px;
    background: #f5f5f5;
    color: #050505;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px
}

.download .eyebrow {
    color: #555
}

.download h2 {
    margin: 19px 0 22px
}

.download>div>p:last-child {
    color: #555
}

.store-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.store-links a {
    min-width: 170px;
    background: #050505;
    color: #fff;
    border-radius: 13px;
    padding: 10px 17px;
    line-height: 1.05;
    border: 1px solid #333
}

.store-links small {
    font-size: .55rem;
    display: block;
    margin-bottom: 3px
}

.store-links strong {
    font-size: 1.25rem
}

footer {
    max-width: var(--max);
    margin: auto;
    padding: 70px 64px 28px
}

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

.footer-main p {
    margin: 0 0 9px;
    color: #777
}

.footer-main>div a {
    font-size: 1.2rem;
    border-bottom: 1px solid #555
}

.footer-main nav {
    display: grid;
    gap: 10px;
    justify-content: start;
    color: #aaa
}

.footer-legal {
    padding-top: 25px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.footer-legal nav {
    display: flex;
    gap: 20px
}

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

    .menu-button {
        display: block;
        margin-left: auto
    }

    .header-cta {
        display: none
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        padding: 16px 20px 24px;
        background: #080808;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px
    }

    .site-nav.open {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 70px 28px 40px
    }

    .hero-copy {
        text-align: center
    }

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

    .hero-actions,
    .launch-note {
        justify-content: center
    }

    .hero-visual {
        min-height: 660px
    }

    .statement {
        grid-template-columns: 1fr;
        padding: 95px 28px 55px;
        gap: 30px
    }

    .feature-grid {
        padding: 0 28px 90px;
        grid-template-columns: 1fr
    }

    .feature,
    .feature-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        padding: 34px
    }

    .feature-wide {
        min-height: auto
    }

    .feature-icon {
        margin-bottom: 35px
    }

    .create-sheet {
        margin-top: 35px
    }

    .repeat-days {
        justify-content: flex-start;
        flex-wrap: wrap
    }

    .about {
        grid-template-columns: 1fr;
        padding: 95px 28px;
        gap: 20px
    }

    .about-copy {
        padding-top: 0
    }

    .download {
        max-width: calc(100% - 32px);
        padding: 48px 30px;
        display: block
    }

    .store-links {
        justify-content: flex-start;
        margin-top: 38px
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .footer-main nav {
        grid-column: 1/-1
    }

    .footer-legal {
        gap: 20px;
        flex-wrap: wrap
    }
}

@media(max-width:560px) {
    .wordmark span {
        font-size: .7rem
    }

    .hero {
        padding-top: 52px
    }

    .hero h1 {
        font-size: 3.48rem
    }

    .hero-lede {
        font-size: 1rem
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 38px
    }

    .launch-note {
        align-items: center;
        text-align: left
    }

    .hero-visual {
        min-height: 570px
    }

    .hero-visual:before {
        width: 390px;
        height: 390px
    }

    .phone {
        width: 280px;
        height: 575px;
        transform: rotate(1deg)
    }

    .map-art {
        height: 116px
    }

    .statement h2,
    .about h2,
    .download h2 {
        font-size: 3rem
    }

    .feature h3 {
        font-size: 2.18rem
    }

    .feature {
        min-height: 400px
    }

    .feature-wide {
        min-height: auto
    }

    .sheet-two {
        grid-template-columns: 1fr
    }

    .repeat-days span {
        width: 43px;
        height: 43px
    }

    .download {
        border-radius: 26px
    }

    .store-links {
        display: grid
    }

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

    .footer-main nav {
        grid-column: auto
    }

    .footer-legal {
        display: grid
    }

    .footer-legal nav {
        order: 3
    }
}

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

    * {
        transition: none !important
    }
}

/* On-site legal reader */
body.legal-open {
    overflow: hidden
}

.legal-reader {
    width: min(1040px, calc(100% - 40px));
    height: min(90vh, 920px);
    max-width: none;
    max-height: none;
    padding: 0;
    border: 1px solid #343434;
    border-radius: 28px;
    background: #090909;
    color: var(--white);
    box-shadow: 0 36px 120px rgba(0, 0, 0, .8);
    overflow: hidden
}

.legal-reader::backdrop {
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(12px)
}

.legal-reader-shell {
    height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr
}

.legal-reader-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 21px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 9, .96)
}

.legal-reader-header p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .2em
}

.legal-reader-header h2 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -.03em
}

.legal-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #383838;
    border-radius: 50%;
    background: #161616;
    color: #fff;
    cursor: pointer
}

.legal-close span {
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
    transform: translateY(-1px)
}

.legal-close:hover,
.legal-close:focus-visible {
    background: #fff;
    color: #050505;
    outline: none
}

.legal-tabs {
    display: flex;
    gap: 8px;
    padding: 14px 30px;
    border-bottom: 1px solid var(--line);
    background: #0d0d0d;
    overflow-x: auto
}

.legal-tabs button {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid #343434;
    border-radius: 999px;
    background: #171717;
    color: #aaa;
    font: inherit;
    font-size: .78rem;
    font-weight: 750;
    cursor: pointer
}

.legal-tabs button:hover,
.legal-tabs button:focus-visible {
    color: #fff;
    border-color: #666;
    outline: none
}

.legal-tabs button.active {
    background: #fff;
    color: #050505;
    border-color: #fff
}

.legal-document {
    overflow-y: auto;
    padding: 42px max(34px, 9vw) 70px;
    color: #dedede;
    font-size: 1rem;
    line-height: 1.78;
    scrollbar-gutter: stable
}

.legal-document:focus {
    outline: none
}

.legal-document strong {
    color: #fff
}

.legal-document a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px
}

.legal-document>strong:first-child {
    font-size: 1.02rem
}

.legal-document br+strong {
    display: inline-block;
    margin-top: 8px
}

.legal-document::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 45px;
    background: var(--line)
}

@media(max-width:680px) {
    .legal-reader {
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        margin: 0;
        border: 0;
        border-radius: 0
    }

    .legal-reader-header {
        padding: 18px 20px 15px
    }

    .legal-reader-header h2 {
        font-size: 1.2rem
    }

    .legal-close {
        width: 40px;
        height: 40px
    }

    .legal-tabs {
        padding: 11px 20px
    }

    .legal-document {
        padding: 30px 22px 60px;
        font-size: .96rem;
        line-height: 1.72
    }
}

/* Review refinements */
.hero h1 em {
    color: #6d6d6d;
    -webkit-text-stroke: 0
}

.feature#teams {
    display: flex;
    flex-direction: column
}

.feature#teams>p:not(.eyebrow) {
    margin-bottom: 0
}

.feature#teams .team-stack {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: auto;
    padding-top: 30px
}

/* ROR 5.0 interface fidelity */
.app-title-row {
    justify-content: center
}

.app-title-row h2 {
    font-size: .9rem;
    margin: 9px 0 15px
}

.app-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 3px 9px
}

.app-tabs {
    gap: 2px;
    padding: 3px;
    border: 1px solid #282828;
    border-radius: 999px;
    background: #1b1b1b
}

.app-tabs span,
.app-tabs b {
    padding: 3px 7px
}

.app-tabs b {
    background: #f4f4f4;
    color: #111;
    border-radius: 999px
}

.app-tabs b:after {
    display: none
}

.filter-chip {
    font-size: .54rem;
    color: #ddd;
    border: 1px solid #2b2b2b;
    border-radius: 999px;
    padding: 5px 8px
}

.app-region {
    font-size: .49rem;
    color: #bbb;
    margin: 0 8px 7px
}

.app-region span {
    display: block;
    color: #777;
    margin-left: 11px
}

.activity-card {
    border-radius: 16px;
    margin-top: 7px
}

.activity-body {
    padding: 10px
}

.activity-body h3 {
    font-size: .82rem;
    line-height: 1.2;
    margin: 5px 0 3px
}

.activity-body p {
    font-size: .55rem
}

.activity-body .posted-by {
    margin-top: 5px;
    color: #777
}

.activity-kicker {
    font-size: .48rem
}

.map-art {
    height: 108px;
    margin: 0 7px 6px;
    border-radius: 12px;
    background: linear-gradient(26deg, #486c5f 0 42%, #a4aea2 42% 56%, #6d8d7f 56%)
}

.map-road {
    background: #ddd8ca;
    border-color: #eee
}

.pin-one,
.pin-two {
    background: #e34d45;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .28)
}

.map-art small {
    top: 8px;
    left: 8px;
    background: rgba(22, 22, 22, .72);
    color: #eee
}

.map-art>b {
    position: absolute;
    z-index: 3;
    right: 8px;
    bottom: 8px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 6px 9px;
    font-size: .48rem
}

.card-footer {
    display: flex;
    justify-content: space-between;
    padding: 7px 11px;
    border-top: 1px solid #242424;
    color: #aaa;
    font-size: .5rem
}

.mini-card {
    margin-top: 7px
}

.mini-card .activity-body {
    padding: 10px
}

.mini-card h3 {
    font-size: .72rem
}

.app-nav {
    height: 55px
}

.app-nav b,
.app-nav span {
    font-size: .83rem
}

.app-nav small {
    font-size: .4rem;
    margin-top: 2px
}

.create-sheet {
    padding: 20px 20px 28px
}

.sheet-head {
    padding-bottom: 15px;
    font-size: .72rem
}

.sheet-head span {
    min-width: 34px
}

.sheet-head span:last-child {
    color: #777
}

.quick-create {
    padding: 14px 0 8px
}

.quick-create b,
.quick-create small {
    display: block
}

.quick-create small {
    color: #777;
    font-size: .62rem;
    margin-top: 2px
}

.create-sheet label {
    padding: 0;
    border: 0;
    margin-bottom: 8px;
    color: #aaa;
    letter-spacing: .04em
}

.create-sheet strong {
    padding: 11px 13px;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #777
}

.sheet-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    margin-top: 7px;
    border: 1px solid #2a2a2a;
    border-radius: 11px;
    color: #d7d7d7;
    font-size: .72rem
}

.create-map {
    height: 96px;
    margin-top: 9px;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c4ccc2, #809b8d)
}

.create-map:after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(255, 255, 255, .5) 31px 35px)
}

.create-map small {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(20, 20, 20, .62);
    font-size: .5rem
}

.create-map i {
    position: absolute;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e34d45
}

.create-map i:nth-of-type(1) {
    left: 32%;
    top: 43%
}

.create-map i:nth-of-type(2) {
    left: 55%;
    top: 62%
}

.create-map i:nth-of-type(3) {
    right: 18%;
    top: 27%
}

.team-stack b {
    width: 42px;
    height: 42px
}

.team-stack .team-photo {
    background: linear-gradient(135deg, #d8a765, #617d90)
}

.team-stack i {
    flex: 1
}

.team-stack em {
    display: block;
    text-align: center;
    margin-top: 7px;
    border: 1px solid #303030;
    border-radius: 999px;
    padding: 2px;
    font-style: normal;
    font-size: .52rem;
    color: #bbb
}

.feature-live {
    min-height: 570px
}

.feature-live>small {
    bottom: 28px
}

.live-orbit span {
    left: 75px;
    bottom: 150px
}

.live-panel {
    position: absolute;
    left: 46px;
    right: 46px;
    bottom: 61px;
    padding: 13px;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    background: rgba(8, 8, 8, .92);
    overflow: hidden
}

.live-panel .live-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: .72rem;
    font-weight: 750
}

.live-panel-head>b {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .52rem;
    color: #59d6a0;
    background: rgba(31, 170, 112, .15);
    border: 1px solid rgba(51, 204, 142, .42);
    border-radius: 999px;
    padding: 4px 7px
}

.live-panel-head>b i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #42d69a
}

.live-panel p {
    font-size: .58rem !important;
    line-height: 1.4 !important
}

.live-panel .live-updated {
    margin: 5px 0 9px !important;
    color: #777 !important
}

.live-map {
    position: relative;
    height: 105px;
    border-radius: 12px;
    background-image: url('assets/tucson-map.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.live-map:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .04)
}

.live-map>span {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(25, 25, 25, .74);
    font-size: .51rem;
    font-weight: 750;
    color: #fff
}

.live-panel .live-dependency {
    margin: 8px 1px 0 !important;
    color: #999 !important
}

.repeat-control {
    justify-self: end;
    width: min(100%, 480px);
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #0b0b0b
}

.repeat-control small {
    font-size: .6rem;
    color: #888;
    font-weight: 800
}

.repeat-control div {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 15px;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    color: #d9d9d9;
    font-size: .78rem
}

.repeat-control p {
    font-size: .68rem !important;
    margin: 8px 2px 0 !important;
    color: #777 !important
}

@media(max-width:560px) {
    .map-art {
        height: 96px
    }

    .feature-live {
        min-height: 605px
    }

    .live-panel {
        left: 34px;
        right: 34px
    }

    .feature-live>small {
        left: 34px;
        right: 34px
    }

    .live-orbit span {
        left: 75px;
        bottom: 150px
    }

    .repeat-control {
        justify-self: start
    }
}

.app-bar {
    justify-content: space-between
}

.map-art {
    background-image: linear-gradient(rgba(0, 0, 0, .05), rgba(0, 0, 0, .05)), url('assets/tucson-map.jpg');
    background-size: cover;
    background-position: center
}

.map-art:after,
.map-art .map-road,
.map-art .pin {
    display: none
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.icon {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -.14em
}

.filter-chip .icon {
    margin-right: 3px
}

.app-region>.icon {
    margin-right: 2px
}

.app-nav .icon {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    margin: 0 auto
}

.feature-icon .icon {
    width: 1.45rem;
    height: 1.45rem
}

.sheet-choice span {
    display: flex;
    align-items: center;
    gap: 9px
}

.sheet-choice .icon {
    width: 1rem;
    height: 1rem
}

.live-panel span {
    display: flex;
    align-items: center;
    gap: 7px
}

.live-panel .icon {
    width: .9rem;
    height: .9rem
}

.map-art {
    height: auto;
    aspect-ratio: 900/539;
    background-size: 100% 100%;
    background-repeat: no-repeat
}

.mini-card {
    min-height: 92px;
    position: relative;
    z-index: 0
}

.app-nav {
    z-index: 5;
    box-shadow: 0 -10px 24px rgba(5, 5, 5, .82)
}

.clipped-card {
    margin-bottom: 0
}

.feature-wide .create-sheet {
    width: min(92%, 620px);
    justify-self: center;
    align-self: center
}

.activity-type-group {
    margin-top: 9px;
    border: 1px solid #2a2a2a;
    border-radius: 17px;
    overflow: hidden;
    background: linear-gradient(145deg, #191919, #111)
}

.activity-type-group .sheet-choice {
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 15px 16px
}

.activity-type-group .sheet-choice+.sheet-choice {
    border-top: 1px solid #2a2a2a
}

.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px
}

.date-time-row .sheet-choice {
    margin: 0;
    padding: 13px 14px
}

.create-map {
    width: 100%;
    height: auto;
    aspect-ratio: 1200/433;
    margin: 10px 0 0;
    background-image: url('assets/create-map.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat
}

.create-map:after,
.create-map small,
.create-map i {
    display: none
}

@media(max-width:900px) {
    .feature-wide .create-sheet {
        width: 100%;
        max-width: 620px;
        justify-self: start
    }

    .create-map {
        width: 100%
    }
}

@media(max-width:560px) {
    .date-time-row {
        grid-template-columns: 1fr
    }

    .activity-type-group .sheet-choice,
    .date-time-row .sheet-choice {
        padding: 12px 13px
    }
}

.create-sheet strong,
.sheet-choice {
    font-size: .82rem;
    font-weight: 650
}

.sheet-choice b {
    font-weight: 650
}

/* Mobile navigation motion */
.menu-button span:not(.sr-only) {
    transform-origin: center;
    transition: transform .24s cubic-bezier(.22, 1, .36, 1), opacity .16s ease
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
    transform: scaleX(.35)
}

.menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

@media(max-width:900px) {
    .site-nav {
        display: flex;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .24s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .24s;
        will-change: opacity, transform
    }

    .site-nav.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s
    }
}

@media(max-width:560px) {
    .live-map {
        background-size: 155% auto;
        background-position: center 48%
    }
}

/* Keep the Live Location orbit atmospheric, behind all readable content. */
.feature-live>.live-orbit {
    z-index: 0;
    pointer-events: none
}

.feature-live>.feature-icon,
.feature-live>.eyebrow,
.feature-live>h3,
.feature-live>p {
    position: relative;
    z-index: 1
}

.feature-live>.live-panel,
.feature-live>small {
    z-index: 1
}

@media(max-width:560px) {
    .feature-live {
        min-height: 625px
    }

    .feature-live>.live-panel {
        bottom: 78px
    }
}