/* ========================================
   SAMO Landing Page — Premium Design
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', -apple-system, BlinkMacSystemFont, 'Yu Gothic', sans-serif;
    background-color: #faf8f5;
    color: #1a1614;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========================================
   Language Switcher
   ======================================== */
.lang-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 500;
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(201, 124, 58, 0.25);
    border-radius: 18px;
    padding: 6px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1px 4px rgba(201,124,58,0.1);
}

.lang-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
}

.lang-btn.active {
    background: rgba(201, 124, 58, 0.12);
    border-color: rgba(201, 124, 58, 0.4);
    box-shadow: 0 2px 8px rgba(201,124,58,0.15);
    opacity: 1;
    transform: scale(1.08);
}

.lang-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* ========================================
   Opening Splash + Cascade
   ======================================== */
.cascade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    cursor: pointer;
    overflow: hidden;
    background: #faf8f5;
    transition: opacity 0.8s ease-out;
}

.cascade-overlay.done {
    opacity: 0;
    pointer-events: none;
}

.opening-splash {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: auto;
    min-height: 100vh;
    object-fit: cover;
    opacity: 1;
    animation: splash-slide 3s ease-in-out forwards;
}

@keyframes splash-slide {
    0%   { top: -100%; opacity: 1; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: 100%; opacity: 1; }
}

.cascade-item {
    position: absolute;
    top: -60px;
    opacity: 0;
    animation: cascade-fall var(--fall-duration, 2.5s) var(--fall-delay, 0s) ease-in forwards;
}

@keyframes cascade-fall {
    0% { opacity: 0; transform: translateY(0) rotate(var(--fall-rotate-start, -10deg)); }
    10% { opacity: 0.6; }
    70% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(calc(100vh + 80px)) rotate(var(--fall-rotate-end, 15deg)); }
}

.skip-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(0,0,0,0.18);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: skip-fade 2s ease-in-out 1.5s both;
}

@keyframes skip-fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ========================================
   Page
   ======================================== */
.page {
    position: relative;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 24px 32px;
}

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

.hero-character-wrap {
    position: relative;
    margin-bottom: 32px;
}

.hero-character {
    width: 200px;
    height: 200px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    opacity: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.hero-character.tapped {
    animation: hero-bounce 0.5s ease;
}

.hero-character.hop {
    animation: hero-hop 0.6s ease;
}

.hero-character.spin {
    animation: hero-spin 0.6s ease;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-20px) scale(1.1); }
    60% { transform: translateY(0) scale(0.95); }
}

