:root {
    color-scheme: light;
    --ink-950: #071b2d;
    --ink-900: #0d2235;
    --ink-800: #17334a;
    --ink-700: #334e63;
    --ink-600: #526a7d;
    --ink-500: #5b7181;
    --surface: #ffffff;
    --surface-soft: #f7faf9;
    --surface-blue: #f3f8fc;
    --line: #dce6e3;
    --line-strong: #c9d9d4;
    --brand-900: #064b3b;
    --brand-800: #075f4a;
    --brand-700: #087458;
    --brand-600: #0a8a68;
    --brand-500: #10a77d;
    --brand-200: #a9e8d3;
    --brand-100: #d9f5eb;
    --brand-50: #eefbf6;
    --blue-700: #175f9d;
    --blue-600: #2178bb;
    --blue-100: #dceefa;
    --blue-50: #f0f8fd;
    --orange-600: #c7681d;
    --orange-100: #ffead7;
    --purple-600: #7654b7;
    --purple-100: #eee7fb;
    --shadow-sm: 0 8px 22px rgba(13, 34, 53, 0.06);
    --shadow-md: 0 18px 50px rgba(13, 34, 53, 0.1);
    --shadow-lg: 0 30px 80px rgba(7, 27, 45, 0.15);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1180px;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--ink-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
summary {
    font: inherit;
}

button {
    border: 0;
}

[hidden] {
    display: none !important;
}

:where(a, button, summary):focus-visible {
    outline: 3px solid #2b8fd3;
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    transform: translateY(-160%);
    border-radius: 10px;
    background: var(--ink-950);
    color: #fff;
    padding: 10px 16px;
    font-weight: 700;
    transition: transform 160ms ease;
}

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

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 108px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--brand-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #bdf4df;
}

.eyebrow-dot,
.live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--brand-500);
    box-shadow: 0 0 0 5px rgba(16, 167, 125, 0.12);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 52px;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.audience-intro h2,
.faq-intro h2,
.pricing-copy h2,
.final-cta h2 {
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(2.1rem, 4vw, 3.45rem);
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.audience-intro > p:last-child,
.faq-intro > p:not(.eyebrow),
.workflow-copy > p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--ink-600);
    font-size: 1.08rem;
    line-height: 1.75;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    border-color: rgba(201, 217, 212, 0.82);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(7, 27, 45, 0.07);
}

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

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    border-radius: 10px;
    color: var(--ink-950);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.brand img {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(8, 116, 88, 0.16);
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 7px 16px rgba(8, 116, 88, 0.12);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.desktop-nav a,
.login-link {
    position: relative;
    border-radius: 7px;
    color: var(--ink-700);
    font-size: 0.9rem;
    font-weight: 650;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-600);
    content: "";
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.login-link:hover {
    color: var(--brand-700);
}

.desktop-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 17px;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink-900);
}

.menu-line {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-line:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-line:nth-of-type(3) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-line:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-inner {
    display: grid;
    gap: 2px;
    padding-top: 14px;
    padding-bottom: 20px;
}

.mobile-menu a:not(.button) {
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--ink-700);
    font-weight: 650;
}

.mobile-menu a:not(.button):hover {
    background: var(--brand-50);
    color: var(--brand-700);
}

/* Buttons */
.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 13px 20px;
    font-size: 0.96rem;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-small {
    min-height: 42px;
    border-radius: 11px;
    padding: 10px 15px;
    font-size: 0.82rem;
}

.button-primary {
    background: var(--brand-700);
    color: #fff;
    box-shadow: 0 10px 24px rgba(8, 116, 88, 0.2);
}

.button-primary:hover {
    background: var(--brand-800);
    box-shadow: 0 14px 30px rgba(8, 116, 88, 0.28);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink-900);
    box-shadow: 0 8px 20px rgba(13, 34, 53, 0.05);
}

.button-secondary:hover {
    border-color: #aebfba;
    background: #fff;
    box-shadow: 0 12px 28px rgba(13, 34, 53, 0.09);
}

.button-light {
    background: #fff;
    color: var(--brand-800);
    box-shadow: 0 14px 34px rgba(2, 22, 33, 0.2);
}

