/* ============================================================
   Roveltia - single stylesheet
   All component and page styles live here; no .razor.css files.
   ============================================================ */

:root {
/* Grey Friends palette: neutral base (darker slate) for page + surfaces */

--color-base: #252a34;
    --color-base-rgb: 37, 42, 52;
    --palette-blue: #6ea8ff;
    --palette-slate: var(--color-base);
    /* Borders / chrome (slightly separated from body copy) */
    --palette-lavender: #a4abbd;
    /* Secondary copy: lighter than lavender for AA on #252a34 (~7.6:1) */
    --text-muted: #b4bdd0;
    /* Small caps / chips on dark + soft blue tint (~8.3:1 on base) */
    --accent-bright: #a3c6ff;
    /* Solid “dim accent”: avoids opacity < 1 on text (~7.2:1 on base) */
    --accent-muted: #8eb9ff;
    --palette-slate-deep: var(--color-base);
    --palette-surface: var(--color-base);
    --palette-surface-strong: var(--color-base);

    --app-bg-deep: var(--color-base);
    --app-bg: var(--color-base);
    --app-text: #f2f3f6;
    --app-text-strong: #ffffff;
    --app-text-inverse: var(--color-base);
    --app-accent: var(--palette-blue);
    --app-accent-soft: rgba(110, 168, 255, 0.24);
    --app-accent-strong: rgba(110, 168, 255, 0.88);
    --app-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.35);
    --app-border-muted: rgba(188, 198, 214, 0.5);
    --app-danger: #7f1d1d;
    --fs-2xs: 0.75rem;
    --fs-xs: 0.875rem;
    --fs-sm: 0.9375rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-pill: 999px;
    --font-body: "Manrope Variable", Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-heading: "Space Grotesk Variable", "Space Grotesk", Manrope, system-ui, sans-serif;
    --font-mono: "JetBrains Mono Variable", "JetBrains Mono", "Fira Code", "SFMono-Regular", monospace;

}

/* ── Global reset / base ───────────────────────────────────── */

html {
scroll-behavior: smooth;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Tells iOS/Android to use dark form controls and helps Safari pick dark UI where supported */
    color-scheme: dark;
    /* Solid canvas behind gradients - avoids white showing on overscroll / before paint */
    background-color: var(--app-bg-deep);

}

html,
body {
margin: 0;
    /* Fill the dynamic viewport on mobile (address bar show/hide); fallback chain for iOS */
    min-height: 100%;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background: var(--app-bg);
    background-color: var(--app-bg);
    color: var(--app-text);
    font-family: var(--font-body);
    font-feature-settings: "ss01" on, "cv11" on;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;

}

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

}

::selection {
background: var(--app-accent-soft);
    color: var(--app-text-strong);

}

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

}

a:focus-visible,
button:focus-visible {
outline: 2px solid var(--app-accent-strong);
    outline-offset: 3px;

}

h1:focus,
h2:focus,
h3:focus {
outline: none;

}

.lp__logo,
.lp__footer-logo,
.sect__title,
.hero__title,
.tier-card__name,
.cta-card__title,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);

}

.eyebrow,
.tier-card__badge {
    font-family: var(--font-mono);
}

/* Skip link */

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

.blazor-error-boundary {
    background: var(--app-danger);
    padding: 1rem 1.25rem;
    color: var(--app-text-strong);
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

.text-danger {
    color: #fca5a5;
}

/* ============================================================
   Landing page - design tokens + layout
   ============================================================ */

.lp {
--bg:         var(--palette-slate);
    --surface:    var(--palette-surface);
    --surface-strong: var(--palette-surface-strong);
    --border:     rgba(188, 198, 214, 0.38);
    --text:       #f2f3f6;
    --muted:      var(--text-muted);
    --accent:     var(--palette-blue);
    --accent-soft: rgba(110, 168, 255, 0.14);
    --text-inverse: var(--color-base);
    --danger:     #fca5a5;
    --overlay:    rgba(var(--color-base-rgb), 0.88);
    --shadow:     0 16px 40px rgba(0, 0, 0, 0.32);
    --inset-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.35);
    --space:      clamp(4rem, 8vw, 6rem);
    --max-w:      1200px;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;

}

/* ── Skip nav ──────────────────────────────────────────────── */

.lp__skip {
position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 999;
    padding: 0.65rem 1.2rem;
    border-radius: var(--r-md);
    background: var(--accent);
    color: var(--text-inverse);
    font-weight: 700;
    font-size: var(--fs-xs);
    transition: top 0.15s;

}

.lp__skip:focus-visible {
top: 1rem;

}

/* ── Header + nav ──────────────────────────────────────────── */

.lp__header {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 0.75rem clamp(1rem, 3vw, 2rem) 0;
    /* Transparent shell: nav pill carries opaque fill so contrast checks are not blocked by gradients */
    background: transparent;
    pointer-events: none;

}

