:root {
    --brand: #b84a00;
    --brand-accent: #ff8c00;
    --brand-accent-ink: #2b1600;
    --brand-2: #ffb347;
    --brand-3: #9f3d00;
    --ink: #333333;
    --muted: #666666;
    --line: rgba(0, 0, 0, 0.07);
    --soft: rgba(255, 140, 0, 0.1);
    --paper: rgba(255, 255, 255, 0.78);
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-brand: 0 18px 44px rgba(255, 140, 0, 0.22);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--ink);
    background: #fffaf4 !important;
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: transparent;
    pointer-events: none;
}

.landing-page {
    min-height: 100vh;
    overflow: clip;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem max(1rem, calc((100vw - 1120px) / 2));
    background: rgba(255, 255, 255, 0.66);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
    width: 100%;
    max-width: 100vw;
}

.lp-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.lp-brand,
.lp-nav a,
.lp-footer a {
    color: var(--ink);
    text-decoration: none;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    min-width: 8.8rem;
}

.lp-brand__logo {
    display: block;
    height: 2.3rem;
    max-width: 9.5rem;
    object-fit: contain;
    width: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.4rem);
}

.lp-nav a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.18s ease;
}

.lp-nav a:hover {
    color: var(--brand-3);
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.lp-actions form {
    margin: 0;
}

.btn {
    appearance: none;
    border: 0;
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.05rem;
    border-radius: 1rem;
    color: var(--ink);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    max-width: 100%;
}

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

.btn-brand {
    color: var(--brand-accent-ink);
    background: var(--brand-accent);
    box-shadow: var(--shadow-brand);
}

.btn-brand:hover {
    box-shadow: 0 22px 54px rgba(255, 140, 0, 0.28), 0 0 0 6px rgba(255, 140, 0, 0.12);
}

.btn-outline,
.btn-ghost {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 140, 0, 0.26);
}

.btn-outline:hover,
.btn-ghost:hover {
    border-color: rgba(255, 140, 0, 0.52);
    box-shadow: 0 0 0 6px rgba(255, 140, 0, 0.1);
}

.btn-large {
    min-height: 3.2rem;
    padding-inline: 1.35rem;
    border-radius: 1.15rem;
}

.btn-muted {
    color: #737373;
    background: #f0f0f0;
    border: 1px solid #e2e2e2;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-light {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 9rem 0 5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.hero__grid > *,
.hero__copy,
.dashboard-card {
    min-width: 0;
    max-width: 100%;
}

.hero__copy h1,
.section-heading h2,
.plans-cta h2 {
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero__copy h1 {
    max-width: 760px;
    margin-top: 1.1rem;
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    line-height: 0.92;
    font-weight: 900;
}

.hero__copy p {
    max-width: 620px;
    margin: 1.4rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.2rem);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.8rem;
    max-width: 520px;
}

.hero__metrics div {
    min-height: 5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
}

.hero__metrics strong,
.hero__metrics span {
    display: block;
}

.hero__metrics strong {
    font-size: 1.25rem;
    font-weight: 900;
}

.hero__metrics span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.pill {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 140, 0, 0.16);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    font-size: 0.78rem;
    font-weight: 800;
}

.pill span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--brand-accent);
}

.pill--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
}

.pill--light span {
    background: #fff;
}

.hero__glow {
    position: absolute;
    z-index: -1;
    width: 24rem;
    height: 24rem;
    border-radius: 42% 58% 64% 36% / 48% 42% 58% 52%;
    filter: blur(70px);
    animation: blob 15s ease-in-out infinite alternate;
}

.hero__glow--one {
    top: 5rem;
    left: -7rem;
    background: rgba(255, 140, 0, 0.22);
}

.hero__glow--two {
    right: -8rem;
    bottom: 0;
    background: rgba(255, 95, 87, 0.14);
    animation-delay: -4s;
}

