.landing-page {
    --landing-bg-top: radial-gradient(circle at top left, rgba(111, 45, 187, 0.22), transparent 34%);
    --landing-bg-right: radial-gradient(circle at top right, rgba(0, 212, 255, 0.18), transparent 28%);
    --landing-bg-bottom: radial-gradient(circle at bottom center, rgba(56, 189, 248, 0.12), transparent 32%);
    --landing-surface: rgba(11, 14, 28, 0.78);
    --landing-surface-strong: rgba(15, 19, 37, 0.96);
    --landing-border: rgba(148, 163, 184, 0.16);
    --landing-border-strong: rgba(129, 140, 248, 0.28);
    --landing-shadow: 0 24px 80px rgba(2, 8, 23, 0.45);
    --landing-text-soft: #94a3b8;
    --landing-text-strong: #f8fafc;
    --landing-accent: linear-gradient(135deg, #7c3aed 0%, #2563eb 55%, #22d3ee 100%);
    background:
        var(--landing-bg-top),
        var(--landing-bg-right),
        var(--landing-bg-bottom),
        linear-gradient(180deg, #050816 0%, #090d1d 36%, #050816 100%);
    color: var(--landing-text-strong);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page img {
    max-width: 100%;
    height: auto;
}

.landing-page a {
    color: inherit;
}

.landing-shell {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.landing-shell::before,
.landing-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.35;
}

.landing-shell::before {
    top: -140px;
    left: -120px;
    background: rgba(124, 58, 237, 0.55);
}

.landing-shell::after {
    right: -120px;
    top: 220px;
    background: rgba(34, 211, 238, 0.34);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section--compact {
    padding: 84px 0;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.landing-utility {
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.landing-utility__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-utility__text {
    color: #cbd5e1;
    font-size: 13px;
}

.landing-utility__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.landing-utility__links a {
    color: #dbeafe;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.landing-utility__links a:hover {
    color: #fff;
}

.landing-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
}

.landing-header__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
}

.landing-brand__mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--landing-accent);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.landing-brand__text {
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.landing-nav a {
    text-decoration: none;
    color: var(--landing-text-soft);
    font-size: 14px;
    transition: color 0.18s ease;
}

.landing-nav a:hover {
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--landing-accent);
    color: #fff;
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.42), 0 0 24px rgba(99, 102, 241, 0.24);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.btn-secondary:hover {
    border-color: rgba(96, 165, 250, 0.48);
    background: rgba(15, 23, 42, 0.56);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
}

.btn-secondary--soft {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero {
    padding-top: 72px;
}

.hero .container {
    width: min(1320px, calc(100% - 48px));
}

.hero__grid,
.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: start;
}

.hero__content {
    max-width: 600px;
}

.hero__content h1 {
    margin: 24px 0 18px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    color: #fff;
}

.hero__subtitle {
    max-width: 620px;
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: #dbeafe;
}

.hero__description {
    max-width: 620px;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--landing-text-soft);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__actions {
    margin-top: 34px;
}

.hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 34px;
    width: min(1180px, calc(100% + 280px));
    max-width: calc(100vw - 48px);
}

.card {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 19, 37, 0.96) 0%, rgba(10, 14, 30, 0.92) 100%);
    border: 1px solid var(--landing-border);
    border-radius: 24px;
    box-shadow: var(--landing-shadow);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%);
    pointer-events: none;
}

.hero-highlight {
    padding: 18px;
    min-height: 126px;
}

.hero-highlight strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
}

.hero-highlight span {
    display: block;
    color: var(--landing-text-soft);
    font-size: 14px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.hero__visual,
.hero-preview,
.hero-dashboard {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    padding-top: 78px;
}

.hero-shot,
.hero-dashboard {
    position: relative;
    width: 100%;
    max-width: 1020px;
    margin-left: auto;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-shot__badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(96, 165, 250, 0.24);
    color: #dbeafe;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-shot img,
.hero-preview img,
.hero-dashboard img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0 auto;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    object-fit: contain;
    object-position: center top;
}

.dashboard-mock {
    position: relative;
    width: min(100%, 620px);
    max-width: 100%;
    margin-inline: auto;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(9, 12, 26, 0.94), rgba(4, 7, 20, 0.94));
    border: 1px solid rgba(129, 140, 248, 0.18);
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.56);
}

