#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;
}

.main-feature-stack {

    margin-top: 30px;

}

.main-feature-list {

    display: grid;

    gap: 32px;

}

.main-feature-block {

    display: block;

}

.main-feature-stack h2.standalone-feature-heading {

    display: block;

    margin: 0 0 12px;

    color: #ffffff !important;

    font-size: clamp(1.28rem, 2.6vw, 2rem);

    line-height: 1.12;

    text-shadow: 0 2px 8px rgba(34, 49, 72, 0.25);

}

.main-feature-panel {

    display: grid;

    grid-template-columns: minmax(0, 1fr) auto;

    gap: 18px;

    align-items: center;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: #ffffff;

}

.main-feature-image-wrap {

    display: grid;

    gap: 12px;

    justify-items: end;

    margin: 0;

}

.main-feature-image {

    display: block;

    width: min(260px, 28vw);

    height: auto;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 12px 28px rgba(49, 82, 122, 0.1);

}

.main-feature-image-small {

    max-height: 170px;

    object-fit: contain;

}

.screen-capture-trigger {

    display: block;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: zoom-in;

    text-align: left;

}

.screen-capture-trigger .main-feature-image {

    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;

}

.screen-capture-trigger:hover .main-feature-image,
.screen-capture-trigger:focus-visible .main-feature-image {

    transform: translateY(-2px);

    border-color: rgba(47, 107, 255, 0.42);

    box-shadow: 0 16px 36px rgba(49, 82, 122, 0.2);

}

.screen-capture-trigger:focus-visible {

    outline: 3px solid rgba(47, 107, 255, 0.36);

    outline-offset: 5px;

    border-radius: 18px;

}

body.screen-capture-overlay-open {

    overflow: hidden;

}

.screen-capture-overlay {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 32px;

    background: rgba(13, 24, 42, 0.74);

    backdrop-filter: blur(6px);

}

.screen-capture-overlay.is-open {

    display: flex;

}

.screen-capture-overlay-panel {

    position: relative;

    width: min(1120px, 96vw);

    max-height: 92vh;

}

.screen-capture-overlay img {

    display: block;

    width: 100%;

    max-height: 92vh;

    object-fit: contain;

    border-radius: 18px;

    background: #ffffff;

    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);

}

.screen-capture-overlay-close {

    position: absolute;

    top: -18px;

    right: -18px;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 50%;

    background: #ffffff;

    color: #223148;

    cursor: pointer;

    font-size: 28px;

    line-height: 42px;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);

}

.screen-capture-overlay-close:hover,
.screen-capture-overlay-close:focus-visible {

    background: #e5f6ff;

    outline: none;

}

.main-feature-panel:nth-child(2n) {

    background: #ffffff;

}

.main-feature-ai {

    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);

    background: #ffffff;

}

.main-feature-ai .main-feature-image {

    width: min(360px, 36vw);

}

.main-feature-ai .main-feature-image-small {

    max-height: 230px;

}

.main-feature-kicker {

    display: inline-flex;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 0.82rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;

}

.main-feature-copy h3 {

    margin: 0 0 12px;

    font-size: clamp(1.65rem, 3vw, 2.35rem);

    line-height: 1.08;

}

.main-feature-copy p {

    margin: 0 0 12px;

    max-width: 72ch;

    color: var(--muted);

    line-height: 1.74;

}

.main-feature-copy p:last-child {

    margin-bottom: 0;

}

.feature-footnote {

    font-size: 0.84rem;

    opacity: 0.82;

}

.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;
}

.privacy-lock-callout {

    display: grid;

    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);

    gap: 22px;

    align-items: stretch;

    margin-top: 24px;

    padding: 28px;

    border: 1px solid #a9dff0;

    border-radius: 28px;

    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.9), transparent 22%),
        linear-gradient(135deg, rgba(229, 246, 255, 0.98), rgba(229, 249, 235, 0.94));

    box-shadow: 0 18px 42px rgba(34, 49, 72, 0.12);

}

.privacy-lock-badge {

    display: inline-flex;

    align-items: center;

    margin-bottom: 14px;

    padding: 8px 14px;

    border-radius: 999px;

    background: #ffffff;

    border: 1px solid #c7e8f7;

    color: var(--blue);

    font-weight: 700;

    font-size: 0.9rem;

}

.privacy-lock-copy h2 {

    margin: 0 0 14px;

    color: var(--text);

    font-size: clamp(1.7rem, 4vw, 2.55rem);

    line-height: 1.08;

}

.privacy-lock-copy p {

    margin: 0 0 12px;

    color: var(--muted);

    line-height: 1.75;

}

.privacy-lock-copy p:last-child {

    margin-bottom: 0;

}

.privacy-lock-points {

    display: grid;

    gap: 12px;

    align-content: center;

    margin: 0;

    padding: 0;

    list-style: none;

}

.privacy-lock-points li {

    position: relative;

    padding: 14px 16px 14px 42px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(199, 232, 247, 0.95);

    color: var(--text);

    line-height: 1.45;

}

.privacy-lock-points li::before {

    content: "";

    position: absolute;

    left: 16px;

    top: 1.1em;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--blue), var(--teal));

    box-shadow: 0 0 0 5px rgba(229, 246, 255, 0.95);

}

.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,

    .privacy-lock-callout,
    .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;}}

@media (max-width: 760px) {

    .main-feature-panel {

        grid-template-columns: 1fr;

        padding: 22px;

        border-radius: 24px;

    }

    .main-feature-image-wrap {

        justify-items: start;

    }

    .main-feature-image {

        width: min(260px, 100%);

    }

    .main-feature-ai .main-feature-image {

        width: min(360px, 100%);

    }

}

