:root {
    color-scheme: dark;
    --bg: #05070f;
    --bg-soft: #0a0e1c;
    --surface: #0d1425;
    --surface-2: #111a30;
    --text: #e2e8f0;
    --text-strong: #f8fafc;
    --muted: #94a3b8;
    --dim: #64748b;
    --line: rgba(148, 163, 184, 0.14);
    --line-strong: rgba(148, 163, 184, 0.24);
    --brand: #22d3ee;              /* cyan */
    --brand-dark: #67e8f9;         /* light cyan — used for headings/links on dark */
    --brand-alt: #a855f7;          /* violet */
    --brand-alt-2: #60a5fa;        /* sky */
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
    --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    isolation: isolate;
}

/* Ambient tech background: subtle grid + two soft color glows */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 1100px 800px at 50% 25%, #000 40%, transparent 85%);
    mask-image: radial-gradient(ellipse 1100px 800px at 50% 25%, #000 40%, transparent 85%);
}

body::after {
    content: '';
    position: fixed;
    top: -180px;
    left: -160px;
    width: 640px;
    height: 640px;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.5), transparent 60%),
        radial-gradient(circle at 80% 60%, rgba(34, 211, 238, 0.35), transparent 60%);
}

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

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 10px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 18px rgba(56, 189, 248, 0.25));
}

.brand-name {
    font-size: 1.22rem;
    font-weight: 850;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active {
    background: rgba(148, 163, 184, 0.08);
    color: var(--brand-dark);
    outline: none;
    box-shadow: none;
}

main {
    flex: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-bottom: 58px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.site-footer__copy {
    margin: 0;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__links a {
    color: var(--brand-dark);
    font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
    outline: none;
}

/* ---- Home hero (AI-tech) ---- */
.company-hero.home-hero {
    position: relative;
    width: 100%;
    height: auto;
    padding: 56px 0 72px;
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.home-hero__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.home-hero__glow--a {
    top: -80px;
    right: -60px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.55), transparent 65%);
}

.home-hero__glow--b {
    bottom: -140px;
    left: 20%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.4), transparent 65%);
}

.home-hero__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 12px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-self: flex-start;
    width: max-content;
}

.home-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15), 0 0 10px rgba(34, 211, 238, 0.7);
    animation: homeHeroPulse 2.4s ease-in-out infinite;
}

@keyframes homeHeroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15), 0 0 8px rgba(34, 211, 238, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.05), 0 0 14px rgba(34, 211, 238, 0.85); }
}

.home-hero__title {
    margin: 4px 0 0;
    color: var(--text-strong);
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.home-hero__title-amp {
    color: var(--muted);
    font-weight: 500;
    padding: 0 4px;
}

.home-hero__title-accent {
    background: linear-gradient(90deg, var(--brand), var(--brand-alt-2) 45%, var(--brand-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.home-hero__lead {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.home-hero__lead strong {
    color: var(--text);
    font-weight: 700;
}

.home-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.home-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.96rem;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.2s ease, border-color 0.18s ease, filter 0.18s ease;
    white-space: nowrap;
}

.home-hero__cta--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-alt-2) 55%, var(--brand-alt));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: #04121a;
    box-shadow: 0 12px 28px -6px rgba(34, 211, 238, 0.55), 0 0 0 1px rgba(34, 211, 238, 0.3) inset;
}

.home-hero__cta--primary svg {
    transition: transform 0.15s ease;
}

.home-hero__cta--primary:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px -6px rgba(168, 85, 247, 0.55), 0 0 0 1px rgba(168, 85, 247, 0.4) inset;
}

.home-hero__cta--primary:hover svg {
    transform: translateX(3px);
}

.home-hero__cta--ghost {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--line-strong);
    color: var(--text);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-hero__cta--ghost:hover {
    border-color: var(--brand);
    background: rgba(34, 211, 238, 0.06);
    transform: translateY(-1px);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
}

