.hero {
    position: relative;
    min-height: clamp(480px, 62vh, 620px);
    max-height: 620px;
    display: flex;
    align-items: flex-start;
    background: #030608;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    z-index: 0;
    width: min(calc(100% - 1.5rem), 1320px);
    background:
        linear-gradient(90deg, rgba(3, 6, 8, 0.99) 0%, rgba(3, 6, 8, 0.93) 34%, rgba(3, 6, 8, 0.52) 56%, rgba(3, 6, 8, 0.1) 100%),
        url("/pictures/hero-background.png") center right / auto 100% no-repeat;
    transform: translateX(-50%);
}

.hero-screen-layer {
    position: absolute;
    inset: 0 auto 0 50%;
    z-index: 1;
    width: min(calc(100% - 1.5rem), 1320px);
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-screen-content {
    position: absolute;
    top: 82px;
    right: 194px;
    width: 292px;
    height: 407px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-text);
    background: transparent;
    border: 0;
    border-radius: 1.35rem;
    transform: matrix3d(0.51395041, 0.01970868, 0, -0.00013988, -0.31941032, 0.91799377, 0, -0.00006639, 0, 0, 1, 0, 130, 0, 0, 1);
    transform-origin: 0 0;
}

.phone-intro-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    width: min(68%, 11rem);
    aspect-ratio: 895 / 91;
    z-index: 2;
    filter:
        drop-shadow(0 0 1px rgba(0, 0, 0, 0.95))
        drop-shadow(0 0 2px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 0.42em rgba(0, 217, 255, 0.22));
    transform: translate(-50%, -50%);
    animation: none;
}

.phone-intro-segment {
    --segment-image-scale: 1;
    --segment-image-left: 0%;

    position: relative;
    display: inline-block;
    height: 100%;
    flex: 0 0 auto;
    overflow: hidden;
    opacity: 1;
    will-change: transform, opacity;
}

.phone-intro-segment img {
    position: absolute;
    top: 0;
    left: var(--segment-image-left);
    width: calc(100% * var(--segment-image-scale));
    max-width: none;
    height: 100%;
    display: block;
}

.phone-intro-mobil {
    width: 47.486%;
    --segment-image-scale: 2.1059;
    --segment-image-left: 0%;
    animation: none;
}

.phone-intro-wor {
    width: 40.335%;
    --segment-image-scale: 2.4792;
    --segment-image-left: -117.7285%;
    animation: none;
}

.phone-intro-x {
    width: 12.179%;
    --segment-image-scale: 8.211;
    --segment-image-left: -721.1009%;
    transform-origin: center;
    animation: none;
}

@keyframes phone-logo-slide-left {
    0%,
    2.7% {
        opacity: 0;
        transform: translateX(-11em);
    }

    8.7%,
    28% {
        opacity: 1;
        transform: translateX(0);
    }

    36%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes phone-logo-slide-right {
    0%,
    7.2% {
        opacity: 0;
        transform: translateX(11em);
    }

    13.2%,
    28% {
        opacity: 1;
        transform: translateX(0);
    }

    36%,
    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes phone-logo-stamp-x {
    0%,
    11.7% {
        opacity: 0;
        transform: translateY(-3.2em) scale(3.8);
    }

    18.8% {
        opacity: 1;
        transform: translateY(0) scale(0.86);
    }

    22.5% {
        opacity: 1;
        transform: translateY(0) scale(1.1);
    }

    28% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    36%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
}

@keyframes phone-logo-cycle {
    0% {
        filter:
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.95))
            drop-shadow(0 0 2px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 0 rgba(0, 217, 255, 0));
    }

    20%,
    28% {
        filter:
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.95))
            drop-shadow(0 0 2px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 0.42em rgba(0, 217, 255, 0.22));
    }

    100% {
        filter:
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.95))
            drop-shadow(0 0 2px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 0 rgba(0, 217, 255, 0));
    }
}

.phone-home-screen {
    position: absolute;
    inset: 2.5% 2.2% 3%;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0.34rem 0.28rem 0.32rem;
    color: #f4fbff;
    opacity: 1;
    background: #020609;
    border-radius: 1.1rem;
    box-shadow: inset 0 0 1.2rem rgba(0, 0, 0, 0.55);
    animation: none;
}

.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-height: 1.2rem;
    color: rgba(244, 251, 255, 0.94);
    font-size: 0.52rem;
    font-weight: 800;
    line-height: 1;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 0.32rem;
}

.phone-signal {
    display: inline-flex;
    align-items: flex-end;
    gap: 1px;
    height: 0.52rem;
}

.phone-signal i {
    width: 2px;
    display: block;
    background: rgba(244, 251, 255, 0.9);
    border-radius: 999px;
}