.button-light:hover {
    background: var(--brand-50);
    box-shadow: 0 18px 40px rgba(2, 22, 33, 0.28);
}

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

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(220, 230, 227, 0.72);
    background:
        radial-gradient(circle at 13% 20%, rgba(169, 232, 211, 0.25), transparent 31%),
        radial-gradient(circle at 86% 16%, rgba(193, 224, 245, 0.38), transparent 28%),
        linear-gradient(145deg, #fbfefd 0%, #f7fbfa 48%, #f7fbfe 100%);
    padding: 90px 0 106px;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(rgba(8, 116, 88, 0.13) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
    content: "";
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.hero-glow-one {
    top: 10%;
    left: -160px;
    width: 340px;
    height: 340px;
    background: rgba(117, 225, 189, 0.2);
}

.hero-glow-two {
    right: -120px;
    bottom: 0;
    width: 360px;
    height: 360px;
    background: rgba(110, 184, 232, 0.18);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: clamp(54px, 7vw, 94px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    color: var(--ink-950);
    font-size: clamp(3rem, 5.55vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero h1 span {
    background: linear-gradient(118deg, var(--brand-800) 8%, #0a8a68 48%, var(--blue-700) 94%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-lede {
    max-width: 650px;
    margin: 27px 0 0;
    color: var(--ink-600);
    font-size: clamp(1.08rem, 1.8vw, 1.25rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 21px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--ink-700);
    font-size: 0.83rem;
    font-weight: 650;
    list-style: none;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-points i {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 999px;
    background: var(--brand-100);
    color: var(--brand-700);
    font-size: 0.58rem;
}

.hero-enter {
    animation: rise-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter-one { animation-delay: 60ms; }
.hero-enter-two { animation-delay: 130ms; }
.hero-enter-three { animation-delay: 200ms; }
.hero-enter-four { animation-delay: 270ms; }
.hero-enter-five { animation-delay: 340ms; }
.hero-enter-visual { animation-delay: 220ms; }

@keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero product flow */
.hero-flow {
    position: relative;
    margin: 0;
}

.hero-flow::before {
    position: absolute;
    z-index: -1;
    inset: 8% 2% -5% 8%;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(126, 224, 191, 0.28), rgba(119, 187, 231, 0.25));
    content: "";
    filter: blur(32px);
}

.flow-window {
    overflow: hidden;
    border: 1px solid rgba(166, 193, 185, 0.62);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
}

.flow-window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 54px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 252, 252, 0.96);
    padding: 0 18px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cbd8d4;
}

.window-dots span:first-child { background: #f2a89b; }
.window-dots span:nth-child(2) { background: #f2d08c; }
.window-dots span:last-child { background: #86d2b9; }

.window-title {
    color: var(--ink-700);
    font-size: 0.76rem;
    font-weight: 750;
}

.example-badge {
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-500);
    padding: 4px 9px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.flow-body {
    padding: 20px;
}

.project-status,
.sequence-panel,
.activity-strip {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.project-status {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
}

.status-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-100);
    color: var(--brand-700);
}

.status-icon-dark {
    background: var(--ink-950);
    color: #fff;
}

.flow-label {
    display: block;
    margin-bottom: 2px;
    color: var(--ink-500);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.project-status strong,
.panel-heading strong {
    display: block;
    color: var(--ink-950);
    font-size: 0.88rem;
    line-height: 1.25;
}

.project-status small,
.panel-heading small {
    display: block;
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 0.68rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: max-content;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1;
}

.status-complete {
    border-color: #bce8d8;
    background: var(--brand-50);
    color: var(--brand-800);
}

.status-active {
    border-color: #c9e4f5;
    background: var(--blue-50);
    color: var(--blue-700);
}

.flow-connector {
    position: relative;
    width: 2px;
    height: 18px;
    margin-left: 34px;
    background: var(--line-strong);
}

.flow-connector span {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-500);
    transform: translateX(-50%);
}

.sequence-panel {
    overflow: hidden;
    padding: 13px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 1px 2px 10px;
}

.sequence-row {
    display: grid;
    grid-template-columns: 57px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    border-top: 1px solid #edf2f0;
    color: var(--ink-700);
    padding: 7px 5px;
    font-size: 0.72rem;
    font-weight: 670;
}

.sequence-row-current {
    margin-inline: -3px;
    border-top-color: transparent;
    border-radius: 9px;
    background: var(--brand-50);
    color: var(--brand-900);
    padding-inline: 8px;
}

.day-chip {
    width: max-content;
    border-radius: 6px;
    background: var(--ink-950);
    color: #fff;
    padding: 3px 6px;
    font-size: 0.58rem;
    font-weight: 800;
}

.sequence-row i {
    color: var(--ink-500);
    font-size: 0.68rem;
}

.sequence-row-current i {
    color: var(--brand-600);
}

.activity-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 11px;
    padding: 12px;
}

.activity-item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.activity-item > span:last-child {
    min-width: 0;
}

.activity-item strong,
.activity-item small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-item strong {
    color: var(--ink-900);
    font-size: 0.67rem;
}

.activity-item small {
    color: var(--ink-500);
    font-size: 0.56rem;
}

.activity-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 9px;
    font-size: 0.66rem;
}

.activity-sent {
    background: var(--brand-100);
    color: var(--brand-700);
}

.activity-reply {
    background: var(--blue-100);
    color: var(--blue-700);
}

.activity-arrow {
    color: #aebdb8;
    font-size: 0.68rem;
}

.hero-flow figcaption,
.workflow-illustration figcaption {
    margin: 12px 8px 0;
    color: var(--ink-500);
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: center;
}

.flow-entrance {
    animation: flow-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.flow-delay-one { animation-delay: 460ms; }
.flow-delay-two { animation-delay: 570ms; }
.flow-delay-three { animation-delay: 680ms; }

@keyframes flow-in {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Message timeline */
.messages-section {
    background: #fff;
}

.message-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.message-timeline::before {
    position: absolute;
    top: 35px;
    right: calc(16.67% - 8px);
    left: calc(16.67% - 8px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand-200), #b9dceF, var(--brand-200));
    content: "";
}

.timeline-item {
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 7px solid #fff;
    border-radius: 999px;
    background: var(--ink-950);
    color: #fff;
    box-shadow: 0 0 0 1px var(--line), 0 11px 28px rgba(7, 27, 45, 0.12);
}

.timeline-marker span {
    font-size: 0.82rem;
    font-weight: 850;
}

.timeline-marker i {
    position: absolute;
    right: -6px;
    bottom: -5px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--brand-500);
    font-size: 0.58rem;
}

.timeline-card {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
    padding: 27px;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-day {
    margin: 0 0 8px;
    color: var(--brand-700);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 0;
    color: var(--ink-950);
    font-size: 1.28rem;
    letter-spacing: -0.02em;
}

.timeline-card > p:not(.timeline-day) {
    margin: 13px 0 24px;
    color: var(--ink-600);
    font-size: 0.93rem;
    line-height: 1.7;
}

.message-purpose {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--brand-50);
    color: var(--brand-800);
    padding: 7px 10px;
    font-size: 0.69rem;
    font-weight: 750;
}

@media (hover: hover) {
    .timeline-card:hover,
    .feature-card:hover,
    .audience-card:hover {
        transform: translateY(-4px);
        border-color: var(--line-strong);
        box-shadow: var(--shadow-md);
    }
}

.motion-ready .timeline-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 500ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .message-timeline.is-visible .timeline-item {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .message-timeline.is-visible .timeline-item:nth-child(2) {
    transition-delay: 110ms;
}

.motion-ready .message-timeline.is-visible .timeline-item:nth-child(3) {
    transition-delay: 220ms;
}

/* Workflow */
.workflow-section {
    border-block: 1px solid rgba(220, 230, 227, 0.78);
    background:
        radial-gradient(circle at 92% 20%, rgba(183, 220, 244, 0.33), transparent 25%),
        linear-gradient(180deg, #f7fbfa 0%, #f4f9f8 100%);
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
    align-items: center;
    gap: clamp(52px, 8vw, 105px);
}

.workflow-steps {
    display: grid;
    gap: 22px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.workflow-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 15px;
}

.workflow-steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #b8dbcf;
    border-radius: 11px;
    background: #fff;
    color: var(--brand-800);
    font-size: 0.78rem;
    font-weight: 850;
    box-shadow: 0 7px 18px rgba(8, 116, 88, 0.08);
}

.workflow-steps strong {
    display: block;
    color: var(--ink-950);
    font-size: 0.98rem;
}

.workflow-steps p {
    margin: 3px 0 0;
    color: var(--ink-600);
    font-size: 0.86rem;
    line-height: 1.62;
}

.workflow-illustration {
    position: relative;
    margin: 0;
}

.illustration-label {
    position: absolute;
    z-index: 3;
    top: -17px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #bcd9cf;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-800);
    padding: 8px 12px;
    font-size: 0.67rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.workflow-board {
    overflow: hidden;
    border: 1px solid rgba(177, 199, 192, 0.82);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.board-topbar {
    display: flex;
    min-height: 59px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fbfcfc;
    padding: 0 18px;
}

.board-topbar > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.board-topbar strong {
    font-size: 0.78rem;
}

.board-logo-mark {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-800);
    color: #fff;
    font-size: 0.66rem;
}

.board-project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: linear-gradient(120deg, #fbfdfc, #f5faf8);
    padding: 13px 15px;
}

.board-project strong,
.board-project small {
    display: block;
}

.board-project strong {
    color: var(--ink-950);
    font-size: 0.8rem;
}

.board-project small {
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 0.63rem;
}

.board-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 8px;
    margin: 0 16px;
}

.board-stage {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    padding: 13px 7px;
    text-align: center;
}

.board-stage-highlight {
    border-color: #aedaCA;
    background: var(--brand-50);
}

.board-stage-icon {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 10px;
    background: #edf3f1;
    color: var(--ink-700);
    font-size: 0.72rem;
}

.board-stage-highlight .board-stage-icon {
    background: var(--brand-700);
    color: #fff;
}

.board-stage strong {
    margin-top: 7px;
    color: var(--ink-900);
    font-size: 0.66rem;
}

.board-stage small {
    margin-top: 2px;
    color: var(--ink-500);
    font-size: 0.52rem;
    line-height: 1.35;
}

.board-chevron {
    align-self: center;
    color: #aabbb6;
    font-size: 0.58rem;
}

.board-activity {
    margin: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
}

.activity-heading {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: space-between;
    background: #f8faf9;
    padding: 0 13px;
}

.activity-heading strong {
    font-size: 0.68rem;
}

.activity-heading span {
    border-radius: 999px;
    background: #fff;
    color: var(--ink-500);
    padding: 3px 7px;
    font-size: 0.53rem;
    font-weight: 750;
}

.activity-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    border-top: 1px solid #edf2f0;
    padding: 7px 12px;
}

.activity-row-upcoming {
    background: #fbfdfc;
}

.activity-row strong,
.activity-row small {
    display: block;
}

.activity-row strong {
    color: var(--ink-900);
    font-size: 0.66rem;
}

.activity-row small {
    margin-top: 1px;
    color: var(--ink-500);
    font-size: 0.54rem;
}

.activity-row time,
.row-context {
    color: var(--ink-500);
    font-size: 0.55rem;
    font-weight: 700;
}

.activity-check {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-100);
    color: var(--brand-700);
    font-size: 0.59rem;
}

.activity-check-blue {
    background: var(--blue-100);
    color: var(--blue-700);
}

.activity-check-muted {
    background: #edf1f0;
    color: var(--ink-500);
}

/* Features */
.features-section {
    background: #fff;
}

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

.feature-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card-accent {
    background: linear-gradient(155deg, var(--ink-950), #123b42);
    color: #fff;
}

.feature-icon {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 14px;
    background: var(--brand-100);
    color: var(--brand-700);
    font-size: 1.05rem;
}

.feature-card-accent .feature-icon {
    background: rgba(144, 235, 204, 0.14);
    color: #8ce2c5;
}

.feature-icon-blue {
    background: var(--blue-100);
    color: var(--blue-700);
}

.feature-icon-orange {
    background: var(--orange-100);
    color: var(--orange-600);
}

.feature-icon-purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    margin: 0;
    color: #60786f;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.feature-card-accent .feature-number {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
    margin: 26px 0 0;
    color: var(--ink-950);
    font-size: 1.18rem;
    letter-spacing: -0.025em;
}

.feature-card-accent h3 {
    color: #fff;
}

.feature-card > p:not(.feature-number) {
    margin: 12px 0 20px;
    color: var(--ink-600);
    font-size: 0.86rem;
    line-height: 1.7;
}

.feature-card-accent > p:not(.feature-number) {
    color: #bdd0d1;
}

.feature-detail {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--ink-700);
    padding: 6px 9px;
    font-size: 0.62rem;
    font-weight: 750;
    line-height: 1.35;
}

.feature-card-accent .feature-detail {
    background: rgba(255, 255, 255, 0.09);
    color: #cce0df;
}

/* Audience */
.audience-section {
    border-block: 1px solid rgba(220, 230, 227, 0.72);
    background: var(--surface-soft);
}

.audience-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: clamp(50px, 7vw, 92px);
}

.audience-intro {
    position: sticky;
    top: 116px;
}

.audience-cards {
    display: grid;
    gap: 19px;
}

.audience-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.audience-card-blue {
    background: linear-gradient(145deg, #fff, var(--blue-50));
}

.audience-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: var(--ink-950);
    color: #fff;
    box-shadow: 0 12px 26px rgba(7, 27, 45, 0.15);
}

.audience-card-blue .audience-icon {
    background: var(--blue-700);
}

.audience-label {
    margin: 0 0 6px;
    color: var(--brand-700);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.audience-card-blue .audience-label {
    color: var(--blue-700);
}

.audience-card h3 {
    margin: 0;
    color: var(--ink-950);
    font-size: 1.38rem;
    letter-spacing: -0.025em;
}

.audience-card > div > p:not(.audience-label) {
    margin: 10px 0 18px;
    color: var(--ink-600);
    font-size: 0.88rem;
    line-height: 1.67;
}

.audience-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    color: var(--ink-700);
    font-size: 0.78rem;
    font-weight: 650;
    list-style: none;
}

.audience-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-card li i {
    color: var(--brand-600);
    font-size: 0.65rem;
}

/* Pricing strip */
.pricing-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}

.pricing-panel {
    position: relative;
    isolation: isolate;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--brand-900), #0a6556 55%, #155b82);
    padding: 54px 58px;
    box-shadow: 0 26px 65px rgba(6, 75, 59, 0.24);
}

.pricing-panel::before {
    position: absolute;
    z-index: -1;
    top: -120px;
    right: -80px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.03), 0 0 0 105px rgba(255, 255, 255, 0.02);
    content: "";
}

