:root {
    --appka-green-1000: #010904;
    --appka-gold-500: #e3aa31;
    --appka-gold-400: #f0bf48;
    --appka-gold-300: #f7d16b;
    --appka-cream: #fff8e8;
    --appka-text: #f5f3e9;
    --appka-muted: #bdc8ba;
    --appka-page-width: 1420px;
    --appka-serif: Georgia, "Times New Roman", Times, serif;
    --appka-sans: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--appka-text);
    background: var(--appka-green-1000);
    font-family: var(--appka-sans);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.appka-menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.appka-skip-link {
    position: fixed;
    z-index: 5000;
    top: 8px;
    left: 8px;
    padding: 10px 15px;
    color: #171004;
    background: var(--appka-gold-300);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.appka-skip-link:focus {
    transform: translateY(0);
}

.appka-background {
    position: fixed;
    z-index: -3;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 13%, rgba(35, 89, 40, 0.30), transparent 32rem),
        radial-gradient(circle at 82% 14%, rgba(231, 174, 49, 0.08), transparent 28rem),
        radial-gradient(circle at 78% 72%, rgba(25, 82, 39, 0.22), transparent 34rem),
        linear-gradient(180deg, #010904 0%, #03160b 54%, #010804 100%);
}

.appka-background::before,
.appka-background::after {
    position: absolute;
    inset: -8%;
    content: "";
    pointer-events: none;
}

.appka-background::before {
    opacity: 0.72;
    background-image:
        radial-gradient(circle at 11% 18%, rgba(162, 194, 82, 0.10) 0 8px, transparent 22px),
        radial-gradient(circle at 18% 31%, rgba(80, 141, 61, 0.10) 0 15px, transparent 46px),
        radial-gradient(circle at 73% 8%, rgba(243, 182, 45, 0.13) 0 8px, transparent 28px),
        radial-gradient(circle at 87% 16%, rgba(239, 173, 37, 0.14) 0 12px, transparent 38px),
        radial-gradient(circle at 92% 31%, rgba(244, 180, 37, 0.13) 0 17px, transparent 46px),
        radial-gradient(circle at 78% 44%, rgba(242, 177, 42, 0.08) 0 11px, transparent 34px),
        radial-gradient(circle at 94% 70%, rgba(242, 177, 42, 0.11) 0 18px, transparent 50px),
        radial-gradient(circle at 12% 84%, rgba(92, 143, 53, 0.11) 0 16px, transparent 45px);
    filter: blur(4px);
}

.appka-background::after {
    opacity: 0.22;
    background-image:
        repeating-linear-gradient(105deg, transparent 0 38px, rgba(255, 255, 255, 0.014) 39px 40px),
        repeating-linear-gradient(12deg, transparent 0 51px, rgba(255, 255, 255, 0.009) 52px 53px);
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.appka-page {
    width: min(calc(100% - 24px), var(--appka-page-width));
    margin: 0 auto;
    padding: 12px 0 46px;
}

.appka-main-card {
    position: relative;
    display: grid;
    min-height: calc(100svh - 24px);
    grid-template-rows: minmax(470px, 1fr) auto;
    overflow: hidden;
    border: 0;
    background:
        radial-gradient(circle at 20% 42%, rgba(56, 111, 47, 0.25), transparent 32rem),
        radial-gradient(circle at 87% 29%, rgba(227, 164, 35, 0.085), transparent 29rem),
        linear-gradient(112deg, rgba(3, 26, 14, 0.985), rgba(2, 18, 10, 0.985));
    box-shadow: none;
}

.appka-main-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.54;
    background-image:
        radial-gradient(circle at 86% 9%, rgba(239, 180, 42, 0.13) 0 8px, transparent 30px),
        radial-gradient(circle at 92% 24%, rgba(239, 180, 42, 0.12) 0 15px, transparent 45px),
        radial-gradient(circle at 81% 39%, rgba(239, 180, 42, 0.07) 0 10px, transparent 36px),
        radial-gradient(circle at 94% 57%, rgba(239, 180, 42, 0.08) 0 18px, transparent 50px),
        radial-gradient(circle at 76% 66%, rgba(239, 180, 42, 0.055) 0 8px, transparent 32px);
    filter: blur(2px);
}

.appka-header,
.appka-hero,
.appka-stats {
    position: relative;
    z-index: 2;
}

.appka-header {
    position: sticky;
    z-index: 1200;
    top: 0;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 5px clamp(28px, 4vw, 58px);
    border: 0;
    outline: 0;
    background:
        radial-gradient(ellipse at 24% -118%, rgba(116, 137, 45, 0.11), transparent 54%),
        linear-gradient(90deg, #000d06 0%, #012715 24%, #022f18 50%, #012715 78%, #000d06 100%);
    box-shadow: none;
    transition: min-height 180ms ease, padding 180ms ease, background 180ms ease;
}

.appka-header::before {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(88, 111, 28, 0.0) 0%, rgba(98, 123, 33, 0.34) 12%, rgba(116, 143, 40, 0.56) 50%, rgba(98, 123, 33, 0.34) 88%, rgba(88, 111, 28, 0.0) 100%);
    box-shadow: 0 0 3px rgba(88, 111, 28, 0.10);
    pointer-events: none;
}

.appka-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(88, 111, 28, 0.0) 0%, rgba(98, 123, 33, 0.38) 12%, rgba(116, 143, 40, 0.62) 50%, rgba(98, 123, 33, 0.38) 88%, rgba(88, 111, 28, 0.0) 100%);
    box-shadow: 0 1px 3px rgba(88, 111, 28, 0.12);
    pointer-events: none;
}