.lp__nav {
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: var(--max-w);
    margin-inline: auto;
    padding: 0.8rem clamp(1rem, 2.2vw, 1.4rem);
    /* Opaque bar so link/logo contrast is deterministic (axe + WCAG) */
    background: rgb(var(--color-base-rgb));
    border: 1px solid rgba(188, 198, 214, 0.32);
    border-radius: calc(var(--r-pill) + 2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    pointer-events: auto;

}

.lp__logo {
flex-shrink: 0;
    font-weight: 800;
    font-size: var(--fs-xl);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);

}

.lp__logo:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: var(--r-sm);

}

.lp__nav-links {
display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;

}

.lp__nav-links a {
padding: 0.5rem 0.65rem;
    border-radius: var(--r-sm);
    color: var(--muted);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;

}

.lp__nav-links a:hover {
color: var(--text);
    background: var(--surface-strong);

}

.lp__nav-links a:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 2px;

}

.lp__nav-cta {
padding: 0.55rem 1.05rem !important;
    border: 1px solid var(--accent) !important;
    border-radius: var(--r-pill) !important;
    color: var(--accent) !important;
    font-size: var(--fs-sm) !important;
    font-weight: 700 !important;
    transition: background 0.15s, border-color 0.15s !important;

}

.lp__nav-cta:hover {
background: var(--accent-soft) !important;
    border-color: var(--accent) !important;

}

body.is-nav-open {
overflow: hidden;

}

.lp__nav-toggle {
position: relative;
    z-index: 2;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid rgba(188, 198, 214, 0.32);
    border-radius: var(--r-sm);
    background: rgb(var(--color-base-rgb));
    color: var(--text);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;

}

.lp__nav-toggle:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 2px;

}

.lp__nav-toggle-bar {
display: block;
    width: 1.15rem;
    height: 2px;
    margin-inline: auto;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.22s ease, opacity 0.22s ease;

}

body.is-nav-open .lp__nav-toggle .lp__nav-toggle-bar:nth-child(1) {
transform: translateY(7px) rotate(45deg);

}

body.is-nav-open .lp__nav-toggle .lp__nav-toggle-bar:nth-child(2) {
opacity: 0;
    transform: scaleX(0);

}

body.is-nav-open .lp__nav-toggle .lp__nav-toggle-bar:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);

}

.lp__nav-backdrop {
position: fixed;
    inset: 0;
    z-index: 79;
    background: color-mix(in srgb, #000 52%, transparent);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s 0.25s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;

}

body.is-nav-open .lp__nav-backdrop {
opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0s 0s;

}

.lp__nav-drawer-head {
display: none;

}

.lp__nav-drawer-title {
font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);

}

.lp__nav-close {
display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(188, 198, 214, 0.32);
    border-radius: var(--r-sm);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;

}

.lp__nav-close:hover {
background: var(--accent-soft);

}

.lp__nav-close:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 2px;

}

@media (min-width: 769px) {
.lp__nav-backdrop {
display: none;

}

}

/* ── Main shell ────────────────────────────────────────────── */

.lp__main {
outline: none;
    padding-top: 5.75rem;

}

/* ── Sections ──────────────────────────────────────────────── */

.sect {
padding-block: var(--space);
    padding-inline: clamp(1.5rem, 5vw, 3.5rem);

}

.sect--open {
background: transparent;

}

.sect--band {
background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

}

.sect--surface {
background: var(--surface);

}

.sect--tiers {
padding-block-start: calc(var(--space) * 1.2);
    background: transparent;

}

.sect--narrow > * {
width: 100%;
    max-width: 720px;
    margin-inline: auto;

}

.sect--cta {
padding-block: calc(var(--space) * 1.15) var(--space);
    padding-inline: 1.5rem;
    background: transparent;

}

/* ── Section head ──────────────────────────────────────────── */

.sect__head {
width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;

}

.eyebrow {
display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--border);
    background: var(--accent-soft);
    color: var(--accent-bright);
    font-size: var(--fs-2xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

}

.eyebrow--on-glow {
border-color: var(--border);
    background: var(--surface);
    color: var(--text);

}

.sect__title {
margin: 0 0 1rem;
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);

}

.sect__sub {
max-width: min(60ch, 100%);
    width: 100%;
    margin-inline: auto;
    font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
    line-height: 1.7;
    color: var(--muted);

}

.sect__sub a {
color: var(--accent-bright);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;

}

.sect__sub a:hover {
color: var(--accent);

}

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3.5rem) clamp(3.5rem, 7vw, 5rem);
    background: transparent;
    overflow: hidden;

}

.hero__grid {
display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: var(--max-w);
    margin-inline: auto;

}

.hero__copy {
min-width: 0;

}

.hero__audience {
margin-bottom: 1rem;

}

.hero__title {
margin: 0 0 1.25rem;
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--text);

}

.hero__value {
margin: 0 0 1rem;
    font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.2rem);
    line-height: 1.65;
    color: var(--text);
    max-width: min(44ch, 100%);
    width: 100%;

}

.hero__actions {
display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

}

.hero__actions--row {
flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;

}

.hero__actions--row .hero__lite-cta {
display: contents;

}

.hero__actions--row .btn-primary {
border: 1px solid transparent;

}

.hero__actions--row .btn-primary,
.hero__actions--row .btn-ghost {
min-height: 2.875rem;
    padding-block: 0;

}