.dashboard-mock::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.dashboard-mock__topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px 18px;
}

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

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.4);
}

.window-dots span:first-child {
    background: #f97316;
}

.window-dots span:nth-child(2) {
    background: #facc15;
}

.window-dots span:nth-child(3) {
    background: #22c55e;
}

.dashboard-mock__url {
    color: #94a3b8;
    font-size: 13px;
}

.dashboard-mock__body {
    display: grid;
    grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
    gap: 16px;
}

.dashboard-mock__sidebar,
.dashboard-mock__main {
    background: rgba(8, 11, 24, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 20px;
}

.dashboard-mock__sidebar {
    padding: 22px 18px;
}

.dashboard-mock__logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.dashboard-mock__nav {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
}

.dashboard-mock__nav.is-active {
    background: rgba(37, 99, 235, 0.18);
    color: #dbeafe;
}

.dashboard-mock__main {
    padding: 22px;
}

.dashboard-mock__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.dashboard-mock__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #93c5fd;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-mock__heading h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.dashboard-mock__status {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.26);
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.stat-card {
    padding: 18px;
    min-height: 120px;
}

.stat-card span,
.panel-card__head small,
.panel-list span {
    color: #94a3b8;
}

.stat-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 28px;
    color: #fff;
}

.stat-card small {
    display: block;
    font-size: 13px;
}

.dashboard-mock__charts {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    margin-top: 16px;
}

.panel-card {
    padding: 18px;
}

.panel-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-card__head span {
    color: #fff;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    min-height: 180px;
}

.chart-bars span {
    flex: 1;
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.95), rgba(37, 99, 235, 0.55));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.panel-list {
    display: grid;
    gap: 14px;
}

.panel-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.panel-list div:last-child {
    border-bottom: none;
}

.panel-list strong {
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 20px 0 14px;
    color: #fff;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    margin: 0;
    color: var(--landing-text-soft);
    font-size: 17px;
    line-height: 1.7;
}

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

.feature-card,
.pricing-card {
    padding: 28px;
    min-height: 100%;
}

.feature-card {
    background: linear-gradient(180deg, #0f172a, #0b1325);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.feature-card:hover,
.demo-card:hover,
.audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 30px 70px rgba(2, 8, 23, 0.38);
}

.feature-card__icon,
.pricing-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-card h3,
.step-card h3,
.demo-card h3,
.pricing-card h3 {
    margin: 20px 0 12px;
    color: #fff;
    font-size: 22px;
}

.feature-card p,
.step-card p,
.demo-card span,
.pricing-card p,
.pricing-card li {
    color: var(--landing-text-soft);
    line-height: 1.7;
}

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

.step-card {
    padding: 26px;
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.16);
    border: 1px solid rgba(167, 139, 250, 0.24);
    color: #ddd6fe;
    font-weight: 800;
    font-size: 18px;
}

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

.demo-carousel {
    display: grid;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 28px;
    border-radius: 20px;
    box-sizing: border-box;
}

.preview-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.demo-carousel__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-carousel__tab {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.62);
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.demo-carousel__tab.is-active,
.demo-carousel__tab:hover {
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(96, 165, 250, 0.3);
    color: #f8fafc;
}

.demo-carousel__stage {
    position: relative;
    display: block;
    padding: 0;
}

.demo-carousel__slides {
    min-width: 0;
}

.demo-carousel__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.74);
    color: #f8fafc;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.demo-carousel__nav:hover {
    transform: translateY(calc(-50% - 1px));
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(15, 23, 42, 0.92);
}

.demo-carousel__nav--prev {
    left: -8px;
}

.demo-carousel__nav--next {
    right: -8px;
}

.demo-slide {
    display: none;
    padding: 28px;
    background: linear-gradient(180deg, rgba(18, 25, 46, 0.98), rgba(10, 16, 32, 0.96));
    border-color: rgba(148, 163, 184, 0.14);
}

.demo-slide.is-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    justify-items: center;
}

.demo-slide__meta {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 1000px;
}

