#nwBranding.sticky{background-color: rgb(2, 161, 198);}#nwContent {
    padding-bottom: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.app-logo h2 {
     font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
    font-style: normal;
}

:root {
    --page-bg: #fbfcff;
    --pane-bg: rgba(255, 255, 255, 0.84);
    --panel-bg: #ffffff;
    --border: #d9e6f0;
    --text: #223148;
    --muted: #62748a;
    --blue: #2f6bff;
    --teal: #21c8c8;
    --pink: #f8dce9;
    --yellow: #fff5b4;
    --mint: #e5f9eb;
    --shadow: 0 18px 44px rgba(49, 82, 122, 0.12);
    --radius-xl: 18px;
    --radius-lg: 12px;
    --radius-md: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(229, 246, 255, 0.95), transparent 38%),
        radial-gradient(circle at top right, rgba(248, 220, 233, 0.8), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(237, 255, 238, 0.72), transparent 32%),
        linear-gradient(180deg, #f9fbff 0%, #f7fbff 100%);
}

a {
    color: inherit;
}

.page-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 48px;
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 20px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(217, 230, 240, 0.9);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(67, 90, 111, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand span,
h1,
h2,
h3,
.app-logo,
.eyebrow {
    font-family: "Montserrat Alt", "Segoe UI", sans-serif;
}

.brand span {
    font-size: 1.7rem;
    line-height: 1;
    color: var(--blue);
}

.site-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text);
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.site-nav a:hover {
    background: rgba(229, 246, 255, 0.95);
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.hero-copy,
.hero-preview,
.section,
.download-panel {
    border: 1px solid rgba(217, 230, 240, 0.92);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
    border-radius: var(--radius-xl);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--blue);
}

h1 {
    margin: 0;
    font-weight: 300;

    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.96;
    max-width: none;
}

.lead {
    margin: 22px 0 0;
    font-size: 1.16rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(47, 107, 255, 0.12);
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #ffffff;
}

.button-secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
}

.button-wide {
    width: 100%;
}

.hero-points {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-points li {
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    color: var(--text);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 0 0 6px rgba(229, 246, 255, 0.9);
}

.hero-preview {
    padding: 18px;
    background: linear-gradient(180deg, rgba(229, 246, 255, 0.78), rgba(255, 255, 255, 0.94));
    border-radius: var(--radius-xl);
}

.app-card {
    height: 100%;
    min-height: 620px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 230, 240, 0.96);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 10px 2px;
}

.app-logo {
    font-size: 2rem;
    color: var(--blue);
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.app-buttons span {
    padding: 10px 14px;
    background: #f4f6fb;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.95rem;
}

.app-body {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px;
    flex: 1;
}

.app-sidebar,
.app-main {
    background: rgba(249, 252, 255, 0.82);
    border: 1px solid rgba(217, 230, 240, 0.9);
    border-radius: 20px;
    padding: 14px;
}

.app-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: transparent;
}

.sidebar-card-active {
    background: #e5f6ff;
    border: 1px solid #c7e8f7;
}

.sidebar-card-soft {
    color: var(--muted);
}

.sidebar-title {
    font-weight: 700;
}

.sidebar-count {
    color: var(--blue);
    font-weight: 700;
}

.app-main {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 10px;
}

.message-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 1px solid #e3edf6;
    border-radius: 16px;
    background: #ffffff;
}

.message-row p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.message-row span {
    white-space: nowrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.message-row-active {
    background: #e5f6ff;
    border-color: #c7e8f7;
}

.preview-card {
    margin-top: 4px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid #e4edf6;
}

.preview-from {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.preview-card h3 {
    margin: 12px 0 10px;
    font-size: 1.35rem;
}

.preview-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

.attachment-chip {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--mint);
    border: 1px solid #d3f0d5;
    font-weight: 700;
}

.quote-band {
    margin: 28px 0;
    padding: 28px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 244, 201, 0.82), rgba(248, 220, 233, 0.78));
    border: 1px solid rgba(227, 232, 238, 0.96);
    box-shadow: var(--shadow);
}

.quote-band p {
    margin: 0;
    max-width: 60ch;
    font-size: 1.2rem;
    line-height: 1.7;
}

.section,
.download-panel {
    margin-top: 26px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 252, 239, 0.9), rgba(255, 255, 255, 0.93));
}

.section-heading {
    max-width: 70ch;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
}

