:root {
    color-scheme: dark;
    --ink: #10253a;
    --navy: #132b43;
    --navy-soft: #1a3956;
    --green: #55c99a;
    --green-dark: #2e9e76;
    --coral: #f07968;
    --yellow: #efc85a;
    --blue: #6ba7d6;
    --cream: #f4f0e7;
    --paper: #fbfaf6;
    --muted: #66727c;
    --line: rgba(16, 37, 58, .13);
    --shadow: 0 28px 70px rgba(13, 35, 54, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 18%, rgba(107,167,214,.07) 0 2px, transparent 3px),
        radial-gradient(circle at 91% 41%, rgba(240,121,104,.06) 0 2px, transparent 3px),
        var(--paper);
    background-size: 58px 58px, 73px 73px, auto;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    background: white;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
    min-height: 76px;
    padding: 0 clamp(22px, 5vw, 76px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: white;
    background: rgba(16, 37, 58, .94);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-weight: 800;
    letter-spacing: -.02em;
    text-decoration: none;
    padding-block: 7px;
}

.brand-logo {
    display: block;
    width: clamp(130px, 15vw, 170px);
    height: auto;
}

.footer-brand .brand-logo {
    width: min(160px, 100%);
}

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px 10px 10px 3px;
    color: var(--ink);
    background: var(--green);
    font-size: 1.1rem;
    transform: rotate(-3deg);
}

.brand-mark::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    background: var(--coral);
}

.site-navigation {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2.6vw, 34px);
}

.site-navigation a {
    color: rgba(255,255,255,.78);
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.site-navigation a[aria-current="page"] {
    color: white;
}

.site-navigation a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.nav-toggle {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: var(--ink);
    background: var(--green);
    box-shadow: 0 10px 25px rgba(45, 158, 118, .22);
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
    background: #6ed7ad;
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding: 0 17px;
    border-radius: 9px;
    font-size: .88rem;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
    min-height: 720px;
    padding: 100px clamp(24px, 7vw, 110px) 110px;
    color: white;
    background:
        radial-gradient(circle at 84% 16%, rgba(85,201,154,.16), transparent 26%),
        linear-gradient(145deg, #10253a 0%, #142f49 60%, #173955 100%);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    top: 11%;
    right: 3%;
    width: clamp(180px, 22vw, 330px);
    aspect-ratio: 1;
    border: 1px solid rgba(239,200,90,.22);
    border-radius: 43% 57% 64% 36% / 48% 35% 65% 52%;
    transform: rotate(18deg);
}

.hero::after {
    bottom: 7%;
    left: 43%;
    width: 94px;
    height: 19px;
    border-radius: 70% 30% 58% 42%;
    background: var(--coral);
    opacity: .7;
    transform: rotate(-11deg);
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero .eyebrow,
.pilot-section .eyebrow,
.contact-section .eyebrow {
    color: var(--green);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    text-wrap: balance;
    letter-spacing: -.045em;
    line-height: 1.03;
}

h1 {
    max-width: 740px;
    margin-bottom: 26px;
    font-size: clamp(2.9rem, 5vw, 5.6rem);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4vw, 4.35rem);
}

h3 {
    line-height: 1.15;
}

.hero-intro {
    max-width: 650px;
    color: rgba(255,255,255,.74);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

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

.text-link {
    display: inline-flex;
    gap: 9px;
    color: white;
    font-weight: 750;
    text-decoration: none;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 42px 0 0;
    padding: 0;
    color: rgba(255,255,255,.62);
    font-size: .86rem;
    list-style: none;
}

.hero-points li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--green);
}

.product-preview {
    width: min(100%, 720px);
    margin-inline: auto;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: #152b43;
    box-shadow: 0 42px 100px rgba(0,0,0,.34);
    transform: rotate(1.5deg);
    overflow: hidden;
}

.preview-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 54px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
}