@keyframes hero-hop {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(-10deg); }
    50% { transform: translateY(0) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes hero-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-character.reveal {
    animation: hero-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-character.breathing {
    opacity: 1;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes hero-pop {
    0% { opacity: 0; transform: scale(0.3); }
    60% { opacity: 1; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,160,0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.character-glow.visible {
    opacity: 1;
}

.brand {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 14px;
    color: #1a1614;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease, transform 1s ease;
}

.brand.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-sub {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #a09080;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease 0.15s, transform 1s ease 0.15s;
}

.brand-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll cue */
.scroll-cue {
    display: none;
}

.scroll-cue.visible {
    opacity: 1;
}

.scroll-cue span {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, #c9a96e);
    animation: cue-pulse 2.4s ease-in-out infinite;
}

@keyframes cue-pulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ========================================
   Story Section
   ======================================== */
.story-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.section-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.story-line {
    font-size: 22px;
    font-weight: 300;
    color: #3a352f;
    line-height: 2.6;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.story-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Concept Section
   ======================================== */
.concept-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.concept-line {
    font-size: 17px;
    font-weight: 500;
    color: #6b5e4f;
    line-height: 3.0;
    letter-spacing: 5px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease, transform 1s ease;
}

.concept-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 80px 24px 100px;
    max-width: 880px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 36px 24px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-num {
    display: block;
    font-size: 40px;
    font-weight: 200;
    color: #c9a96e;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1;
}

.feature-samo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #2a2520;
    margin-bottom: 12px;
    letter-spacing: 1px;
    line-height: 1.6;
}

.feature-desc {
    font-size: 13px;
    color: #8a7e70;
    line-height: 2.0;
    letter-spacing: 0.5px;
}

/* ========================================
   Growth Section
   ======================================== */
.growth-section {
    padding: 80px 24px 100px;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.section-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #3a352f;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease, transform 1s ease;
}

.section-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.growth-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 12px 20px;
    background: rgba(255,255,255,0.6);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.growth-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.growth-name {
    font-size: 13px;
    font-weight: 600;
    color: #3a352f;
    letter-spacing: 1px;
}

.growth-period {
    font-size: 10px;
    font-weight: 400;
    color: #b8ae9e;
    letter-spacing: 2px;
}

.growth-note {
    font-size: 14px;
    font-weight: 400;
    color: #a09080;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease, transform 1s ease;
}

.growth-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.growth-fixed {
    margin-top: 18px;
    color: #6b5e4f;
    font-weight: 500;
    line-height: 1.8;
}

/* ========================================
   Mystery Section (Joker 伏線)
   ======================================== */
.mystery-section {
    padding: 120px 24px;
    background: #1a1614;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Atmospheric glow */
.mystery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.mystery-inner {
    position: relative;
    z-index: 1;
}

.mystery-line {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 5px;
    line-height: 2.6;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1.8s ease, transform 1.8s ease;
}

.mystery-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.mystery-sub {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
    letter-spacing: 3px;
}

/* ========================================
   CTA Section (Top)
   ======================================== */
.cta-section {
    padding: 100px 24px 60px;
    text-align: center;
}

.cta-section.cta-top {
    padding: 0 24px 48px;
}

.cta-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 8px;
    color: #3a352f;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease, transform 1s ease;
}

.cta-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Forms
   ======================================== */
.form-area {
    max-width: 320px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1s ease, transform 1s ease;
}

.form-area.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-card {
    width: 100%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    border: 1px solid #e8e2da;
    border-radius: 12px;
    background: #ffffff;
    font-family: inherit;
    color: #2a2520;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

.form-input::placeholder {
    color: #c8c0b6;
}

.form-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 4px;
    transition: all 0.25s;
    margin-bottom: 18px;
}

.form-btn.primary {
    background: #1a1614;
    color: #faf8f5;
}

.form-btn.primary:hover {
    background: #2d2824;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.form-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ========================================
   SAMO Character Buttons
   ======================================== */
.samo-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 24px 18px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
    margin-bottom: 18px;
}

.samo-btn.primary {
    background: #1a1614;
    color: #faf8f5;
    border-color: transparent;
}

.samo-btn .samo-btn-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: transform 0.3s;
}

.samo-btn span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
}

.samo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.samo-btn:hover .samo-btn-img {
    transform: scale(1.1) rotate(-3deg);
}

.samo-btn:active {
    transform: translateY(0) scale(0.98);
}

.form-links {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.form-link {
    font-size: 12px;
    color: #b8ae9e;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.form-link:hover {
    color: #6b5e4f;
}

.form-description {
    font-size: 13px;
    color: #a09080;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.form-message {
    margin-top: 16px;
    font-size: 13px;
    color: #c97a6a;
    text-align: center;
    transition: opacity 0.3s;
}

.form-message.success {
    color: #7aab8a;
}

/* ========================================
   LINE Sticker Showcase
   ======================================== */
.sticker-section {
    padding: 60px 24px;
    text-align: center;
}

.sticker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 32px auto 0;
    padding: 0 8px;
}

.sticker-card {
    aspect-ratio: 370 / 320;
    border-radius: 16px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s;
}

.sticker-card:hover {
    transform: scale(1.05);
}

.sticker-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.sticker-note {
    margin-top: 20px;
    font-size: 13px;
    color: #b8ae9e;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .sticker-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .sticker-card {
        border-radius: 12px;
    }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.visitor-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    opacity: 0;
    transition: opacity 1s ease;
}

.visitor-counter.visible {
    opacity: 1;
}

.visitor-count-num {
    font-size: 28px;
    font-weight: 700;
    color: #1a1614;
    letter-spacing: 2px;
    line-height: 1;
}

.visitor-count-unit {
    font-size: 13px;
    font-weight: 600;
    color: #a09585;
    letter-spacing: 3px;
}

/* ヒーロー内ユーザー数カウンター */
.hero-user-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    flex-wrap: nowrap;
    width: 100%;
    word-break: keep-all;
    white-space: nowrap;
}

.hero-user-counter.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-count-num {
    font-size: 52px;
    font-weight: 900;
    color: #c97c3a;
    letter-spacing: -1px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.hero-count-label {
    font-size: 16px;
    font-weight: 600;
    color: #7a6a5a;
    letter-spacing: 1px;
    word-break: keep-all;
    white-space: normal;
}

@media (max-width: 480px) {
    .hero-user-counter {
        flex-direction: row;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
    }

    .hero-count-num {
        font-size: 40px;
        flex-shrink: 0;
    }

    .hero-count-label {
        font-size: 12px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-trademark {
    font-size: 11px;
    font-weight: 600;
    color: #a09585;
    letter-spacing: 1.5px;
}

.footer-copyright {
    font-size: 10px;
    color: #c8c0b6;
    letter-spacing: 0.5px;
}

.footer-mark {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #ddd8d0;
}

/* ========================================
   Share Section (SNS)
   ======================================== */
.share-section {
    padding: 60px 24px 20px;
    text-align: center;
}

.share-label {
    font-size: 12px;
    font-weight: 600;
    color: #a09585;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.share-sns:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.share-twitter { background: #1a1a1a; color: #fff; }
.share-line { background: #06c755; color: #fff; }
.share-facebook { background: #1877f2; color: #fff; }
.share-copy { background: #e8e2d8; color: #4a4038; font-family: inherit; }

/* ========================================
   Utility
   ======================================== */
.hidden {
    display: none !important;
}

/* ========================================
   Mobile
   ======================================== */
@media (max-width: 768px) {
    .hero-character {
        width: 172px;
        height: 172px;
    }

    .character-glow {
        width: 240px;
        height: 240px;
    }

    .brand {
        font-size: 28px;
        letter-spacing: 10px;
    }

    .brand-sub {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .story-section {
        min-height: auto;
        padding: 48px 24px;
    }

    .story-line {
        font-size: 18px;
        line-height: 2.4;
    }

    .concept-section {
        min-height: auto;
        padding: 40px 24px;
    }

    .concept-line {
        font-size: 15px;
        letter-spacing: 3px;
        line-height: 2.8;
    }

    .features-section {
        padding: 60px 20px 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-num {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .growth-section {
        padding: 60px 20px 80px;
    }

    .section-heading {
        font-size: 16px;
        letter-spacing: 4px;
        margin-bottom: 36px;
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 36px;
    }

    .growth-img {
        width: 72px;
        height: 72px;
    }

    .growth-name {
        font-size: 12px;
    }

    .growth-note {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .mystery-section {
        padding: 80px 24px;
    }

    .mystery-line {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .mystery-sub {
        font-size: 12px;
    }

    .cta-section {
        padding: 80px 24px 48px;
    }

    .cta-section.cta-top {
        padding: 0 20px 40px;
    }

    .cta-heading {
        font-size: 16px;
        letter-spacing: 6px;
        margin-bottom: 32px;
    }

    .samo-btn .samo-btn-img {
        width: 56px;
        height: 56px;
    }

    .samo-btn span {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .samo-btn {
        padding: 16px 20px 14px;
    }

    .feature-samo-img {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .form-area {
        max-width: 88%;
    }

    .form-input {
        padding: 13px 18px;
        font-size: 14px;
    }

    .form-btn {
        padding: 13px;
    }

    .cascade-item {
        width: 28px !important;
        height: 28px !important;
    }

    .site-footer {
        padding: 36px 24px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-character {
        width: 220px;
        height: 220px;
    }

    .brand {
        font-size: 42px;
        letter-spacing: 18px;
    }

    .story-line {
        font-size: 26px;
    }

    .concept-line {
        font-size: 20px;
    }

    .growth-img {
        width: 100px;
        height: 100px;
    }
}
