body {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 237, 213, .72), transparent 22%),
        linear-gradient(180deg, #FFFFFF 0%, #FFF7ED 44%, #FFFFFF 100%);
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 50;
    margin-bottom: 10px;
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 86px;
    gap: 34px;
    padding: 0 38px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(229, 231, 235, .82);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(31, 41, 55, .12);
    backdrop-filter: blur(16px);
}

.site-header .brand strong {
    color: var(--primary-deep);
    font-size: 34px;
}

.site-header .brand small {
    color: #374151;
    font-size: 13px;
}

.primary-nav {
    display: flex;
    justify-content: center;
    gap: 42px;
}

.primary-nav a {
    position: relative;
    padding: 30px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
    transform: scaleX(0);
    transition: transform .18s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--primary-deep);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 14px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--primary-dark);
    background: var(--orange-soft);
    border: 1px solid var(--orange-pale);
    border-radius: 12px;
}

.nav-toggle svg {
    width: 23px;
    height: 23px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 22px;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle-large {
    position: absolute;
    right: -20px;
    top: 4px;
    width: min(42vw, 560px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(249, 115, 22, .28), rgba(255, 237, 213, .56) 58%, rgba(255, 247, 237, .08) 59%);
}

.circle-left {
    position: absolute;
    left: -56px;
    top: 190px;
    width: 178px;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(255, 237, 213, .68);
}

.soft-dot-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: .35;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 18px 18px;
}

.dot-left {
    left: 42px;
    top: 350px;
}

.dot-right {
    right: 115px;
    top: 250px;
}

.blur-chip {
    position: absolute;
    border-radius: 999px;
    background: rgba(249, 115, 22, .22);
    filter: blur(.2px);
}

.chip-one {
    left: 152px;
    top: 342px;
    width: 30px;
    height: 30px;
}

.chip-two {
    right: 380px;
    top: 102px;
    width: 70px;
    height: 70px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, .78fr) minmax(620px, 1.22fr);
    align-items: center;
    gap: clamp(44px, 5vw, 76px);
}

.hero-copy {
    padding-left: min(4vw, 58px);
}

.hero h1 {
    margin-bottom: 24px;
    color: #05070B;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 strong {
    color: var(--primary-deep);
    font-weight: 950;
}

.hero-copy p {
    max-width: 560px;
    margin-bottom: 28px;
    color: #374151;
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions,
.trust-row,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.btn-icon svg {
    color: currentColor;
}

.trust-row {
    margin-top: 34px;
    gap: 0;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 22px;
    padding: 0 28px;
    color: #4B5563;
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
}

.trust-row span:first-child {
    padding-left: 0;
}

.trust-row span:last-child {
    border-right: 0;
}

.trust-row svg {
    width: 19px;
    height: 19px;
    color: var(--primary);
}

.dashboard-preview {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 420px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(31, 41, 55, .12);
}

.preview-sidebar {
    padding: 22px 14px;
    background: rgba(255, 255, 255, .72);
    border-right: 1px solid var(--border);
}

.preview-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-inline: 10px;
    color: var(--primary-deep);
}

.preview-brand strong {
    font-size: 20px;
}

.preview-brand svg {
    width: 22px;
    height: 22px;
    color: #111827;
}

.preview-sidebar nav {
    display: grid;
    gap: 6px;
}

.preview-sidebar nav span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    color: #4B5563;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 750;
}

.preview-sidebar nav span.active {
    color: var(--primary-deep);
    background: var(--orange-pale);
}

.preview-sidebar svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.preview-main {
    padding: 22px 20px 18px;
    background: linear-gradient(180deg, #FFFFFF, #FFFDFB);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.preview-header h2 {
    margin: 0;
    font-size: 17px;
}

.preview-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.preview-profile .notification {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--primary);
}

.preview-profile .notification svg {
    width: 16px;
    height: 16px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 34%, #1F2937 0 18%, transparent 19%),
        radial-gradient(circle at 50% 118%, #FBC7A2 0 58%, transparent 59%),
        #FFE4D1;
}

.preview-profile strong,
.preview-profile small {
    display: block;
}

.preview-profile small {
    color: var(--muted);
}

.preview-widgets {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(220px, .92fr);
    gap: 14px;
}

.preview-card,
.preview-metrics article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(31, 41, 55, .06);
}

.preview-card {
    min-height: 184px;
    padding: 18px;
}

.preview-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.preview-card h3 {
    margin: 0;
    font-size: 15px;
}

.preview-card-head a {
    color: var(--primary-deep);
    font-size: 11px;
    font-weight: 800;
}

.event-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.event-list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: start;
}

.event-list time {
    position: relative;
    padding-left: 14px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}