.btn-ghost--subtle {
opacity: 0.92;

}

.hero__lite-cta {
display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;

}

.workflow-steps {
list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 40rem;
    display: flex;
    flex-direction: column;

}

.workflow-steps__item {
display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0 1.25rem;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);

}

.workflow-steps__item:first-child {
padding-top: 0;

}

.workflow-steps__item:last-child {
border-bottom: none;
    padding-bottom: 0;

}

.workflow-steps__num {
font-size: var(--fs-sm);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--accent-bright);
    text-align: right;

}

.workflow-steps__text {
margin: 0;
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.65;
    color: var(--text);

}

max-width: 42rem;
    margin-inline: auto;
    margin-top: 1.5rem;
    text-align: center;
}

.tier-grid--four {
grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: min(100%, 1280px);

}

.upgrade-paths {
max-width: min(100%, 960px);
    margin: 2rem auto 0;
    padding: 0;

}

.upgrade-paths__head {
text-align: center;
    max-width: 42rem;
    margin-inline: auto;

}

.upgrade-paths__title {
margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);

}

.upgrade-paths__sub {
margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: var(--muted);

}

.upgrade-paths__grid {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;

}

.upgrade-paths__card {
background: color-mix(in srgb, var(--surface) 88%, var(--accent) 12%);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.25rem 1.35rem;

}

.upgrade-paths__label {
margin: 0 0 0.35rem;
    font-size: var(--fs-2xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-bright);

}

.upgrade-paths__card-title {
margin: 0 0 0.85rem;
    font-size: var(--fs-base);
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);

}

.upgrade-paths__steps {
margin: 0 0 0.85rem;
    padding-left: 1.15rem;
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: var(--text);

}

.upgrade-paths__steps li + li {
margin-top: 0.55rem;

}

.upgrade-paths__note {
margin: 0;
    font-size: var(--fs-2xs);
    line-height: 1.55;
    color: var(--muted);

}

.tier-grid--two {
grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: min(100%, 880px);

}

.tier-grid + .tier-grid {
margin-top: 1.25rem;

}

.tier-grid--four .tier-card {
padding: 1.5rem 1.25rem;

}

.tier-grid--four .tier-card--featured {
transform: none;

}

.tier-grid--four .tier-card__name {
font-size: var(--fs-lg);

}

.tier-card--secondary {
border-style: dashed;

}

.cta-card__actions {
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1rem;
    width: 100%;

}

.btn-primary--cta,
.btn-ghost--cta {
min-height: 3.125rem;
    padding: 0 1.75rem;
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.2;

}

.btn-primary--cta {
border: 1px solid transparent;

}

.cta-card__actions .hero__lite-cta {
display: contents;

}

.cmp-table--five {
min-width: 52rem;

}

.cmp-table--five thead th .cmp-th-name {
max-width: 8.5rem;
    white-space: normal;
    line-height: 1.35;

}

.cta-card--commercial {
max-width: 760px;
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    background: color-mix(in srgb, var(--accent-soft) 40%, var(--surface));

}

@media (max-width: 1100px) {
.tier-grid--four,
    .tier-grid--two {
grid-template-columns: repeat(2, minmax(0, 1fr));

}

.upgrade-paths__grid {
grid-template-columns: 1fr;

}

}

}

@media (max-width: 720px) {
.tier-grid--four {
grid-template-columns: 1fr;
        max-width: 420px;

}

.tier-grid--two {
grid-template-columns: 1fr;
        max-width: 420px;

}

}

@media (max-width: 900px) {
.hero__actions--row {
justify-content: center;

}

}

.btn-ghost {
display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 600;
    transition: background 0.15s, border-color 0.15s;
    cursor: pointer;

}

.btn-ghost:hover {
background: var(--surface-strong);
    border-color: var(--border);

}

.btn-ghost:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;

}

.btn-primary {
display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: var(--r-pill);
    border: none;
    background: var(--accent);
    color: var(--text-inverse);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 700;
    transition: filter 0.15s;
    cursor: pointer;
    text-decoration: none;

}

.btn-primary:hover {
filter: brightness(1.06);

}

.btn-primary:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;

}

/* ── Turntable visual ──────────────────────────────────────── */

.hero__visual {
display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;

}

/* ── How it works ──────────────────────────────────────────── */

/* ── Demo video ────────────────────────────────────────────── */

.video-wrap {
position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;

}

.video-frame {
position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;

}

/* ── Tiers ─────────────────────────────────────────────────── */

.tier-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;

}

.tier-card {
position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition: border-color 0.2s;

}

.tier-card--badged {
padding-top: 2.75rem;

}

.tier-card--featured {
border-color: var(--accent);
    background: var(--surface-strong);
    box-shadow: none;
    transform: scale(1.02);

}

.tier-card__badge {
position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.275rem 0.875rem;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--text-inverse);
    font-size: var(--fs-2xs);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;

}

.tier-card__name {
margin: 0;
    font-size: var(--fs-xl);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);

}

.tier-card--featured .tier-card__name {
color: var(--accent);

}

