/* Base */
* { box-sizing: border-box }
html, body { height: 100% }
body {
	margin: 0;
	font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
	color: #112418;
	background: #0f1f17;
	line-height: 1.6;
}

:root{
	--green-900:#0f1f17;
	--green-800:#132a1e;
	--green-700:#1a3a2a;
	--green-600:#1f4b36;
	--green-500:#2a7c57;
	--green-400:#3aa776;
	--green-300:#7fc67f;
	--sand-100:#eef3ec;
	--sand-200:#dfe8df;
	--white:#ffffff;
	--shadow: 0 10px 30px rgba(0,0,0,0.35);
	--leaf-start:#7FC67F;
	--leaf-end:#2A7C57;
}

.container { width: min(1120px, 92%); margin: 0 auto }
.muted { color: #9ab3a7 }
.lead { font-size: clamp(1.05rem, 1rem + 1vw, 1.35rem) }

/* Header */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: linear-gradient(180deg, rgba(15,31,23,0.9), rgba(15,31,23,0.6) 70%, rgba(15,31,23,0));
	backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0 }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--sand-100); font-weight: 700; letter-spacing: 0.2px }
.logo-mark { filter: drop-shadow(0 4px 10px rgba(58,167,118,0.35)) }
.logo-text { font-weight: 700 }

.site-nav { position: relative }
.nav-toggle { display: none; background: transparent; color: var(--sand-100); border: 1px solid rgba(255,255,255,0.2); padding: 6px 10px; border-radius: 8px }
.nav-list { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0 }
.nav-list a { color: var(--sand-100); text-decoration: none; font-weight: 500 }
.nav-list a:hover { color: var(--green-300) }

@media (max-width: 760px){
	.nav-toggle{ display: inline-block }
	.nav-list{ position: absolute; right: 0; top: 44px; background: var(--green-800); padding: 12px; border-radius: 10px; box-shadow: var(--shadow); display: none; flex-direction: column; min-width: 200px }
	.nav-list.open{ display: flex }
}

.skip-link{ position: absolute; left: -9999px }
.skip-link:focus{ left: 12px; top: 12px; background: #fff; color:#000; padding:8px 12px; border-radius:8px; z-index: 100 }

/* Hero */
.hero {
    position: relative;
    min-height: 56vh;
    display: block;
    overflow: hidden;
    background: transparent;
    padding: 20px 0; /* prostor nad a pod */
}
.hero-welcome {
    position: relative;
    display: block;
    margin: 0 auto;
    width: min(1120px, calc(100% - 160px)); /* uprav 160px podle potřeby odsazení */
    max-width: 1120px;
    height: 56vh;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* zachování overlayu pro čitelnost textu */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,16,12,0.28), rgba(6,16,12,0.42));
    z-index: 1;
    pointer-events: none;
}

/* text zůstane nad obrázkem */
.hero-inner, .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 20px;
}

/* mobilní úpravy */
@media (max-width:760px){
    .hero { padding: 12px 0; }
    .hero-welcome { width: calc(100% - 32px); height: 48vh; border-radius: 10px; }
    .hero-inner { padding: 18px 12px; }
}