.dashboard-card {
    position: relative;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: perspective(1200px) rotateX(5deg) rotateY(-8deg);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-card:hover {
    transform: perspective(1200px) rotateX(0) rotateY(0) translateY(-4px);
}

.dashboard-card::after,
.solution-band::before,
.plans-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.dashboard-card__top,
.dashboard-card__bottom {
    position: relative;
    display: flex;
    gap: 1rem;
}

.dashboard-card__top {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dashboard-card__top span,
.price-card__head span,
.status-card span,
.plans-cta span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 850;
}

.dashboard-card__top strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.98rem;
}

.dashboard-card__top em {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 999px;
    color: var(--ink);
    background: var(--soft);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 850;
}

.kanban-preview {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.kanban-preview article,
.mini-calendar,
.next-actions {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.76);
    padding: 1rem;
}

.kanban-preview article:nth-child(1) {
    background: rgba(255, 140, 0, 0.09);
}

.kanban-preview article:nth-child(3) {
    background: rgba(16, 185, 129, 0.1);
}

.kanban-preview span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 850;
}

.kanban-preview strong {
    display: block;
    margin: 0.35rem 0 0.75rem;
    font-size: 2rem;
    font-weight: 900;
}

.kanban-preview i {
    display: block;
    height: 0.5rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
}

.dashboard-card__bottom {
    margin-top: 0.8rem;
    align-items: stretch;
}

.mini-calendar {
    flex: 1.2;
}

.mini-calendar > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.mini-calendar span {
    color: var(--brand-3);
    font-size: 0.78rem;
    font-weight: 900;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.calendar-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    border-radius: 0.6rem;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.035);
    font-size: 0.72rem;
}

.calendar-grid .is-hot {
    color: var(--ink);
    border: 1px solid rgba(255, 140, 0, 0.18);
    background: rgba(255, 140, 0, 0.14);
}

.next-actions {
    flex: 0.8;
    display: grid;
    align-content: start;
    gap: 0.55rem;
    background: rgba(255, 140, 0, 0.06);
}

.next-actions strong {
    color: var(--brand-3);
    font-size: 0.78rem;
}

.next-actions span {
    display: block;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.status-stack {
    display: grid;
    gap: 0.8rem;
    margin-top: -1.25rem;
    margin-bottom: 1.5rem;
}

.status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.status-card--primary {
    border-color: rgba(255, 140, 0, 0.26);
    background: rgba(255, 249, 241, 0.88);
}

.status-card strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.05rem;
}

.status-card p {
    margin: 0.3rem 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.status-card form {
    flex-shrink: 0;
    margin: 0;
}

.section {
    padding: 5rem 0;
}

.section-heading {
    max-width: 690px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-heading--left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.plans-cta h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
}

.section-heading p,
.plans-cta p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

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

.feature-card,
.price-card,
.faq-item {
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 15rem;
    padding: 1.3rem;
    border-radius: 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.price-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(255, 140, 0, 0.18);
    border-radius: 1rem;
    background: rgba(255, 140, 0, 0.12);
    position: relative;
}

.feature-icon::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border: 2px solid var(--brand);
    border-radius: 0.45rem;
    opacity: 0.85;
}

.feature-icon--calendar::after {
    border-radius: 0.55rem;
    border-top-width: 0.45rem;
}

.feature-icon--people::after {
    border-radius: 999px;
}

.feature-card h3 {
    margin: 1.25rem 0 0;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0.75rem 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.92rem;
}

.solution-band,
.plans-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: rgba(255,140,0,.82);
}

.solution-band {
    padding: 5rem 0;
}

.solution-band__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.solution-band h2,
.solution-band p,
.plans-cta h2,
.plans-cta p {
    color: #fff;
}

.solution-list {
    display: grid;
    gap: 0.85rem;
}

.solution-list div {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.solution-list strong,
.solution-list span {
    display: block;
}

.solution-list strong {
    font-size: 1rem;
}

.solution-list span {
    margin-top: 0.3rem;
    opacity: 0.9;
    line-height: 1.5;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.35rem;
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card--highlight {
    border-color: rgba(255, 140, 0, 0.58);
    box-shadow: 0 18px 50px rgba(255, 140, 0, 0.18), 0 10px 30px rgba(0, 0, 0, 0.06);
}

.price-card__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    color: #fff;
    background: var(--brand);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.25);
    font-size: 0.74rem;
    font-weight: 900;
    white-space: nowrap;
}