.tier-card__who {
margin: 0;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--muted);

}

.tier-card__price {
margin: 0;
    font-size: var(--fs-2xl);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1.1;

}

.tier-card--featured .tier-card__price {
color: var(--accent);

}

.tier-card__detail {
margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.72;
    color: var(--muted);
    flex: 1;

}

.tier-card__cta {
display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.75rem 1.25rem;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--text-inverse);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-align: center;
    transition: filter 0.15s, background 0.15s;

}

.tier-card__cta:hover {
filter: brightness(1.06);

}

.tier-card__cta:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;

}

/* ── What you get ──────────────────────────────────────────── */

/* ── Before you back ───────────────────────────────────────── */

.expect-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;

}

.expect-card {
display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.65rem;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--border);

}

.expect-card__icon {
flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--accent);
    margin-top: 1px;

}

.expect-card__icon svg {
width: 100%;
    height: 100%;

}

.expect-card__body {
display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;

}

.expect-card__label {
font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);

}

.expect-card__value {
margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.72;
    color: var(--muted);

}

.app-workflow-list {
width: 100%;
    max-width: min(100%, 640px);
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    line-height: 1.65;
    color: var(--muted);

}

.app-workflow-list li {
padding-left: 1.1rem;
    position: relative;

}

.app-workflow-list li::before {
content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--accent);

}

.app-badges {
display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    width: 100%;
    max-width: var(--max-w);
    margin: 1.75rem auto 0;

}

.app-badges__link {
display: inline-flex;
    line-height: 0;
    transition: opacity 0.15s, transform 0.15s;

}

.app-badges__link:hover {
opacity: 0.88;
    transform: translateY(-1px);

}

.app-badges__img {
display: block;
    height: auto;

}

.app-badges__img--apple {
width: 150px;

}

.app-badges__img--google {
width: 170px;

}

/* Delivery trust */

/* ── Compare table surface ─────────────────────────────────── */

.glass-card {
background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.75rem;

}

.cmp-hint {
display: none;
    text-align: center;
    font-size: var(--fs-2xs);
    color: var(--muted);
    margin-bottom: 0.5rem;

}

.cmp-table-wrap {
display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    border-radius: var(--r-xl);

}

.cmp-table-wrap:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;

}

.cmp-table {
width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);

}

.cmp-table caption {
caption-side: bottom;

}

.cmp-table thead th {
padding: 0.75rem 1.25rem 1rem;
    text-align: center;
    font-size: var(--fs-2xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;

}

.cmp-table thead th:first-child {
text-align: left;

}

/* Tier label + sublabel stacked in header cell */

.cmp-table thead th .cmp-th-name {
display: block;
    color: var(--text);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.15rem;

}

.cmp-table thead th .cmp-th-tag {
display: block;
    font-size: var(--fs-2xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);

}

.cmp-table thead th:first-child {
width: 30%;
    text-align: left;

}

.cmp-table tbody tr {
border-bottom: 1px solid var(--border);
    transition: background 0.12s;

}

.cmp-table tbody tr:last-child {
border-bottom: none;

}

.cmp-table tbody tr:hover {
background: var(--surface-strong);

}

.cmp-table tbody th {
padding: 0.9rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--text);

}

.cmp-table__cell {
padding: 0.9rem 1.25rem;
    font-weight: 700;
    text-align: center;
    font-size: var(--fs-base);

}

/* Checkmark ✓ in cyan, dash - in muted */

/* ── FAQ accordion ─────────────────────────────────────────── */

.sect__head--faq {
display: flex;
    flex-direction: column;
    align-items: center;
}

.sect__head--faq .faq-accordion__toggle {
margin-top: 0.85rem;
}

.faq-accordion {
display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 720px;
    margin-inline: auto;

}

.faq-accordion__toggle {
appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    cursor: pointer;
    transition: color 0.15s;

}

.faq-accordion__toggle:hover {
color: var(--text);

}

.faq-accordion__toggle:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;

}

.faq-item {
border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;

}

.faq-item + .faq-item {
border-top: 1px solid var(--border);

}

.faq-item__trigger {
width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.15rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--text);
    font-family: inherit;
    font-size: clamp(1rem, 0.25rem + 2.5vw, 1.0625rem);
    font-weight: 600;
    transition: color 0.2s;
    list-style: none;

}

.faq-item__trigger::-webkit-details-marker {
display: none;

}

.faq-item__trigger:hover {
color: var(--text);

}

.faq-item--open .faq-item__trigger,
.faq-item[open] .faq-item__trigger {
color: var(--text);

}

.faq-item__trigger:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: -2px;

}

.faq-item__question {
flex: 1;
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.35;

}

.faq-item__icon {
flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--muted);
    transition: transform 0.25s ease, color 0.15s;
    background: transparent;
    border-radius: 0;
    padding: 0;

}

.faq-item:hover .faq-item__icon {
color: var(--text);

}

.faq-item--open .faq-item__icon,
.faq-item[open] .faq-item__icon {
transform: rotate(180deg);
    color: var(--accent);
    background: transparent;

}