.hero-inner { padding: 96px 0 64px }
.hero h1 { font-size: clamp(2rem, 1.6rem + 4vw, 3.8rem); margin: 0 0 12px 0; text-shadow: 0 8px 30px rgba(0,0,0,0.35) }
.hero .lead { color: #e6f1ec; max-width: 900px; margin: 0 auto 12px; font-weight: 600 }
.overlay-en{ color: #cfe2d8; font-size: clamp(0.9rem, 0.8rem + 0.6vw, 1.05rem); margin: 0 auto 20px; max-width: 1000px; opacity: 0.95 }
.cta-group { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center }

.parallax-bg{
	position: absolute; inset: -10% -10% 0 -10%;
	background:
		radial-gradient(1200px 400px at 50% 100%, rgba(58,167,118,0.15), transparent 70%),
		linear-gradient(180deg, rgba(0,0,0,0.15), transparent),
		url('https://copilot.microsoft.com/th/id/BCO.a9f5e5aa-80fd-4d64-9592-76afb9772500.png') center/cover no-repeat;
	transform: translateZ(0);
	filter: saturate(0.85) brightness(0.75);
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* Sections */
.section { padding: 64px 0 }
.section-header{ text-align: center; margin-bottom: 28px }
.section h2 { font-size: clamp(1.5rem, 1.2rem + 2vw, 2.2rem); color: var(--sand-100); margin: 0 0 6px }

/* Cards & Buttons */
.features-grid{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px }
.card{
	background: linear-gradient(180deg, var(--green-800), var(--green-700));
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 18px;
	color: var(--sand-100);
	box-shadow: 0 1px 0 rgba(255,255,255,0.04), var(--shadow);
}
.card h3{ margin: 6px 0 8px }
.card p{ margin: 0 }
.card .icon{ font-size: 28px }
.features-grid > .card{ grid-column: span 6 }
.features-grid > .card.wide{ grid-column: span 12 }

@media (max-width: 900px){ .features-grid > .card{ grid-column: span 12 } }

.btn{ display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 12px; text-decoration: none; cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease }
.btn-primary{ background: var(--green-400); color: #0b1a13; font-weight: 700 }
.btn-primary:hover{ transform: translateY(-1px); background: var(--green-300) }
.btn-ghost{ background: rgba(255,255,255,0.06); color: var(--sand-100); border: 1px solid rgba(255,255,255,0.12) }
.btn-ghost:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,0.24) }

/* About */
.about-inner{ display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center }
.about-text h2{ color: var(--sand-100); margin-top: 0 }
.about-text p {
    color: var(--sand-100);
    font-size: 1.13em;
}
.benefits{ margin: 12px 0 0 0; padding-left: 18px; color: #cde2d7 }
.about-media{ display: grid; place-items: center }
.leaf-illustration{ position: relative; width: 100%; max-width: 360px; aspect-ratio: 1/1 }
.leaf{ position: absolute; inset: auto; display: block; border-radius: 999px; filter: blur(8px) saturate(1.2); opacity: 0.9 }
.leaf-a{ left: 10%; top: 18%; width: 60%; height: 50%; background: radial-gradient(circle at 30% 30%, var(--green-300), var(--green-500)) }
.leaf-b{ right: 8%; bottom: 10%; width: 52%; height: 42%; background: radial-gradient(circle at 70% 40%, var(--green-400), var(--green-600)) }
.leaf-c{ left: 30%; bottom: 6%; width: 40%; height: 36%; background: radial-gradient(circle at 50% 50%, #97d497, var(--green-400)) }

@media (max-width: 900px){ .about-inner{ grid-template-columns: 1fr } }

/* Contact */
.contact-grid{ display: grid; gap: 18px; grid-template-columns: 1.1fr 0.9fr }
.contact-form label{ display: grid; gap: 6px; margin: 10px 0 }
.contact-form input, .contact-form textarea{ width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.15); color: var(--sand-100) }
.form-note{ color: #9ab3a7; font-size: 0.95rem }
.newsletter{ display: grid; gap: 10px; margin-top: 12px }

.pricing-note{ margin-top: 14px; text-align: center; color: #cde2d7; font-weight: 600 }

@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr } }

/* Footer */
.site-footer{ border-top: 1px solid rgba(255,255,255,0.08); margin-top: 32px; padding: 24px 0; color: #cde2d7 }
.footer-inner{ display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap }

/* Reveal on scroll */
.reveal{ opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease }
.reveal.visible{ opacity: 1; transform: none }

/* Custom Cursor */
body{ cursor: none }
.leaf-cursor{ position: fixed; left: 0; top: 0; width: 28px; height: 28px; pointer-events: none; z-index: 1000; transform: translate(-50%, -50%); opacity: 0 }
.leaf-cursor .leaf-shape{ filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)) }
.leaf-cursor .print-shape{ position: absolute; left: 18px; top: 18px; opacity: 0; transform: scale(0.8); transition: opacity .15s ease, transform .15s ease }
.cursor-active .leaf-cursor{ opacity: 1 }

/* Hover states for cursor: turns into paw/footprint over interactive elements */
a:hover ~ .leaf-cursor .print-shape,
button:hover ~ .leaf-cursor .print-shape,
.btn:hover ~ .leaf-cursor .print-shape { opacity: 1; transform: scale(1) }

/* Cursor color shift on interactive hover */
/* When the cursor is over interactive elements, adjust the gradient via variables */
.leaf-cursor.interactive .leaf-shape { --leaf-start:#a3e6a3; --leaf-end:#3aa776 }

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
	* { animation: none !important; transition: none !important }
	.parallax-bg{ background-attachment: initial }

}

/* Hero text bude vždy viditelný, bez ohledu na .reveal */
.hero-inner h1,
.hero-inner .lead,
.hero-inner .overlay-en,
.hero-inner .cta-group {
    opacity: 1 !important;
    transform: none !important;
}

/* .parallax-bg { display: none !important; } */

@media (max-width: 900px) {
    .mission-inner {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .mission-media img {
        margin-bottom: 12px !important;
    }
}

.mission-text p,
.mission-values li {
    color: var(--sand-100);
    font-size: 1.13em;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.social-icon svg { width:20px; height:20px; display:block; }
.social-icon:focus,
.social-icon:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg,var(--green-400),var(--green-300));
    box-shadow: 0 8px 30px rgba(58,167,118,0.18);
}
@media (max-width:640px){
    .social-icon { width:40px; height:40px; border-radius:8px; }
}
#year { font-weight:600; color:var(--sand-100); }

.app-mockup-iphone {
    position: relative;
    width: 320px;
    max-width: 90vw;
    aspect-ratio: 320/670;
    margin-bottom: 12px;
}
.app-mockup-frame {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}
.app-mockup-screen {
    position: absolute;
    left: 50%; top: 50%;
    width: 225px;
    height: 485px;
    background: linear-gradient(180deg, #eef3ec 80%, #dfe8df 100%);
    border-radius: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transform: translate(-50%,-50%);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.app-mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2a7c57;
    color: #fff;
    padding: 0 18px;
    height: 48px;
    font-size: 1.18em;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.app-mockup-logo {
    font-size: 1.4em;
}
.app-mockup-title {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.08em;
    letter-spacing: 0.04em;
}
.app-mockup-menu {
    font-size: 1.3em;
    opacity: 0.7;
}
.app-mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 12px 18px 12px;
    text-align: center;
}
.app-mockup-content h3 {
    margin: 0 0 12px 0;
    color: #2a7c57;
    font-size: 1.25em;
    font-weight: 700;
}
.app-mockup-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}
.app-mockup-content li {
    margin: 7px 0;
    font-size: 1.08em;
    color: #1f4b36;
}
.app-mockup-btn {
    display: inline-block;
    background: #2a7c57;
    color: #fff;
    padding: 10px 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(58,167,118,0.10);
    transition: background 0.18s, transform 0.15s;
}
.app-mockup-btn:hover {
    background: #3aa776;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
    .app-mockup-iphone { width: 98vw; }
    .app-mockup-screen { width: 70vw; height: 150vw; min-width: 160px; min-height: 320px; }
}

/* Countdown section styles */
.countdown-section { padding: 48px 0; }
.countdown-card { border-radius:16px; }
.countdown-timer { display:flex; justify-content:center; gap:16px; margin:18px 0 12px; flex-wrap:wrap; }
.countdown-item { min-width:80px; }
.count-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-300);
    background: rgba(127,198,127,0.08);
    padding: 12px 10px;
    border-radius: 12px;
    display:block;
}
.count-label {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #cde2d7;
}

@media (max-width:640px){
    .countdown-section { padding: 32px 0; }
    .countdown-card { padding:22px 18px !important; }
    .countdown-timer { gap:10px; }
    .count-value { font-size:1.4rem; padding:10px 8px; }
    .count-label { font-size:0.85rem; }
}