.home-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.home-hero__stat dt {
    margin: 0;
    color: var(--dim);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero__stat dd {
    margin: 0;
    color: var(--text-strong);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.home-hero__stat dd span {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0;
}

/* ---- Right-side "tracks" trio (Mobile / Web / AI) ---- */
.home-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-hero__tracks {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    isolation: isolate;
}

.home-hero__tracks::before,
.home-hero__tracks::after {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.home-hero__tracks::before {
    top: -40px;
    right: -30px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.55), transparent 60%);
}

.home-hero__tracks::after {
    bottom: -30px;
    left: -30px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 60%);
}

.home-hero__track {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--track-accent) 12%, transparent),
            transparent 70%),
        var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.55);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-hero__track:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--track-accent) 45%, var(--line));
    box-shadow: 0 26px 44px -18px rgba(0, 0, 0, 0.6);
}

.home-hero__track--mobile { --track-accent: #22d3ee; }
.home-hero__track--web    { --track-accent: #60a5fa; }
.home-hero__track--ai     { --track-accent: #a855f7; }

.home-hero__track-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--track-accent) 60%, transparent),
            color-mix(in srgb, var(--track-accent) 25%, transparent));
    color: var(--text-strong);
    box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--track-accent) 55%, transparent);
}

.home-hero__track-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-hero__track-eyebrow {
    margin: 0;
    color: var(--track-accent);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-hero__track-name {
    margin: 2px 0 0;
    color: var(--text-strong);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.005em;
}

.home-hero__track-note {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.home-hero__track-marker {
    color: var(--dim);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: right;
    line-height: 1.4;
    align-self: center;
    white-space: nowrap;
}

@keyframes homeHeroTrackPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.05); opacity: 0.85; }
}

.home-hero__track--ai .home-hero__track-icon {
    animation: homeHeroTrackPulse 3.4s ease-in-out infinite;
}

@media (max-width: 960px) {
    .home-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-hero__tracks {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .company-hero.home-hero {
        padding: 36px 0 48px;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .home-hero__track {
        padding: 14px 16px;
        gap: 12px;
    }

    .home-hero__track-icon {
        width: 40px;
        height: 40px;
    }

    .home-hero__track-marker {
        display: none;
    }
}

.apps-section {
    padding-top: 36px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.35rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.app-card {
    display: flex;
    min-width: 0;
    min-height: 320px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.07);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.app-card--compact {
    min-height: 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.1);
}

.app-card--compact .app-media {
    aspect-ratio: 1 / 1;
    padding: 18px;
    background: linear-gradient(135deg, #1a1f35, #0d1425);
}

.app-card--compact .app-media img {
    object-fit: contain;
    object-position: center;
}

.app-card--compact .status {
    top: 8px;
    right: 8px;
    max-width: 72px;
    padding: 4px 8px;
    font-size: 0.62rem;
}

.app-card--compact .app-content {
    padding: 12px;
}

.app-card--compact .app-content h3 {
    font-size: 0.92rem;
}

.app-card--compact .app-content p {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-card:hover,
.app-card:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
    box-shadow: var(--shadow);
    outline: none;
    transform: translateY(-4px);
}

.app-card--blue {
    --accent: #38bdf8;
}

.app-card--purple {
    --accent: #a855f7;
}

.app-media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
        linear-gradient(135deg, #0d1425, #050810);
}

.app-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status {
    position: absolute;
    top: 12px;
    right: 12px;
    max-width: 96px;
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(5, 7, 15, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.app-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 18px;
}

.app-content h3 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1.08rem;
    line-height: 1.3;
}

.app-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.app-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 850;
}

.app-detail {
    max-width: 960px;
    padding-top: 36px;
}

.app-detail--blue {
    --accent: #0ea5e9;
}

.app-detail--purple {
    --accent: #a855f7;
}

.app-detail__web-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 20%, transparent), transparent);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.app-detail__web-cta:hover,
.app-detail__web-cta:focus-visible {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 60%, var(--line-strong));
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 32%, transparent), transparent);
    outline: none;
}