.faq-item__panel {
padding: 0 0.15rem 0.95rem;
    animation: faqOpen 0.28s ease;

}

.faq-item__panel[hidden] {
display: none;

}

.faq-item__answer {
margin: 0;
    font-size: clamp(0.9375rem, 0.2rem + 2.4vw, 1rem);
    line-height: 1.65;
    color: var(--muted);
    font-weight: 500;

}

.faq-item__answer p + p {
margin-top: 0.65rem;

}

.faq-item__answer a {
color: var(--accent-bright);
    font-weight: 600;
    text-decoration: none;

}

.faq-item__answer a:hover {
text-decoration: underline;

}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Final CTA ─────────────────────────────────────────────── */

.cta-card {
position: relative;
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(3.25rem, 5vw, 4.25rem) clamp(2.5rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 3.5rem);
    border-radius: var(--r-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;

}

.cta-card > .eyebrow--on-glow {
position: absolute;
    top: -0.875rem;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    white-space: nowrap;

}

.cta-trust {
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;

}

.cta-trust__item {
display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--fs-2xs);
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.01em;

}

.cta-trust__icon {
width: 13px;
    height: 13px;
    color: var(--accent-muted);
    flex-shrink: 0;

}

.cta-card__title {
margin: 0;
    font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);

}

.cta-card__sub {
margin: 0;
    max-width: 44ch;
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--muted);

}

/* ── Footer ────────────────────────────────────────────────── */

.lp__footer {
padding: 3rem clamp(1.5rem, 5vw, 3.5rem);
    border-top: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;

}

.lp__footer-logo {
margin: 0;
    font-size: var(--fs-lg);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);

}

.lp__footer-tag {
margin: 0;
    font-size: var(--fs-sm);
    color: var(--muted);
    max-width: 48ch;

}

.lp__footer-links {
display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin: 0;

}

.lp__footer-links a,
.lp__footer-credit a {
color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s, filter 0.15s;

}

.lp__footer-links a:hover,
.lp__footer-credit a:hover {
color: var(--accent-bright);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    filter: brightness(1.06);

}

.lp__footer-links a:focus-visible,
.lp__footer-credit a:focus-visible {
outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--r-sm);

}

.lp__footer-credit {
margin: 0;
    font-size: var(--fs-sm);
    color: var(--muted);

}

.lp__footer-fine {
margin: 0;
    font-size: var(--fs-xs);
    color: var(--muted);

}

/* ── Scroll-reveal ─────────────────────────────────────────── */

.section-reveal {
opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;

}

.section-reveal.is-visible {
opacity: 1;
    transform: none;

}

.unsubscribe-page {
min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 4vw, 4rem) 1.25rem;
    background: var(--bg);

}

.unsubscribe-card {
width: min(32rem, 100%);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;

}

.unsubscribe-eyebrow {
margin: 0 0 0.75rem;
    color: var(--accent);
    font-size: var(--fs-2xs);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;

}

.unsubscribe-title {
margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.05;

}

.unsubscribe-message {
margin: 1rem 0 0;
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.65;

}

.unsubscribe-action {
margin-top: 1.25rem;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    background: var(--accent);
    color: var(--bg);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, opacity 180ms ease;

}

.unsubscribe-action:hover:not(:disabled) {
transform: translateY(-1px);

}

.unsubscribe-action:disabled {
opacity: 1;
    cursor: wait;
    background: #4a5568;
    color: #dce2ec;

}

.unsubscribe-meta {
margin: 1.25rem 0 0;
    font-size: var(--fs-sm);

}

.unsubscribe-meta a {
color: var(--accent);
    text-decoration: none;
    font-weight: 700;

}

.unsubscribe-meta a:hover {
text-decoration: underline;

}

/* ── Legal pages (privacy, terms) ──────────────────────────── */

.legal-page {
--bg: var(--palette-slate);
    --surface: var(--palette-surface);
    --border: rgba(188, 198, 214, 0.38);
    --text: #f2f3f6;
    --muted: var(--text-muted);
    --accent: var(--palette-blue);
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.32);

    min-height: 100dvh;
    padding: clamp(2rem, 4vw, 4rem) 1.25rem;
    background: var(--bg);
    color: var(--text);

}

.legal-shell {
width: min(42rem, 100%);
    margin: 0 auto;

}

.legal-page--flat {
padding-top: clamp(2.5rem, 5vw, 5rem);
    background: var(--palette-slate);

}

.legal-page--flat .legal-shell {
padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;

}

.legal-header {
margin-bottom: 1.5rem;
    text-align: center;

}

.legal-eyebrow {
margin: 0 0 0.75rem;
    color: var(--accent);
    font-size: var(--fs-2xs);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;

}

.legal-title {
margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.05;

}

.legal-updated {
margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: var(--fs-sm);

}

.legal-prose {
text-align: left;

}

.legal-prose h2 {
margin: 2rem 0 0.75rem;
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);

}

.legal-prose h2:first-child {
margin-top: 0;

}

.legal-prose h3 {
margin: 1.25rem 0 0.5rem;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);

}

.legal-prose p {
margin: 0 0 1rem;
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.65;

}