.demo-slide__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-slide__meta h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.demo-slide__meta p {
    margin: 0;
    color: var(--landing-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.demo-slide__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    background: rgba(37, 99, 235, 0.12);
    color: #dbeafe;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.demo-slide__link:hover {
    border-color: rgba(96, 165, 250, 0.36);
    background: rgba(37, 99, 235, 0.2);
}

.demo-shot--carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 12px;
    text-decoration: none;
}

.demo-shot--carousel img {
    width: 100%;
    height: auto;
    max-height: 640px;
    object-fit: contain;
    object-position: center top;
}

.demo-carousel img {
    max-width: 850px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.demo-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.demo-carousel__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: rgba(100, 116, 139, 0.72);
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.demo-carousel__dot.is-active {
    transform: scale(1.2);
    background: #38bdf8;
}

.demo-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(18, 25, 46, 0.98), rgba(10, 16, 32, 0.96));
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 24px 54px rgba(2, 8, 23, 0.34);
}

.demo-card__head {
    margin-bottom: 20px;
}

.demo-card__head h3 {
    margin: 0 0 8px;
}

.demo-shot {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(11, 17, 31, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.system-preview {
    max-width: 1000px;
    width: 100%;
    margin: 60px auto;
    border-radius: 16px;
}

.system-preview img,
.demo-preview img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-preview {
    max-width: 1000px;
    margin: 60px auto;
}

.demo-container {
    padding: 40px 20px;
}

.demo-section {
    padding: 60px 0;
}

.demo-title {
    font-size: 42px;
    line-height: 1.25;
    max-width: 900px;
    margin-bottom: 30px;
}

.demo-tabs {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-shot {
        max-width: 100%;
        padding: 0;
    }

    .hero-shot img,
    .hero-preview img {
        max-width: 100%;
    }

    .system-preview,
    .demo-preview {
        margin: 32px auto 0;
    }

    .system-preview img,
    .demo-preview img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .hero,
    .hero__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .hero__content,
    .hero__visual,
    .hero-preview {
        width: 100%;
    }

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

    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero__subtitle,
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions,
    .hero__highlights {
        justify-content: center;
    }

    .hero__actions {
        flex-wrap: wrap;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .demo-preview img {
        max-width: 100%;
    }

    .demo-carousel {
        margin: 32px auto 0;
        padding: 20px;
    }

    .demo-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .demo-carousel__tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.demo-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.app-shot {
    min-height: 260px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(11, 17, 31, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-shot__header {
    height: 16px;
    width: 92px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.4), rgba(148, 163, 184, 0.14));
    margin-bottom: 18px;
}

.app-shot__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.app-shot__stats span,
.kanban-column span {
    display: block;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.app-shot__chart {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 15, 32, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.app-shot__chart--area {
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.app-shot__chart--area::before {
    content: "";
    position: absolute;
    inset: auto 14px 24px 14px;
    height: 88px;
    border-radius: 999px 999px 16px 16px;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.55), rgba(37, 99, 235, 0.12));
    clip-path: polygon(0% 100%, 12% 62%, 24% 76%, 36% 40%, 48% 58%, 60% 22%, 72% 30%, 84% 12%, 100% 100%);
}

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

.app-shot__table span {
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.84));
}

.kanban-mock {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.kanban-column {
    padding: 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.kanban-column small {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.kanban-column span + span {
    margin-top: 10px;
    height: 56px;
}

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

.audience-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(10, 15, 29, 0.94));
    border-color: rgba(148, 163, 184, 0.1);
}

.audience-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.16);
    border: 1px solid rgba(167, 139, 250, 0.24);
    color: #ddd6fe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.audience-card h3 {
    margin: 20px 0 12px;
    color: #fff;
    font-size: 22px;
}

.audience-card p {
    margin: 0;
    color: var(--landing-text-soft);
    line-height: 1.7;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing-card__price {
    margin: 18px 0 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.pricing-card__price strong {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-card__price span {
    display: block;
    font-size: 14px;
    color: var(--landing-text-soft);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pricing-card ul {
    margin: 18px 0 24px;
    padding-left: 18px;
}

.pricing-card li + li {
    margin-top: 10px;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card--featured {
    border-color: var(--landing-border-strong);
    transform: translateY(-10px);
    box-shadow: 0 30px 90px rgba(37, 99, 235, 0.22), 0 0 36px rgba(99, 102, 241, 0.16);
}

.pricing-card--featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), transparent 34%);
    pointer-events: none;
}

.pricing-card__tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.14);
    border: 1px solid rgba(34, 211, 238, 0.24);
    color: #a5f3fc;
    font-size: 12px;
    font-weight: 800;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 38px;
    border-color: var(--landing-border-strong);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.76));
}

