/* ═══════════════════════════════════════════════════════
   KYNETIC – Premium Landing Page Styles (Redesigned)
   ═══════════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Custom Properties ─── */
:root {
    --kyn-bg: #050507;
    --kyn-bg-card: rgba(255, 255, 255, 0.03);
    --kyn-bg-card-hover: rgba(255, 255, 255, 0.06);
    --kyn-border: rgba(255, 255, 255, 0.06);
    --kyn-border-hover: rgba(255, 255, 255, 0.12);
    --kyn-text: #ffffff;
    --kyn-text-secondary: #8b8b9e;
    --kyn-text-muted: #52525b;
    --kyn-orange: #f97316;
    --kyn-orange-glow: rgba(249, 115, 22, 0.4);
    --kyn-yellow: #eab308;
    --kyn-green: #22c55e;
    --kyn-purple: #a855f7;
    --kyn-pink: #ec4899;
    --kyn-blue: #3b82f6;
    --kyn-radius: 20px;
    --kyn-radius-sm: 12px;
    --kyn-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --kyn-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --kyn-max-width: 1200px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--kyn-font);
    background-color: var(--kyn-bg);
    color: var(--kyn-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── Language Toggle (global) ─── */
html[lang="de"] [lang="en"] {
    display: none !important;
}

html[lang="en"] [lang="de"] {
    display: none !important;
}

/* ─── Scroll Reveal System ─── */
.kyn-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.kyn-reveal--delay-1 {
    transition-delay: 0.12s;
}

.kyn-reveal--delay-2 {
    transition-delay: 0.24s;
}

.kyn-reveal--delay-3 {
    transition-delay: 0.36s;
}

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

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.kyn-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--kyn-transition), box-shadow var(--kyn-transition);
}

.kyn-nav.is-scrolled {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--kyn-border);
}

.kyn-nav-inner {
    max-width: var(--kyn-max-width);
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kyn-nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--kyn-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.kyn-logo-k {
    background: linear-gradient(135deg, var(--kyn-orange), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kyn-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kyn-nav-cta {
    background: linear-gradient(135deg, var(--kyn-orange), #ea580c);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--kyn-transition), box-shadow var(--kyn-transition);
}

.kyn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--kyn-orange-glow);
}

/* ─── Language Buttons ─── */
.kyn-lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 3px;
}

.kyn-lang-btn {
    background: transparent;
    border: none;
    color: var(--kyn-text-secondary);
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--kyn-font);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.kyn-lang-btn:hover {
    color: var(--kyn-text);
}

.kyn-lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION – Redesigned: centered text + phones below
   ═══════════════════════════════════════════════════════ */
.kyn-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
    overflow: hidden;
}

/* Animated gradient orbs */
.kyn-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.3;
}

.kyn-hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--kyn-orange) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: kynOrbFloat1 12s ease-in-out infinite;
}

.kyn-hero-orb--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--kyn-blue) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: kynOrbFloat2 15s ease-in-out infinite;
}

.kyn-hero-orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--kyn-purple) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    opacity: 0.12;
    animation: kynOrbFloat3 10s ease-in-out infinite;
}

@keyframes kynOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes kynOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

@keyframes kynOrbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

/* Grid background */
.kyn-hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Hero uses row layout on desktop, column on mobile */
.kyn-hero-container {
    max-width: var(--kyn-max-width);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* ─── Hero Text ─── */
.kyn-hero-text {
    flex: 1;
    min-width: 320px;
}

.kyn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.18);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--kyn-orange);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.kyn-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--kyn-orange);
    border-radius: 50%;
    animation: kynPulse 2s ease-in-out infinite;
}