.app-detail__web-cta svg {
    transition: transform 160ms ease;
}

.app-detail__web-cta:hover svg,
.app-detail__web-cta:focus-visible svg {
    transform: translate(2px, -2px);
}

.app-detail__back {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.app-detail__back:hover,
.app-detail__back:focus-visible {
    color: var(--brand-dark);
    outline: none;
}

.app-detail__hero {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

/* Web/AI projects don't have a phone-frame screenshot column — collapse the
   grid to a single column and cap the intro so the copy stays readable
   instead of stretching edge to edge. */
.app-detail__hero--no-media {
    grid-template-columns: minmax(0, 780px);
}

.app-detail__title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.app-detail__title-content {
    flex: 1;
    min-width: 0;
}

.app-detail__title-row .eyebrow,
.app-detail__platform {
    margin: 0 0 6px;
    color: var(--muted);
}

.app-detail__title-content h1 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    line-height: 1.2;
}

.app-detail__icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.15);
}

.screenshot-slider {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto;
    gap: 8px 6px;
    align-items: center;
}

.screenshot-slider__viewport {
    overflow: hidden;
    grid-column: 2;
    grid-row: 1;
}

.screenshot-slider__track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.screenshot-slider__track::-webkit-scrollbar {
    display: none;
}

.screenshot-slider__slide {
    flex: 0 0 100%;
    margin: 0;
    scroll-snap-align: center;
}

.screenshot-slider__phone {
    padding: 8px;
    border: 2px solid var(--line-strong);
    border-radius: 28px;
    background: #0a0f1e;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.screenshot-slider__phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.screenshot-slider__slide figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
}

.screenshot-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    color: var(--brand-dark);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.screenshot-slider__btn:hover {
    border-color: var(--brand);
    background: rgba(34, 211, 238, 0.08);
    transform: translateY(-1px);
}

.screenshot-slider__btn:hover,
.screenshot-slider__btn:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
    outline: none;
}

.screenshot-slider__btn--prev {
    grid-column: 1;
    grid-row: 1;
}

.screenshot-slider__btn--next {
    grid-column: 3;
    grid-row: 1;
}

.screenshot-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
}

.screenshot-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--line-strong);
    cursor: pointer;
}

.screenshot-slider__dot.is-active {
    width: 22px;
    background: var(--accent);
}

.app-detail__intro h1 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.2;
}

.app-detail__tagline {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-detail__status {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
}

.app-detail__intro {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.app-detail__description {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.app-detail__store-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.app-detail__stores {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.app-detail__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
}

.app-detail__legal a {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.app-detail__legal a:hover,
.app-detail__legal a:focus-visible {
    color: var(--brand-dark);
    outline: none;
}

.app-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 48px;
}

.app-page__header {
    margin-bottom: 24px;
}

.app-page__header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
}

.app-page__blogs-btn {
    justify-self: end;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-alt-2) 55%, var(--brand-alt));
    color: #04121a;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(34, 211, 238, 0.28), 0 0 0 1px rgba(34, 211, 238, 0.3) inset;
    white-space: nowrap;
}

.app-page .app-detail {
    max-width: none;
    padding-top: 0;
}

.app-page__product {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.store-badge {
    display: inline-flex;
    flex-shrink: 0;
    width: fit-content;
    line-height: 0;
    border-radius: 6px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.store-badge img {
    display: block;
    width: auto;
    height: 56px;
    max-width: none;
    object-fit: contain;
}

.store-badge:hover,
.store-badge:focus-visible {
    opacity: 0.88;
    transform: translateY(-1px);
    outline: none;
}

.app-detail__features {
    margin: 0 0 8px;
}

.app-detail__features h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 0.95rem;
    font-weight: 850;
}

.app-detail__features ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.app-detail__features li {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-detail__features li:last-child {
    margin-bottom: 0;
}

.app-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 48px;
}

.app-page__header {
    margin-bottom: 28px;
}

.app-page__header-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 20px;
}