.appka-logo {
    position: relative;
    display: flex;
    width: clamp(190px, 16vw, 238px);
    min-height: 58px;
    align-items: center;
    flex: 0 0 auto;
}

.appka-logo__default {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 150ms ease, transform 180ms ease, visibility 180ms;
}

.appka-logo__default-image {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.38));
}

.appka-logo__default-text {
    color: #ffe45f;
    font-family: var(--appka-serif);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.20;
    white-space: nowrap;
    text-shadow:
        0 0 10px rgba(255, 216, 70, 0.32),
        0 2px 8px rgba(0, 0, 0, 0.50);
}

.appka-logo__default-text strong {
    display: block;
    margin-top: 3px;
    color: #ffd23f;
    font-size: 0.92em;
}

.appka-logo__compact {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 150ms ease, transform 180ms ease, visibility 180ms;
}

.appka-logo__compact-image {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.38));
}

.appka-logo__compact-text {
    color: var(--appka-cream);
    font-family: var(--appka-serif);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.20;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.48);
}

.appka-logo__compact-text strong {
    display: block;
    margin-top: 3px;
    color: #84b342;
    font-size: 0.92em;
}

.appka-header.appka-header--compact {
    min-height: 62px;
    padding-block: 3px;
    background:
        radial-gradient(ellipse at 24% -118%, rgba(116, 137, 45, 0.09), transparent 54%),
        linear-gradient(90deg, #000a05 0%, #012312 24%, #022a15 50%, #012312 78%, #000a05 100%);
}

.appka-header--compact .appka-logo__default {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
}

.appka-header--compact .appka-logo__compact {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.appka-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.appka-navigation a {
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px clamp(14px, 1.18vw, 22px);
    border: 0 !important;
    border-radius: 0 !important;
    color: #f4f1df;
    background: none !important;
    box-shadow: none !important;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.46);
    transition:
        color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
}

/* Jednotlive volby menu nemaji vlastni ramecek ani pozadi. */
.appka-navigation a:link,
.appka-navigation a:visited,
.appka-navigation a:hover,
.appka-navigation a:active,
.appka-navigation a:focus,
.appka-navigation a:focus-visible {
    border: 0 !important;
    border-radius: 0 !important;
    outline-offset: 4px;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.appka-navigation a::after {
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, #e8a924 16%, #ffd66b 50%, #e8a924 84%, transparent);
    box-shadow: 0 0 8px rgba(244, 191, 63, 0.56);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.appka-navigation a:hover,
.appka-navigation a:focus-visible {
    color: #d8ff4f;
    background: none !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.appka-navigation a:hover::after,
.appka-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.appka-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.appka-menu-button span {
    display: block;
    width: 27px;
    height: 2px;
    margin: 6px auto;
    border-radius: 9px;
    background: var(--appka-gold-400);
    transition: transform 180ms ease, opacity 180ms ease;
}

.appka-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    min-height: 540px;
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    padding: 0 clamp(46px, 5.2vw, 78px) 4px clamp(20px, 3.4vw, 52px);
    background: #010f07;
}

.appka-hero__visual {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    height: min(58vw, 670px);
    min-height: 500px;
    place-items: center;
    margin: 0;
    overflow: visible;
    isolation: isolate;
}

.appka-hero__art {
    position: relative;
    width: min(123%, 830px);
    aspect-ratio: 1 / 1;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.72) 89%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.72) 89%, transparent 100%);
}