.preview-topbar > span:first-child {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.preview-status {
    justify-self: end;
    color: var(--green);
}

.preview-layout {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 430px;
}

.preview-sidebar {
    display: grid;
    align-content: start;
    justify-content: center;
    gap: 20px;
    padding-top: 28px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.preview-sidebar i {
    display: block;
    width: 20px;
    height: 6px;
    border-radius: 9px;
    background: rgba(255,255,255,.17);
}

.preview-sidebar i.active {
    background: var(--green);
}

.preview-content {
    padding: 32px;
}

.preview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.preview-heading div {
    display: grid;
}

.preview-heading small,
.preview-card small {
    color: var(--green);
    font-size: .66rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.preview-heading strong {
    font-size: 1.35rem;
}

.preview-heading > span {
    padding: 6px 10px;
    border-radius: 20px;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.06);
    font-size: .7rem;
}

.preview-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.preview-card-featured {
    padding: 12px;
}

.preview-card div:nth-child(2) {
    display: grid;
}

.preview-card p {
    margin: 2px 0 0;
    color: rgba(255,255,255,.5);
    font-size: .72rem;
}

.preview-card b {
    color: rgba(255,255,255,.62);
    font-size: .74rem;
}

.preview-image {
    width: 82px;
    height: 68px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(85,201,154,.7), rgba(245,186,73,.62)),
        #31516c;
}

.preview-dot {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(85,201,154,.13);
}

.preview-progress {
    height: 7px;
    margin-top: 28px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.preview-progress span {
    display: block;
    width: var(--progress);
    height: 100%;
    border-radius: inherit;
    background: var(--green);
}

.problem-strip {
    position: relative;
    padding: 38px clamp(24px, 8vw, 130px);
    color: var(--ink);
    background: var(--green);
    overflow: hidden;
}

.problem-strip::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 7%;
    width: 115px;
    height: 115px;
    border: 20px solid rgba(255,255,255,.16);
    border-radius: 48% 52% 41% 59%;
    transform: rotate(24deg);
}

.problem-strip p {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.section {
    padding: 120px clamp(24px, 7vw, 110px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 58px;
}

.section-heading h2 {
    position: relative;
    display: inline;
    background-image: linear-gradient(transparent 82%, rgba(239,200,90,.5) 82%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section-heading .eyebrow::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 7px;
    margin-right: 9px;
    border-radius: 70% 30% 60% 40%;
    background: currentColor;
    transform: rotate(-7deg);
}

.section-heading.compact {
    max-width: 740px;
}

.section-heading > p:last-child {
    max-width: 680px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 1.06rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 280px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: 0 12px 32px rgba(16,37,58,.045);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 58px;
    height: 5px;
    border-radius: 0 0 7px 7px;
    background: var(--green);
}

.feature-card:nth-child(3n + 2)::before {
    background: var(--coral);
}

.feature-card:nth-child(3n)::before {
    background: var(--blue);
}

.feature-card:hover {
    border-color: rgba(16,37,58,.2);
    box-shadow: 0 22px 46px rgba(16,37,58,.09);
    transform: translateY(-4px) rotate(-.2deg);
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-card-accent {
    color: white;
    background: var(--ink);
}

.feature-card-accent::before {
    background: var(--yellow);
}

.feature-number {
    display: block;
    margin-bottom: 52px;
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
}

.feature-card h3 {
    margin-bottom: 13px;
    font-size: 1.45rem;
}

.feature-card p,
.feature-card li {
    color: var(--muted);
}

.feature-card-accent p {
    color: rgba(255,255,255,.65);
}

.feature-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.feature-card li {
    padding: 6px 10px;
    border-radius: 20px;
    background: #f1f4f1;
    font-size: .78rem;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: var(--green-dark);
    font-weight: 850;
    text-decoration: none;
}

.section-link span {
    transition: transform .18s ease;
}

.section-link:hover span,
.section-link:focus-visible span {
    transform: translateX(4px);
}

.audience-section {
    background: var(--cream);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.audience-grid article {
    padding: 38px 38px 20px 0;
}

.audience-grid article + article {
    padding-left: 38px;
    border-left: 1px solid var(--line);
}

.audience-grid span {
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.audience-grid h3 {
    margin: 30px 0 12px;
    font-size: 1.5rem;
}

.audience-grid p {
    color: var(--muted);
}

.pilot-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
    gap: clamp(50px, 8vw, 130px);
    color: white;
    background: var(--ink);
}

.pilot-copy p {
    color: rgba(255,255,255,.68);
}

.pilot-copy .button {
    margin-top: 16px;
}

.pilot-list {
    border-top: 1px solid rgba(255,255,255,.15);
}

.pilot-list div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.pilot-list strong {
    color: var(--green);
}

.pilot-list span {
    color: rgba(255,255,255,.58);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr .8fr auto;
    align-items: end;
    gap: 50px;
    color: white;
    background: var(--navy-soft);
}

.contact-section h2 {
    max-width: 680px;
    margin: 0;
}

.contact-section > p {
    margin: 0;
    color: rgba(255,255,255,.67);
}

.button-light {
    white-space: nowrap;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 34px clamp(24px, 7vw, 110px);
    color: rgba(255,255,255,.58);
    background: #0b1c2c;
    font-size: .8rem;
}

.footer-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer p {
    margin: 0;
}

.footer-brand {
    color: white;
}

.footer-documents {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
}

.footer-documents a {
    color: rgba(255,255,255,.64);
    text-decoration: none;
}

.footer-documents a:hover,
.footer-documents a:focus-visible {
    color: white;
}

.footer-status {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: right;
}

.footer-business {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.48);
}

.footer-business a {
    color: rgba(255,255,255,.72);
}

.footer-business
    + .footer-status {
    padding-top: 0;
    border-top: 0;
}

.document-page {
    min-height: 100vh;
    background: var(--paper);
}

.document-header {
    position: static;
    grid-template-columns: auto 1fr auto;
}

.document-back {
    justify-self: end;
}

.document-main {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) 0;
}

.document-intro {
    max-width: 760px;
    margin-bottom: 58px;
}

.document-intro h1 {
    max-width: none;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.document-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.concept-notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 4px solid var(--green);
    background: white;
    color: var(--muted);
}

.document-content {
    display: grid;
    gap: 18px;
}

.document-section {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}

.document-section h2 {
    margin-bottom: 18px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.document-section h3 {
    margin: 24px 0 9px;
}

.document-section p:last-child,
.document-section ul:last-child {
    margin-bottom: 0;
}

.document-section li + li {
    margin-top: 8px;
}

.document-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 34px;
}

.document-links a {
    color: var(--green-dark);
    font-weight: 800;
}

.possibilities-page {
    background: var(--paper);
}

.possibilities-hero {
    position: relative;
    padding: clamp(80px, 10vw, 135px) clamp(24px, 7vw, 110px);
    color: white;
    background: var(--ink);
    overflow: hidden;
}

.possibilities-hero > div {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
}

.possibilities-hero h1 {
    max-width: 900px;
}

.possibilities-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255,255,255,.7);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.possibilities-hero .eyebrow {
    color: var(--green);
}

.possibility-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.possibility-navigation a {
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    color: rgba(255,255,255,.76);
    font-size: .8rem;
    font-weight: 750;
    text-decoration: none;
}

.possibility-navigation a:hover,
.possibility-navigation a:focus-visible {
    border-color: var(--green);
    color: white;
}

.possibility-list {
    counter-reset: possibility;
}

.possibility-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr);
    align-items: center;
    gap: clamp(50px, 8vw, 130px);
    padding: clamp(82px, 10vw, 140px) clamp(24px, 7vw, 110px);
    border-bottom: 1px solid var(--line);
    counter-increment: possibility;
}

.possibility-section:nth-child(even) {
    background: var(--cream);
}

.possibility-section:nth-child(even) .possibility-visual {
    order: -1;
}

.possibility-copy::before {
    content: "0" counter(possibility);
    display: block;
    margin-bottom: 28px;
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.possibility-copy h2 {
    font-size: clamp(2.15rem, 4vw, 3.8rem);
}

.possibility-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.possibility-copy ul {
    display: grid;
    gap: 9px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.possibility-copy li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
}

.possibility-copy li::before {
    content: "";
    position: absolute;
    top: .68em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.possibility-visual {
    min-width: 0;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(16,37,58,.09);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.possibility-visual-app {
    color: white;
    border-color: rgba(255,255,255,.09);
    background: #142b42;
    box-shadow: 0 28px 70px rgba(13,35,54,.2);
}

.possibility-visual-app .visual-toolbar {
    border-color: rgba(255,255,255,.09);
}

.visual-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.visual-toolbar strong {
    font-size: 1.05rem;
}

.visual-pill,
.visual-label {
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--green-dark);
    background: rgba(85,201,154,.13);
    font-size: .7rem;
    font-weight: 800;
}

.visual-stack {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.visual-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.visual-row-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--green-dark);
    background: rgba(85,201,154,.12);
    font-size: .75rem;
    font-weight: 900;
}

.visual-row div {
    display: grid;
}

.visual-row small {
    color: var(--muted);
}

.visual-row > b {
    color: var(--green-dark);
    font-size: .8rem;
}

.visual-table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
}

.visual-table th,
.visual-table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: .8rem;
}