.app-page__title-row {
    margin-top: 0;
    min-width: 0;
}

.app-page__title-row.app-detail__title-row {
    margin-bottom: 0;
}

.app-page__blogs-btn {
    flex-shrink: 0;
    justify-self: end;
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-alt-2) 55%, var(--brand-alt));
    color: #04121a;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(34, 211, 238, 0.28), 0 0 0 1px rgba(34, 211, 238, 0.35) inset;
    white-space: nowrap;
    transition: transform 0.12s ease, box-shadow 0.18s ease, filter 0.15s ease;
}

.app-page__blogs-btn:hover,
.app-page__blogs-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.35), 0 0 0 1px rgba(168, 85, 247, 0.35) inset;
}

.app-page__blogs-btn[aria-expanded='true'] {
    background: linear-gradient(135deg, var(--brand-alt), var(--brand-alt-2));
}

.app-page__back-app {
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--brand-dark);
    font-size: 0.92rem;
    font-weight: 750;
    cursor: pointer;
}

.app-page__blogs-toolbar {
    margin-bottom: 4px;
}

.app-page__title-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}

.app-page__title-row h1 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    line-height: 1.2;
}

.app-page .app-detail {
    max-width: none;
    padding-top: 0;
}

.app-page__product {
    padding-top: 20px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
}

.app-page__blogs {
    position: relative;
    margin-bottom: 36px;
    padding: 22px 20px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%),
        var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
}

.app-page__blogs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 0.55;
}

.app-page__blogs-head h2 {
    margin: 4px 0 8px;
    color: var(--brand-dark);
    font-size: 1.25rem;
}

.app-page__blogs-intro {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-blogs-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .app-blogs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.app-blog-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color 0.18s ease, transform 0.15s ease, background 0.18s ease;
}

.app-blog-card:hover {
    border-color: var(--line-strong);
    background: rgba(15, 23, 42, 0.75);
    transform: translateY(-2px);
}

.app-blog-card__title {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1.35;
    text-decoration: none;
}

.app-blog-card__title:hover {
    text-decoration: underline;
}

.app-blog-card__summary {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.app-blog-card__read {
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--brand-dark);
}

.app-detail__download-label {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.95rem;
}

.app-detail__guides {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.app-detail__guides h2 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 0.95rem;
    font-weight: 850;
}

