* {
    box-sizing: border-box;
}

:root {
    --primary: #47A0BB;
    --secondary: #2C6677;
    --accent-coral: #FF7A59;
    --accent-gold: #F5B84B;
    --accent-green: #36B37E;
    --accent-indigo: #5967D8;
    --ink: #12323C;
    --muted: #5B6E75;
    --line: rgba(44, 102, 119, 0.16);
    --soft: #EAF6F9;
    --surface: rgba(255, 255, 255, 0.86);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: #f7fbfc;
    color: var(--ink);
    font-family: "Inter", Helvetica, Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

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


.footer-panel {
    font-weight: 400;
    font-size: 16px;
}

.footer-panel-start {
    max-width: 400px;
}

/* Hero Texts */


.hero-title {
    position: relative;
    display: inline-block;
    font-size: clamp(3.2rem, 8vw, 5.7rem);
    line-height: 1;
    transition: opacity 1s ease, transform 1s ease;
    min-height: 480px;
}

.hero-title-changing {
    opacity: 0;
    transform: translateY(8px);
}

.hero-title::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background-image:
            linear-gradient(45deg, rgba(255,255,255,0.85) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(255,255,255,0.85) 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.85) 75%),
            linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.85) 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0;
}

.hero-title-changing::after {
    animation: checker-dissolve 1s ease forwards;
}

@keyframes checker-dissolve {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.02);
    }
}

/* End */

button,
.mud-button-root {
    letter-spacing: 0;
}

.landing-shell {
    position: relative;
    min-height: 92vh;
    padding: 24px clamp(18px, 4vw, 64px) 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 55% 4%, rgba(245, 184, 75, 0.2), transparent 20%),
        radial-gradient(circle at 12% 18%, rgba(71, 160, 187, 0.28), transparent 28%),
        radial-gradient(circle at 78% 70%, rgba(255, 122, 89, 0.16), transparent 22%),
        radial-gradient(circle at 86% 12%, rgba(44, 102, 119, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(234, 246, 249, 0.96), rgba(255, 255, 255, 0.94) 48%, rgba(250, 239, 218, 0.72));
}

.privacy-shell {
    position: relative;
    padding: 24px clamp(18px, 4vw, 64px) clamp(54px, 7vw, 92px);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(71, 160, 187, 0.22), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(245, 184, 75, 0.18), transparent 24%),
        radial-gradient(circle at 76% 82%, rgba(255, 122, 89, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(234, 246, 249, 0.96), rgba(255, 255, 255, 0.94) 56%, rgba(250, 239, 218, 0.72));
}

.privacy-shell::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -180px;
    top: 72px;
    border: 1px solid rgba(71, 160, 187, 0.18);
    border-radius: 34% 66% 58% 42%;
    transform: rotate(-12deg);
    pointer-events: none;
}

.landing-shell::before,
.landing-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    border: 1px solid rgba(71, 160, 187, 0.18);
    transform: rotate(-12deg);
    pointer-events: none;
}

.landing-shell::before {
    width: 680px;
    height: 680px;
    right: -190px;
    top: 118px;
    border-radius: 34% 66% 58% 42%;
}

.landing-shell::after {
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: 24px;
    border-radius: 60% 40% 35% 65%;
    background: rgba(71, 160, 187, 0.05);
}

.site-header,
.hero-section,
.privacy-hero,
.section,
.privacy-main,
.workflow-content,
.cta-band,
.site-footer {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.privacy-hero {
    position: relative;
    z-index: 1;
    padding-top: clamp(62px, 9vw, 122px);
}

.privacy-hero h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 6.5vw, 5.9rem);
}

.privacy-hero p {
    max-width: 700px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.68;
}

.site-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.16rem;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary) 64%, var(--accent-coral));
    box-shadow: 0 16px 36px rgba(44, 102, 119, 0.22);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    color: var(--muted);
    font-weight: 650;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-cta {
    border-radius: 8px;
}

.hero-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(36px, 6vw, 82px);
    padding-top: clamp(52px, 9vw, 116px);
}