.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: 12px 14px;
    color: var(--text);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none;
}

.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;
}

/* Home refresh for the new desk hero artwork. */
: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;
}

#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;
}

#nwLogo::before {
    content: none;
}

#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 {
    background: transparent;
}

.visually-hidden {
    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;
}

#nwContent > .home-hero-row {
    padding: 0 0 6px !important;
}

#nwContent > .home-hero-row .column.full {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#nwContent > .home-hero-row.firstBlock:not(.centerPanel) h1:first-child {
    margin: -1px !important;
}

.home-hero-visual {
    width: min(1500px, calc(100% - 32px));
    margin: 54px auto 26px;
    overflow: hidden;
    border: 1px solid rgba(194, 226, 239, 0.9);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(18, 48, 86, 0.16);
}

#nwContent .home-hero-row .home-hero-visual {
    margin-top: 54px !important;
}

.home-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.hero {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hero-copy {
    padding: 16px 4px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-intro {
    max-width: 74ch;
    margin: 0;
    color: #0b254f;
    font-size: 1.2rem;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 24px;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
}

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

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

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

.hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-top: 24px;
}

.hero-points li {
    min-height: 74px;
    padding: 14px 16px 14px 42px;
    border: 1px solid rgba(205, 229, 243, 0.95);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(22, 72, 110, 0.06);
}

.hero-points li::before {
    left: 17px;
    top: 1.35em;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(225, 247, 255, 0.95);
}

.main-feature-stack {
    width: min(1180px, 100%);
    margin: 46px auto 0;
}

.main-feature-list {
    gap: 28px;
}

.main-feature-stack h2.standalone-feature-heading {
    margin: 0 0 11px;
    color: var(--text) !important;
    font-size: clamp(1.42rem, 2.6vw, 2.1rem);
    letter-spacing: 0;
    text-shadow: none;
}

.main-feature-panel {
    position: relative;
    overflow: hidden;
    gap: 28px;
    padding: 30px;
    border-color: rgba(205, 229, 243, 0.96);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 255, 0.96)),
        radial-gradient(circle at 100% 0%, rgba(16, 196, 212, 0.08), transparent 28%);
    box-shadow: 0 18px 40px rgba(24, 57, 98, 0.09);
}

.main-feature-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--blue), var(--teal));
}

.main-feature-kicker {
    color: #1365d9;
}

.main-feature-copy p {
    color: var(--muted);
}

.main-feature-image {
    width: min(330px, 28vw);
    border-radius: 8px;
    border-color: rgba(205, 229, 243, 0.96);
    box-shadow: 0 16px 32px rgba(24, 57, 98, 0.12);
}

.main-feature-image-small {
    max-height: 260px;
    object-fit: cover;
}

.main-feature-ai .main-feature-image {
    width: min(470px, 38vw);
}

.main-feature-ai .main-feature-image-small {
    max-height: 300px;
}

.section,
.download-panel,
.feature-card,
.reason-panel,
.step-card,
.download-box,
.faq-list details,
.legal-card,
.feedback-form-card {
    border-color: rgba(205, 229, 243, 0.96);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(24, 57, 98, 0.07);
}

.section,
.download-panel {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.92);
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 249, 235, 0.9), rgba(255, 255, 255, 0.96));
}

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

.download-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(16, 196, 212, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(229, 247, 255, 0.94), rgba(255, 249, 235, 0.94));
}

.screen-capture-overlay img {
    border-radius: 8px;
}

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

    #top {
        width: calc(100vw - 64px);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    .home-hero-visual,
    #top .hero,
    #top .main-feature-stack,
    #top .section,
    #top .download-panel {
        width: calc(100% - 28px) !important;
        max-width: 100%;
    }

    #top .hero-copy {
        padding-right: 38px;
    }

    #top .hero-points li {
        padding-right: 44px;
        font-size: 0.94rem;
    }

    #top .main-feature-panel {
        margin-right: 28px;
    }

    .home-hero-visual {
        margin-top: 34px;
        border-radius: 12px;
    }

    #nwContent .home-hero-row .home-hero-visual {
        margin-top: 34px !important;
    }

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

    #nwLogo img {
        width: 132px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-points li {
        min-height: 0;
    }

    .main-feature-panel {
        gap: 18px;
        padding: 24px;
        border-radius: 10px;
    }

    .main-feature-image,
    .main-feature-ai .main-feature-image {
        width: min(100%, 520px);
    }
}

/* Tighten website panel corners to better match Elenor's app UI. */
.home-hero-visual {
    border-radius: 12px !important;
}

.app-card,
.mail-list,
.message-row,
.preview-card,
.quote-band,
.section,
.download-panel,
.feature-card,
.reason-panel,
.step-card,
.download-box,
.faq-list details,
.legal-card,
.feedback-form-card,
.main-feature-panel,
.privacy-lock-panel,
.privacy-lock-points li,
.plan-card,
.download-card,
.notice-card {
    border-radius: 10px !important;
}

.main-feature-image,
.screen-capture,
.screen-capture-overlay img {
    border-radius: 8px !important;
}

#nwWebsite .screen-capture-trigger,
#nwWebsite .screen-capture-trigger:hover,
#nwWebsite .screen-capture-trigger:active,
#nwWebsite .screen-capture-trigger:focus {
    display: inline-block;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0;
}