.visual-table th {
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.chore-redistribute {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.06);
    font: inherit;
    font-size: .68rem;
    font-weight: 750;
    cursor: pointer;
}

.chore-redistribute:hover,
.chore-redistribute:focus-visible {
    border-color: var(--green);
    color: white;
    outline: none;
}

.chore-demo-controls {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.chore-demo-controls > span {
    color: rgba(255,255,255,.5);
    font-size: .66rem;
    font-weight: 750;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.chore-task-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chore-task-toggles button {
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.035);
    font: inherit;
    font-size: .66rem;
    cursor: pointer;
    transition:
        border-color .18s ease,
        color .18s ease,
        background .18s ease;
}

.chore-task-toggles button.active {
    border-color: rgba(85,201,154,.45);
    color: #a5edcf;
    background: rgba(40,184,122,.16);
}

.chore-task-toggles button:hover,
.chore-task-toggles button:focus-visible {
    border-color: var(--green);
    color: white;
    outline: none;
}

.chore-demo-table th,
.chore-demo-table td {
    border-color: rgba(255,255,255,.08);
}

.chore-demo-table th {
    color: rgba(255,255,255,.45);
}

.chore-demo-table td {
    color: rgba(255,255,255,.83);
    transition:
        color .18s ease,
        opacity .18s ease;
}

.chore-demo-table td:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chore-demo-table [data-chore-absence] {
    padding: 3px 6px;
    border: 0;
    border-radius: 6px;
    color: rgba(255,255,255,.42);
    background: transparent;
    font: inherit;
    font-size: .6rem;
    cursor: pointer;
}

.chore-demo-table [data-chore-absence]:hover,
.chore-demo-table [data-chore-absence]:focus-visible {
    color: white;
    background: rgba(255,255,255,.07);
    outline: none;
}

.chore-demo-table tr.is-absent td {
    color: rgba(255,255,255,.32);
}

.chore-demo-table tr.is-unused {
    display: none;
}

.chore-demo-table [data-chore-assignment] {
    animation: chore-assignment-in .24s ease;
}

.chore-demo-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.48);
    font-size: .68rem;
}