.hero-chip {
    margin-bottom: 22px;
    font-weight: 700;
    background: rgba(255, 122, 89, 0.12);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1:focus {
    outline: none;
}

h1 {
    max-width: 750px;
    margin-bottom: 24px;
    color: var(--ink);
    font-size: clamp(3.15rem, 5rem, 5.45rem) !important;
    line-height: 0.96 !important;
    letter-spacing: 0;
}

.hero-lede {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.68;
}

.header-actions {
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-actions .mud-button-root,
.cta-band .mud-button-root {
    min-height: 50px;
    border-radius: 8px;
    font-weight: 800;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 720px;
    margin: 0;
}

.hero-stats div {
    padding: 17px 18px;
    border: 1px solid rgba(71, 160, 187, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
    backdrop-filter: blur(18px);
}

.hero-stats div:nth-child(1) {
    border-top: 3px solid var(--accent-green);
}

.hero-stats div:nth-child(2) {
    border-top: 3px solid var(--accent-gold);
}

.hero-stats div:nth-child(3) {
    border-top: 3px solid var(--accent-coral);
}

.hero-stats dt {
    margin-bottom: 5px;
    color: var(--secondary);
    font-weight: 850;
    font-size: 1.05rem;
}

.hero-stats dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.product-stage {
    position: relative;
    min-height: 560px;
}

.dashboard-preview {
    position: absolute;
    inset: 28px 0 auto auto;
    width: min(100%, 650px);
    min-height: 420px;
    padding: 18px;
    border: 1px solid rgba(44, 102, 119, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 32px 84px rgba(44, 102, 119, 0.2);
    backdrop-filter: blur(24px);
}

.preview-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.preview-topbar span:nth-child(2) {
    background: var(--accent-gold);
}

.preview-topbar span:nth-child(3) {
    background: var(--accent-coral);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.metric-panel,
.chart-panel,
.task-panel {
    min-height: 130px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.metric-panel {
    padding: 20px;
}

.metric-panel span,
.signal-panel span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.metric-panel strong,
.signal-panel strong {
    display: block;
    margin: 10px 0 5px;
    color: var(--secondary);
    font-size: 2.15rem;
}

.metric-panel small {
    color: var(--accent-green);
    font-weight: 750;
}

.chart-panel {
    display: flex;
    grid-column: 1 / -1;
    align-items: end;
    gap: 12px;
    padding: 22px;
    min-height: 160px;
    background:
        radial-gradient(circle at 90% 18%, rgba(245, 184, 75, 0.18), transparent 28%),
        linear-gradient(180deg, #fff, #eff9fb);
}

.chart-panel span {
    flex: 1;
    min-width: 32px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.chart-panel span:nth-child(2) {
    background: linear-gradient(180deg, var(--accent-gold), #E7942E);
}

.chart-panel span:nth-child(4) {
    background: linear-gradient(180deg, var(--accent-coral), #D95B3D);
}

.task-panel {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
    min-height: 0;
    padding: 18px;
}

.task-panel div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
}

.phone-preview {
    position: absolute;
    right: clamp(16px, 3vw, 56px);
    bottom: -8px;
    width: min(38vw, 270px);
    filter: drop-shadow(0 34px 62px rgba(18, 50, 60, 0.3));
}

.phone-preview::before {
    content: "";
    position: absolute;
    inset: 18% -16% 12% -16%;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 122, 89, 0.26), transparent 48%),
        radial-gradient(circle at 70% 30%, rgba(245, 184, 75, 0.22), transparent 38%);
    filter: blur(6px);
}

.phone-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 34px;
}

.section {
    padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 0px);
}

.privacy-main {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 0px) clamp(72px, 8vw, 108px);
}

.privacy-document {
    position: relative;
    max-width: 920px;
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 95% 0%, rgba(54, 179, 126, 0.08), transparent 24%),
        linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.92));
    box-shadow: 0 26px 70px rgba(44, 102, 119, 0.1);
}

.privacy-document::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--accent-green), var(--accent-gold), var(--accent-coral));
}

.privacy-document h2 {
    margin: 42px 0 14px;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.privacy-document p,
.privacy-document li,
.privacy-table {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.76;
}

.privacy-document p {
    margin-bottom: 18px;
}

.privacy-document a {
    color: var(--secondary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(71, 160, 187, 0.35);
    text-underline-offset: 3px;
}

.privacy-document ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 24px;
    padding: 0;
    list-style: none;
}

.privacy-document li {
    position: relative;
    padding-left: 28px;
}

.privacy-document li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

/*
.privacy-document li:nth-child(3n + 2)::before {
    background: var(--accent-gold);
}

.privacy-document li:nth-child(3n)::before {
    background: var(--accent-coral);
}
*/

.privacy-table-wrap {
    overflow-x: auto;
    margin: 20px 0 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.privacy-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #fff;
}

.privacy-table th,
.privacy-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(44, 102, 119, 0.12);
    text-align: left;
    vertical-align: top;
}

.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
    border-bottom: 0;
}