.app-detail__guides-intro {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-detail__guides ul {
    margin: 0 0 10px;
    padding-left: 18px;
}

.app-detail__guides li {
    margin-bottom: 6px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.app-detail__guides li a {
    color: var(--brand-dark);
    font-weight: 750;
}

.app-detail__guides-more {
    margin: 0;
    font-size: 0.9rem;
}

.app-detail__guides-more a {
    color: var(--brand-dark);
    font-weight: 750;
}

.app-guides {
    max-width: 760px;
    padding: 32px 20px 48px;
}

.app-guides__intro {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.6;
}

.app-guides__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-guides__item {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.app-guides__item a {
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 1.05rem;
}

.app-guides__item p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.app-guide-article__app-link {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 750;
}

.app-guide-article__meta {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.85rem;
}

.app-guide-article__block {
    margin-bottom: 22px;
}

.app-guide-article__block h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.app-guide-article__block p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.app-guide-article__bullets {
    margin: 0 0 12px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55;
}

.app-guide-article__cta {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--brand-dark);
    font-weight: 750;
}

.app-guide-article__cta a {
    color: var(--brand-dark);
}

.content-page--legal .app-detail__back {
    display: inline-flex;
    margin-bottom: 18px;
}

.content-page {
    max-width: 760px;
    padding-top: 48px;
}

.content-page h1 {
    margin: 0 0 16px;
    color: var(--brand-dark);
    font-size: clamp(1.45rem, 4vw, 1.85rem);
    line-height: 1.2;
}

.content-page .lead {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.content-block {
    margin-bottom: 28px;
}

.content-block h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 1.15rem;
}

.content-block p,
.content-block li {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.content-block a,
.content-page a {
    color: var(--brand-dark);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.content-list {
    margin: 0;
    padding-left: 20px;
}

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

.contact-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.contact-card h2 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 1rem;
}

.contact-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--brand-dark);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.content-page--legal .content-block h2 {
    font-size: 1.05rem;
}

.simple-page {
    max-width: 720px;
    padding-top: 56px;
}

.simple-page h1 {
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: 1.45rem;
    line-height: 1.25;
}

.simple-page h2 {
    margin: 28px 0 10px;
    color: var(--brand-dark);
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1.3;
}

.simple-page h2:first-of-type {
    margin-top: 8px;
}

.simple-page p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.simple-page a {
    color: var(--brand-dark);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1080px) {
    .app-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

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

    .app-detail__hero {
        grid-template-columns: 1fr;
    }

    .screenshot-slider {
        width: 100%;
        max-width: min(100%, 360px);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 18px 0 8px;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .site-nav a {
        justify-content: center;
        min-height: 44px;
        padding: 0 10px;
        font-size: 0.84rem;
    }

    .company-hero {
        height: clamp(210px, 48vw, 320px);
    }

    .company-hero__overlay {
        width: min(100% - 32px, 1180px);
        padding: 0 16px;
    }

    .company-hero__panel {
        padding: 0;
    }

    .company-hero__overlay h1 {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .apps-section {
        padding-top: 28px;
    }

    .app-detail {
        padding-top: 24px;
    }

    .app-page {
        padding: 20px 16px 40px;
    }

    .app-page__header-bar {
        grid-template-columns: 1fr;
    }

    .app-page__blogs-btn {
        justify-self: start;
        width: auto;
        min-width: 120px;
    }

    .app-detail__hero {
        gap: 22px;
    }

    .screenshot-slider {
        max-width: 100%;
    }

    .screenshot-slider__btn {
        width: 44px;
        height: 44px;
    }

    .screenshot-slider__dot {
        width: 10px;
        height: 10px;
    }

    .screenshot-slider__dot.is-active {
        width: 24px;
    }

    .app-detail__store-section {
        margin-top: 28px;
        padding-top: 28px;
    }

    .app-detail__stores {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-badge img {
        height: 52px;
    }

    .app-detail__legal a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        font-size: 0.78rem;
    }
}

@media (max-width: 620px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 24px, 1180px);
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .company-hero__overlay {
        width: min(100% - 24px, 1180px);
        padding: 0 12px;
    }

    .company-hero__tagline {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    h1 {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 14px;
    }

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

    .app-card--compact .app-content {
        padding: 10px;
    }

    .app-card--compact .app-content h3 {
        font-size: 0.86rem;
    }

    .app-card--compact .app-content p {
        font-size: 0.74rem;
    }

    .app-card--compact .app-media {
        padding: 14px;
    }

    .content-page,
    .simple-page {
        padding-top: 32px;
    }

    .content-page h1,
    .simple-page h1 {
        font-size: clamp(1.3rem, 6vw, 1.65rem);
    }

    .content-block p,
    .content-block li,
    .simple-page p {
        font-size: 0.95rem;
    }

    .app-detail__back {
        min-height: 44px;
        align-items: center;
    }

    .app-detail__title-row {
        gap: 12px;
    }

    .app-detail__icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .app-detail__description,
    .app-detail__features li {
        font-size: 0.92rem;
    }
}

@media (max-width: 400px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-card--compact {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

    .site-nav a {
        font-size: 0.78rem;
        padding: 0 6px;
    }
}

.app-legal-root,
body.app-legal-page {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    background: #ffffff;
}

body.app-legal-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: clip;
}

.app-legal-page main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.app-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 24px;
    padding-bottom: 24px;
}

.app-legal__card {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
}

.app-legal__body {
    text-align: left;
}

.app-legal__header h1 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: clamp(1.6rem, 4vw, 2rem);
    line-height: 1.2;
}

.app-legal__app-name {
    margin: 0 0 6px;
    color: #0ea5e9;
    font-size: 1rem;
    font-weight: 800;
}

.app-legal__updated {
    margin: 0 0 28px;
    color: #64748b;
    font-size: 0.88rem;
}

.app-legal__body h2 {
    margin: 24px 0 8px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
}

.app-legal__body p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
}

.app-legal__body a {
    color: #0369a1;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.app-legal__contact {
    margin-top: 28px !important;
    text-align: center;
}

@media (max-width: 768px) {
    .app-legal__header h1 {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }

    .app-legal__body h2 {
        font-size: 0.95rem;
    }

    .app-legal__body p {
        font-size: 0.9rem;
    }
}

.site-messages {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px 0;
}

.site-message {
    margin: 0 0 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
}

.site-message--success {
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.site-message--error {
    background: rgba(244, 63, 94, 0.1);
    color: #fda4af;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

/* ============================================================
   Contact page — AI-tech dark theme
============================================================ */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page--tech {
    --ct-bg: transparent;
    --ct-panel: rgba(15, 23, 42, 0.55);
    --ct-line: var(--line);
    --ct-line-strong: var(--line-strong);
    --ct-text: var(--text);
    --ct-muted: var(--muted);
    --ct-dim: var(--dim);
    --ct-accent: var(--brand);
    --ct-accent-2: var(--brand-alt);
    --ct-accent-3: var(--brand-alt-2);
    --ct-mono: var(--mono);

    position: relative;
    width: 100%;
    margin: 0;
    padding: 48px 0 80px;
    color: var(--text);
    isolation: isolate;
}

.contact-page__inner {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.contact-page__intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 12px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--ct-line-strong);
    border-radius: 999px;
    color: var(--ct-muted);
    font-family: var(--ct-mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-page__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 0 10px rgba(34, 211, 238, 0.7);
    animation: ctPulse 2.4s ease-in-out infinite;
}

@keyframes ctPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 0 8px rgba(34, 211, 238, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.05), 0 0 14px rgba(34, 211, 238, 0.8); }
}

.contact-page__eyebrow-code {
    color: var(--ct-accent);
    letter-spacing: 0.1em;
}

.contact-page__title {
    margin: 0 0 18px;
    color: #f8fafc;
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.contact-page__title-accent {
    background: linear-gradient(90deg, var(--ct-accent), var(--ct-accent-3) 40%, var(--ct-accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-page__lead {
    margin: 0 auto;
    max-width: 640px;
    color: var(--ct-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.contact-page__mono {
    font-family: var(--ct-mono);
    color: var(--ct-text);
    background: rgba(34, 211, 238, 0.08);
    padding: 1px 6px;
    border-radius: 6px;
    border: 1px solid rgba(34, 211, 238, 0.18);
    font-size: 0.92em;
}

.contact-page--tech .contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

/* --- Left info column (dark card) --- */
.contact-page--tech .contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 26px 24px;
    background:
        linear-gradient(180deg, rgba(34, 211, 238, 0.06), transparent 40%),
        var(--ct-panel);
    border: 1px solid var(--ct-line);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-page--tech .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ct-accent), transparent);
    opacity: 0.6;
}

.contact-info__block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info__label {
    margin: 0;
    color: var(--ct-dim);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-info__value {
    margin: 0;
    color: var(--ct-text);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
    text-decoration: none;
}

a.contact-info__value {
    color: var(--ct-text);
    transition: color 0.15s ease;
}

a.contact-info__value:hover {
    color: var(--ct-accent);
}

.contact-info__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
    padding: 12px 18px;
    background: transparent;
    border: 1px solid var(--ct-line-strong);
    border-radius: 10px;
    color: var(--ct-text);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

.contact-info__cta svg {
    transition: transform 0.15s ease;
}

.contact-info__cta:hover {
    border-color: var(--ct-accent);
    background: rgba(34, 211, 238, 0.06);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08), 0 0 24px rgba(34, 211, 238, 0.18);
}

.contact-info__cta:hover svg {
    transform: translateX(3px);
}

.contact-info__cta:active {
    transform: translateY(1px);
}

/* --- Form panel (dark) --- */
.contact-page--tech .contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(168, 85, 247, 0.04), transparent 30%),
        var(--ct-panel);
    border: 1px solid var(--ct-line);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-page--tech .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ct-accent-2), transparent);
    opacity: 0.55;
}