.pricing-copy {
    max-width: 650px;
}

.pricing-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.pricing-copy > p:last-child {
    margin: 16px 0 0;
    color: #c5e2da;
}

.pricing-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    align-items: flex-end;
    flex-direction: column;
    gap: 13px;
}

.trial-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8f4eb;
    font-size: 0.8rem;
    font-weight: 750;
}

/* FAQ */
.faq-section {
    background: var(--surface-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.64fr 1.36fr;
    align-items: start;
    gap: clamp(55px, 8vw, 110px);
}

.faq-intro {
    position: sticky;
    top: 116px;
}

.faq-intro > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    border-radius: 7px;
    color: var(--brand-700);
    font-size: 0.86rem;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 19px rgba(13, 34, 53, 0.04);
}

.faq-list details[open] {
    border-color: #b8d4cb;
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    display: flex;
    min-height: 66px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink-950);
    padding: 18px 20px;
    font-size: 0.98rem;
    font-weight: 750;
    list-style: none;
}

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

.faq-list summary:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 3px #2b8fd3;
}

.faq-list summary i {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--brand-50);
    color: var(--brand-700);
    font-size: 0.65rem;
    transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary i {
    background: var(--brand-700);
    color: #fff;
    transform: rotate(45deg);
}

.faq-list details > p {
    margin: -3px 64px 20px 20px;
    color: var(--ink-600);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--ink-950);
    color: #fff;
    padding: 105px 0;
}