.privacy-table th {
    width: 32%;
    color: var(--ink);
    background: rgba(234, 246, 249, 0.72);
    font-weight: 850;
}

.privacy-table p {
    margin: 0 0 10px;
}

.privacy-table p:last-child {
    margin-bottom: 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 42px;
}

.section-heading span,
.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h2 {
    color: var(--ink);
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
}

.section-heading p,
.workflow-content p,
.insight-copy p,
.cta-band p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.72;
}

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

.feature-card,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(44, 102, 119, 0.08);
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
    background: linear-gradient(180deg, #fff, rgba(54, 179, 126, 0.08));
}

.feature-card:nth-child(2)::before,
.feature-card:nth-child(5)::before {
    background: linear-gradient(90deg, var(--accent-green), var(--primary));
}

.feature-card:nth-child(3) {
    background: linear-gradient(180deg, #fff, rgba(245, 184, 75, 0.12));
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-coral));
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--accent-indigo), var(--primary));
}

.feature-card:nth-child(6) {
    background: linear-gradient(180deg, #fff, rgba(255, 122, 89, 0.09));
}

.feature-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--accent-coral), var(--accent-gold));
}

.feature-card .mud-icon-root {
    margin-bottom: 22px;
    font-size: 2.2rem;
}

.feature-card:nth-child(1) .mud-icon-root {
    color: var(--primary) !important;
}

.feature-card:nth-child(2) .mud-icon-root {
    color: var(--accent-green) !important;
}

.feature-card:nth-child(3) .mud-icon-root {
    color: var(--accent-gold) !important;
}

.feature-card:nth-child(4) .mud-icon-root {
    color: var(--accent-indigo) !important;
}

.feature-card:nth-child(5) .mud-icon-root {
    color: var(--primary) !important;
}

.feature-card:nth-child(6) .mud-icon-root {
    color: var(--accent-coral) !important;
}

.feature-card h3,
.workflow-steps h3,
.pricing-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.22rem;
}

.feature-card p,
.workflow-steps p,
.pricing-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.workflow-band {
    position: relative;
    padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 64px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(118deg, rgba(255, 122, 89, 0.2), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(255, 122, 89, 0.3), transparent 24%),
        radial-gradient(circle at 18% 88%, rgba(245, 184, 75, 0.28), transparent 24%),
        radial-gradient(circle at 62% 92%, rgba(54, 179, 126, 0.2), transparent 24%),
        linear-gradient(135deg, rgba(44, 102, 119, 0.98), rgba(23, 70, 84, 0.98));
}

.workflow-band::before,
.workflow-band::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.workflow-band::before {
    width: 560px;
    height: 560px;
    right: -180px;
    top: -190px;
    border: 1px solid rgba(245, 184, 75, 0.2);
    border-radius: 42% 58% 64% 36%;
    transform: rotate(18deg);
}

.workflow-band::after {
    left: max(18px, calc((100% - 1180px) / 2));
    right: max(18px, calc((100% - 1180px) / 2));
    bottom: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.workflow-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.workflow-content::before {
    content: "";
    position: absolute;
    width: 168px;
    height: 168px;
    left: 35%;
    top: -22px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(245, 184, 75, 0.2), rgba(255, 122, 89, 0.08));
    transform: rotate(10deg);
    z-index: -1;
}

.workflow-content h2,
.cta-band h2 {
    color: #fff;
}

.workflow-content p,
.cta-band p {
    color: rgba(255, 255, 255, 0.78);
}

.workflow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.workflow-steps::before {
    content: "";
    position: absolute;
    inset: 28px;
    z-index: -1;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.18) calc(50% - 1px), rgba(255, 255, 255, 0.18) calc(50% + 1px), transparent calc(50% + 1px)),
        linear-gradient(180deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.18) calc(50% - 1px), rgba(255, 255, 255, 0.18) calc(50% + 1px), transparent calc(50% + 1px));
}

.workflow-steps article {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 46px rgba(10, 38, 47, 0.16);
    backdrop-filter: blur(14px);
}

.workflow-steps article::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(71, 160, 187, 0.22);
}

.workflow-steps article:nth-child(1) {
    border-color: rgba(245, 184, 75, 0.34);
}

.workflow-steps article:nth-child(1)::after {
    background: rgba(245, 184, 75, 0.24);
}

.workflow-steps article:nth-child(2) {
    border-color: rgba(54, 179, 126, 0.34);
}

.workflow-steps article:nth-child(2)::after {
    background: rgba(54, 179, 126, 0.22);
}

.workflow-steps article:nth-child(3) {
    border-color: rgba(255, 122, 89, 0.38);
}