.appka-hero__visual::after {
    position: absolute;
    z-index: -1;
    right: 12%;
    bottom: 4%;
    left: 10%;
    height: 14%;
    content: "";
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    filter: blur(25px);
}

.appka-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.04) contrast(1.02) drop-shadow(0 24px 26px rgba(0, 0, 0, 0.28));
    -webkit-mask-image: none;
    mask-image: none;
}

.appka-hero__screen,
.appka-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.appka-hero__screen {
    z-index: 1;
    object-fit: contain;
    object-position: center;
}

.appka-hero__slide {
    z-index: 2;
    opacity: 0;
    transition: opacity 900ms ease-in-out;
    will-change: opacity;
}

.appka-hero__slide--active {
    opacity: 1;
}

/* Nový skutečný screen se prolíná nad předchozím screenem. */
.appka-hero__slide--entering {
    z-index: 3;
}

/* Při návratu na první pevný screen se předchozí screen plynule ztratí. */
.appka-hero__slide--leaving {
    z-index: 3;
    opacity: 0;
}

.appka-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 590px;
    padding: 16px 0 22px;
}

.appka-hero__kicker {
    margin: 0 0 26px;
    color: #f4c84f;
    font-family: var(--appka-serif);
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.16;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    transform: translateY(-10px);
}

.appka-hero__content h1 {
    margin: 0;
    color: var(--appka-cream);
    font-family: var(--appka-serif);
    font-size: clamp(4rem, 5.25vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.appka-hero__content h1 span {
    display: block;
    color: #84b342;
    padding-left: 0.68em;
    font-size: 0.66em;
    text-shadow:
        0 0 10px rgba(132, 179, 66, 0.18),
        0 4px 18px rgba(0, 0, 0, 0.42);
}

.appka-hero__content h2 {
    margin: 29px 0 3px;
    color: #f4c84f;
    font-family: var(--appka-sans);
    font-size: clamp(1.08rem, 1.4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.42;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.48);
}

.appka-hero__description {
    max-width: 555px;
    margin: 0;
    color: #f0f1eb;
    font-size: clamp(1.04rem, 1.38vw, 1.24rem);
    line-height: 1.72;
    text-shadow: 0 2px 9px rgba(0, 0, 0, 0.48);
}

.appka-hero__buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 33px;
}

.appka-button {
    display: inline-flex;
    width: fit-content;
    min-width: 248px;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.21);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.appka-button--green {
    border-color: #d8ff4f;
    color: #102003;
    background: linear-gradient(180deg, #e5ff72 0%, #bce83f 50%, #91c926 100%);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.38),
        0 0 18px rgba(216, 255, 79, 0.18),
        0 11px 28px rgba(104, 151, 24, 0.27);
}

.appka-button--green:hover,
.appka-button--green:focus-visible {
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.45),
        0 0 24px rgba(216, 255, 79, 0.30),
        0 16px 32px rgba(104, 151, 24, 0.34);
}

.appka-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 16px 20px;
    border-top: 1px solid rgba(250, 230, 174, 0.21);
    background:
        linear-gradient(90deg, rgba(3, 48, 23, 0.97), rgba(7, 66, 31, 0.98), rgba(3, 48, 23, 0.97));
    box-shadow: inset 0 14px 28px rgba(0, 0, 0, 0.12);
}

.appka-stat {
    position: relative;
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    gap: 19px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.07);
}

.appka-stat:not(:last-child)::after {
    position: absolute;
    top: 16px;
    right: -1px;
    bottom: 16px;
    width: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.07);
}

.appka-stat__icon,
.appka-feature__icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--appka-gold-400);
}

.appka-stat__icon {
    width: 54px;
    height: 54px;
}

.appka-stat__icon svg,
.appka-feature__icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.appka-stat__text {
    display: flex;
    min-width: 78px;
    flex-direction: column;
    color: #f9f5e7;
}

.appka-stat strong {
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.24;
}

.appka-stat small {
    color: #e4e8df;
    font-size: 1rem;
    line-height: 1.30;
}

main {
    position: relative;
}

.appka-section {
    position: relative;
    padding: 112px clamp(8px, 1vw, 18px);
}

.appka-section + .appka-section {
    border-top: 1px solid rgba(229, 176, 50, 0.10);
}

.appka-section__heading > span,
.appka-download__copy > span {
    color: #d8ff4f;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 9px rgba(216, 255, 79, 0.22);
}

