:root {
    --navy-950: #191c3b;
    --navy-900: #22264f;
    --navy-800: #30365e;
    --ink: #20263a;
    --body: #505b73;
    --muted: #68738a;
    --purple: #6268e7;
    --purple-dark: #5157cc;
    --purple-soft: #eeefff;
    --mint: #77dfc4;
    --mint-dark: #157f68;
    --surface: #f6f7fb;
    --surface-blue: #f0f3ff;
    --line: #e1e5ef;
    --white: #ffffff;
    --shadow-sm: 0 12px 34px rgba(31, 37, 66, .08);
    --shadow-lg: 0 28px 80px rgba(25, 29, 66, .16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body.tasktrail-site {
    margin: 0;
    background: var(--white);
    color: var(--body);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.tasktrail-site :where(h1, h2, h3, p, ul, ol) { margin-top: 0; }

.tasktrail-site h1,
.tasktrail-site h2,
.tasktrail-site h3 {
    color: var(--ink);
    font-family: Ubuntu, "Segoe UI", sans-serif;
    font-weight: 700;
}

.tasktrail-site :where(a) { color: inherit; }

.tasktrail-site img {
    display: block;
    max-width: 100%;
    height: auto;
}

.tasktrail-site button,
.tasktrail-site input { font: inherit; }

.tasktrail-site :focus-visible {
    outline: 3px solid #77dfc4;
    outline-offset: 3px;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.pricing-shell {
    width: min(1380px, calc(100% - 40px));
    margin-inline: auto;
}

.section { padding: 110px 0; }

.section-light { background: var(--white); }

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

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy-950);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(226, 229, 239, .9);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 4px 24px rgba(28, 33, 60, .05);
    backdrop-filter: blur(14px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand img { width: 174px; }

.site-navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.site-navigation a {
    color: #3d465d;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.site-navigation a:hover { color: var(--purple-dark); }

.site-navigation .nav-cta {
    padding: 10px 17px;
    border-radius: 9px;
    background: var(--navy-900);
    color: var(--white);
}

.site-navigation .nav-cta:hover {
    background: var(--purple-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--navy-900);
    transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 640px;
    padding: 72px 0 58px;
    background:
        radial-gradient(circle at 82% 18%, rgba(99, 212, 224, .24), transparent 27%),
        radial-gradient(circle at 14% 88%, rgba(119, 223, 196, .15), transparent 24%),
        linear-gradient(128deg, #4e5bda 0%, #3f79e9 48%, #3aa7df 100%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::before {
    top: -260px;
    right: -170px;
    width: 720px;
    height: 720px;
}

.hero-section::after {
    bottom: -360px;
    left: -240px;
    width: 760px;
    height: 760px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
    align-items: center;
    gap: 56px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-on-dark { color: #e8fbf5; }

.eyebrow-on-dark > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(119, 223, 196, .16);
}

.hero-copy h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(50px, 5.7vw, 76px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-copy > p {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .91);
    font-size: 20px;
    line-height: 1.62;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.tasktrail-site .button-light {
    background: var(--white);
    box-shadow: 0 15px 35px rgba(21, 35, 95, .19);
    color: var(--purple-dark);
}

.tasktrail-site .button-light:hover { box-shadow: 0 18px 42px rgba(21, 35, 95, .25); }

.tasktrail-site .button-primary {
    background: var(--purple-dark);
    box-shadow: 0 13px 28px rgba(81, 87, 204, .2);
    color: var(--white);
}

.tasktrail-site .button-primary:hover { background: #454bbb; }

.tasktrail-site .button-dark { background: var(--navy-900); color: var(--white); }
.tasktrail-site .button-dark:hover { background: var(--navy-950); }

.tasktrail-site .button-outline {
    border-color: #cfd4e2;
    background: var(--white);
    color: var(--navy-900);
}

.tasktrail-site .button-outline:hover {
    border-color: var(--purple);
    background: var(--purple-soft);
    color: var(--purple-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    text-decoration: none;
}

.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.tasktrail-site .text-link-light { color: var(--white); }
.tasktrail-site .text-link-light:hover { color: #e4fff7; }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 24px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .91);
    list-style: none;
}

.hero-proof li { font-size: 14px; font-weight: 700; }
.hero-proof li span { margin-right: 6px; color: var(--mint); font-weight: 900; }

.hero-visual {
    position: relative;
    min-height: 510px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.hero-orbit-one {
    inset: 30px 10px 0 25px;
    background: rgba(255, 255, 255, .065);
}

.hero-orbit-two { inset: 87px 63px 55px 80px; }

.hero-device {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 50%;
    width: min(438px, 100%);
    filter: drop-shadow(0 32px 32px rgba(22, 32, 77, .26));
    transform: translateX(-50%);
    animation: hero-device-float 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes hero-device-float {
    0%, 100% { transform: translateX(-50%) translateY(-5px); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.hero-status {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 180px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 13px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 42px rgba(26, 37, 86, .2);
}

.hero-status strong,
.hero-status small { display: block; white-space: nowrap; }

.hero-status strong { color: var(--navy-950); font-size: 13px; }
.hero-status small { color: var(--muted); font-size: 11px; }
.hero-status-top { top: 58px; right: -18px; }
.hero-status-bottom { bottom: 66px; left: -10px; }

.status-dot {
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #3ec99f;
    box-shadow: 0 0 0 6px rgba(62, 201, 159, .14);
}

.status-icon {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-weight: 900;
}

.trust-strip {
    padding: 29px 0 31px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-inner { text-align: center; }
.trust-inner p { margin-bottom: 14px; color: var(--muted); font-size: 14px; }

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 44px;
}

.trust-items span {
    position: relative;
    color: #3b455c;
    font-size: 15px;
    font-weight: 800;
}

.trust-items span:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #bdc4d5;
    transform: translateY(-50%);
}

.section-heading { max-width: 720px; }

.section-heading-center {
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading h2,
.app-copy h2,
.registration-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 4.2vw, 52px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.section-heading > p,
.registration-copy > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    border-color: #cbcfee;
    box-shadow: 0 19px 46px rgba(31, 37, 66, .12);
    transform: translateY(-5px);
}

.feature-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-family: Ubuntu, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.feature-card:nth-child(2) .feature-number { background: #e8f9f4; color: #187d68; }
.feature-card:nth-child(3) .feature-number { background: #fff0e9; color: #ad5632; }
.feature-card:nth-child(4) .feature-number { background: #edf4ff; color: #3769ae; }

.feature-card h3 { margin: 25px 0 10px; font-size: 21px; }
.feature-card p { margin-bottom: 20px; color: var(--muted); line-height: 1.65; }

.feature-tag {
    margin-top: auto;
    color: #4c5570;
    font-size: 13px;
    font-weight: 800;
}

.feature-tag::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--mint-dark);
}

.workflow-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: 0;
    background:
        radial-gradient(ellipse 52% 16% at 0% 20%, rgba(98, 104, 231, .07), transparent 72%),
        radial-gradient(ellipse 48% 15% at 100% 72%, rgba(119, 223, 196, .1), transparent 74%),
        linear-gradient(180deg, #f6f7fb 0%, #f1f4fb 48%, #f8f9fc 100%);
}

.workflow-section::before,
.workflow-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 820px;
    height: 280px;
    border: 2px solid rgba(98, 104, 231, .08);
    border-radius: 50%;
    pointer-events: none;
}

.workflow-section::before {
    top: 12%;
    left: -470px;
    transform: rotate(-11deg);
}

.workflow-section::after {
    right: -430px;
    bottom: 10%;
    border-color: rgba(21, 127, 104, .09);
    transform: rotate(9deg);
}

.journey-heading {
    max-width: 800px;
    margin-bottom: 84px;
}

.journey-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-step {
    --journey-gap: clamp(56px, 5.7vw, 82px);
    --journey-strip-pad: 82px;
    --journey-connector-height: 164px;
    --journey-corner: 40px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "media copy";
    align-items: center;
    gap: var(--journey-gap);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 0;
    padding: var(--journey-strip-pad) max(20px, calc((100vw - 1320px) / 2));
    background: var(--white);
}

.journey-step:nth-child(even) {
    grid-template-areas: "copy media";
    background:
        radial-gradient(circle at 92% 8%, rgba(119, 223, 196, .16), transparent 26%),
        linear-gradient(135deg, #e9efff, #f2f5ff);
}

.journey-step:last-child { margin-bottom: 0; }

.journey-media {
    position: relative;
    grid-area: media;
    min-width: 0;
}

.journey-placeholder {
    position: relative;
    z-index: 2;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #cdd2dc;
    border-radius: 24px;
    background: #e4e6eb;
    box-shadow: 0 28px 65px rgba(28, 34, 67, .13);
    content-visibility: auto;
    contain-intrinsic-size: auto 330px;
}

.journey-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-placeholder.journey-placeholder-ai {
    width: 585px;
    max-width: 100%;
    aspect-ratio: 585 / 345;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: var(--white);
    box-shadow:
        0 22px 52px rgba(15, 23, 42, .18),
        0 24px 36px rgba(109, 40, 217, .22);
    isolation: isolate;
    content-visibility: visible;
    contain: none;
    contain-intrinsic-size: auto 345px;
}

.journey-placeholder-ai img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

.journey-placeholder-ai::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 6px;
    border-radius: inherit;
    background: linear-gradient(110deg, #5b21b6, #a855f7, #6366f1, #c026d3, #5b21b6);
    background-size: 260% 260%;
    background-position: 0% 50%;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    backface-visibility: hidden;
    pointer-events: none;
    transform: translateZ(0);
    will-change: background-position;
    animation: dashboard-ai-border-gradient-flow 6s ease-in-out infinite;
}

@keyframes dashboard-ai-border-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.journey-copy {
    position: relative;
    z-index: 2;
    grid-area: copy;
    max-width: 470px;
}

.journey-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 1px solid rgba(98, 104, 231, .2);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 13px 30px rgba(40, 45, 88, .1);
    color: var(--purple-dark);
    font-family: Ubuntu, "Segoe UI", sans-serif;
    font-weight: 800;
}

.journey-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(29px, 3.1vw, 42px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.journey-copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.journey-step:not(:last-child) .journey-media::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 100%;
    width: calc(100% + var(--journey-gap) - var(--journey-corner));
    height: var(--journey-strip-pad);
    border: 0;
    pointer-events: none;
}

.journey-step:nth-child(odd):not(:last-child) .journey-media::after {
    left: 50%;
    border-bottom: 5px dotted rgba(81, 87, 204, .62);
    border-left: 5px dotted rgba(81, 87, 204, .62);
    border-radius: 0 0 0 var(--journey-corner);
}

.journey-step:nth-child(even):not(:last-child) .journey-media::after {
    right: 50%;
    border-right: 5px dotted rgba(81, 87, 204, .62);
    border-bottom: 5px dotted rgba(81, 87, 204, .62);
    border-radius: 0 0 var(--journey-corner);
}

.journey-step:not(:last-child) .journey-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: calc(100% + var(--journey-strip-pad));
    width: var(--journey-corner);
    height: var(--journey-strip-pad);
    border-top: 5px dotted rgba(81, 87, 204, .62);
    pointer-events: none;
}

.journey-step:nth-child(odd):not(:last-child) .journey-media::before {
    left: calc(150% + var(--journey-gap) - var(--journey-corner));
    border-right: 5px dotted rgba(81, 87, 204, .62);
    border-radius: 0 var(--journey-corner) 0 0;
}

.journey-step:nth-child(even):not(:last-child) .journey-media::before {
    right: calc(150% + var(--journey-gap) - var(--journey-corner));
    border-left: 5px dotted rgba(81, 87, 204, .62);
    border-radius: var(--journey-corner) 0 0;
}

.journey-connector-arrow {
    position: absolute;
    z-index: 20;
    top: calc(100% + var(--journey-connector-height) - 14px);
    width: 21px;
    height: 21px;
    border-right: 6px solid var(--purple-dark);
    border-bottom: 6px solid var(--purple-dark);
    filter: drop-shadow(0 0 3px var(--white)) drop-shadow(0 3px 3px rgba(25, 28, 59, .28));
    pointer-events: none;
    transform: rotate(45deg);
}

.journey-step:nth-child(odd) .journey-connector-arrow { left: calc(150% + var(--journey-gap) - 10px); }
.journey-step:nth-child(even) .journey-connector-arrow { right: calc(150% + var(--journey-gap) - 10px); }

.journey-step-final .journey-number {
    border-color: transparent;
    background: linear-gradient(135deg, var(--purple-dark), #3f83df);
    color: var(--white);
}

.journey-step-final .journey-placeholder {
    border-color: rgba(21, 127, 104, .28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .6), transparent 42%),
        linear-gradient(145deg, #e0e7e6, #c8d7d3);
}

.app-section {
    padding-top: 72px;
    padding-bottom: 80px;
    background: var(--white);
}

.app-panel {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    align-items: center;
    gap: 76px;
    overflow: hidden;
    padding: 72px 76px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 95% 5%, rgba(119, 223, 196, .18), transparent 31%),
        linear-gradient(135deg, var(--navy-900), #323772);
    box-shadow: 0 32px 80px rgba(29, 32, 73, .2);
}

.app-panel::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -210px;
    bottom: -290px;
    width: 610px;
    height: 610px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.app-copy h2 { color: var(--white); }

.app-copy > p {
    max-width: 600px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 11px;
    background: rgba(255, 255, 255, .07);
}

.store-badge img { width: 160px; }

.app-copy .store-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
}

.store-note > span {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
}

.app-preview {
    position: relative;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 26px 58px rgba(12, 15, 47, .3);
    transform: rotate(1.2deg);
}

.app-preview-top {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 29px;
    align-items: center;
    gap: 11px;
}

.app-preview-top img { width: 42px; border-radius: 12px; }
.app-preview-top small,
.app-preview-top strong { display: block; }
.app-preview-top small { color: var(--muted); font-size: 11px; }
.app-preview-top strong { color: var(--navy-950); font-size: 14px; }

.app-preview-top em {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.app-preview-progress {
    height: 6px;
    margin: 20px 0 12px;
    overflow: hidden;
    border-radius: 99px;
    background: #eaecf3;
}

.app-preview-progress span {
    display: block;
    width: 60%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--purple), var(--mint));
}

.app-preview-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
}

.app-preview-label strong { color: #4a546c; }

.mobile-job {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 11px;
    border: 1px solid #e6e9f1;
    border-radius: 11px;
}

.mobile-job.is-current { border-color: #c8cbf2; background: #f8f8ff; }
.mobile-job > span { color: var(--purple-dark); font-size: 11px; font-weight: 800; }
.mobile-job strong,
.mobile-job small { display: block; }
.mobile-job strong { color: var(--navy-950); font-size: 12px; }
.mobile-job small { color: var(--muted); font-size: 10px; }
.mobile-job em { color: #287a65; font-size: 10px; font-style: normal; font-weight: 800; }

.pricing-section {
    padding-top: 80px;
    background: var(--surface);
}

.pricing-section .section-heading { max-width: 850px; }

.pricing-section .section-heading > p {
    color: #4e586e;
    font-weight: 700;
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px 27px 27px;
    border: 1px solid #dfe3ec;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(27, 34, 67, .06);
}

.pricing-card-featured {
    border: 2px solid var(--purple);
    box-shadow: 0 24px 58px rgba(81, 87, 204, .18);
    transform: translateY(-10px);
}

.popular-ribbon {
    position: absolute;
    top: -17px;
    left: 50%;
    padding: 7px 15px;
    border-radius: 99px;
    background: var(--purple-dark);
    box-shadow: 0 9px 22px rgba(81, 87, 204, .24);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    white-space: nowrap;
    transform: translateX(-50%);
}

.popular-ribbon span { color: #ffe48b; }

.plan-heading {
    min-height: 144px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.plan-name {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-900);
    font-family: Ubuntu, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.plan-price strong {
    color: var(--navy-950);
    font-family: Ubuntu, sans-serif;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.plan-price span { color: var(--muted); font-size: 14px; font-weight: 700; }
.plan-heading p { margin: 11px 0 0; color: var(--muted); font-size: 14px; }

.plan-features {
    display: grid;
    gap: 11px;
    margin: 25px 0 28px;
    padding: 0;
    color: #455066;
    font-size: 14px;
    line-height: 1.38;
    list-style: none;
}

.plan-features li {
    position: relative;
    padding-left: 23px;
}

.plan-features li::before {
    content: "\2713";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--mint-dark);
    font-weight: 900;
}

.coming-soon {
    display: inline-block;
    margin-left: 2px;
    padding: 2px 6px;
    border-radius: 99px;
    background: var(--purple-soft);
    color: #4f55c0;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
}

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

.trial-band {
    padding: 70px 0;
    background: linear-gradient(130deg, var(--navy-950), #343a76);
}

.trial-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.trial-band-inner > div > span {
    color: var(--mint);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trial-band-inner h2 {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--white);
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.trial-band-inner .button { flex: 0 0 auto; }

.registration-section { background: var(--white); }

.registration-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    align-items: start;
    gap: 82px;
}

.registration-copy { padding-top: 25px; }

.trial-summary {
    margin-top: 31px;
    padding: 24px 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.trial-summary > strong { color: var(--navy-950); }

.trial-summary ul {
    display: grid;
    gap: 10px;
    margin: 17px 0 0;
    padding: 0;
    color: #4f5970;
    list-style: none;
}

.trial-summary li::before {
    content: "\2713";
    margin-right: 9px;
    color: var(--mint-dark);
    font-weight: 900;
}

.registration-copy .registration-help { margin-top: 23px; font-size: 15px; }
.registration-help a { color: var(--purple-dark); font-weight: 800; }

.registration-card {
    padding: 37px;
    border: 1px solid #dce0eb;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.registration-card-heading { margin-bottom: 26px; }

.registration-card-heading > span {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 6px 11px;
    border-radius: 99px;
    background: var(--purple-soft);
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.registration-card-heading h3 { margin-bottom: 7px; font-size: 26px; }
.registration-card-heading p { margin-bottom: 0; color: var(--muted); }

.registration-form { display: grid; gap: 17px; }

.registration-form label:not(.terms-check) {
    display: grid;
    gap: 7px;
    margin: 0;
}

.registration-form label > span { color: #394359; font-size: 14px; font-weight: 800; }
.registration-form label > span small { color: #8790a2; font-weight: 500; }

.registration-form input:not([type="checkbox"]) {
    width: 100%;
    min-height: 49px;
    padding: 10px 12px;
    border: 1px solid #cfd5e2;
    border-radius: 9px;
    background: var(--white);
    color: var(--navy-950);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.registration-form input:not([type="checkbox"]):focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(98, 104, 231, .13);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1px 0 0;
    cursor: pointer;
}

.terms-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--purple-dark);
}

.terms-check span { color: var(--muted) !important; font-weight: 500 !important; line-height: 1.45; }
.terms-check a { color: var(--purple-dark); font-weight: 800; }

.registration-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.registration-submit-spinner,
.registration-submit .dashboard-ai-submit-spinner {
    width: 17px;
    height: 17px;
    animation: dashboard-ai-spin .8s linear infinite;
}

@keyframes dashboard-ai-spin {
    to { transform: rotate(360deg); }
}

.form-security { margin: -3px 0 0; color: #727d92; font-size: 12px; text-align: center; }

.website-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.registration-errors {
    margin-bottom: 21px;
    padding: 14px 16px;
    border: 1px solid #e8bfc5;
    border-radius: 10px;
    background: #fff4f5;
    color: #8f2e3b;
}

.registration-errors ul { margin: 7px 0 0; padding-left: 19px; }

.registration-success { padding: 20px 6px; text-align: center; }

.success-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 19px;
    border-radius: 50%;
    background: #e4f8f1;
    color: #147a61;
    font-size: 24px;
    font-weight: 900;
}

.success-icon.is-warning { background: #fff3df; color: #985a09; }
.registration-success h3 { margin-bottom: 10px; }
.registration-success p { margin-bottom: 23px; color: var(--muted); }

.registration-success .registration-success-email {
    margin: -10px 0 16px;
    color: var(--navy-950);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.registration-success .registration-success-note { margin: 0; font-size: 13px; }
.registration-resend-form { margin-top: 12px; }

.registration-resend-link {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.registration-resend-link[aria-disabled="true"] { color: #7d8698; text-decoration: none; cursor: default; }
.registration-resend-timer { margin-left: 4px; color: #7d8698; font-size: 13px; }

.registration-change-email-link,
.registration-edit-cancel {
    display: inline-block;
    margin-top: 9px;
    color: var(--purple-dark);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
}

.registration-edit-note { margin: -3px 0 15px; color: var(--muted); font-size: 13px; }
.registration-edit-cancel { display: block; width: fit-content; margin: 12px auto 0; }
.registration-success .registration-resend-error { margin: 10px 0 0; color: #8f2e3b; font-size: 13px; }

.trial-terms-section {
    padding: 19px 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.trial-terms-section p { margin: 0; color: #6a7489; font-size: 12px; line-height: 1.65; }

.site-footer {
    padding: 52px 0 24px;
    background: #181b39;
    color: rgba(255, 255, 255, .7);
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 31px;
    padding-bottom: 31px;
}

.footer-brand img {
    width: 165px;
    padding: 8px 10px;
    border-radius: 9px;
    background: var(--white);
}

.footer-main p { margin: 0; }
.footer-main > a:last-child { color: var(--white); font-weight: 800; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom a { color: var(--white); font-weight: 800; }

.maintenance-page {
    margin: 0;
    background: radial-gradient(circle at 70% 15%, #817cf3 0, #5557bc 30%, #282a57 100%);
    color: #34405a;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.maintenance-shell { display: grid; place-items: center; min-height: 100vh; padding: 24px; }

.maintenance-card {
    width: min(590px, 100%);
    padding: 46px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 34px 90px rgba(17, 19, 56, .35);
    text-align: center;
}

.maintenance-logo { width: 190px; height: auto; margin: 0 auto 30px; }

.maintenance-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f0efff;
    color: #595ecb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.maintenance-status i { width: 8px; height: 8px; border-radius: 50%; background: #7378f5; }
.maintenance-card h1 { margin: 22px 0 14px; color: #172033; font-size: clamp(32px, 6vw, 47px); line-height: 1.12; }
.maintenance-card p { max-width: 470px; margin: 0 auto; color: #647087; font-size: 17px; line-height: 1.65; }
.maintenance-progress { height: 7px; margin: 30px 0 22px; overflow: hidden; border-radius: 99px; background: #e8eaf2; }
.maintenance-progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #7378f5, #40cba0); }
.maintenance-card small { color: #7b8495; line-height: 1.5; }

@media (max-width: 1180px) {
    .site-navigation { gap: 19px; }
    .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(350px, .92fr); gap: 35px; }
    .hero-status-top { right: 0; }
    .hero-status-bottom { left: 0; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .journey-step {
        --journey-gap: 56px;
        --journey-strip-pad: 72px;
        --journey-connector-height: 144px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: var(--journey-strip-pad) 24px;
    }
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 18px; }
    .pricing-card-featured { transform: none; }
    .plan-heading { min-height: 132px; }
}

@media (max-width: 1040px) {
    .journey-step {
        --journey-gap: 44px;
        --journey-strip-pad: 64px;
        --journey-connector-height: 128px;
        padding: var(--journey-strip-pad) 24px;
    }
    .app-panel { grid-template-columns: 1fr; gap: 50px; padding: 58px; }
    .app-preview { width: min(540px, 100%); margin-inline: auto; transform: none; }
}

@media (max-width: 960px) {
    .section { padding: 80px 0; }
    .site-header-inner { min-height: 72px; }
    .nav-toggle { display: block; }
    .site-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        gap: 3px;
        padding: 13px;
        border: 1px solid var(--line);
        border-radius: 0 0 15px 15px;
        background: var(--white);
        box-shadow: 0 20px 40px rgba(29, 35, 67, .14);
    }

    .site-navigation.is-open { display: flex; flex-direction: column; }
    .site-navigation a { padding: 10px 12px; border-radius: 8px; }
    .site-navigation a:hover { background: var(--surface); }
    .site-navigation .nav-cta { margin-top: 4px; text-align: center; }

    .hero-section { min-height: auto; padding: 72px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { max-width: 760px; }
    .hero-copy h1 { max-width: 750px; }
    .hero-visual { width: min(620px, 100%); min-height: 500px; margin-inline: auto; }
    .hero-status-top { right: 25px; }
    .hero-status-bottom { left: 25px; }

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

    .journey-heading { margin-bottom: 66px; }
    .journey-step {
        --journey-gap: 38px;
        --journey-strip-pad: 60px;
        --journey-connector-height: 120px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: var(--journey-strip-pad) 20px;
    }
    .workflow-section { padding-bottom: 0; }
    .app-section { padding-top: 64px; padding-bottom: 72px; }
    .pricing-section { padding-top: 72px; }
    .registration-grid { gap: 48px; }
    .registration-copy { max-width: 680px; padding-top: 0; }
    .trial-band-inner { align-items: flex-start; flex-direction: column; }
    .footer-main { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 820px) {
    .journey-step,
    .journey-step:nth-child(even) {
        --journey-mobile-run: 72px;
        --journey-strip-pad: 52px;
        --journey-connector-height: 104px;
        --journey-corner: 28px;
        grid-template-columns: 1fr;
        grid-template-areas: "copy" "media";
        gap: 28px;
        padding: var(--journey-strip-pad) 24px;
    }

    .journey-copy { max-width: 650px; padding-left: 68px; }
    .journey-number { position: absolute; top: 0; left: 0; }
    .journey-placeholder { width: min(100%, 660px); margin-inline: auto; }

    .journey-step:not(:last-child) .journey-media::after,
    .journey-step:nth-child(odd):not(:last-child) .journey-media::after,
    .journey-step:nth-child(even):not(:last-child) .journey-media::after {
        top: 100%;
        right: auto;
        left: 50%;
        width: calc(var(--journey-mobile-run) - var(--journey-corner));
        height: var(--journey-strip-pad);
        border: 0;
        border-bottom: 5px dotted rgba(81, 87, 204, .62);
        border-left: 5px dotted rgba(81, 87, 204, .62);
        border-radius: 0 0 0 var(--journey-corner);
    }

    .journey-step:nth-child(even):not(:last-child) .journey-media::after {
        right: 50%;
        left: auto;
        border-right: 5px dotted rgba(81, 87, 204, .62);
        border-bottom: 5px dotted rgba(81, 87, 204, .62);
        border-left: 0;
        border-radius: 0 0 var(--journey-corner);
    }

    .journey-step:not(:last-child) .journey-media::before,
    .journey-step:nth-child(odd):not(:last-child) .journey-media::before,
    .journey-step:nth-child(even):not(:last-child) .journey-media::before {
        top: calc(100% + var(--journey-strip-pad));
        right: auto;
        left: calc(50% + var(--journey-mobile-run) - var(--journey-corner));
        width: var(--journey-corner);
        height: var(--journey-strip-pad);
        border: 0;
        border-top: 5px dotted rgba(81, 87, 204, .62);
        border-right: 5px dotted rgba(81, 87, 204, .62);
        border-radius: 0 var(--journey-corner) 0 0;
    }

    .journey-step:nth-child(even):not(:last-child) .journey-media::before {
        right: calc(50% + var(--journey-mobile-run) - var(--journey-corner));
        left: auto;
        border-right: 0;
        border-left: 5px dotted rgba(81, 87, 204, .62);
        border-radius: var(--journey-corner) 0 0;
    }

    .journey-step:nth-child(odd) .journey-connector-arrow { left: calc(50% + var(--journey-mobile-run) - 10px); }
    .journey-step:nth-child(even) .journey-connector-arrow { right: calc(50% + var(--journey-mobile-run) - 10px); }
}

@media (max-width: 680px) {
    .site-shell,
    .pricing-shell { width: min(100% - 28px, 1180px); }

    .section { padding: 64px 0; }
    .site-brand img { width: 154px; }
    .site-navigation { right: 14px; left: 14px; }
    .hero-section { padding: 69px 0 64px; }
    .hero-copy h1 { font-size: clamp(42px, 13vw, 58px); }
    .hero-copy > p { font-size: 18px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 28px; }
    .hero-proof { gap: 8px 16px; margin-top: 20px; }
    .hero-visual { min-height: clamp(350px, 95vw, 410px); }
    .hero-device { top: 20px; width: min(360px, 100%); }
    .hero-orbit-one { inset: 18px 0 0; }
    .hero-orbit-two { inset: 65px 40px 42px; }
    .hero-status { min-width: 158px; padding: 10px 12px; }
    .hero-status-top { top: 36px; right: 0; }
    .hero-status-bottom { bottom: 28px; left: 0; }
    .hero-status strong { font-size: 12px; }
    .trust-items { gap: 9px 24px; }
    .trust-items span:not(:first-child)::before { display: none; }
    .section-heading-center { margin-bottom: 42px; }
    .feature-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 250px; }
    .journey-heading { margin-bottom: 52px; }
    .journey-step,
    .journey-step:nth-child(even) {
        --journey-mobile-run: 56px;
        --journey-strip-pad: 44px;
        --journey-connector-height: 88px;
        --journey-corner: 22px;
        gap: 24px;
        padding: var(--journey-strip-pad) 14px;
    }
    .journey-copy { padding-left: 62px; }
    .journey-number { width: 48px; height: 48px; border-radius: 15px; }
    .journey-copy h3 { font-size: clamp(28px, 9vw, 36px); }
    .journey-copy p { font-size: 17px; }
    .journey-placeholder { border-radius: 19px; }
    .workflow-section { padding-bottom: 0; }
    .app-panel { width: min(calc(100% - 20px), 1180px); padding: 42px 24px; border-radius: 22px; }
    .app-preview { padding: 17px; }
    .pricing-grid { gap: 32px; }
    .pricing-card { padding: 29px 24px 25px; }
    .plan-heading { min-height: 0; }
    .popular-ribbon { top: -15px; }
    .registration-card { padding: 27px 21px; }
    .form-row-two { grid-template-columns: 1fr; }
    .footer-bottom,
    .footer-bottom > div { align-items: flex-start; flex-direction: column; gap: 8px; }
    .trial-band { padding: 56px 0; }
    .maintenance-card { padding: 34px 23px; }
}

@media (max-width: 480px) {
    .mobile-job { grid-template-columns: 41px minmax(0, 1fr); }
    .mobile-job em { grid-column: 2; }
}

@media (max-width: 420px) {
    .hero-device { width: 310px; }
    .hero-status-top { display: none; }
    .hero-status-bottom { bottom: 2px; }
    .app-preview-top { grid-template-columns: 38px minmax(0, 1fr); }
    .app-preview-top em { display: none; }
}

.journey-step:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .tasktrail-site *,
    .tasktrail-site *::before,
    .tasktrail-site *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .hero-device { animation: none; }
    .journey-placeholder-ai,
    .journey-placeholder-ai::after {
        animation: none;
        transition: none;
        background-position: 50% 50%;
    }
}