.legal-prose ul {
margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.65;

}

.legal-prose li + li {
margin-top: 0.5rem;

}

.legal-prose strong {
color: var(--text);
    font-weight: 600;

}

.legal-prose a {
color: var(--accent);
    text-decoration: none;
    font-weight: 600;

}

.legal-prose a:hover {
text-decoration: underline;

}

.contact-shell {
width: min(68rem, 100%);
    margin: 0 auto;

}

.contact-header {
text-align: left;

}

.contact-layout {
display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.75rem;
    align-items: start;

}

.contact-prose {
padding-right: 0.5rem;

}

.contact-prose ul {
margin-bottom: 1.25rem;

}

.contact-form {
display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(188, 198, 214, 0.2);
    border-radius: var(--r-lg);
    background: rgba(12, 17, 28, 0.34);

}

.contact-form__grid {
display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;

}

.contact-form__field {
display: grid;
    gap: 0.45rem;

}

.contact-form__label {
color: var(--text);
    font-size: var(--fs-sm);
    font-weight: 700;

}

.contact-form__input {
width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(188, 198, 214, 0.28);
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;

}

.contact-form__input:focus {
outline: none;
    border-color: rgba(123, 165, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);

}

.contact-form__textarea {
min-height: 12rem;
    resize: vertical;

}

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

}

.contact-form__submit {
justify-self: start;
    padding: 0.95rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: #7ba5ff;
    color: #09111f;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;

}

.contact-form__submit:hover:not(:disabled) {
transform: translateY(-1px);
    background: #90b4ff;

}

.contact-form__submit:disabled {
cursor: wait;
    opacity: 0.72;

}

.contact-form__status {
margin: 0;
    padding: 0.9rem 1rem;
    border-radius: var(--r-md);
    font-size: var(--fs-sm);
    line-height: 1.55;

}

.contact-form__status--success {
background: rgba(77, 197, 130, 0.16);
    border: 1px solid rgba(77, 197, 130, 0.32);
    color: #ccf6dd;

}

.contact-form__status--error {
background: rgba(255, 109, 109, 0.12);
    border: 1px solid rgba(255, 109, 109, 0.28);
    color: #ffd0d0;

}

.contact-form__error {
color: #ffb7b7;
    font-size: var(--fs-xs);

}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1100px) {
.tier-grid {
grid-template-columns: 1fr;
        max-width: 420px;

}

}

@media (max-width: 900px) {
.hero__grid {
grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;

}

.hero__visual {
display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 0;
        padding-top: 0.25rem;
        margin-inline: auto;

}

.hero__copy {
display: flex;
        flex-direction: column;
        align-items: center;

}

.hero__title {
        text-align: center;
        max-width: 58ch;
    }

.hero__actions {
align-items: center;

}

.tier-grid {
grid-template-columns: 1fr;
        max-width: 420px;

}

.tier-card--featured {
transform: none;

}

.contact-layout {
grid-template-columns: 1fr;

}

.contact-prose {
padding-right: 0;

}

}

@media (max-width: 959px) {
.cmp-hint {
display: block;

}

}

@media (min-width: 960px) {
.cmp-hint {
display: none;

}

}

@media (max-width: 900px) {
.expect-grid {
grid-template-columns: 1fr;

}

}

@media (max-width: 768px) {
.lp__header {
padding-top: 0.5rem;
        padding-inline: 0.75rem;

}

.lp__nav {
--lp-nav-radius: calc(var(--r-pill) + 2px);
        gap: 0;
        padding: 0 0 0 0.9rem;
        overflow: hidden;

}

.lp__logo {
padding-block: 0.72rem;

}

.contact-form__grid {
grid-template-columns: 1fr;

}

.contact-form__submit {
width: 100%;
        justify-self: stretch;

}

.lp__nav-toggle {
display: flex;
        align-self: stretch;
        width: 3.25rem;
        min-width: 2.75rem;
        height: auto;
        min-height: 2.75rem;
        margin: 0;
        border: none;
        border-left: 1px solid rgba(188, 198, 214, 0.32);
        border-radius: 0;
        background: rgb(var(--color-base-rgb));

}

.lp__nav-links {
position: fixed;
        top: 0;
        right: 0;
        width: min(85vw, 300px);
        height: 100dvh;
        margin: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.15rem;
        z-index: 85;
        background: rgb(var(--color-base-rgb));
        border-left: 1px solid rgba(188, 198, 214, 0.32);
        box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
        padding: max(1rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px)) max(1.5rem, env(safe-area-inset-bottom, 0px)) 0.75rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.28s;
        pointer-events: auto;

}

body.is-nav-open .lp__nav-links {
transform: translateX(0);
        visibility: visible;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;

}

.lp__nav-drawer-head {
display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(188, 198, 214, 0.32);

}

.lp__nav-links a:not(.lp__nav-cta) {
display: flex;
        align-items: center;
        min-height: 2.75rem;
        padding: 0.75rem;
        border-radius: var(--r-sm);
        font-size: var(--fs-base);
        white-space: normal;

}