.phone-signal i:nth-child(1) {
    height: 0.18rem;
}

.phone-signal i:nth-child(2) {
    height: 0.3rem;
}

.phone-signal i:nth-child(3) {
    height: 0.42rem;
}

.phone-signal i:nth-child(4) {
    height: 0.54rem;
}

.phone-battery {
    position: relative;
    width: 1.62rem;
    height: 0.54rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 0;
    border-radius: 0.16rem;
    background: rgba(130, 139, 147, 0.6);
}

.phone-battery-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(90deg, #2ed968, #75f28d);
    border-radius: inherit;
    transition: width 220ms linear;
}

.phone-battery.is-medium .phone-battery-fill {
    background: linear-gradient(90deg, #f0c53a, #ffe26a);
}

.phone-battery.is-low .phone-battery-fill {
    background: linear-gradient(90deg, #f05a4f, #ff8a7f);
}

.phone-battery-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: #f7fbff;
    font-size: 0.34rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0.05rem 0.08rem rgba(0, 0, 0, 0.75);
}

.phone-app-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2rem);
    gap: 0.18rem;
    padding-top: 0.55rem;
    justify-content: start;
}

.phone-app-icon {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 0.18rem;
}

.phone-app-icon img {
    width: min(2.2rem, 100%);
    height: auto;
    aspect-ratio: 1;
    display: block;
    border-radius: 0.55rem;
}

.phone-app-icon img {
    object-fit: cover;
    box-shadow: 0 0.35rem 0.8rem rgba(0, 0, 0, 0.45);
}

.phone-app-icon > span:last-child {
    max-width: 100%;
    overflow: hidden;
    color: rgba(244, 251, 255, 0.88);
    font-size: 0.42rem;
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.phone-dock {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.32rem;
    align-items: center;
    margin-top: auto;
    padding: 0 0.06rem 0.06rem;
}

.phone-dock-icon {
    position: relative;
    width: min(2.42rem, 100%);
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    overflow: hidden;
    color: #fff;
    border: 0;
    border-radius: 0.78rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -0.34rem 0.45rem rgba(0, 0, 0, 0.14),
        0 0.24rem 0.55rem rgba(0, 0, 0, 0.38);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.phone-dock-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.22),
        inset 0 0.45rem 0.72rem rgba(255, 255, 255, 0.13);
    pointer-events: none;
}