.event-list time::before {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.event-list .blue {
    color: #2563EB;
}

.event-list .green {
    color: #22C55E;
}

.event-list strong,
.event-list small {
    display: block;
}

.event-list strong {
    color: #111827;
    font-size: 11px;
}

.event-list small {
    margin-top: 3px;
    color: #4B5563;
    font-size: 10px;
}

.calendar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.calendar-top button {
    width: 26px;
    height: 26px;
    color: #4B5563;
    background: transparent;
    border: 0;
    border-radius: 8px;
}

.calendar-top button:hover {
    color: var(--primary-dark);
    background: var(--orange-soft);
}

.calendar-mini {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.calendar-mini b,
.calendar-mini span {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    font-size: 10px;
}

.calendar-mini b {
    color: var(--muted);
    font-size: 9px;
}

.calendar-mini span {
    color: #111827;
    border-radius: 999px;
}

.calendar-mini .selected {
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
}

.calendar-mini .empty {
    color: transparent;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.preview-metrics article {
    min-height: 104px;
    padding: 16px;
}

.preview-metrics span {
    display: block;
    color: #111827;
    font-size: 11px;
    font-weight: 800;
}

.preview-metrics strong {
    display: block;
    margin-top: 9px;
    color: #05070B;
    font-size: 28px;
    line-height: 1;
}

.preview-metrics a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: #2563EB;
    font-size: 11px;
    font-weight: 800;
}

.preview-metrics a svg {
    width: 13px;
    height: 13px;
}

.preview-metrics .advisory {
    display: flex;
    gap: 10px;
}

.preview-metrics .advisory > svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex: 0 0 auto;
}

.preview-metrics .advisory span {
    color: #374151;
    font-size: 10px;
    line-height: 1.45;
}

.preview-metrics .advisory strong {
    margin: 0 0 8px;
    font-size: 11px;
}

.features-section {
    padding: 0 0 64px;
}

.section-heading {
    margin-bottom: 26px;
    text-align: center;
}

.section-label {
    margin-bottom: 6px;
}

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

.feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    min-height: 150px;
    padding: 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 9px 22px rgba(31, 41, 55, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, .28);
    box-shadow: 0 16px 32px rgba(31, 41, 55, .1);
}

.feature-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
}

.feature-icon svg {
    width: 29px;
    height: 29px;
}

.accent-orange .feature-icon {
    color: var(--primary);
    background: var(--orange-pale);
}

.accent-green .feature-icon {
    color: #22C55E;
    background: #DCFCE7;
}

.accent-blue .feature-icon {
    color: #2563EB;
    background: #DBEAFE;
}

.accent-purple .feature-icon {
    color: #7C3AED;
    background: #F3E8FF;
}

.feature-card h3 {
    margin-bottom: 8px;
    color: #111827;
    font-size: 16px;
}

.feature-card p {
    margin-bottom: 12px;
    color: #374151;
    font-size: 13px;
    line-height: 1.55;
}

.feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-deep);
    font-size: 12px;
    font-weight: 900;
}

.feature-card a svg {
    width: 13px;
    height: 13px;
}

.about-section {
    padding: 10px 0 64px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 460px);
    align-items: center;
    gap: 64px;
}

.about-copy p {
    max-width: 710px;
    color: #374151;
    font-size: 17px;
    line-height: 1.7;
}

.check-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(31, 41, 55, .1);
}

.check-glow {
    position: absolute;
    right: -38px;
    top: -38px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: var(--orange-soft);
}

.check-card ul {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
}

.check-card svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex: 0 0 auto;
}

.cta-section {
    padding: 0 0 64px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 42px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .24), transparent 24%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(194, 65, 12, .24);
}

.cta-card h2 {
    max-width: 700px;
    margin-bottom: 8px;
    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.08;
}

.cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
}

.site-footer {
    padding: 0 0 22px;
}

.footer-shell {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 34px;
    padding: 24px 36px;
    background: rgba(255, 255, 255, .9);
    border-top: 1px solid var(--border);
}

.brand-footer strong {
    color: var(--primary-deep);
}

.footer-brand p {
    max-width: 300px;
    margin: 8px 0 0;
    color: #374151;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.footer-links a {
    color: #374151;
    font-size: 13px;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--primary-deep);
}

.footer-social h2 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 13px;
}

.footer-social div {
    display: flex;
    gap: 9px;
}

.footer-social a {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 999px;
}

.footer-social svg {
    width: 15px;
    height: 15px;
}

.footer-copy {
    margin: 0;
    color: #374151;
    font-size: 13px;
    text-align: right;
}

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

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

@media (max-width: 1220px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
        padding-left: 0;
    }

    .dashboard-preview {
        max-width: 920px;
        margin-inline: auto;
    }

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

@media (max-width: 980px) {
    .container {
        width: min(100% - 48px, var(--container));
    }

    .site-header {
        top: 10px;
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
        min-height: 76px;
        padding: 0 22px;
    }

    .nav-toggle {
        display: grid;
    }

    .primary-nav,
    .nav-actions {
        display: none;
    }

    .primary-nav.is-open,
    .nav-actions.is-open {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
    }

    .primary-nav.is-open {
        gap: 0;
        justify-content: stretch;
        padding-top: 10px;
    }

    .primary-nav.is-open a {
        padding: 13px 0;
    }

    .primary-nav.is-open a::after {
        bottom: 6px;
    }

    .nav-actions.is-open {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 8px 0 18px;
    }

    .about-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .brand small {
        max-width: 190px;
    }

    .hero {
        padding-top: 46px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 48px);
    }

    .trust-row {
        display: grid;
        gap: 12px;
    }

    .trust-row span {
        padding: 0;
        border-right: 0;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-widgets,
    .preview-metrics,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-actions,
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .nav-shell {
        padding-inline: 16px;
    }

    .brand small {
        display: none;
    }

    .preview-main,
    .preview-card,
    .preview-metrics article,
    .feature-card,
    .check-card {
        padding: 16px;
    }
}

/* Landing page responsive guardrails for embedded/zoomed browser views. */
.nav-shell,
.hero-grid,
.dashboard-preview,
.preview-main,
.preview-widgets,
.preview-metrics,
.feature-grid,
.about-grid,
.cta-card,
.footer-shell {
    min-width: 0;
}

.hero-copy,
.dashboard-preview,
.feature-card,
.check-card,
.cta-card {
    max-width: 100%;
}

.hero h1,
.feature-card h3,
.check-card h3 {
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .nav-actions.is-open,
    .hero-actions,
    .cta-actions {
        grid-template-columns: 1fr;
    }

    .nav-actions.is-open .btn,
    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .dashboard-preview {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .preview-main {
        min-width: 360px;
    }
}