@keyframes kynPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.kyn-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.kyn-gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kyn-gradient-text-orange {
    background: linear-gradient(135deg, var(--kyn-orange), #fb923c, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kyn-gradient-text-yellow {
    background: linear-gradient(135deg, var(--kyn-yellow), #fbbf24, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kyn-hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--kyn-text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.kyn-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ─── App Store Button ─── */
.kyn-appstore-btn {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--kyn-radius-sm);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--kyn-transition), box-shadow var(--kyn-transition), border-color var(--kyn-transition);
    gap: 14px;
}

.kyn-appstore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.kyn-appstore-btn--large {
    padding: 18px 36px;
}

.kyn-appstore-btn--large .kyn-btn-text-large {
    font-size: 1.4rem;
}

.kyn-appstore-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.kyn-btn-text-wrapper {
    display: flex;
    flex-direction: column;
}

.kyn-btn-text-small {
    font-size: 0.65rem;
    color: var(--kyn-text-secondary);
    line-height: 1;
    margin-bottom: 3px;
}

.kyn-btn-text-large {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
}

/* ─── Hero Additions: Avatars & Particles ─── */
.kyn-hero-users {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kyn-hero-avatars {
    display: flex;
}

.kyn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--kyn-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #fff;
    margin-left: -10px;
}

.kyn-avatar:first-child {
    margin-left: 0;
}

.kyn-hero-users-text {
    font-size: 0.85rem;
    color: var(--kyn-text-secondary);
}

.kyn-hero-beam {
    position: absolute;
    bottom: -10vh;
    left: 50%;
    width: 120vw;
    height: 50vh;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at top, rgba(249, 115, 22, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.kyn-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.kyn-particle {
    position: absolute;
    background: var(--kyn-orange);
    border-radius: 50%;
    opacity: 0;
    animation: kynFloatParticle linear infinite;
}

@keyframes kynFloatParticle {
    0% { transform: translateY(100px) scale(0); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translateY(-200px) scale(1); opacity: 0; }
}

/* Badge Shimmer Effect */
.kyn-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: kynShimmer 3s infinite;
    transform: skewX(-20deg);
}

@keyframes kynShimmer {
    100% { left: 200%; }
}

/* ─── Hero Phones – Spread Fan Layout ─── */
.kyn-hero-phones {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 380px;
    height: 480px;
    perspective: 1200px;
}

.kyn-phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--kyn-orange-glow) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kyn-phone-glow--secondary {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    width: 350px;
    height: 350px;
}

.kyn-phone-main {
    position: absolute;
    z-index: 3;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
    animation: kynPhoneMainFloat 6s ease-in-out infinite;
}

.kyn-phone-side {
    position: absolute;
    width: 210px;
    z-index: 2;
    opacity: 0.85;
    transition: all var(--kyn-transition);
}

.kyn-phone-side--left {
    left: 0;
    transform: rotate(-8deg) scale(0.88);
    animation: kynPhoneSideLeftFloat 7s ease-in-out infinite;
}

.kyn-phone-side--right {
    right: 0;
    transform: rotate(8deg) scale(0.88);
    animation: kynPhoneSideRightFloat 6.5s ease-in-out infinite;
}

.kyn-phone-screen,
.kyn-phone-side-screen {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(249, 115, 22, 0.08);
    display: block;
}

.kyn-phone-side-screen {
    border-radius: 24px;
    filter: brightness(0.7);
}

/* ─── Phone Rotator ─── */
.kyn-phone-rotator {
    display: grid;
}

.kyn-rotator-img {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.kyn-rotator-img.is-active {
    opacity: 1;
    z-index: 2;
}

@keyframes kynPhoneMainFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes kynPhoneSideLeftFloat {
    0%, 100% { transform: rotate(-8deg) scale(0.88) translateY(0); }
    50% { transform: rotate(-8deg) scale(0.88) translateY(-8px); }
}

@keyframes kynPhoneSideRightFloat {
    0%, 100% { transform: rotate(8deg) scale(0.88) translateY(0); }
    50% { transform: rotate(8deg) scale(0.88) translateY(-8px); }
}

/* ─── Hero Entrance Animations ─── */
.kyn-entrance {
    opacity: 0;
    transform: translateY(30px);
    animation: kynEntranceAnim 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kyn-entrance--1 { animation-delay: 0.1s; }
.kyn-entrance--2 { animation-delay: 0.2s; }
.kyn-entrance--3 { animation-delay: 0.3s; }
.kyn-entrance--4 { animation-delay: 0.4s; }

.kyn-entrance--5 {
    animation-name: kynEntrancePhoneScale;
    transform: scale(0.9) translateY(40px);
    animation-delay: 0.5s;
}

.kyn-entrance--6 { animation-delay: 1.2s; }

@keyframes kynEntranceAnim {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes kynEntrancePhoneScale {
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─── Scroll Indicator – Hidden by default, only as subtle cue ─── */
.kyn-scroll-indicator {
    display: none;
}

/* ═══════════════════════════════════════════════════════
   STATS BAR – Tighter
   ═══════════════════════════════════════════════════════ */
.kyn-stats {
    position: relative;
    z-index: 20;
    border-top: 1px solid var(--kyn-border);
    border-bottom: 1px solid var(--kyn-border);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
}

.kyn-stats-inner {
    max-width: var(--kyn-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 24px;
    flex-wrap: wrap;
}

.kyn-stat {
    flex: 1;
    text-align: center;
    min-width: 140px;
    padding: 8px 16px;
}

.kyn-stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kyn-stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--kyn-orange);
}

.kyn-stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--kyn-text-secondary);
    font-weight: 500;
}

.kyn-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--kyn-border);
}