.phone-dock-contact {
    background: linear-gradient(145deg, #ff3b36, #c70f22 72%);
}

.phone-dock-message,
.phone-dock-mail {
    background: linear-gradient(145deg, #ffffff, #e7edf4 78%);
}

.phone-dock-message {
    color: #1f6be0;
}

.phone-dock-settings {
    background: linear-gradient(145deg, #343a4a, #10141d 74%);
}

.phone-dock-phone {
    color: rgba(238, 255, 240, 0.92);
    background: linear-gradient(145deg, #12db64, #08a948 76%);
}

.phone-dock-icon svg {
    position: relative;
    z-index: 1;
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 4.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.phone-dock-icon .icon-fill {
    fill: currentColor;
    stroke: none;
}

.phone-dock-settings svg {
    width: 1.9rem;
    height: 1.9rem;
}

.phone-dock-settings .gear-fill {
    fill: #afb6c0;
    stroke: none;
}

.phone-dock-settings .gear-hole {
    fill: #1d222d;
    stroke: none;
}

.phone-dock-settings .gear-dot {
    fill: #8d96a3;
    stroke: none;
}

.phone-dock-phone svg {
    width: 1.65rem;
    height: 1.65rem;
}

.phone-dock-phone .icon-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 7.2;
}

.phone-dock-mail svg {
    width: 1.65rem;
    height: 1.65rem;
}

.phone-dock-mail svg path {
    stroke: none;
}

.gmail-red-left,
.gmail-red-right {
    fill: #ea4335;
}

.gmail-blue {
    fill: #4285f4;
}

.gmail-yellow {
    fill: #fbbc04;
}

.gmail-green {
    fill: #34a853;
}

.phone-app-badge {
    position: absolute;
    top: -0.22rem;
    right: -0.2rem;
    z-index: 3;
    min-width: 0.94rem;
    height: 0.94rem;
    display: grid;
    place-items: center;
    padding: 0 0.16rem;
    color: #fff;
    background: #ff5a18;
    border-radius: 999px;
    font-size: 0.52rem;
    font-weight: 900;
    line-height: 1;
    box-shadow:
        0 0.08rem 0.2rem rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.phone-dock-icon {
    width: min(2.62rem, 100%);
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    align-self: center;
}

.phone-dock-icon::after {
    display: none;
}

.phone-dock-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0.2rem 0.34rem rgba(0, 0, 0, 0.34));
    backface-visibility: hidden;
    transform: translateZ(0);
}

.phone-dock-icon:nth-child(2) img,
.phone-dock-icon:nth-child(4) img {
    transform: translateY(-0.04rem) translateZ(0);
}

.phone-dock-icon:nth-child(3) img {
    transform: translateY(-0.02rem) translateZ(0);
}

@keyframes phone-home-reveal {
    0%,
    32% {
        opacity: 0;
    }

    40%,
    92% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero .container-xxl {
    position: relative;
    z-index: 2;
}

.hero .row {
    --bs-gutter-x: 0;
}

.hero-copy {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-eyebrow {
    margin: 0 0 0.8rem;
    color: var(--color-accent);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    color: var(--color-text);
    font-size: 3.35rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.hero-title span {
    color: var(--color-accent-deep);
}

.hero-title .hero-title-soft {
    color: var(--color-text);
}

.hero-lead {
    max-width: 34rem;
    color: var(--color-muted);
    font-size: clamp(1.02rem, 1.4vw, 1.22rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.78rem 1.45rem;
    color: var(--color-accent);
    border: 1px solid var(--color-border-strong);
    border-radius: 0.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-button:hover {
    color: #021116;
    background: var(--color-accent);
    transform: translateY(-2px);
}

.hero-button-secondary {
    color: var(--color-muted);
    border-color: var(--color-border);
}

.hero-button-secondary:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-border-strong);
}

.page-section {
    min-height: clamp(360px, 52vh, 620px);
    display: flex;
    align-items: center;
}

.apps-section {
    background:
        radial-gradient(circle at 50% 0, rgba(0, 217, 255, 0.09), transparent 34rem),
        rgba(5, 10, 14, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.apps-section.page-section {
    align-items: flex-start;
}

.apps-section.page-section + .features-section {
    border-top: 0;
}

.section-heading h1,
.section-heading h2 {
    color: var(--color-text);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 800;
}

.section-heading span {
    width: 42px;
    height: 2px;
    display: inline-block;
    background: var(--color-accent);
}

.app-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 2vw, 1.55rem);
    background: linear-gradient(145deg, rgba(15, 25, 32, 0.78), rgba(7, 13, 18, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.app-card.is-coming-soon {
    background: linear-gradient(145deg, rgba(17, 26, 33, 0.66), rgba(6, 11, 16, 0.86));
}

.app-card-heading {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}

.app-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--color-accent);
    background: linear-gradient(145deg, #252b31, #080d11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    box-shadow: inset 0 0 22px rgba(0, 217, 255, 0.08);
}

.app-icon svg {
    width: 76%;
    height: 76%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.app-icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

.app-icon text {
    fill: currentColor;
    stroke: none;
    font: 700 12px Inter, sans-serif;
}

.app-icon-0 {
    overflow: hidden;
    background: transparent;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.app-icon-1,
.app-icon-2 {
    overflow: hidden;
}

.app-icon-placeholder {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.app-icon-placeholder::before,
.app-icon-placeholder::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
}

.app-icon-placeholder::after {
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 20%, rgba(0, 217, 255, 0.18) 48%, transparent 76%);
    transform: translateX(-120%);
    animation: skeleton-sweep 1.7s ease-in-out infinite;
}

.app-icon-1 {
    color: #d6b67f;
}

.app-card h2,
.app-card h3 {
    margin: 0 0 0.25rem;
    color: var(--color-text);
    font-size: 1.35rem;
    font-weight: 800;
}

.app-card-heading p {
    margin: 0;
    color: var(--color-accent);
    font-size: 0.96rem;
}

.app-description {
    color: var(--color-muted);
    min-height: 4.7rem;
}

.app-skeleton-heading,
.app-skeleton-body {
    display: grid;
    gap: 0.62rem;
}

.app-skeleton-heading {
    width: min(100%, 12rem);
}

.app-skeleton-body {
    margin-bottom: 1.8rem;
}

.skeleton-line {
    position: relative;
    height: 0.9rem;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
}

.skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(0, 217, 255, 0.18) 48%, transparent 76%);
    transform: translateX(-120%);
    animation: skeleton-sweep 1.7s ease-in-out infinite;
}

.skeleton-line-title {
    width: 10rem;
    height: 1.35rem;
}

.skeleton-line-short {
    width: 6.4rem;
}

.skeleton-line-wide {
    width: 92%;
}

.skeleton-line-medium {
    width: 74%;
}

.skeleton-line-gap {
    width: 58%;
    margin-top: 0.42rem;
}

.app-points {
    display: grid;
    gap: 0.64rem;
    margin: 0 0 1.8rem;
    padding: 0;
    color: var(--color-muted);
    list-style: none;
}

.app-points li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.app-points li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    margin-top: 0.24rem;
    background: url("/pictures/check.svg") center / contain no-repeat;
}

.kakuro-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.62rem;
    margin: 0 0 1.65rem;
}

.kakuro-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 108 / 234;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.45rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    cursor: zoom-in;
}

.kakuro-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 217, 255, 0);
    transition: box-shadow 160ms ease;
    pointer-events: none;
}

.kakuro-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 180ms ease, opacity 180ms ease;
}

.kakuro-gallery-item:hover::after,
.kakuro-gallery-item:focus-visible::after {
    box-shadow: inset 0 0 0 1px rgba(0, 217, 255, 0.75);
}

.kakuro-gallery-item:hover img,
.kakuro-gallery-item:focus-visible img {
    opacity: 0.9;
    transform: scale(1.035);
}

.gallery-lightbox {
    width: min(92vw, 32rem);
    max-height: 92vh;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
}

.gallery-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.78);
}