.price-card__head h3 {
    margin: 0.5rem 0 0;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.price-card__head p {
    min-height: 2.7rem;
    margin: 0.35rem 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.price strong {
    font-size: clamp(2rem, 4vw, 2.6rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.price span {
    padding-bottom: 0.18rem;
    color: var(--muted);
    font-weight: 800;
}

.price-features,
.plan-details ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-features {
    flex: 1;
}

.price-features li,
.plan-details li {
    display: flex;
    gap: 0.55rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.price-features li::before,
.plan-details li::before {
    content: "";
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.05rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 0.4rem;
    background: rgba(255, 140, 0, 0.10) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}

.plan-details {
    border-top: 1px solid var(--line);
    padding-top: 0.8rem;
}

.plan-details summary {
    color: var(--brand-3);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 900;
}

.plan-details ul {
    margin-top: 0.75rem;
}

.plans-cta {
    padding: 5rem 0;
    text-align: center;
}

.plans-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.plans-cta span {
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plans-cta .btn {
    margin-top: 1.8rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    max-width: 820px;
    margin-inline: auto;
}

.faq-item {
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.faq-item summary {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.2rem;
    color: var(--muted);
    line-height: 1.7;
}

.lp-footer {
    padding: 3.5rem 0;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.6);
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.lp-footer strong {
    font-size: 1rem;
}

.lp-footer p {
    max-width: 430px;
    margin: 0.55rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.lp-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-footer a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.lp-footer a:hover {
    color: var(--brand-3);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    animation: reveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal--late {
    animation-delay: 0.14s;
}

.feature-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) {
    animation-delay: 0.12s;
}

.feature-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) {
    animation-delay: 0.22s;
}

.feature-grid .reveal:nth-child(4),
.faq-list .reveal:nth-child(4) {
    animation-delay: 0.32s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        border-radius: 42% 58% 64% 36% / 48% 42% 58% 52%;
    }
    50% {
        transform: scale(1.08) translate(2rem, -1.5rem) rotate(120deg);
        border-radius: 62% 38% 34% 66% / 58% 32% 68% 42%;
    }
    100% {
        transform: scale(0.96) translate(-1.5rem, 1rem) rotate(240deg);
        border-radius: 36% 64% 52% 48% / 52% 60% 40% 48%;
    }
}

@media (max-width: 1024px) {
    .lp-header {
        flex-wrap: wrap;
    }

    .lp-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding-top: 11rem;
    }

    .hero__grid,
    .solution-band__inner {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .lp-header {
        position: sticky;
        padding: 0.8rem 1rem;
    }

    .lp-brand {
        flex: 1;
    }

    .lp-actions {
        width: 100%;
        justify-content: stretch;
    }

    .lp-actions > * {
        min-width: 0;
    }

    .lp-actions .btn,
    .lp-actions form {
        flex: 1;
    }

    .lp-actions form .btn {
        width: 100%;
    }

    .lp-nav {
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.1rem;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero__copy h1 {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
        text-wrap: pretty;
    }

    .hero__buttons,
    .status-card {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__buttons .btn,
    .status-card .btn,
    .status-card form .btn {
        width: 100%;
    }

    .hero__metrics,
    .kanban-preview,
    .dashboard-card__bottom,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card__bottom {
        display: grid;
    }

    .section {
        padding: 3.8rem 0;
    }

    .solution-band,
    .plans-cta {
        padding: 4rem 0;
    }

    .section-heading--left {
        text-align: center;
    }

    .section-heading--left .pill {
        margin-inline: auto;
    }

    .lp-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 1rem, 1120px);
    }

    .lp-header {
        border-radius: 0 0 1.2rem 1.2rem;
    }

    .btn {
        padding-inline: 0.82rem;
        font-size: 0.82rem;
        white-space: normal;
    }

    .hero__copy p,
    .section-heading p {
        font-size: 0.95rem;
    }

    .dashboard-card,
    .price-card {
        border-radius: 1.35rem;
    }
}
