:root {
    color-scheme: light;
    --font-sans: "SF Pro Display", "SF Pro Text", ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bg: #f3fbf7;
    --bg-soft: #edf7f1;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --line: rgba(17, 94, 61, 0.11);
    --line-strong: rgba(17, 94, 61, 0.18);
    --text: #10261c;
    --muted: #587263;
    --primary: #059669;
    --primary-strong: #047857;
    --green: #10b981;
    --green-soft: #cdf8e2;
    --lime: #82f0bc;
    --red: #d96b4a;
    --shadow: 0 28px 80px rgba(25, 58, 47, 0.12);
    --shadow-soft: 0 18px 42px rgba(12, 45, 36, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at top, rgba(16, 185, 129, 0.2), transparent 34%),
        linear-gradient(180deg, #f7fdf9 0%, var(--bg-soft) 100%);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: transparent;
    font-family: var(--font-sans);
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -2;
    border-radius: 999px;
    filter: blur(54px);
    opacity: 0.9;
}

body::before {
    top: -5rem;
    right: -3rem;
    width: 18rem;
    height: 18rem;
    background: rgba(16, 185, 129, 0.18);
}

body::after {
    left: -2rem;
    bottom: 8rem;
    width: 15rem;
    height: 15rem;
    background: rgba(110, 231, 183, 0.18);
}

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

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

.background-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(17, 94, 61, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 94, 61, 0.028) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 95%);
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    margin-bottom: 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(12, 45, 36, 0.06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 12px 22px rgba(5, 150, 105, 0.2);
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.site-nav a {
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--green) 100%);
    box-shadow: 0 16px 34px rgba(5, 150, 105, 0.24);
}

.button--secondary,
.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.button--secondary:hover,
.button--ghost:hover,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.92);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
    gap: 32px;
    align-items: start;
    padding: 28px 0 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--primary-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5.9rem);
}

.hero-lead,
.section-heading p,
.showcase-copy p,
.cta p,
.hero-band p,
.feature-card p,
.workflow-card p,
.showcase-list p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-lead {
    max-width: 58ch;
    margin: 22px 0 0;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 14px;
    background: var(--text);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.18s, transform 0.18s;
}

.store-badge:hover {
    background: #111;
    transform: translateY(-2px);
}

.store-badge-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.store-badge span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.store-badge small {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.72;
    letter-spacing: 0.01em;
}

.store-badge strong {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-notes span,
.budget-tags span,
.workflow-step,
.floating-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(5, 150, 105, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.hero-band article,
.feature-card,
.workflow-card,
.showcase-panel,
.floating-card,
.stat-strip article,
.cta,
.site-footer,
.showcase-panel--wide {
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 249, 0.8));
    box-shadow: var(--shadow-soft);
}

.hero-band article {
    padding: 18px;
    border-radius: var(--radius-md);
}

.hero-band strong,
.feature-card h3,
.workflow-card h3,
.showcase-list strong,
.cta h2,
.showcase-panel-head,
.panel-balance,
.flow-title,
.flow-value,
.stat-value,
.budget-summary strong,
.account-list strong {
    letter-spacing: -0.03em;
}

.hero-band strong,
.feature-card h3,
.workflow-card h3,
.showcase-list strong,
.cta h2 {
    display: block;
    margin-bottom: 8px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin-top: 12%;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
}

.hero-glow--one {
    top: 8%;
    left: 8%;
    width: 180px;
    height: 180px;
    background: rgba(16, 185, 129, 0.18);
}

.hero-glow--two {
    right: 0;
    bottom: 16%;
    width: 220px;
    height: 220px;
    background: rgba(130, 240, 188, 0.18);
}

.device-card {
    position: relative;
    width: min(100%, 364px);
    padding: 16px;
    border: 1px solid rgba(12, 45, 36, 0.12);
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(243, 251, 247, 0.9));
    box-shadow:
        0 32px 74px rgba(5, 150, 105, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
}

.device-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 12px;
    color: rgba(16, 38, 28, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.device-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 660px;
    padding: 18px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(16, 185, 129, 0.22), transparent 38%),
        linear-gradient(180deg, #fbfefc 0%, #edf7f1 100%);
}