.gallery-lightbox img {
    width: 100%;
    max-height: 92vh;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close {
    position: absolute;
    top: -0.85rem;
    right: -0.85rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--color-text);
    background: rgba(8, 15, 21, 0.96);
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}

.gallery-lightbox-close:hover {
    color: #061116;
    background: var(--color-accent);
}

.has-gallery-open {
    overflow: hidden;
}

.app-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.store-button,
.ghost-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.62rem 1rem;
    border-radius: 0.35rem;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.store-button {
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
}

.store-button-disabled {
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border);
    cursor: default;
}

.store-button img {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
    flex: 0 0 auto;
}

.ghost-button {
    color: var(--color-muted);
    border: 1px solid var(--color-border);
}

.store-button:hover,
.ghost-button:hover {
    color: #051014;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.store-button-disabled:hover {
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-border);
}

@keyframes skeleton-sweep {
    100% {
        transform: translateX(120%);
    }
}

.features-section {
    background: #060c11;
}

.features-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2.2rem);
    padding: clamp(1.3rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.5rem;
    background: linear-gradient(145deg, rgba(14, 23, 30, 0.58), rgba(6, 12, 17, 0.76));
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    margin: 0 auto 0.9rem;
    color: var(--color-accent);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-item h2,
.feature-item h3 {
    margin: 0 0 0.5rem;
    color: var(--color-text);
    font-size: 1.02rem;
    font-weight: 800;
}

.feature-item p {
    max-width: 15rem;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.contact-panel h1,
.contact-panel h2 {
    color: var(--color-text);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
}

.contact-copy p:last-child {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.contact-section {
    background: #060c11;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.45rem, 3vw, 2.3rem);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(8, 15, 21, 0.9));
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 0.5rem;
}

.contact-panel p {
    max-width: 42rem;
    margin-bottom: 0;
}

.contact-business-note {
    margin-top: 0.9rem;
}

.contact-business-note a {
    color: var(--color-accent);
    font-weight: 800;
}

.contact-business-note a:hover {
    color: var(--color-text);
}

.contact-details {
    display: grid;
    gap: 0.7rem;
    min-width: min(100%, 18rem);
    margin: 0;
    color: var(--color-muted);
    font-style: normal;
}

.contact-details a,
.contact-details span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: inherit;
}

.contact-details a:hover {
    color: var(--color-text);
}

.contact-details svg {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    color: var(--color-accent);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        max-height: none;
    }

    .hero::after {
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: clamp(15rem, 54vw, 22rem);
        background: url("/pictures/hero-background.png") 68% top / auto 100% no-repeat;
        transform: none;
    }

    .hero-screen-layer {
        inset: 0;
        width: 100%;
        height: clamp(15rem, 54vw, 22rem);
        transform: none;
    }

    .hero-screen-content {
        top: 45px;
        right: 221px;
        width: 167px;
        height: 233px;
        border-radius: 1rem;
        transform: matrix3d(0.52161835, 0.0288842, 0, -0.00021118, -0.31759657, 0.94718942, 0, 0.00001356, 0, 0, 1, 0, 74, 0, 0, 1);
        transform-origin: 0 0;
    }

    .hero-copy {
        padding-top: clamp(14rem, 54vw, 22rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
    }

    .features-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-button {
        width: 100%;
    }

    .app-actions,
    .contact-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .store-button,
    .ghost-button {
        width: 100%;
    }

    .gallery-lightbox {
        width: min(88vw, 24rem);
    }

    .features-panel {
        grid-template-columns: 1fr;
    }
}