.appka-section__heading h2,
.appka-download h2 {
    max-width: 900px;
    margin: 12px 0 16px;
    color: var(--appka-cream);
    font-family: var(--appka-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-wrap: balance;
}

.appka-section__heading h2 em,
.appka-download h2 em {
    color: var(--appka-gold-400);
    font-style: normal;
}

.appka-title-line {
    width: 168px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--appka-gold-500), transparent);
}

.appka-about {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.84fr);
    align-items: start;
    gap: 48px;
}

.appka-about__copy {
    padding: 4px 0 8px;
    color: var(--appka-muted);
    font-size: 1.05rem;
}

.appka-about__copy p {
    margin: 0;
}

.appka-about__copy p + p {
    margin-top: 18px;
}

.appka-about__lead {
    color: #f1eee3;
    font-family: var(--appka-serif);
    font-size: 1.48rem;
    line-height: 1.48;
}

.appka-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.appka-feature {
    position: relative;
    display: flex;
    min-height: 136px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 15px 13px 17px;
    border: 1px solid rgba(117, 166, 96, 0.10);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(20, 67, 39, 0.86), rgba(10, 44, 25, 0.91));
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.025),
        0 8px 18px rgba(0, 0, 0, 0.14);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.appka-feature:hover {
    border-color: rgba(239, 190, 67, 0.56);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
    transform: translateY(-6px);
}

.appka-feature__icon {
    width: 42px;
    height: 42px;
}

.appka-feature__text {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 7px;
    text-align: center;
}

.appka-feature h3 {
    margin: 0;
    color: #f9f5e7;
    font-family: var(--appka-sans);
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.24;
}

.appka-feature p {
    margin: 0;
    color: #d7dfd5;
    font-size: 0.80rem;
    line-height: 1.48;
}

.appka-screen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 52px;
}

.appka-screen-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(226, 176, 49, 0.22);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(8, 55, 29, 0.92), rgba(2, 18, 10, 0.985));
    box-shadow: 0 23px 60px rgba(0, 0, 0, 0.30);
    transition: transform 200ms ease, border-color 200ms ease;
}

.appka-screen-card:hover {
    border-color: rgba(242, 196, 73, 0.50);
    transform: translateY(-6px);
}

.appka-screen-card__image {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.055);
    background:
        radial-gradient(circle at 50% 18%, rgba(56, 130, 67, 0.27), transparent 18rem),
        linear-gradient(180deg, rgba(2, 15, 8, 0.4), rgba(0, 0, 0, 0.18));
}

.appka-tablet {
    position: relative;
    display: block;
    width: min(100%, 250px);
    margin: 0;
    padding: 14px 11px 16px;
    border: 1px solid rgba(239, 244, 241, 0.78);
    border-radius: 26px;
    background:
        linear-gradient(100deg,
            #626a66 0%,
            #d8ddda 12%,
            #8e9792 29%,
            #f0f3f1 49%,
            #747d78 72%,
            #d4d9d6 88%,
            #5e6662 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.62),
        inset 0 0 0 3px rgba(28, 34, 31, 0.28),
        0 24px 48px rgba(0, 0, 0, 0.48),
        0 0 18px rgba(217, 224, 220, 0.09);
    color: inherit;
    appearance: none;
    cursor: zoom-in;
    transition: transform 190ms ease, box-shadow 190ms ease;
}

button.appka-tablet:hover,
button.appka-tablet:focus-visible {
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 0 0 3px rgba(28, 34, 31, 0.28),
        0 28px 56px rgba(0, 0, 0, 0.54),
        0 0 24px rgba(232, 190, 75, 0.16);
    transform: translateY(-3px) scale(1.012);
}

.appka-tablet::after {
    position: absolute;
    z-index: 2;
    bottom: 5px;
    left: 50%;
    width: 38px;
    height: 3px;
    content: "";
    border-radius: 99px;
    background: rgba(22, 27, 24, 0.52);
    transform: translateX(-50%);
}

.appka-tablet__camera {
    position: absolute;
    z-index: 3;
    top: 5px;
    left: 50%;
    width: 5px;
    height: 5px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: #202623;
    box-shadow: 0 0 0 1px rgba(16, 20, 18, 0.26);
    transform: translateX(-50%);
}

.appka-tablet__screen {
    display: block;
    overflow: hidden;
    border: 5px solid #090c0a;
    border-radius: 16px;
    background: #000;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.10),
        0 1px 4px rgba(255, 255, 255, 0.16);
}

.appka-tablet__screen img {
    display: block;
    width: 100%;
    height: auto;
}

.appka-screen-card__text {
    display: grid;
    min-height: 470px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 48px clamp(34px, 5vw, 82px);
}

.appka-screen-card__text small {
    color: var(--appka-gold-400);
    font-family: var(--appka-serif);
    font-size: 1.05rem;
    font-weight: 700;
}

.appka-screen-card__text > div > span {
    display: block;
    margin-bottom: 10px;
    color: #d8ff4f;
    font-size: 0.70rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.appka-screen-card__text h3 {
    margin: 0;
    color: var(--appka-cream);
    font-family: var(--appka-serif);
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.08;
}

.appka-screen-card__text p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--appka-muted);
    font-size: clamp(0.98rem, 1.28vw, 1.16rem);
    line-height: 1.65;
}

