* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #111827;
    line-height: 1.5;
}

/* HERO */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(15,23,42,0.92),
            rgba(15,23,42,0.92)
        ),
        url('../assets/hero.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 20px 40px;

    position: relative;
}

.top-tools {
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 30;
}

.lang-switch {
    display: flex;
    gap: 12px;
}

.lang-switch a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.65;
    transition: 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
    color: #ffffff;
    opacity: 1;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: white;
    font-size: 22px;
    font-weight: 800;
}

.hero-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 4px;
}

.overlay {
    width: 100%;
    max-width: 760px;
    text-align: center;
    color: white;
}

.overlay h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 20px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
}

.today-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 40px;
}

.day {
    margin-bottom: 28px;
}

.day:last-child {
    margin-bottom: 0;
}

.day h2 {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.bars {
    display: flex;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bar {
    height: 100%;
}

.still {
    width: 45%;
    background: #94a3b8;
}

.slow {
    width: 35%;
    background: #22c55e;
}

.fast {
    width: 20%;
    background: #f97316;
}


.still2 {
    width: 20%;
    background: #94a3b8;
}

.slow2 {
    width: 70%;
    background: #22c55e;
}

.fast2 {
    width: 10%;
    background: #f97316;
}






.btn {
    display: inline-block;
    padding: 16px 28px;
    background: white;
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn:hover {
    transform: scale(1.04);
}

.hero-note {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

/* INFO SECTION */

.info-section {
    background: white;
    padding: 40px 20px 100px;
}

.info-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: #111827;
}

.info-text {
    max-width: 760px;
    margin: 0 auto 70px auto;
    text-align: center;
    font-size: 22px;
    line-height: 1.7;
    color: #4b5563;
}

.move-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.move-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px 28px;
    transition: 0.2s ease;
}

.move-card:hover {
    transform: translateY(-4px);
}

.move-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #111827;
}

.move-card ul {
    margin-top: 18px;
    padding-left: 18px;
    color: #6b7280;
}

.move-card li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.move-card li::marker {
    font-size: 0.7em;
}

.final-message {
    margin-top: 70px;
    text-align: center;
    font-size: 30px;
    line-height: 1.6;
    font-weight: 700;
    color: #111827;
}

.section-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-dark {
    display: inline-block;

    padding: 18px 34px;

    border-radius: 999px;

    background: #111827;
    color: #ffffff;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.2s ease;
}

.btn-dark:hover {
    transform: scale(1.04);
}

.btn-white {
    display: inline-block;

    padding: 18px 34px;

    border-radius: 999px;

    background: #ffffff;
    color: #111827;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.2s ease;
}

.btn-white:hover {
    transform: scale(1.04);
}

/* EXAMPLE SECTION */

.example-section {
    background: #f4f6f8;
    padding: 40px 20px 100px;
}

.example-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.example-container h2 {
    font-size: 42px;
    margin-bottom: 22px;
    color: #111827;
}

.example-intro {
    font-size: 22px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 60px;
}

.example-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.example-day-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.example-big-bar {
    display: flex;
    height: 28px;
    border-radius: 999px;
    overflow: hidden;
    background: #e5e7eb;
    margin-bottom: 22px;
}

.example-seg {
    height: 100%;
}

.example-values {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-weight: 700;
    color: #374151;
    margin-bottom: 30px;
}

.example-reading {
    font-size: 22px;
    line-height: 1.6;
    color: #111827;
    font-weight: 600;
}

.download-section {
    margin-top: 50px;
    text-align: center;
}

.download-text {
    font-size: 22px;
    color: #4b5563;
    margin-bottom: 24px;
}

.download-btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s ease;
}

.download-btn:hover {
    transform: scale(1.04);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 20px 0;
}