.feature-grid,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.feature-card,
.reason-panel,
.step-card,
.download-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
}

.feature-card h3,
.reason-panel h3,
.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.feature-card p,
.reason-panel p,
.step-card p,
.download-box p,
.download-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    color: #ffffff;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.faq-list details {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 22px;
    align-items: center;
    background: linear-gradient(140deg, rgba(229, 246, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.download-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.download-note {
    margin-top: 14px;
    font-size: 0.95rem;
    text-align: center;
}

.download-version {
    margin-top: 14px;
    text-align: center;
    font-weight: 700;
    color: var(--text);
}

.legal-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.94));
}

.legal-heading {
    max-width: 78ch;
}

.legal-title {
    max-width: none;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.02;
}

.legal-intro,
.legal-meta {
    color: var(--muted);
    line-height: 1.8;
}

.legal-intro {
    margin: 18px 0 12px;
    max-width: 68ch;
}

.legal-meta {
    margin: 0;
}

.legal-sections {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.legal-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.legal-card h2 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.legal-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 74ch;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-list {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
}

.legal-list li {
    margin: 0 0 10px;
    line-height: 1.8;
}

.legal-list li:last-child {
    margin-bottom: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    padding: 28px 10px 0;
}

.site-footer p {
    margin: 10px 0 0;
    max-width: 46ch;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .hero,
    .download-panel,
    .feature-grid,
    .reasons-grid,
    .setup-steps {
        grid-template-columns: 1fr;
    }

    .app-card {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 20px, 1200px);
        padding-top: 14px;
    }

    .site-header {
        position: static;
        border-radius: 24px;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
    }

    .hero-copy,
    .hero-preview,
    .section,
    .download-panel,
    .quote-band {
        padding: 22px;
        border-radius: 24px;
    }

    .hero {
        gap: 18px;
    }

    h1 {
        max-width: 200ch;
    }

    .app-body {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
.app-logo {word-break: normal;}@media (max-width: 699px) {#nwLogo {width: 200px;}}

.feedback-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 980px;
}

.feedback-intro img {
    flex: 0 0 auto;
    width: 48px;
    height: auto;
    margin-top: 3px;
}

#nwContent .feedback-intro h4 {
    margin: 0;
}

.feedback-form-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feedback-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    color: var(--text);
    font-weight: 700;
}

.feedback-field input,
.feedback-field textarea {
    width: 100%;
    padding: 10px 11px;
    font-size: 0.76rem;
    color: var(--text);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none;
}

.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
    font-size: 0.7rem;
}

.feedback-field textarea {
    min-height: 190px;
    resize: vertical;
    line-height: 1.6;
}

.feedback-field-wide {
    width: 100%;
}

.feedback-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.feedback-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.feedback-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feedback-status {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    line-height: 1.7;
}

.feedback-status strong {
    display: block;
    margin-bottom: 4px;
}

.feedback-status-success {
    color: #195c39;
    background: #e8f8ee;
    border: 1px solid #b8e5c7;
}

.feedback-status-error {
    color: #7a2731;
    background: #fff0f2;
    border: 1px solid #f3c7cf;
}

.feedback-error-list {
    margin: 8px 0 0 18px;
    padding: 0;
}

.feedback-error-list li {
    margin-bottom: 6px;
}

.feedback-error-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 760px) {
    .feedback-form-card {
        padding: 22px;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
    }
}

/* Keep selected section links in nav underlined for hash links. */
#nwBranding #nwNavTop .nwContainer li.current > a[href*="#"],
#nwNavSide .nwContainer li.current > a[href*="#"] {
    text-decoration: underline !important;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

/* Site refresh shared by non-home pages. Matches the new desk hero direction. */
:root {
    --page-bg: #fbfdff;
    --panel-bg: #ffffff;
    --border: #d9ecf7;
    --text: #071b46;
    --muted: #53677f;
    --blue: #1169ff;
    --teal: #10c4d4;
    --plant-green: #cfe7ad;
    --plant-green-deep: #9fcb74;
    --plant-green-soft: #f2faea;
    --warm: #fff7e8;
    --shadow: 0 18px 44px rgba(24, 57, 98, 0.10);
}

body {
    background: #ffffff;
}

#nwWrapper,
#nwStage {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 62%, #fffaf1 100%) !important;
}

#nwContent {
    background: transparent;
}