.contact-page--tech .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-page--tech .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.contact-page--tech .contact-form__field label {
    color: var(--ct-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contact-page--tech .contact-form__optional {
    color: var(--ct-dim);
    font-weight: 500;
}

.contact-page--tech .contact-form__field input,
.contact-page--tech .contact-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(5, 7, 15, 0.55);
    border: 1px solid var(--ct-line);
    border-radius: 10px;
    font-size: 0.98rem;
    font-family: inherit;
    color: var(--ct-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    caret-color: var(--ct-accent);
}

.contact-page--tech .contact-form__field input::placeholder,
.contact-page--tech .contact-form__field textarea::placeholder {
    color: #475569;
    font-family: inherit;
}

.contact-page--tech .contact-form__field input:hover,
.contact-page--tech .contact-form__field textarea:hover {
    border-color: var(--ct-line-strong);
}

.contact-page--tech .contact-form__field input:focus,
.contact-page--tech .contact-form__field textarea:focus {
    outline: none;
    background: rgba(5, 7, 15, 0.85);
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12), 0 0 30px rgba(34, 211, 238, 0.14);
}

.contact-page--tech .contact-form__field textarea {
    min-height: 168px;
    resize: vertical;
    line-height: 1.55;
    font-family: inherit;
}

.contact-page--tech .contact-form__field--error input,
.contact-page--tech .contact-form__field--error textarea {
    border-color: rgba(244, 63, 94, 0.55);
    background: rgba(244, 63, 94, 0.06);
}

.contact-page--tech .contact-form__field--error input:focus,
.contact-page--tech .contact-form__field--error textarea:focus {
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.contact-page--tech .contact-form__error {
    margin: 0;
    color: #fda4af;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-page--tech .contact-form__error::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f43f5e;
}

.contact-page--tech .contact-form__honeypot {
    position: absolute !important;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-page--tech .contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-top: 4px;
}

.contact-page--tech .contact-form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ct-accent), var(--ct-accent-3) 55%, var(--ct-accent-2));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: #04121a;
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.005em;
    cursor: pointer;
    box-shadow: 0 12px 30px -8px rgba(34, 211, 238, 0.6), 0 0 0 1px rgba(34, 211, 238, 0.3) inset;
    transition: background-position 0.4s ease, transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s ease;
    overflow: hidden;
}