.chore-absent-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.chore-absent-list[hidden] {
    display: none;
}

.chore-absent-list > span {
    color: rgba(255,255,255,.42);
    font-size: .64rem;
}

.chore-absent-list button {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    color: rgba(255,255,255,.66);
    background: rgba(255,255,255,.045);
    font: inherit;
    font-size: .62rem;
    cursor: pointer;
}

.chore-absent-list button:hover,
.chore-absent-list button:focus-visible {
    border-color: var(--green);
    color: white;
    outline: none;
}

@keyframes chore-assignment-in {
    from {
        opacity: 0;
        transform: translateY(3px);
    }
}

.visual-score {
    color: var(--green-dark);
    font-weight: 900;
}

.visual-chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 190px;
    margin-top: 28px;
    padding: 0 8px 12px;
    border-bottom: 1px solid var(--line);
}

.visual-chart span {
    flex: 1;
    height: var(--height);
    min-width: 18px;
    border-radius: 7px 7px 2px 2px;
    background: var(--green);
}

.visual-chart span:nth-child(even) {
    background: var(--navy-soft);
}

.app-assignment-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.app-assignment-card {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    min-height: 205px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.app-assignment-card:hover,
.app-assignment-card:focus-within {
    border-color: rgba(85,201,154,.45);
    box-shadow: 0 16px 32px rgba(0,0,0,.2);
    transform: translateY(-3px);
}

.app-assignment-image {
    position: relative;
    min-height: 205px;
    overflow: hidden;
    background: #23445d;
}

.app-assignment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.app-assignment-card:hover .app-assignment-image img,
.app-assignment-card:focus-within .app-assignment-image img {
    transform: scale(1.035);
}

.app-assignment-image-wide img {
    object-position: 37% center;
}

.app-assignment-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 15px;
}

.app-assignment-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.app-assignment-heading h3 {
    margin: 6px 0 0;
    font-size: 1.05rem;
}

.app-status,
.app-duration,
.app-tags span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
}

.app-status {
    padding: 3px 8px;
    color: #8ce8bd;
    background: rgba(40,184,122,.16);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.app-duration {
    flex: 0 0 auto;
    padding: 5px 8px;
    color: white;
    background: rgba(92,165,255,.14);
    font-size: .67rem;
    font-weight: 750;
}

.app-assignment-content > p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: .74rem;
    line-height: 1.45;
}

.app-assignment-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
}

.app-assignment-meta div {
    display: grid;
}

.app-assignment-meta dt {
    color: rgba(255,255,255,.45);
    font-size: .58rem;
}

.app-assignment-meta dd {
    margin: 0;
    color: white;
    font-size: .66rem;
    font-weight: 700;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.app-tags span {
    padding: 3px 7px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.075);
    font-size: .62rem;
}

.app-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.app-actions b {
    padding: 6px 11px;
    border-radius: 7px;
    color: var(--ink);
    background: var(--green);
    font-size: .65rem;
}

.app-actions small {
    color: rgba(255,255,255,.45);
    font-size: .62rem;
}

.app-statistics-panel {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 54px);
    min-height: 290px;
    padding: 28px 18px 10px;
}

.app-chart-wrap {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.app-pie-chart {
    width: min(220px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.2));
    transform: rotate(-90deg);
    overflow: visible;
}

.app-pie-track,
.app-pie-segment {
    fill: none;
    stroke-width: 17;
}

.app-pie-track {
    stroke: rgba(255,255,255,.07);
}

.app-pie-segment {
    cursor: pointer;
    transition:
        filter .18s ease,
        opacity .18s ease,
        stroke-width .18s ease;
}

.app-pie-segment:hover,
.app-pie-segment:focus-visible,
.app-pie-segment.is-active {
    filter: brightness(1.16);
    outline: none;
    stroke-width: 21;
}