/* ═══════════════════════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════════════════════ */
.kyn-section-container {
    max-width: var(--kyn-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.kyn-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.kyn-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kyn-blue);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.kyn-section-tag--orange {
    color: var(--kyn-orange);
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.15);
}

.kyn-section-tag--yellow {
    color: var(--kyn-yellow);
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.15);
}

.kyn-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.kyn-section-subtitle {
    font-size: 1rem;
    color: var(--kyn-text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID – Compact
   ═══════════════════════════════════════════════════════ */
.kyn-features {
    padding: 80px 0 60px;
    position: relative;
}

.kyn-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kyn-feature-card {
    background: var(--kyn-bg-card);
    border: 1px solid var(--kyn-border);
    border-radius: var(--kyn-radius);
    padding: 28px 24px;
    transition: all var(--kyn-transition);
    position: relative;
    overflow: hidden;
}

.kyn-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s;
}

.kyn-feature-card:hover {
    border-color: var(--kyn-border-hover);
    background: var(--kyn-bg-card-hover);
    transform: translateY(-3px);
}

.kyn-feature-card:hover::before {
    opacity: 1;
}

.kyn-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--kyn-radius-sm);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--kyn-blue);
}

.kyn-feature-icon svg {
    width: 20px;
    height: 20px;
}

.kyn-feature-icon--orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.15);
    color: var(--kyn-orange);
}

.kyn-feature-icon--yellow {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.15);
    color: var(--kyn-yellow);
}

.kyn-feature-icon--green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.15);
    color: var(--kyn-green);
}

.kyn-feature-icon--purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.15);
    color: var(--kyn-purple);
}

.kyn-feature-icon--pink {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.15);
    color: var(--kyn-pink);
}