.appka-screen-card__copy {
    max-width: 720px;
    margin-top: 18px;
}

.appka-screen-card__copy p {
    margin: 0;
}

.appka-screen-card__list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: var(--appka-muted);
    font-size: clamp(0.98rem, 1.28vw, 1.16rem);
    line-height: 1.65;
}

.appka-screen-card__list li {
    position: relative;
    margin-top: 6px;
    padding-left: 1.15em;
}

.appka-screen-card__list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--appka-gold-400);
}

.appka-download {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
    padding: 0;
}

.appka-download__copy,
.appka-download__buttons {
    position: relative;
    z-index: 2;
}

.appka-download h2 {
    max-width: 720px;
    font-size: clamp(2.8rem, 4.7vw, 4.8rem);
}

.appka-download p {
    margin: 0;
    color: var(--appka-muted);
}

.appka-download__buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.appka-download__buttons .appka-button {
    width: 330px;
    max-width: 100%;
}

.appka-button--download-large {
    min-width: 330px;
    min-height: 132px;
    flex-direction: column;
    gap: 5px;
    padding: 20px 34px;
    font-size: clamp(1.42rem, 1.82vw, 1.72rem);
    line-height: 1.08;
}

.appka-footer {
    position: relative;
    padding: 48px clamp(22px, 3vw, 42px);
    border-top: 0;
    background: #000702;
}

.appka-footer__legal {
    max-width: 1280px;
    margin: 0 auto;
    color: #aebbac;
    font-size: 0.88rem;
    line-height: 1.75;
}

.appka-footer__legal p {
    margin: 0;
}

.appka-footer__legal p + p {
    margin-top: 18px;
}

.appka-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #aebbac;
    font-size: 0.82rem;
}

.appka-footer a {
    transition: color 160ms ease;
}

.appka-footer a:hover,
.appka-footer a:focus-visible {
    color: var(--appka-gold-400);
}

.appka-footer__bottom {
    position: relative;
    margin-top: 32px;
    padding: 22px 0;
    border-top: 0;
}

.appka-footer__bottom::before {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(88, 111, 28, 0.0) 0%, rgba(98, 123, 33, 0.38) 12%, rgba(116, 143, 40, 0.62) 50%, rgba(98, 123, 33, 0.38) 88%, rgba(88, 111, 28, 0.0) 100%);
    box-shadow: 0 1px 3px rgba(88, 111, 28, 0.12);
    pointer-events: none;
}

.appka-footer__bottom > a {
    position: relative;
    padding: 9px 0;
    color: #d8ff4f;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 9px rgba(216, 255, 79, 0.30);
}

.appka-footer__bottom > a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, #e8a924 16%, #ffd66b 50%, #e8a924 84%, transparent);
    box-shadow: 0 0 9px rgba(244, 191, 63, 0.68);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.appka-footer__bottom > a:hover,
.appka-footer__bottom > a:focus-visible {
    color: #d8ff4f;
}

.appka-footer__bottom > a:hover::after,
.appka-footer__bottom > a:focus-visible::after {
    transform: scaleX(1);
}

.appka-consent {
    position: fixed;
    z-index: 4000;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 14px max(14px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: transform 360ms ease, opacity 260ms ease, visibility 360ms;
}

.appka-consent--visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.appka-consent__inner {
    display: flex;
    width: min(100%, 1420px);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 18px 22px;
    border: 1px solid rgba(117, 166, 96, 0.22);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(20, 67, 39, 0.99), rgba(10, 44, 25, 0.995));
    box-shadow:
        0 -16px 50px rgba(0, 0, 0, 0.48),
        0 0 24px rgba(216, 255, 79, 0.10);
}