.segment-paint { stroke: #55c99a; }
.segment-clay { stroke: #f0b94e; }
.segment-paper { stroke: #6fa9e8; }
.segment-wood { stroke: #ad82d8; }

.app-pie-total,
.app-pie-caption {
    fill: white;
    font-family: inherit;
    transform: rotate(90deg);
    transform-origin: 60px 60px;
}

.app-pie-total {
    font-size: 16px;
    font-weight: 900;
}

.app-pie-caption {
    fill: rgba(255,255,255,.5);
    font-size: 6px;
}

.app-chart-detail {
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 20px;
    color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.06);
    font-size: .68rem;
}

.app-chart-legend {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.app-chart-legend li {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .78rem;
    cursor: pointer;
    transition:
        color .18s ease,
        padding-left .18s ease;
}

.app-chart-legend li:hover,
.app-chart-legend li:focus-visible {
    padding-left: 5px;
    color: white;
    outline: none;
}

.app-chart-legend i {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.legend-paint { background: #55c99a; }
.legend-clay { background: #f0b94e; }
.legend-paper { background: #6fa9e8; }
.legend-wood { background: #ad82d8; }

.app-chart-legend span {
    color: rgba(255,255,255,.66);
}

.visual-curriculum {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.visual-curriculum span {
    display: grid;
    place-items: center;
    min-height: 74px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(85,201,154,.1);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 850;
    text-align: center;
}

.visual-curriculum span:nth-child(2),
.visual-curriculum span:nth-child(5) {
    color: var(--navy-soft);
    background: rgba(19,43,67,.09);
}

.visual-role {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.visual-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    background: var(--navy-soft);
    font-size: .72rem;
    font-weight: 850;
}

.visual-role div {
    display: grid;
}

.visual-role small {
    color: var(--muted);
}

.possibilities-cta {
    text-align: center;
}

.possibilities-cta h2 {
    max-width: 800px;
    margin-inline: auto;
}

.possibilities-cta p {
    max-width: 640px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.68);
}

.pilot-page {
    background: var(--paper);
}

.pilot-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .7fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 110px);
    color: white;
    background: var(--ink);
    overflow: hidden;
}

.pilot-hero > *,
.audience-hero > * {
    position: relative;
    z-index: 1;
}

.pilot-hero .eyebrow {
    color: var(--green);
}

.pilot-hero-copy p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(255,255,255,.7);
    font-size: 1.08rem;
}

.pilot-hero-card {
    position: relative;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    transform: rotate(.6deg);
}

.pilot-hero-card span {
    color: var(--green);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pilot-hero-card h2 {
    margin: 18px 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.pilot-hero-card p {
    margin: 0;
    color: rgba(255,255,255,.63);
}

.pilot-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pilot-benefit {
    position: relative;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    overflow: hidden;
}

.pilot-benefit::after {
    content: "";
    position: absolute;
    right: -17px;
    bottom: -22px;
    width: 67px;
    height: 67px;
    border: 11px solid rgba(240,121,104,.12);
    border-radius: 50% 42% 55% 45%;
}

.pilot-benefit span {
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
}

.pilot-benefit h3 {
    margin: 34px 0 12px;
    font-size: 1.4rem;
}

.pilot-benefit p {
    margin: 0;
    color: var(--muted);
}

.pilot-process-section {
    background: var(--cream);
}

.pilot-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.pilot-process article {
    padding: 32px 30px 12px 0;
}

.pilot-process article + article {
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.pilot-process strong {
    display: block;
    margin-bottom: 30px;
    color: var(--green-dark);
    font-size: .8rem;
}

.pilot-process h3 {
    font-size: 1.25rem;
}

.pilot-process p {
    color: var(--muted);
    font-size: .92rem;
}

.pilot-expectations {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
    gap: clamp(50px, 8vw, 120px);
}

.pilot-checklist {
    display: grid;
    gap: 12px;
}

.pilot-checklist div {
    padding: 18px 20px;
    border-left: 4px solid var(--green);
    background: white;
}

.pilot-checklist strong {
    display: block;
    margin-bottom: 4px;
}

.pilot-checklist span {
    color: var(--muted);
    font-size: .9rem;
}

.pilot-contact {
    display: grid;
    grid-template-columns: 1fr minmax(340px, .65fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
    color: white;
    background: var(--navy-soft);
}

.pilot-contact .eyebrow {
    color: var(--green);
}

.pilot-contact p {
    color: rgba(255,255,255,.68);
}

.contact-pending {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(255,255,255,.05);
}

.contact-pending strong {
    display: block;
    margin-bottom: 9px;
}

.contact-pending p {
    margin: 0;
    font-size: .92rem;
}

.contact-pending .button {
    margin-top: 20px;
}

.legal-library {
    width: min(1180px, calc(100% - 40px));
}

.legal-group {
    margin-top: clamp(42px, 7vw, 76px);
}

.legal-group-heading {
    margin-bottom: 22px;
}

.legal-group-heading h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.legal-document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.legal-document-card {
    display: grid;
    gap: 10px;
    min-height: 190px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 17px;
    color: var(--ink);
    background: white;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease;
}

.legal-document-card:hover,
.legal-document-card:focus-visible {
    border-color: var(--green-dark);
    transform: translateY(-3px);
}

.legal-document-card strong {
    font-size: 1.16rem;
}

.legal-document-card span {
    color: var(--muted);
    line-height: 1.6;
}

.legal-document-card em {
    align-self: end;
    color: var(--green-dark);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
}

.legal-document-page {
    width: min(920px, calc(100% - 40px));
}

.legal-back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
    text-decoration: underline;
}

.legal-document-content {
    padding: clamp(28px, 6vw, 68px);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow);
}

.legal-document-content h1 {
    margin: 0 0 28px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
}

.legal-document-content h2 {
    margin: 44px 0 14px;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-document-content h3 {
    margin: 30px 0 10px;
    font-size: 1.18rem;
}

.legal-document-content p,
.legal-document-content li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-document-content ul,
.legal-document-content ol {
    display: grid;
    gap: 8px;
    padding-left: 24px;
}

.legal-document-content a {
    color: var(--green-dark);
    overflow-wrap: anywhere;
}

.legal-document-content code {
    padding: 2px 5px;
    border-radius: 4px;
    color: var(--ink);
    background: var(--paper);
}

.legal-table-wrapper {
    margin: 22px 0;
    overflow-x: auto;
}

.legal-document-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.legal-document-content th,
.legal-document-content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.legal-document-content th {
    color: var(--ink);
    background: var(--paper);
}

@media (max-width: 680px) {
    .legal-document-page { width: min(100% - 24px, 920px); }
    .legal-document-content { padding: 24px 19px; }
}

@media (max-width: 680px) {
    .legal-document-grid { grid-template-columns: 1fr; }
    .legal-document-card { min-height: 0; }
}

.audience-page {
    background: var(--paper);
}

.audience-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 110px);
    color: white;
    background: var(--ink);
    overflow: hidden;
}

.audience-hero .eyebrow {
    color: var(--green);
}

.audience-hero-copy p:not(.eyebrow) {
    max-width: 690px;
    color: rgba(255,255,255,.7);
    font-size: 1.08rem;
}

.founder-card {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    transform: rotate(1deg);
}

.founder-photo {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
}

.founder-caption {
    display: grid;
    gap: 2px;
    padding: 18px 5px 4px;
}

.founder-caption strong {
    font-size: 1.06rem;
}

.founder-caption span {
    color: rgba(255,255,255,.54);
    font-size: .82rem;
}

.audience-role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.audience-role-card {
    position: relative;
    min-height: 270px;
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    overflow: hidden;
}

.audience-role-card::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 25px;
    width: 35px;
    height: 9px;
    border-radius: 65% 35% 55% 45%;
    background: var(--yellow);
    transform: rotate(-8deg);
}

.audience-role-card span {
    color: var(--green-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.audience-role-card h2 {
    margin: 44px 0 15px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.audience-role-card p {
    color: var(--muted);
}

.audience-role-card ul {
    display: grid;
    gap: 7px;
    margin: 20px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: .9rem;
}

.practice-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
    gap: clamp(50px, 8vw, 120px);
    background: var(--cream);
}

.practice-quote {
    align-self: start;
    margin: 0;
    padding: clamp(28px, 5vw, 48px);
    border-left: 5px solid var(--green);
    background: white;
    box-shadow: var(--shadow);
}

.practice-quote p {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 750;
    line-height: 1.35;
}

.practice-quote cite {
    color: var(--muted);
    font-size: .85rem;
    font-style: normal;
}

.audience-cta {
    text-align: center;
}

.audience-cta h2 {
    max-width: 800px;
    margin-inline: auto;
}

.audience-cta p {
    max-width: 660px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.68);
}

.pricing-page,
.contact-page {
    background: var(--paper);
}

.simple-page-hero {
    position: relative;
    padding: clamp(80px, 10vw, 135px) clamp(24px, 7vw, 110px);
    color: white;
    background: var(--ink);
    overflow: hidden;
}

.simple-page-hero > div {
    position: relative;
    z-index: 1;
    width: min(880px, 100%);
}

.possibilities-hero::after,
.pilot-hero::after,
.audience-hero::after,
.simple-page-hero::after {
    content: "";
    position: absolute;
    top: -80px;
    right: clamp(-80px, -4vw, -25px);
    width: clamp(210px, 27vw, 390px);
    aspect-ratio: 1;
    border: clamp(22px, 3vw, 42px) solid rgba(85,201,154,.1);
    border-radius: 42% 58% 67% 33% / 54% 37% 63% 46%;
    transform: rotate(23deg);
}

.pilot-hero::before,
.audience-hero::before {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 47%;
    width: 76px;
    height: 15px;
    border-radius: 60% 40% 72% 28%;
    background: var(--coral);
    opacity: .65;
    transform: rotate(-12deg);
}

.simple-page-hero .eyebrow {
    color: var(--green);
}

.simple-page-hero p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(255,255,255,.7);
    font-size: 1.08rem;
}

.pricing-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 7px 12px;
    border: 1px solid rgba(85,201,154,.3);
    border-radius: 30px;
    color: #a5edcf;
    background: rgba(40,184,122,.12);
    font-size: .76rem;
    font-weight: 800;
}

.pricing-status::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.pricing-includes {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.pricing-includes li {
    position: relative;
    padding: 12px 12px 12px 36px;
    border-bottom: 1px solid var(--line);
}

.pricing-includes li::before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--green-dark);
    font-weight: 900;
}

.packages-section {
    background: var(--paper);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(27px, 3.5vw, 38px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    top: -34px;
    left: -28px;
    width: 92px;
    height: 72px;
    border: 12px solid rgba(107,167,214,.16);
    border-radius: 45% 55% 38% 62%;
    transform: rotate(-18deg);
}

.package-card:nth-child(2)::before {
    border-color: rgba(85,201,154,.2);
}

.package-card:nth-child(3)::before {
    border-color: rgba(240,121,104,.17);
}

.package-card:hover {
    box-shadow: 0 24px 55px rgba(13,35,54,.12);
    transform: translateY(-4px);
}

.package-card-featured {
    border-color: rgba(46,158,118,.42);
    box-shadow: 0 26px 65px rgba(13,35,54,.14);
    transform: translateY(-10px);
}

.package-card-featured:hover {
    transform: translateY(-14px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 24px;
    padding: 7px 12px;
    border-radius: 0 0 10px 10px;
    color: white;
    background: var(--green-dark);
    font-size: .68rem;
    font-weight: 850;
}

.package-heading {
    min-height: 205px;
}

.package-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.package-heading > p:last-child {
    color: var(--muted);
}

.package-price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0 6px;
}

.package-price strong {
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    letter-spacing: -.07em;
    line-height: 1;
}

.package-price-values {
    display: grid;
    gap: 2px;
}

.package-price-values del {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1;
    text-decoration-thickness: 2px;
}

.package-price span {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.4;
}

.package-card .pricing-includes {
    margin-bottom: 30px;
}

.package-button {
    width: 100%;
    margin-top: auto;
}

.pilot-price-note {
    max-width: 760px;
    margin: 38px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(46,158,118,.25);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(85,201,154,.08);
    text-align: center;
}

.pilot-price-note strong {
    color: var(--green-dark);
}

.package-foundation {
    background: var(--cream);
}

.package-foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.package-foundation-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: white;
}

.package-foundation-grid strong {
    display: block;
    margin-bottom: 12px;
}

.package-foundation-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(380px, 1fr);
    gap: clamp(50px, 8vw, 120px);
}

.contact-options {
    display: grid;
    gap: 14px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span:first-child {
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--ink);
    background: white;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green-dark);
    outline: 3px solid rgba(85,201,154,.16);
}

.contact-form-consent {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.contact-form-consent input {
    width: 18px;
    margin-top: 3px;
}

.contact-form-consent span {
    color: var(--muted) !important;
    font-size: .78rem !important;
    font-weight: 500 !important;
}

.contact-form-consent a {
    color: var(--green-dark);
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.contact-submit {
    justify-self: start;
}

.contact-form-status {
    padding: 13px 15px;
    border-radius: 11px;
    font-size: .86rem;
}

.contact-form-status.success {
    color: #15593f;
    background: rgba(85,201,154,.18);
}

.contact-form-status.error {
    color: #7d2628;
    background: rgba(155,45,48,.12);
}

.contact-option {
    display: grid;
    gap: 6px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: white;
    text-decoration: none;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.contact-option:hover,
.contact-option:focus-visible {
    border-color: rgba(46,158,118,.45);
    box-shadow: 0 18px 36px rgba(13,35,54,.1);
    outline: none;
    transform: translateY(-2px);
}

.contact-option small {
    color: var(--green-dark);
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-option strong {
    font-size: 1.25rem;
}

.contact-option span {
    color: var(--muted);
    font-size: .9rem;
}

.business-card {
    align-self: start;
    padding: clamp(28px, 5vw, 44px);
    border-radius: 20px;
    color: white;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.business-card .eyebrow {
    color: var(--green);
}

.business-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.business-details {
    display: grid;
    gap: 0;
    margin: 26px 0 0;
}

.business-details div {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.business-details dt {
    color: rgba(255,255,255,.46);
    font-size: .76rem;
}

.business-details dd {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: .86rem;
}

.business-details a {
    color: var(--green);
}

@media (max-width: 1050px) {
    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        padding: 9px 13px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 8px;
        color: white;
        background: transparent;
        font: inherit;
    }

    .site-navigation {
        position: absolute;
        top: 76px;
        right: 20px;
        display: none;
        min-width: 220px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 12px;
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .site-navigation.open {
        display: grid;
    }

    .site-navigation a {
        padding: 9px 10px;
    }

    .header-login {
        justify-self: end;
    }

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

    .product-preview {
        width: min(100%, 760px);
    }

    .contact-section {
        grid-template-columns: 1fr 1fr;
    }

    .possibility-section {
        grid-template-columns: 1fr;
    }

    .possibility-section:nth-child(even) .possibility-visual {
        order: initial;
    }

    .pilot-hero,
    .pilot-expectations,
    .pilot-contact,
    .audience-hero,
    .practice-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .pilot-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-section .button {
        justify-self: start;
    }
}

@media (max-width: 800px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 66px;
        padding-inline: 18px;
    }

    .site-navigation {
        top: 66px;
        right: 12px;
        left: 12px;
    }

    .header-login {
        display: none;
    }

    .hero {
        gap: 58px;
        padding: 76px 22px 80px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-preview {
        transform: none;
    }

    .pilot-hero-card,
    .founder-card {
        transform: none;
    }

    .preview-layout {
        grid-template-columns: 44px 1fr;
        min-height: 350px;
    }

    .preview-content {
        padding: 20px 16px;
    }

    .preview-image {
        width: 56px;
        height: 52px;
    }

    .preview-card {
        gap: 10px;
        padding: 12px;
    }

    .preview-card p,
    .preview-card b {
        display: none;
    }

    .section {
        padding: 82px 22px;
    }

    .feature-grid,
    .audience-grid,
    .pilot-section,
    .contact-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .feature-card-wide {
        grid-column: auto;
    }

    .feature-card {
        min-height: 0;
    }

    .feature-number {
        margin-bottom: 32px;
    }

    .audience-grid article,
    .audience-grid article + article {
        padding: 28px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .audience-grid h3 {
        margin-top: 20px;
    }

    .pilot-section {
        gap: 50px;
    }

    .pilot-list div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .contact-section {
        align-items: start;
        gap: 28px;
    }

    .site-footer {
        gap: 18px;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .footer-documents {
        justify-content: flex-start;
    }

    .footer-status {
        text-align: left;
    }

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

    .possibility-section {
        padding-inline: 22px;
    }

    .possibility-visual {
        padding: 16px;
        border-radius: 16px;
    }

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

    .visual-row {
        grid-template-columns: 36px 1fr;
    }

    .visual-row-icon {
        width: 36px;
        height: 36px;
    }

    .visual-row > b {
        grid-column: 2;
    }

    .app-assignment-card {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .app-assignment-image {
        min-height: 230px;
    }

    .app-assignment-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-statistics-panel {
        grid-template-columns: 1fr;
    }

    .pilot-benefits,
    .pilot-process,
    .audience-role-grid {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .package-foundation-grid {
        grid-template-columns: 1fr;
    }

    .package-card-featured {
        transform: none;
    }

    .package-heading {
        min-height: 0;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        width: min(100%, 430px);
    }

    .pilot-process article,
    .pilot-process article + article {
        padding: 26px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}

.password-reset-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    color: white;
    background:
        radial-gradient(circle at 78% 18%, rgba(85,201,154,.18), transparent 28%),
        #121f2c;
}

.password-reset-shell {
    display: grid;
    width: min(480px, calc(100% - 32px));
    gap: 18px;
    padding-block: 36px;
}

.password-reset-brand {
    display: block;
    width: 155px;
    margin-inline: auto;
}

.password-reset-brand img {
    display: block;
    width: 100%;
}

.password-reset-card {
    padding: clamp(26px, 6vw, 38px);
    color: var(--ink);
    background: white;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.password-reset-card h1 {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 6vw, 2.3rem);
}

.password-reset-card > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.6;
}

.password-reset-card form {
    display: grid;
    gap: 15px;
    margin-top: 24px;
}

.password-reset-card label {
    display: grid;
    gap: 7px;
}

.password-reset-card label span {
    font-size: .78rem;
    font-weight: 800;
}

.password-reset-card input {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(16,37,58,.18);
    border-radius: 9px;
    color: var(--ink);
    background: white;
}

.password-reset-card form small {
    color: var(--muted);
    line-height: 1.45;
}

.password-reset-card button,
.password-reset-login {
    width: 100%;
    justify-content: center;
    margin-top: 5px;
}

.password-reset-status {
    margin: 18px 0 0;
    font-size: .82rem;
}

.password-reset-status.error { color: #b34048 !important; }
.password-reset-status.success { color: #23785a !important; }

.password-reset-login {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 18px;
    color: var(--ink);
    background: var(--green);
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
}

.password-reset-help {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    text-align: center;
}

.password-reset-help a { color: var(--green); }