.kyn-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.kyn-feature-desc {
    font-size: 0.9rem;
    color: var(--kyn-text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SHOWCASE SECTIONS – Compact spacing
   ═══════════════════════════════════════════════════════ */
.kyn-showcase {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.kyn-showcase-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.kyn-showcase-orb--left {
    background: var(--kyn-blue);
    left: -15%;
    top: 20%;
}

.kyn-showcase-orb--right {
    background: var(--kyn-orange);
    right: -15%;
    top: 10%;
}

.kyn-showcase-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.kyn-showcase--reverse .kyn-showcase-row {
    flex-direction: row-reverse;
}

.kyn-showcase-phone {
    flex: 0 0 280px;
    position: relative;
}

.kyn-showcase-phone-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.kyn-showcase-phone-glow--orange {
    background: radial-gradient(circle, var(--kyn-orange-glow) 0%, transparent 70%);
}

.kyn-showcase-phone-glow--yellow {
    background: radial-gradient(circle, rgba(234, 179, 8, 0.25) 0%, transparent 70%);
}

.kyn-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.kyn-showcase-content {
    flex: 1;
}

.kyn-showcase-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.kyn-showcase-desc {
    font-size: 1rem;
    color: var(--kyn-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
}

.kyn-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kyn-showcase-list li {
    font-size: 0.95rem;
    color: var(--kyn-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.kyn-check {
    color: var(--kyn-blue);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.kyn-check--orange {
    color: var(--kyn-orange);
}

.kyn-check--yellow {
    color: var(--kyn-yellow);
}

/* ═══════════════════════════════════════════════════════
   SCREENSHOT GALLERY (Horizontal Scroll) – Compact
   ═══════════════════════════════════════════════════════ */
.kyn-gallery {
    padding: 70px 0 50px;
    overflow: hidden;
}

.kyn-gallery-track {
    margin-top: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0 32px;
}

.kyn-gallery-track::-webkit-scrollbar {
    display: none;
}

.kyn-gallery-scroll {
    display: flex;
    gap: 20px;
    padding: 0 max(24px, calc((100vw - 1200px) / 2));
    width: max-content;
}

.kyn-gallery-item {
    flex-shrink: 0;
    width: 240px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 48px -16px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform var(--kyn-transition), box-shadow var(--kyn-transition);
}

.kyn-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 32px 64px -16px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(249, 115, 22, 0.06);
}

.kyn-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION – Compact
   ═══════════════════════════════════════════════════════ */
.kyn-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kyn-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.18;
}

.kyn-cta-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--kyn-orange);
    left: 30%;
    top: -30%;
}

.kyn-cta-orb--2 {
    width: 350px;
    height: 350px;
    background: var(--kyn-purple);
    right: 20%;
    bottom: -20%;
}

.kyn-cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 560px;
    margin: 0 auto;
}

.kyn-cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.kyn-cta-desc {
    font-size: 1.05rem;
    color: var(--kyn-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.kyn-footer {
    border-top: 1px solid var(--kyn-border);
    padding: 48px 24px 0;
}

.kyn-footer-inner {
    max-width: var(--kyn-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

.kyn-footer-brand {
    max-width: 300px;
}

.kyn-footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kyn-footer-tagline {
    margin-top: 10px;
    color: var(--kyn-text-secondary);
    font-size: 0.9rem;
}

.kyn-footer-links-grid {
    display: flex;
    gap: 60px;
}

.kyn-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kyn-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--kyn-text-muted);
    margin-bottom: 4px;
}

.kyn-footer-col a {
    color: var(--kyn-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.kyn-footer-col a:hover {
    color: var(--kyn-text);
}

.kyn-footer-bottom {
    border-top: 1px solid var(--kyn-border);
    max-width: var(--kyn-max-width);
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.kyn-footer-bottom p {
    font-size: 0.82rem;
    color: var(--kyn-text-muted);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .kyn-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .kyn-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kyn-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .kyn-hero-actions {
        justify-content: center;
    }

    .kyn-hero-phones {
        min-width: unset;
        width: 100%;
        max-width: 550px;
        height: 350px;
    }

    .kyn-phone-main { width: 190px; }
    .kyn-phone-side { width: 165px; }

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

    .kyn-showcase-row,
    .kyn-showcase--reverse .kyn-showcase-row {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .kyn-showcase-phone {
        flex: none;
        width: 250px;
    }

    .kyn-showcase-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kyn-showcase-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .kyn-showcase-list {
        align-items: center;
    }

    .kyn-footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .kyn-footer-links-grid {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .kyn-hero {
        padding: 90px 16px 32px;
        min-height: auto;
    }

    .kyn-hero-phones {
        max-width: 100%;
        height: 280px;
    }

    .kyn-phone-main { width: 160px; }
    .kyn-phone-side { width: 140px; }
    .kyn-phone-side--left { left: 10px; }
    .kyn-phone-side--right { right: 10px; }

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

    .kyn-stat-divider {
        display: none;
    }

    .kyn-stats-inner {
        gap: 8px;
    }

    .kyn-stat {
        min-width: 100px;
        padding: 8px 12px;
    }

    .kyn-stat-number {
        font-size: 2rem;
    }

    .kyn-stat-suffix {
        font-size: 1.3rem;
    }

    .kyn-showcase-phone {
        width: 220px;
    }

    .kyn-showcase {
        padding: 50px 0;
    }

    .kyn-gallery-item {
        width: 200px;
    }

    .kyn-footer-links-grid {
        flex-direction: column;
        gap: 24px;
    }

    .kyn-nav-cta {
        display: none;
    }

    .kyn-gallery {
        padding: 50px 0 40px;
    }

    .kyn-cta {
        padding: 60px 0;
    }

    .kyn-features {
        padding: 60px 0 40px;
    }
}