.lp__nav-cta {
display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.75rem;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem !important;
        font-size: var(--fs-base) !important;
        text-align: center;
        white-space: normal;

}

.lp__main {
padding-top: 5rem;

}

.hero {
padding-top: 4.5rem;
        padding-bottom: 4rem;

}

.sect {
padding-top: 4rem;
        padding-bottom: 4rem;

}

.sect__head {
margin-bottom: 2.25rem;

}

.sect__title {
margin-bottom: 1.1rem;

}

.sect__sub,
    .tier-card__detail,
    .expect-card__value,
    .faq-item__answer,
    .cta-card__sub {
        font-size: 1rem;
        line-height: 1.8;
    }

.tier-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1rem;
    }

.expect-card,
    .tier-card {
        padding: 1.5rem;
    }

}

@media (max-width: 480px) {
.expect-card__label {
        line-height: 1.6;
    }

.cta-card {
padding: 2.75rem 1.25rem 2rem;

}

}

/* ── Reduced motion ────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
.section-reveal {
opacity: 1;
        transform: none;
        transition: none;

}

.faq-item__icon {
transition: none;

}

.faq-item__panel {
animation: none;

}

}

/* ── iPhone mockup (simata.gr pattern) ─────────────────────── */

.iphone-mockup {
position: relative;
    width: 270px;
    height: 550px;
    border-radius: 46px;
    background: #000;
    border: 3px solid #6b7280;
    box-shadow:
        inset 0 0 0 8px #000,
        inset 0 0 0 9px #2b2e33,
        0 25px 50px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    animation: floatPhone 6s ease-in-out infinite;
    flex-shrink: 0;

}

.iphone-mockup::after {
content: "";
    position: absolute;
    top: 100px;
    left: -6px;
    width: 3px;
    height: 24px;
    background: #6b7280;
    border-radius: 3px 0 0 3px;
    box-shadow:
        0 40px 0 0 #6b7280,
        0 95px 0 0 #6b7280,
        270px 60px 0 0 #6b7280;

}