.device-brand-mark {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.055;
    pointer-events: none;
}

.device-brand-mark img {
    width: 240px;
}

.screen-panel {
    position: relative;
    z-index: 1;
    padding: 18px;
    border: 1px solid rgba(17, 94, 61, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 250, 0.84));
    box-shadow: 0 14px 34px rgba(18, 52, 41, 0.08);
}

.screen-panel--hero {
    padding: 20px;
    background:
        linear-gradient(160deg, rgba(5, 150, 105, 0.08), rgba(255, 255, 255, 0.95) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 250, 0.84));
}

.panel-label,
.panel-subtle,
.flow-meta span,
.list-head,
.activity-copy span,
.showcase-panel-head span:last-child,
.budget-summary span,
.account-list span,
.chart-note,
.stat-label {
    color: var(--muted);
}

.panel-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.panel-balance {
    margin-top: 10px;
    font-size: clamp(2.1rem, 5vw, 2.8rem);
    font-weight: 800;
}

.panel-subtle {
    margin-top: 8px;
    font-size: 0.92rem;
}

.flow-head,
.flow-meta,
.list-head,
.showcase-panel-head,
.budget-summary,
.account-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.flow-title {
    margin-top: 6px;
    font-size: 1.1rem;
    font-weight: 800;
}

.flow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-strong);
    font-weight: 800;
}

.flow-value {
    margin-top: 16px;
    color: var(--primary-strong);
    font-size: 2rem;
    font-weight: 800;
}

.flow-track,
.budget-bar {
    position: relative;
    height: 10px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.08);
}

.flow-track-income,
.flow-track-spend,
.budget-bar span {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
}

.flow-track-income {
    width: 100%;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.08));
}

.flow-track-spend {
    width: 66%;
    background: linear-gradient(90deg, var(--primary), var(--lime));
}

.flow-meta {
    margin-top: 18px;
}

.flow-meta div,
.budget-summary div {
    display: grid;
    gap: 4px;
}

.flow-meta strong,
.budget-summary strong,
.account-list strong {
    font-size: 1rem;
}

.list-head {
    font-size: 0.92rem;
    font-weight: 700;
}

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

.activity-row + .activity-row {
    margin-top: 4px;
}

.activity-token {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 800;
}

.activity-token--expense {
    background: rgba(217, 107, 74, 0.12);
    color: var(--red);
}

.activity-token--income {
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-strong);
}

.activity-token--transfer {
    background: rgba(5, 150, 105, 0.08);
    color: var(--text);
}

.activity-copy strong {
    display: block;
    margin-bottom: 2px;
}

.positive {
    color: var(--primary-strong);
}

.negative {
    color: var(--red);
}

.floating-card {
    position: absolute;
    z-index: 2;
    width: min(220px, 48vw);
    padding: 16px;
    border-radius: 24px;
    backdrop-filter: blur(14px);
}

.floating-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.floating-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.floating-card--budget {
    left: -12px;
    bottom: 60px;
}

.floating-card--import {
    right: -12px;
    top: 60px;
}

.hero-screenshot {
    position: relative;
    width: 70%;
}

.slideshow {
    position: relative;
    width: 100%;
}

.slide {
    width: 100%;
    display: block;
    height: auto;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.slide + .slide {
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(5, 150, 105, 0.22);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s, transform 0.3s;
}

.dot.active {
    width: 24px;
    background: var(--primary);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.stat-strip article {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.stat-value {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-strong);
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    line-height: 1.6;
}

.section {
    padding: 96px 0 0;
}

.section-heading {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.cta h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.showcase-copy p,
.cta p {
    max-width: 60ch;
    margin-top: 18px;
    font-size: 1rem;
}

.feature-grid,
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.feature-card,
.workflow-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.2));
    color: var(--primary-strong);
    font-size: 0.88rem;
    font-weight: 800;
}

.feature-card h3,
.workflow-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.feature-card p,
.workflow-card p {
    margin: 0;
}

.section--showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 28px;
    align-items: start;
}