.workflow-steps article:nth-child(3)::after {
    background: rgba(255, 122, 89, 0.22);
}

.workflow-steps article:nth-child(4) {
    border-color: rgba(89, 103, 216, 0.36);
}

.workflow-steps article:nth-child(4)::after {
    background: rgba(89, 103, 216, 0.22);
}

.workflow-steps span {
    position: relative;
    z-index: 1;
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 8px;
    color: var(--secondary);
    background: linear-gradient(135deg, #fff, #fff3dc);
    font-weight: 900;
}

.workflow-steps article:nth-child(1) span {
    color: #8A5A00;
    background: linear-gradient(135deg, #FFF6DD, var(--accent-gold));
}

.workflow-steps article:nth-child(2) span {
    color: #0F5B43;
    background: linear-gradient(135deg, #E7FFF3, var(--accent-green));
}

.workflow-steps article:nth-child(3) span {
    color: #7F2F1E;
    background: linear-gradient(135deg, #FFF0EA, var(--accent-coral));
}

.workflow-steps article:nth-child(4) span {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-indigo), var(--primary));
}

.workflow-steps h3,
.workflow-steps p {
    color: #fff;
}

.workflow-steps p {
    color: rgba(255, 255, 255, 0.74);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
}

.insight-copy ul {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.insight-copy li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-weight: 700;
}

.insight-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-coral);
}

.signal-panel {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 90% 12%, rgba(54, 179, 126, 0.14), transparent 28%),
        linear-gradient(180deg, #fff, #eef9fb);
    box-shadow: 0 24px 60px rgba(44, 102, 119, 0.12);
}

.signal-panel div {
    padding: 24px;
    border-radius: 8px;
    background: #fff;
}

.pricing-section {
    padding-top: 38px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 30px;
}

.pricing-card.featured {
    border-color: rgba(255, 122, 89, 0.58);
    box-shadow: 0 32px 82px rgba(255, 122, 89, 0.16);
    transform: translateY(-12px);
}

.plan-badge {
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 8px 11px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-coral), #D95B3D);
    font-size: 0.78rem;
    font-weight: 850;
}

.price {
    margin: 26px 0;
    color: var(--secondary);
    font-size: 2.25rem;
    font-weight: 900;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink);
    font-weight: 650;
}

.pricing-card li .mud-icon-root {
    margin-top: 2px;
    color: var(--accent-green);
}

.pricing-card .mud-button-root {
    margin-top: auto;
    min-height: 46px;
    border-radius: 8px;
    font-weight: 850;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 86px;
    padding: clamp(34px, 5vw, 58px);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 12%, rgba(245, 184, 75, 0.34), transparent 30%),
        radial-gradient(circle at 18% 100%, rgba(255, 122, 89, 0.24), transparent 34%),
        linear-gradient(135deg, #183d49, var(--secondary));
    box-shadow: 0 28px 70px rgba(44, 102, 119, 0.18);
}

.cta-band div {
    max-width: 780px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px clamp(18px, 4vw, 0px) 42px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    text-align: right;
}

.footer-links a {
    color: var(--secondary);
    font-weight: 850;
}

.site-footer span {
    color: var(--secondary);
    font-weight: 900;
}

.site-footer p {
    margin: 0;
}

#blazor-error-ui {
    bottom: 0;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #fff;
    background: #b32121;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 980px) {
    .nav-links {
        /* display: none !important; */
    }

    .hero-section,
    .workflow-content,
    .split-section {
        grid-template-columns: 1fr;
    }

    .product-stage {
        min-height: 560px;
    }

    .dashboard-preview {
        left: 0;
        right: auto;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .landing-shell {
        min-height: 0;
        padding-bottom: 48px;
    }

    .site-header {
        gap: 14px;
    }

    .brand span:last-child {
        font-size: 1rem;
    }
    
    .hero-title {
        min-height: unset;
    }

    .nav-cta {
        display: none;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .hero-stats,
    .feature-grid,
    .pricing-grid,
    .workflow-steps,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .product-stage {
        min-height: 660px;
    }

    .dashboard-preview {
        position: relative;
        inset: auto;
        min-height: 0;
    }

    .phone-preview {
        right: 50%;
        bottom: 0;
        width: min(76vw, 260px);
        transform: translateX(50%);
    }

    .chart-panel,
    .task-panel {
        grid-column: auto;
    }

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

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }

    .privacy-document {
        padding: 26px 20px;
    }

    .privacy-table {
        min-width: 560px;
    }
}