@keyframes floatPhone {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.iphone-mockup::before {
content: none;
    display: none;

}

.iphone-mockup .glare {
position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 5;
    pointer-events: none;
    border-radius: 35px;

}

.iphone-screen-container {
position: absolute;
    inset: 10px;
    border-radius: 35px;
    overflow: hidden;
    background: var(--app-bg-deep);

}

.iphone-screen {
width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
    opacity: 0;

}

.iphone-mockup:not(.slideshow-2):not(.slideshow-3):not(.slideshow-5):not(.slideshow-6) .iphone-screen {
opacity: 1;

}

.slideshow-2 .iphone-screen,
.slideshow-3 .iphone-screen,
.slideshow-5 .iphone-screen,
.slideshow-6 .iphone-screen {
animation-timing-function: ease-in-out;
    will-change: opacity;

}

.iphone-mockup.slideshow-2:not(.slideshow-ready) .iphone-screen,
.iphone-mockup.slideshow-3:not(.slideshow-ready) .iphone-screen,
.iphone-mockup.slideshow-5:not(.slideshow-ready) .iphone-screen,
.iphone-mockup.slideshow-6:not(.slideshow-ready) .iphone-screen {
animation-play-state: paused !important;

}

.iphone-mockup.slideshow-2:not(.slideshow-ready) .iphone-screen:first-child,
.iphone-mockup.slideshow-3:not(.slideshow-ready) .iphone-screen:first-child,
.iphone-mockup.slideshow-5:not(.slideshow-ready) .iphone-screen:first-child,
.iphone-mockup.slideshow-6:not(.slideshow-ready) .iphone-screen:first-child {
opacity: 1;

}

.slideshow-3 .iphone-screen:nth-child(1) {
animation: fade3-lead 12s infinite;

}

.slideshow-3 .iphone-screen:nth-child(n + 2) {
animation: fade3-follow 12s infinite;

}

.slideshow-3 .iphone-screen:nth-child(2) {
animation-delay: 4s;

}

.slideshow-3 .iphone-screen:nth-child(3) {
animation-delay: 8s;

}

@keyframes fade3-lead {
    0%,
    25% {
        opacity: 1;
    }

    33.33%,
    91.66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade3-follow {
    0% {
        opacity: 0;
    }

    4%,
    25% {
        opacity: 1;
    }

    33.33%,
    100% {
        opacity: 0;
    }
}

.slideshow-2 .iphone-screen:nth-child(1) {
animation: fade2-lead 10s infinite;

}

.slideshow-2 .iphone-screen:nth-child(n + 2) {
animation: fade2-follow 10s infinite;

}

.slideshow-2 .iphone-screen:nth-child(2) {
animation-delay: 5s;

}

@keyframes fade2-lead {
    0%,
    40% {
        opacity: 1;
    }

    50%,
    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade2-follow {
    0% {
        opacity: 0;
    }

    8%,
    40% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.slideshow-5 .iphone-screen:nth-child(1) {
animation: fade5-lead 15s infinite;

}

.slideshow-5 .iphone-screen:nth-child(n + 2) {
animation: fade5-follow 15s infinite;

}

.slideshow-5 .iphone-screen:nth-child(2) {
animation-delay: 3s;

}

.slideshow-5 .iphone-screen:nth-child(3) {
animation-delay: 6s;

}

.slideshow-5 .iphone-screen:nth-child(4) {
animation-delay: 9s;

}

.slideshow-5 .iphone-screen:nth-child(5) {
animation-delay: 12s;

}

@keyframes fade5-lead {
    0%,
    20% {
        opacity: 1;
    }

    25%,
    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade5-follow {
    0% {
        opacity: 0;
    }

    5%,
    20% {
        opacity: 1;
    }

    25%,
    100% {
        opacity: 0;
    }
}

.slideshow-6 .iphone-screen:nth-child(1) {
animation: fade6-lead 18s infinite;

}

.slideshow-6 .iphone-screen:nth-child(n + 2) {
animation: fade6-follow 18s infinite;

}

.slideshow-6 .iphone-screen:nth-child(2) {
animation-delay: 3s;

}

.slideshow-6 .iphone-screen:nth-child(3) {
animation-delay: 6s;

}

.slideshow-6 .iphone-screen:nth-child(4) {
animation-delay: 9s;

}

.slideshow-6 .iphone-screen:nth-child(5) {
animation-delay: 12s;

}

.slideshow-6 .iphone-screen:nth-child(6) {
animation-delay: 15s;

}

@keyframes fade6-lead {
    0%,
    16.66% {
        opacity: 1;
    }

    20%,
    96.66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade6-follow {
    0% {
        opacity: 0;
    }

    3.5%,
    16.66% {
        opacity: 1;
    }

    20%,
    100% {
        opacity: 0;
    }
}

.dual-phones .iphone-mockup {
animation: none;

}

.dual-phones .phone-front .iphone-mockup {
box-shadow:
        inset 0 0 0 6px #2b2e33,
        inset 0 0 0 7px #4a4e57,
        -15px 25px 40px rgba(0, 0, 0, 0.6);

}

@keyframes floatPhoneBack {
    0% {
        transform: scale(0.85) translate(-40%, -10%);
    }

    50% {
        transform: scale(0.85) translate(-40%, -15%);
    }

    100% {
        transform: scale(0.85) translate(-40%, -10%);
    }
}

@keyframes floatPhoneFront {
    0% {
        transform: scale(1) translate(15%, 5%);
    }

    50% {
        transform: scale(1) translate(15%, calc(5% - 12px));
    }

    100% {
        transform: scale(1) translate(15%, 5%);
    }
}

@media (max-width: 900px) {
.iphone-mockup {
width: 240px;
        height: 490px;

}

}

@media (prefers-reduced-motion: reduce) {
.iphone-mockup {
animation: none;

}

.slideshow-6 .iphone-screen,
    .slideshow-5 .iphone-screen,
    .slideshow-3 .iphone-screen,
    .slideshow-2 .iphone-screen {
animation: none;
        opacity: 0;

}

.slideshow-6 .iphone-screen:nth-child(1),
    .slideshow-5 .iphone-screen:nth-child(1),
    .slideshow-3 .iphone-screen:nth-child(1),
    .slideshow-2 .iphone-screen:nth-child(1) {
opacity: 1;

}

}

/* Analytics consent banner */
:root {
    --analytics-consent-offset: 9rem;
}

body.has-analytics-consent {
    padding-bottom: calc(
        var(--analytics-consent-offset) + env(safe-area-inset-bottom, 0px)
    );
}

.analytics-consent {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 0.85rem clamp(1rem, 3vw, 2rem) calc(0.85rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--color-base) 96%, transparent);
    border-top: 1px solid var(--app-border-muted);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

html.analytics-consent-resolved #analytics-consent {
    display: none;
}

.analytics-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: stretch;
    max-width: 1200px;
    margin-inline: auto;
}

.analytics-consent__title {
    margin: 0 0 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--app-text-strong);
}

.analytics-consent__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.analytics-consent__text a {
    color: var(--accent-bright);
    font-weight: 600;
}

.analytics-consent__actions {
    display: flex;
    flex-direction: row;
    gap: 0.55rem;
}

.btn-consent {
    flex: 1 1 0;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-consent--accept {
    border: 1px solid var(--palette-blue);
    background: var(--palette-blue);
    color: var(--app-text-inverse);
}

.btn-consent--accept:hover {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
}

.btn-consent--decline {
    border: 1px solid var(--app-border-muted);
    background: transparent;
    color: var(--app-text);
}

.btn-consent--decline:hover {
    border-color: var(--palette-lavender);
    background: rgba(188, 198, 214, 0.08);
}

.btn-consent:focus-visible {
    outline: 2px solid var(--palette-blue);
    outline-offset: 2px;
}

.legal-page__cookie-settings {
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .analytics-consent__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .analytics-consent__copy {
        flex: 1 1 auto;
    }

    .analytics-consent__actions {
        flex: 0 0 auto;
        min-width: 16rem;
    }
}

@media (max-width: 639px) {
    .analytics-consent__actions .btn-consent {
        min-height: 2.85rem;
    }
}