#nwBranding,
#nwBranding.sticky {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(205, 229, 243, 0.9);
    box-shadow: 0 10px 28px rgba(24, 57, 98, 0.08);
}

#nwLogo {
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    max-width: none;
    padding: 8px 20px !important;
    text-decoration: none;
    text-shadow: none !important;
}

#nwLogo img {
    display: block !important;
    width: 170px;
    height: auto;
}

#nwBranding #nwNavTop a,
#nwNavSide a {
    color: #071b46 !important;
}

#nwBranding #nwNavTop a:hover,
#nwBranding #nwNavTop .current a {
    color: #1169ff !important;
}

#nwMobileNav {
    background: #ffffff !important;
    border: 1px solid rgba(205, 229, 243, 0.95);
    box-shadow: 0 8px 18px rgba(24, 57, 98, 0.12);
}

#nwMobileNav a {
    color: #071b46 !important;
}

#nwContent > .firstBlock,
#nwContent > .row.firstBlock {
    padding-top: 42px !important;
}

#nwContent .firstBlock h1,
#nwContent .legal-title,
#nwContent .legal-title span,
#nwContent .legal-intro,
#nwContent .legal-intro span,
#nwContent .legal-meta,
#nwContent .legal-meta span {
    color: var(--text) !important;
}

#nwContent .legal-heading,
#nwContent .compare-page,
#nwContent .section,
#nwContent .download-panel,
#nwContent .feedback-form-card {
    color: var(--text);
}

#nwContent .compare-hero,
#nwContent .section,
#nwContent .download-panel,
#nwContent .legal-card,
#nwContent .feature-card,
#nwContent .reason-panel,
#nwContent .step-card,
#nwContent .download-box,
#nwContent .feedback-form-card {
    border-color: rgba(205, 229, 243, 0.96) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 14px 32px rgba(24, 57, 98, 0.07) !important;
}

#nwContent .compare-table-shell,
#nwContent .compare-table-wrap,
#nwContent .compare-cta {
    border-radius: 10px !important;
}

#nwContent .compare-table-sticky-shell {
    border-radius: 10px 10px 0 0 !important;
}

#nwContent .compare-hero,
#nwContent .section-alt,
#nwContent .download-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(159, 203, 116, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.96)) !important;
}

#nwContent .compare-kicker {
    color: var(--text);
    border-color: #bfdc9c;
    background: var(--plant-green-soft);
}

#nwContent .section-heading h2 span {
    color: var(--text) !important;
}

#nwContent .button,
#nwContent .btn {
    border-radius: 12px;
}

#nwContent .button-primary,
#nwContent .btn-primary {
    background: linear-gradient(135deg, var(--plant-green) 0%, var(--plant-green-deep) 100%) !important;
    color: var(--text) !important;
    border: 1px solid #a9d27f !important;
}

#nwContent .button-primary span,
#nwContent .btn-primary span {
    color: var(--text) !important;
}

#nwContent .button-secondary {
    border-color: #bfdc9c !important;
    background: var(--plant-green-soft) !important;
    color: var(--text) !important;
}

#nwContent .button:hover,
#nwContent .btn:hover {
    box-shadow: 0 12px 22px rgba(99, 143, 62, 0.16);
}

#nwContent .feedback-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(205, 229, 243, 0.96);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(24, 57, 98, 0.07);
}

@media (max-width: 760px) {
    html,
    body,
    #nwWrapper,
    #nwStage,
    #nwContent {
        max-width: 100%;
        overflow-x: hidden;
    }

    #nwLogo {
        padding: 8px 16px !important;
    }

    #nwLogo img {
        width: 132px;
    }

    #nwContent > .firstBlock,
    #nwContent > .row.firstBlock {
        padding-top: 28px !important;
    }
}

/* Tighten website panel corners to better match Elenor's app UI. */
#nwContent .compare-hero,
#nwContent .compare-table-shell,
#nwContent .compare-table-wrap,
#nwContent .compare-table-sticky,
#nwContent .compare-cta,
#nwContent .section,
#nwContent .download-panel,
#nwContent .legal-card,
#nwContent .feature-card,
#nwContent .reason-panel,
#nwContent .step-card,
#nwContent .download-box,
#nwContent .feedback-form-card {
    border-radius: 10px !important;
}

#nwContent .compare-table-sticky,
#nwContent .compare-table-sticky-shell {
    border-radius: 10px 10px 0 0 !important;
}