.contact-page--tech .contact-form__submit svg {
    transition: transform 0.15s ease;
}

.contact-page--tech .contact-form__submit:hover {
    background-position: 100% 50%;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px -8px rgba(168, 85, 247, 0.55), 0 0 0 1px rgba(168, 85, 247, 0.4) inset;
}

.contact-page--tech .contact-form__submit:hover svg {
    transform: translateX(3px);
}

.contact-page--tech .contact-form__submit:active {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .contact-page--tech .contact-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .contact-page--tech {
        padding: 48px 0 72px;
    }

    .contact-page__intro {
        margin-bottom: 32px;
    }

    .contact-page--tech .contact-form {
        padding: 22px 18px;
    }

    .contact-page--tech .contact-info {
        padding: 22px 18px;
    }

    .contact-page--tech .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-page--tech .contact-form__submit {
        width: 100%;
        justify-content: center;
    }
}

.newsletter-form {
    margin: 20px 0;
    padding: 18px 16px;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(34, 211, 238, 0.05), transparent 40%),
        var(--surface);
    border: 1px solid var(--line);
}

.newsletter-form__headline {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
}

.newsletter-form__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form__row input[type='email'] {
    flex: 1 1 200px;
    min-width: 0;
    padding: 12px 14px;
    background: rgba(5, 7, 15, 0.6);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
    caret-color: var(--brand);
}