.cta-banner h2 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.045em;
}

.cta-banner p {
    margin: 0;
    color: var(--landing-text-soft);
    line-height: 1.7;
}

.landing-footer {
    padding: 0 0 44px;
}

.landing-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.landing-footer__inner strong {
    display: block;
    margin-bottom: 10px;
}

.landing-footer__inner p {
    margin: 0;
    max-width: 420px;
    color: var(--landing-text-soft);
    line-height: 1.7;
}

.landing-footer__links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.landing-footer__contact {
    display: grid;
    gap: 10px;
}

.landing-footer__contact h4 {
    margin: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.landing-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    max-width: 100%;
    text-decoration: none;
    color: #ccc;
    line-height: 1.4;
    transition: color 0.18s ease;
}

.landing-footer__links a span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.landing-footer__links a:hover,
.landing-footer__links a:focus-visible {
    color: #fff;
}

.landing-footer__links a:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.7);
    outline-offset: 3px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

@media (max-width: 1180px) {
    .hero__grid,
    .dashboard-mock__charts,
    .steps,
    .features,
    .pricing,
    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__grid {
        align-items: start;
    }

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

    .hero__highlights {
        width: min(920px, calc(100% + 120px));
        max-width: calc(100vw - 40px);
        gap: 16px;
    }
}

@media (max-width: 980px) {
    .landing-header__inner,
    .landing-utility__inner,
    .cta-banner,
    .landing-footer__inner,
    .hero__grid,
    .dashboard-mock__body,
    .dashboard-mock__charts,
    .features,
    .steps,
    .pricing {
        grid-template-columns: 1fr;
        display: grid;
    }

    .landing-header__inner {
        display: grid;
        padding: 18px 0;
        justify-content: stretch;
    }

    .landing-utility__inner {
        display: grid;
        justify-content: stretch;
        padding: 10px 0;
    }

    .landing-nav {
        gap: 16px;
    }

    .landing-header__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero__highlights,
    .dashboard-mock__stats,
    .app-shot__stats {
        grid-template-columns: 1fr;
    }

    .hero__highlights {
        width: 100%;
        max-width: 100%;
        gap: 14px;
    }

    .hero__visual,
    .hero-preview,
    .hero-dashboard {
        padding-top: 18px;
    }

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

    .demo-carousel__stage {
        padding: 0;
    }

    .demo-carousel__nav {
        display: none;
    }

    .demo-slide.is-active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 72px 0;
    }

    .landing-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .landing-nav::-webkit-scrollbar {
        display: none;
    }

    .landing-nav a {
        white-space: nowrap;
    }

    .hero {
        padding-top: 44px;
    }

    .hero__visual,
    .hero-preview,
    .hero-dashboard {
        padding-top: 0;
    }

    .dashboard-mock,
    .hero-shot,
    .feature-card,
    .step-card,
    .demo-card,
    .demo-slide,
    .pricing-card,
    .cta-banner {
        padding: 20px;
    }

    .dashboard-mock__body {
        gap: 12px;
    }

    .dashboard-mock__sidebar {
        display: none;
    }

    .dashboard-mock__main {
        padding: 18px;
    }

    .dashboard-mock__heading {
        flex-direction: column;
    }

    .dashboard-mock__heading h2 {
        font-size: 22px;
    }

    .hero-shot__badge {
        position: static;
        margin-bottom: 12px;
    }

    .hero__actions .btn,
    .cta-banner .btn {
        width: 100%;
    }

    .landing-header__actions,
    .landing-utility__links,
    .kanban-mock,
    .app-shot__table,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .landing-header__actions,
    .landing-utility__links {
        display: grid;
        width: 100%;
    }

    .demo-shot {
        border-radius: 18px;
    }

    .demo-shot--carousel {
        min-height: 0;
        padding: 8px;
    }

    .preview-container {
        padding: 24px 0;
    }

    .landing-header__actions .btn {
        width: 100%;
    }

    .landing-utility__text {
        text-align: left;
    }
}