.showcase-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.showcase-list article {
    padding: 0 0 0 18px;
    border-left: 2px solid rgba(5, 150, 105, 0.18);
}

.showcase-list p {
    margin: 6px 0 0;
}

.showcase-slideshow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.showcase-phone {
    width: min(100%, 250px);
    background: #1c1c1e;
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 40px 80px rgba(0, 0, 0, 0.35);
}

.showcase-phone .slideshow {
    border-radius: 38px;
    overflow: hidden;
}

.showcase-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showcase-tab {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.showcase-tab:hover {
    border-color: var(--primary);
    color: var(--primary-strong);
}

.showcase-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.showcase-panel,
.showcase-panel--wide {
    padding: 22px;
    border-radius: 28px;
}

.showcase-panel--wide {
    grid-column: 1 / -1;
}

.showcase-panel-head {
    margin-bottom: 18px;
    font-size: 0.94rem;
    font-weight: 800;
}

.budget-summary,
.account-list {
    gap: 18px;
}

.budget-summary {
    margin-bottom: 14px;
}

.budget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.budget-bar span {
    width: 81%;
    background: linear-gradient(90deg, var(--primary), var(--lime));
}

.chart {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    height: 180px;
}

.chart span {
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.92), rgba(5, 150, 105, 0.18));
}

.chart-note {
    margin: 14px 0 0;
    line-height: 1.6;
}

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

.workflow-step {
    margin-bottom: 16px;
}

/* ── Comparison table ── */
.compare-wrap {
    margin-top: 30px;
    max-width: 680px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.compare-table {
    width: 100%;
    display: table;
}

.compare-head-row,
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.compare-head-row {
    background: var(--bg-soft);
    padding: 14px 24px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
}

.compare-label--kwarta {
    color: var(--primary-strong);
}

.compare-row {
    padding: 14px 24px;
    border-top: 1px solid var(--line);
    background: var(--surface);
    font-size: 0.95rem;
}

.compare-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.5);
}

.check {
    color: var(--primary-strong);
    font-weight: 700;
}

.cross {
    color: var(--red);
    font-weight: 500;
    opacity: 0.8;
}

/* ── Pricing card ── */
.pricing-card {
    margin-top: 30px;
    max-width: 480px;
    margin-inline: auto;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(255, 255, 255, 0.9));
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-strong);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
}

.pricing-amount {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text);
    margin-bottom: 12px;
}

.pricing-note {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 28px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
    font-weight: 500;
}

.pricing-list li::before {
    content: "✓";
    color: var(--primary-strong);
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-actions {
    margin-bottom: 14px;
}

.pricing-actions .button {
    width: 100%;
    justify-content: center;
}

.pricing-sub {
    color: var(--muted);
    font-size: 0.82rem;
    margin: 0;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 96px;
    padding: 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 249, 0.84));
}

.cta-copy {
    max-width: 700px;
}

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

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 22px 24px;
    border-radius: 28px;
}

.brand--footer img {
    width: 34px;
    height: 34px;
}

.site-footer p,
.site-footer small {
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero,
    .section--showcase,
    .feature-grid,
    .workflow-grid,
    .stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        align-items: start;
    }

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

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

@media (max-width: 820px) {
    .page-shell {
        width: min(100%, calc(100% - 20px));
        padding-top: 14px;
    }

    .site-header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px;
        border-radius: 24px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero,
    .section--showcase,
    .feature-grid,
    .workflow-grid,
    .stat-strip,
    .showcase-stack {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 28px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .hero-visual {
        padding-inline: 0;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

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

    .section {
        padding-top: 74px;
    }
}

@media (max-width: 560px) {
    .site-header {
        position: static;
    }

    .brand,
    .site-footer,
    .cta,
    .hero-actions,
    .store-badges,
    .cta-actions {
        width: 100%;
    }

    .store-badge {
        flex: 1;
        justify-content: center;
    }

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

    .feature-card,
    .workflow-card,
    .showcase-panel,
    .showcase-panel--wide,
    .cta,
    .site-footer {
        padding: 20px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