.footer-inner {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

.footer-inner p {
    margin: 4px 0;
}

/* MOBILE */

@media (max-width: 900px) {

    .top-tools {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .hero-brand {
        font-size: 18px;
    }

    .hero-brand img {
        width: 50px;
        height: 50px;
    }

    .overlay h1 {
        font-size: 38px;
    }

    .overlay p {
        font-size: 18px;
    }

    .move-cards {
        grid-template-columns: 1fr;
    }

    .info-container h2,
    .example-container h2 {
        font-size: 34px;
    }

    .info-text,
    .example-intro,
    .example-reading {
        font-size: 20px;
    }

    .final-message {
        font-size: 24px;
    }

    .example-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {

    .hero {
        min-height: auto;
        padding: 75px 16px 34px;
    }

    .top-tools {
        top: 14px;
        left: 16px;
        right: 16px;
    }

    .hero-brand img {
        width: 44px;
        height: 44px;
    }

    .overlay h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .overlay p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .today-box {
        padding: 16px;
        margin-bottom: 24px;
        border-radius: 18px;
    }

    .day {
        margin-bottom: 20px;
    }

    .day h2 {
        font-size: 14px;
    }

    .bars {
        height: 14px;
    }

    .day p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .btn,
    .btn-white,
    .btn-dark,
    .download-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-note {
        font-size: 14px;
        margin-top: 18px;
    }

    .info-section,
    .example-section {
        padding: 44px 18px;
    }

    .info-container h2,
    .example-container h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .info-text,
    .example-intro {
        font-size: 18px;
        margin-bottom: 36px;
    }

    .move-card {
        padding: 26px 24px;
        border-radius: 22px;
    }

    .move-card h3 {
        font-size: 20px;
    }

    .move-card li {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .final-message {
        margin-top: 46px;
        font-size: 24px;
    }

    .example-card {
        padding: 26px 18px;
    }

    .example-reading {
        font-size: 18px;
    }

    .download-text {
        font-size: 18px;
    }
}



.store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

    margin-top: 24px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 16px 28px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.2s ease;
}

.store-btn:hover {
    transform: scale(1.03);
}

.apple-btn {
    background: #111827;
    color: white;
}

.google-btn {
    background: white;
    color: #111827;
    border: 1px solid #d1d5db;
}


.foryou-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 12px;

    padding: 14px 26px;

    border-radius: 999px;

    background: transparent;

    border: 2px solid #111827;

    color: #111827;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: 0.2s ease;
}

.foryou-btn:hover {
    background: #111827;
    color: white;
}

.foryou-link {
    margin-top: 42px;
    padding-top: 26px;

    border-top: 2px solid rgba(17,24,39,0.08);

    text-align: center;
}

.foryou-link p {
    margin-bottom: 18px;

    font-size: 18px;
    color: #4b5563;
}


.shape-note{
    margin-top:10px;
    font-size:14px;
    opacity:0.85;
    font-style:italic;
}


.image-section{
    width:100%;
    padding:100px 20px;
    background:#f5f5f5;
}

.image-section .example-container{
    max-width:1400px;
    margin:0 auto;
}

.image-section h2{
    text-align:center;
    font-size:48px;
    margin-bottom:70px;
    color:#111827;
    font-weight:700;
}



.story-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:40px;
}

.story-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:380px;
    background:#ccc;
    
}

.story-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.story-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.25)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px 30px;
    align-items:flex-start;
    text-align:left;
}

.story-title{
    font-size:36px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.story-text{
    font-size:32px;
     font-weight:600;
    line-height:1.3;
    color:#fff;
    margin-bottom:14px;
    max-width:80%;
}

.story-sub{
    font-size:22px;
    line-height:1.4;
    color:rgba(255,255,255,0.9);
    max-width:75%;
}



.mini-time{
    margin:18px auto 0;
    width:70%;
    max-width:520px;
}

.mini-bar{
    width:100%;
    height:14px;
    border-radius:999px;
    overflow:hidden;
    display:flex;
    background:transparent;
}

.mini-bar span{
    display:block;
    height:100%;
    flex-shrink:0;
}


.mini-still{
    background:#94a3b8;
}

.mini-slow{
    background:#22c55e;
}

.mini-fast{
    background:#f97316;
}

.mini-values{
    margin-top:10px;
    font-size:16px;
    font-weight:700;
    color:#fff;
}






@media (max-width: 480px) {

    .image-section{
        padding:50px 14px;
    }

    .image-section h2{
        font-size:32px;
        line-height:1.15;
        margin-bottom:36px;
    }

    .story-grid{
        gap:28px;
    }

    .story-card{
        height:420px;
        border-radius:24px;
    }

    .story-overlay{
        padding:28px 22px;
        justify-content:flex-end;
    }

    .story-title{
        font-size:30px;
        margin-bottom:16px;
    }

    .story-text{
        font-size:22px;
        line-height:1.25;
        max-width:100%;
        margin-bottom:12px;
    }

    .story-sub{
        font-size:17px;
        max-width:100%;
        margin-bottom:14px;
    }

    .mini-time{
        width:100%;
        margin-top:14px;
    }

    .mini-values{
        font-size:12px;
        line-height:1.3;
    }
}