.newsletter-form__row input[type='email']::placeholder {
    color: var(--dim);
}

.newsletter-form__row input[type='email']:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(5, 7, 15, 0.85);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.newsletter-form__btn {
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-alt-2) 55%, var(--brand-alt));
    color: #04121a;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.25);
    transition: transform 0.12s ease, box-shadow 0.18s ease;
}

.newsletter-form__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(168, 85, 247, 0.3);
}

.newsletter-form__consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.newsletter-form__consent label a {
    color: var(--brand-dark);
}

.app-comparison {
    margin: 24px 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
}

.app-comparison h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 1.05rem;
    line-height: 1.3;
}

.app-comparison__intro {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.app-comparison__table-wrap {
    overflow-x: auto;
}

.app-comparison__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.app-comparison__table th,
.app-comparison__table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    color: var(--muted);
}

.app-comparison__table thead th {
    color: var(--brand-dark);
    font-weight: 800;
    background: rgba(148, 163, 184, 0.06);
}

.app-comparison__us {
    color: #34d399;
    font-weight: 750;
}

.app-comparison__footnote {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.app-download-cta {
    margin-top: 28px;
    padding: 22px 18px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%),
        var(--surface);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.app-download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    opacity: 0.6;
}

.app-download-cta__title {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    line-height: 1.35;
}

.app-download-cta__sub {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.app-download-cta__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-detail__newsletter,
.app-guide-article__newsletter,
.app-page__blogs-footer {
    margin-top: 8px;
}

.app-page__blogs-footer .newsletter-form {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .newsletter-form__btn {
        width: 100%;
    }

    .app-comparison__table {
        font-size: 0.82rem;
    }
}

/* Screen-reader-only headings — keep the document outline complete without
   changing the visual design. */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Long-form guide article blocks ---- */

.app-guide-article__block h3 {
    margin: 16px 0 8px;
    color: var(--brand-dark);
    font-size: 0.98rem;
}

.guide-takeaways {
    margin: 0 0 24px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.05);
}

.guide-takeaways h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.guide-takeaways ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.93rem;
}

.guide-takeaways li + li {
    margin-top: 6px;
}

.guide-toc {
    margin: 0 0 26px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.guide-toc h2 {
    margin: 0 0 8px;
    color: var(--brand-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.guide-toc ol {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.guide-toc a {
    color: var(--brand-dark);
    text-decoration: none;
}

.guide-toc a:hover {
    text-decoration: underline;
}

.guide-steps {
    margin: 0 0 14px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.guide-steps li + li {
    margin-top: 10px;
}

.guide-steps__title {
    color: var(--brand-dark);
}

.guide-faq__item + .guide-faq__item {
    margin-top: 14px;
}

.guide-related {
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.guide-related h2 {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.guide-related ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-related li + li {
    margin-top: 12px;
}

.guide-related a {
    display: block;
    color: var(--brand-dark);
    font-weight: 750;
    font-size: 0.98rem;
}

.guide-related span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Long-form articles need reading typography, not the homepage hero scale.
   Scoped to .app-guide-article so other pages are untouched. */
.app-guide-article h1 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.2;
    margin: 0 0 10px;
}

.app-guide-article .app-guide-article__block h2 {
    margin: 28px 0 12px;
    font-size: 1.3rem;
    line-height: 1.3;
}

.app-guide-article .app-guide-article__block h3 {
    font-size: 1.05rem;
}

.app-guide-article .app-guide-article__block p,
.app-guide-article .app-guide-article__bullets,
.app-guide-article .guide-steps {
    font-size: 1rem;
    line-height: 1.7;
}

.app-guide-article .app-guides__intro {
    font-size: 1.08rem;
    line-height: 1.6;
}