.final-cta::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.65px, transparent 0.65px);
    background-size: 19px 19px;
    content: "";
    opacity: 0.18;
}

.cta-glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: 50%;
    width: 740px;
    height: 470px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(16, 167, 125, 0.35), transparent 67%);
    transform: translateX(-50%);
}

.final-cta-inner {
    text-align: center;
}

.final-cta h2 {
    max-width: 850px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.final-cta-inner > p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px auto 0;
    color: #bdd0d1;
    font-size: 1.05rem;
}

.final-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.text-link-light {
    border-radius: 6px;
    color: #d5e6e5;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(213, 230, 229, 0.45);
    text-underline-offset: 5px;
}

.text-link-light:hover {
    color: #fff;
    text-decoration-color: #fff;
}

/* Footer */
.site-footer {
    background: #041522;
    color: #fff;
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
}

.brand-footer {
    color: #fff;
}

.footer-brand > p {
    max-width: 350px;
    margin: 18px 0 0;
    color: #93a8b6;
    font-size: 0.87rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links > div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer-links h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    border-radius: 5px;
    color: #93a8b6;
    font-size: 0.82rem;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 24px;
    color: #778e9c;
    font-size: 0.74rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1120px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 0.82rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
        gap: 45px;
    }

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

    .feature-card {
        min-height: 270px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-grid,
    .workflow-layout,
    .audience-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 65px;
    }

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

    .hero h1 {
        max-width: 760px;
    }

    .hero-flow {
        width: min(650px, 100%);
        margin-inline: auto;
    }

    .workflow-layout {
        gap: 62px;
    }

    .workflow-copy {
        max-width: 720px;
    }

    .workflow-illustration {
        width: min(720px, 100%);
        margin-inline: auto;
    }

    .audience-intro,
    .faq-intro {
        position: static;
        max-width: 720px;
    }

    .footer-grid {
        grid-template-columns: 0.65fr 1.35fr;
        gap: 45px;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(var(--container), calc(100% - 36px));
    }

    .section {
        padding: 82px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .desktop-cta {
        display: none;
    }

    .hero {
        padding: 64px 0 82px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 12vw, 4.25rem);
    }

    .message-timeline {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .message-timeline::before {
        top: 36px;
        bottom: 36px;
        left: 35px;
        width: 2px;
        height: auto;
        background: linear-gradient(var(--brand-200), #b9dcef, var(--brand-200));
    }

    .timeline-item {
        display: grid;
        grid-template-columns: 70px 1fr;
        align-items: start;
        gap: 20px;
    }

    .timeline-marker {
        margin: 0;
    }

    .timeline-card {
        min-height: 0;
    }

    .pricing-panel {
        align-items: flex-start;
        flex-direction: column;
        padding: 44px 38px;
    }

    .pricing-actions {
        align-items: flex-start;
    }

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

@media (max-width: 600px) {
    html {
        scroll-padding-top: 76px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .section {
        padding: 70px 0;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

    .brand {
        font-size: 1.03rem;
    }

    .login-link {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 13vw, 3.65rem);
        line-height: 1.01;
    }

    .hero-lede {
        font-size: 1.02rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button,
    .mobile-menu .button,
    .final-cta .button {
        width: 100%;
    }

    .trust-points {
        display: grid;
    }

    .flow-window-bar {
        grid-template-columns: 1fr auto;
    }

    .window-title {
        display: none;
    }

    .flow-body {
        padding: 14px;
    }

    .project-status {
        grid-template-columns: auto 1fr;
    }

    .project-status > .status-pill {
        grid-column: 2;
    }

    .activity-strip {
        grid-template-columns: 1fr;
    }

    .activity-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .timeline-item {
        grid-template-columns: 58px 1fr;
        gap: 14px;
    }

    .timeline-marker {
        width: 58px;
        height: 58px;
        border-width: 6px;
    }

    .message-timeline::before {
        top: 29px;
        bottom: 29px;
        left: 29px;
    }

    .timeline-card {
        padding: 22px;
    }

    .board-project {
        align-items: flex-start;
        flex-direction: column;
    }

    .board-flow {
        grid-template-columns: 1fr;
    }

    .board-chevron {
        transform: rotate(90deg);
    }

    .activity-row {
        grid-template-columns: auto 1fr;
    }

    .activity-row > :last-child {
        grid-column: 2;
        justify-self: start;
    }

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

    .feature-card {
        min-height: 0;
    }

    .audience-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .pricing-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .pricing-panel {
        gap: 34px;
        padding: 36px 24px;
    }

    .pricing-actions,
    .pricing-actions .button {
        width: 100%;
    }

    .faq-list summary {
        padding: 17px;
        font-size: 0.9rem;
    }

    .faq-list details > p {
        margin-right: 20px;
        margin-left: 17px;
    }

    .final-cta {
        padding: 82px 0;
    }

    .final-cta-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .header-actions {
        gap: 8px;
    }

    .brand {
        gap: 8px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .message-timeline::before {
        display: none;
    }

    .timeline-marker {
        margin-left: 3px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .hero-enter,
    .flow-entrance,
    .motion-ready .timeline-item,
    .motion-ready .message-timeline.is-visible .timeline-item {
        opacity: 1;
        transform: none;
    }
}