.appka-consent__copy {
    max-width: 940px;
}

.appka-consent__copy strong {
    display: block;
    color: var(--appka-gold-400);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.015em;
    text-shadow: 0 0 10px rgba(231, 176, 46, 0.20);
}

.appka-consent__copy p {
    margin: 5px 0 0;
    color: #e0e8dc;
    font-size: 0.86rem;
    line-height: 1.55;
}

.appka-consent__accept {
    flex: 0 0 auto;
    min-width: 245px;
}

body.appka-consent-pending {
    overscroll-behavior-y: none;
}

body.appka-screen-modal-open {
    overflow: hidden;
}

.appka-screen-modal {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    visibility: hidden;
    background: rgba(0, 7, 3, 0.88);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 220ms ease, visibility 220ms;
}

.appka-screen-modal[hidden] {
    display: none;
}

.appka-screen-modal--visible {
    visibility: visible;
    opacity: 1;
}

.appka-screen-modal__content {
    display: flex;
    max-width: 100%;
    max-height: 100%;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.appka-tablet--large {
    width: min(88vw, 50vh, 650px);
    cursor: default;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 0 0 3px rgba(28, 34, 31, 0.30),
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 34px rgba(217, 224, 220, 0.13);
}

.appka-screen-modal__content p {
    margin: 0;
    color: var(--appka-cream);
    font-family: var(--appka-serif);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.appka-screen-modal__close {
    position: absolute;
    z-index: 2;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0 0 4px;
    border: 1px solid rgba(232, 190, 75, 0.48);
    border-radius: 50%;
    color: var(--appka-gold-300);
    background: rgba(3, 35, 18, 0.96);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
    transition: color 170ms ease, background 170ms ease, transform 170ms ease;
}

.appka-screen-modal__close:hover,
.appka-screen-modal__close:focus-visible {
    color: #061207;
    background: var(--appka-gold-300);
    transform: rotate(4deg) scale(1.06);
}

.appka-js .appka-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.appka-js .appka-feature:nth-child(2),
.appka-js .appka-screen-card:nth-child(2) {
    transition-delay: 80ms;
}

.appka-js .appka-feature:nth-child(3),
.appka-js .appka-screen-card:nth-child(3) {
    transition-delay: 160ms;
}

.appka-js .appka-feature:nth-child(4) {
    transition-delay: 240ms;
}

:focus-visible {
    outline: 3px solid var(--appka-gold-300);
    outline-offset: 4px;
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.appka-download p a {
    position: relative;
    display: inline-block;
    color: var(--appka-gold-400);
    font-weight: 700;
    text-decoration: none;
}

.appka-download p a::after {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, #e8a924 16%, #ffd66b 50%, #e8a924 84%, transparent);
    box-shadow: 0 0 9px rgba(244, 191, 63, 0.68);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.appka-download p a:hover,
.appka-download p a:focus-visible {
    color: #d8ff4f;
}

.appka-download p a:hover::after,
.appka-download p a:focus-visible::after {
    transform: scaleX(1);
}

.appka-button--contact {
    min-width: 330px;
    min-height: 62px;
    gap: 12px;
    border-color: rgba(240, 191, 72, 0.44);
    color: var(--appka-cream);
    background: linear-gradient(180deg, rgba(13, 50, 29, 0.96), rgba(3, 24, 13, 0.98));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 11px 24px rgba(0, 0, 0, 0.20);
}

.appka-button--contact:hover,
.appka-button--contact:focus-visible {
    border-color: rgba(240, 191, 72, 0.78);
    background: linear-gradient(180deg, rgba(20, 66, 38, 0.98), rgba(5, 31, 17, 0.98));
}

.appka-button--contact svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.appka-footer__identity {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.appka-footer__identity > span,
.appka-footer__email {
    color: var(--appka-gold-400);
    font-size: 0.82rem;
    font-weight: 700;
}

.appka-footer__email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: color 160ms ease;
}

.appka-footer a.appka-footer__email:hover,
.appka-footer a.appka-footer__email:focus-visible {
    color: #d8ff4f;
}

.appka-footer__email > span {
    position: relative;
    display: inline-block;
}

.appka-footer__email > span::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, #e8a924 16%, #ffd66b 50%, #e8a924 84%, transparent);
    box-shadow: 0 0 9px rgba(244, 191, 63, 0.68);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.appka-footer__email:hover > span::after,
.appka-footer__email:focus-visible > span::after {
    transform: scaleX(1);
}

.appka-footer__email svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


