:root{
    --ocean:#08a6a5;
    --ocean-dark:#047f84;
    --ocean-light:#23c0b2;
    --soft:#effaf8;
    --soft2:#e7f8f5;
    --outside-mint:#effaf8; /* --soft와 동일하게 통일 (물결/푸터 색과 일치) */
    --inner-white:#fff;
    --ink:#153f3c;
    --gold:#C9A84C;
    --gold2:#F0D98A;
    --grad:linear-gradient(135deg,#059ea3 0%,#23c0b2 100%);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    background:var(--outside-mint);
}

body{
    font-family:'Gowun Dodum','Noto Sans KR',sans-serif;
    background:var(--outside-mint);
    color:#25413e;
    min-height:100vh;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   HEADER
   배경만 전체 폭, 내용은 1120px 중앙
========================= */

.header{
    width:100%;
    background:var(--outside-mint);
    margin:0;
    padding:0;
    border:0;
    box-shadow:none;
}

.header-inner{
    width:100%;
    max-width:1120px;
    margin:0 auto;
    padding:18px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--inner-white);
    position:relative;
    z-index:10;
    box-shadow:
        0 6px 16px rgba(0,0,0,.06),
        0 1px 0 rgba(0,0,0,.04);
}

.logo{
    font-family:'Jua',sans-serif;
    font-size:26px;
    color:#059ea3;
    display:flex;
    align-items:center;
    gap:8px;
}

.logo .bean{
    width:32px;
    height:32px;
    border-radius:50% 50% 50% 4px;
    background:var(--grad);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:15px;
    transform:rotate(-8deg);
}

.nav{
    display:flex;
    gap:10px;
}

.nav a{
    font-size:14px;
    color:#3f6a65;
    padding:8px 16px;
    border-radius:20px;
    font-weight:700;
    transition:.2s;
}

.nav a:hover,
.nav a.act{
    background:#d3f1ec;
    color:#059ea3;
}

.nav a.project-act{
    background:linear-gradient(135deg, #6fdad9 0%, #08a6a5 100%);
    color:#fff;
    box-shadow:0 10px 24px rgba(5,158,163,.22);
}

/* =========================
   OUTER MINT / CENTER WIDTH
   PC에서는 1120px 밖 양쪽 영역을 민트로 유지
========================= */

main{
    width:100%;
    background:var(--outside-mint);
}

.page{
    width:100%;
    max-width:1120px;
    margin:0 auto;
    background:var(--inner-white);
}

/* =========================
   PAGE
   아래 콘텐츠는 1120px 유지, 박스 그림자 제거
========================= */

.page{
    display:none;
}

.page.show{
    display:block;
}

.frame,
.project-frame{
    width:100%;
    max-width:1120px;
    margin:0 auto 60px;
    overflow:hidden;
    border-radius:0;
    box-shadow:none;
}

.frame{
    background:var(--ocean);
}

.project-frame{
    background:var(--soft);
}

/* =========================
   HOME HERO
========================= */

.hero{
    margin:0;
    background:var(--ocean);
    border-radius:0;
    padding:64px 52px 44px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.14);
    right:-40px;
    top:-60px;
}

.hero::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    right:150px;
    bottom:-50px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.badge{
    display:inline-block;
    background:#fff;
    color:#059ea3;
    font-family:'Jua',sans-serif;
    padding:7px 18px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:18px;
}

.hero h1{
    font-family:'Jua',sans-serif;
    font-size:40px;
    line-height:1.4;
    font-weight:400;
}

.hero p{
    margin-top:14px;
    font-size:15px;
    opacity:.95;
}

.cta{
    display:inline-block;
    margin-top:26px;
    background:#fff;
    color:#059ea3;
    font-family:'Jua',sans-serif;
    padding:14px 34px;
    border-radius:28px;
    font-size:16px;
    box-shadow:0 6px 0 rgba(0,0,0,.12);
    transition:.15s;
}

.cta:hover{
    transform:translateY(2px);
    box-shadow:0 4px 0 rgba(0,0,0,.12);
}

.face{
    position:absolute;
    right:70px;
    top:50%;
    width:140px;
    height:140px;
    background:#fff;
    border-radius:50% 50% 50% 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:60px;
    transform:translateY(-50%) rotate(6deg);
    box-shadow:0 10px 24px rgba(0,60,55,.2);
    z-index:2;
}

/* =========================
   FUNDING
========================= */

.funding-section{
    padding:36px 40px 52px;
    background:var(--ocean);
}

.funding-section h2{
    font-size:21px;
    font-weight:900;
    color:#fff;
    margin-bottom:4px;
}

.funding-section .sub{
    font-size:13px;
    color:rgba(255,255,255,.78);
    margin-bottom:22px;
}

.funding-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.funding-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    transition:.2s;
}

.funding-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(0,0,0,.14);
}

.funding-card .ph{
    height:200px;
    background:linear-gradient(135deg,#e6f4f3,#f4fafa);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

@media(max-width:900px){
    .funding-card .ph{
        height:400px !important;
    }
}

@media(max-width:500px){
    .funding-card .ph{
        height:250px !important;
    }
}

.funding-card .bd{
    padding:16px 18px 20px;
}

.funding-card h3{
    font-size:14px;
    font-weight:700;
    line-height:1.55;
    min-height:44px;
    color:#25413e;
}

.funding-card .org{
    font-size:12px;
    color:#8aa4a0;
    margin-top:6px;
}

.bar{
    height:7px;
    border-radius:4px;
    background:#eef7f5;
    overflow:hidden;
    margin-top:12px;
}

.bar i{
    display:block;
    height:100%;
    background:var(--ocean);
}

.meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:9px;
    font-size:12px;
    color:#5d7672;
}

.meta b{
    color:#059ea3;
    font-size:14px;
    font-weight:900;
}

/* =========================
   WAVE
========================= */

.wave-section{
    position:relative;
    height:300px;
    background:var(--ocean);
    overflow:hidden;
    margin:0;
    border:0;
}

.wave-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 18% 18%,rgba(255,255,255,.12),transparent 26%),
        radial-gradient(circle at 82% 10%,rgba(255,255,255,.10),transparent 30%);
}

.hero-waves{
    display:block;
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:90px;
    z-index:2;
}

.wave1 use{
    animation:move-forever1 10s linear infinite;
    fill:rgba(255,255,255,.42);
}

.wave2 use{
    animation:move-forever2 8s linear infinite;
    fill:rgba(255,255,255,.28);
}

.wave3 use{
    animation:move-forever3 6s linear infinite;
    fill:var(--soft);
}

@keyframes move-forever1{
    0%{transform:translate3d(-90px,0,0);}
    100%{transform:translate3d(85px,0,0);}
}

@keyframes move-forever2{
    0%{transform:translate3d(90px,0,0);}
    100%{transform:translate3d(-85px,0,0);}
}

@keyframes move-forever3{
    0%{transform:translate3d(-90px,0,0);}
    100%{transform:translate3d(85px,0,0);}
}

/* =========================
   PROJECT
========================= */

.project-section{
    padding:48px 44px 24px;
    background:var(--soft);
}

.section-title{
    margin-bottom:22px;
}

.section-title h2{
    font-size:28px;
    line-height:1.35;
    color:#0f172a;
    font-weight:900;
}

.section-title h2 span{
    display:inline-block;
    margin-left:8px;
    font-size:18px;
    color:#059ea3;
    vertical-align:middle;
}

/* =========================
   PROJECT SLIDER CARD
========================= */

.eie-home-fund-section{
    position:relative;
    overflow:hidden;
}

.eie-home-fund-slider-wrap{
    position:relative;
    overflow:hidden;
    padding:8px 0 34px;
}

.eie-home-fund-slider{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:8px 4px 18px;
    -ms-overflow-style:none;
    scrollbar-width:none;
}

.eie-home-fund-slider::-webkit-scrollbar{
    display:none;
}

.eie-home-fund-card{
    flex:0 0 85%;
    scroll-snap-align:start;
    display:grid;
    grid-template-columns:320px minmax(0,1fr);
    background:#fff;
    border:1px solid #e7edf2;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(15,23,42,.06);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.eie-home-fund-card:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 54px rgba(15,23,42,.12);
    border-color:rgba(5,158,163,.25);
}

.eie-home-fund-thumb{
    position:relative;
    min-height:100%;
    background:#f8fafc;
    overflow:hidden;
}

.eie-home-fund-thumb img{
    width:100%;
    height:100%;
    min-height:100%;
    object-fit:cover;
    transition:transform .35s ease;
}

.eie-home-fund-card:hover .eie-home-fund-thumb img{
    transform:scale(1.04);
}

.eie-home-fund-logo-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,#fffef8 0%,#fff9e9 100%);
}

.eie-home-fund-logo-thumb img{
    width:190px;
    max-width:72%;
    height:auto;
    min-height:auto;
    object-fit:contain;
    border-radius:18px;
}

.eie-home-fund-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(17,24,39,.72);
    color:#fff;
    backdrop-filter:blur(8px);
    font-size:12px;
    font-weight:800;
}

.eie-home-fund-body{
    display:flex;
    flex-direction:column;
    padding:24px 24px 22px;
}

.eie-home-fund-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
    flex-wrap:wrap;
}

.eie-home-fund-org{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:800;
    color:#0f766e;
}

.eie-home-fund-org-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#10b981;
    box-shadow:0 0 0 6px rgba(16,185,129,.10);
}

.eie-home-fund-days{
    font-size:13px;
    font-weight:900;
    color:#475569;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:7px 12px;
    border-radius:999px;
}

.eie-home-fund-days.is-live{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:88px;
    height:40px;
    padding:0 18px 0 30px;
    border-radius:10px;
    background:var(--grad);
    color:#fff;
    border:none;
    box-shadow:
        0 6px 0 #04777b,
        0 8px 14px rgba(0,0,0,.22);
    position:relative;
    transition:.2s;
}

.eie-home-fund-days.is-live::before{
    content:"";
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    width:8px;
    height:8px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 0 0 rgba(34,197,94,.7);
    animation:livePulse 1.5s infinite;
}

.eie-home-fund-days.is-live:hover{
    transform:translateY(-3px);
    box-shadow:
        0 9px 0 #04777b,
        0 12px 20px rgba(0,0,0,.25);
}

@keyframes livePulse{
    0%{box-shadow:0 0 0 0 rgba(34,197,94,.7);}
    70%{box-shadow:0 0 0 8px rgba(34,197,94,0);}
    100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}
}

.eie-home-fund-title{
    margin:0 0 18px 0;
    font-size:28px;
    line-height:1.38;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.eie-home-fund-progress-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:12px;
    margin-bottom:10px;
    flex-wrap:wrap;
}

.eie-home-fund-rate{
    font-size:28px;
    font-weight:900;
    color:#059ea3;
    letter-spacing:-0.03em;
}

.eie-home-fund-amount{
    text-align:right;
}

.eie-home-fund-raised{
    display:block;
    font-size:18px;
    font-weight:900;
    color:#111827;
}

.eie-home-fund-goal{
    display:block;
    margin-top:4px;
    font-size:13px;
    color:#64748b;
    font-weight:700;
}

.eie-home-fund-progress{
    position:relative;
    width:100%;
    height:12px;
    border-radius:999px;
    background:#eef4f6;
    overflow:hidden;
    margin-bottom:14px;
}

.eie-home-fund-progress-bar{
    height:100%;
    width:0%;
    border-radius:999px;
    background:linear-gradient(90deg,#059ea3 0%,#23c0b2 100%);
}

.eie-home-fund-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:auto;
    padding-top:18px;
    border-top:1px solid #eef2f5;
    flex-wrap:wrap;
}

.eie-home-fund-trust{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    color:#64748b;
    font-size:13px;
    font-weight:700;
}

.eie-home-fund-trust strong{
    color:#111827;
}

.eie-home-fund-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.eie-home-fund-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:126px;
    height:48px;
    padding:0 22px;
    border-radius:12px;
    font-size:14px;
    font-weight:900;
    letter-spacing:.03em;
    transition:.18s;
    overflow:hidden;
}

.eie-home-fund-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
    transform:skewX(-20deg);
    transition:left .45s ease;
}

.eie-home-fund-btn:hover::before{
    left:140%;
}

.eie-home-fund-btn-outline{
    background:linear-gradient(135deg,#ffffff 0%,#eef5f7 100%);
    color:#334155;
    border:none;
    box-shadow:
        0 6px 0 #cfd8dc,
        0 8px 18px rgba(0,0,0,.16);
}

.eie-home-fund-btn-outline:hover{
    transform:translateY(-3px);
    color:#059ea3;
    box-shadow:
        0 10px 0 #cfd8dc,
        0 14px 26px rgba(0,0,0,.18);
}

.eie-home-fund-btn-whitepaper{
    background:linear-gradient(135deg,#C9A84C 0%,#F0D98A 100%);
    color:#111;
    border:none;
    box-shadow:
        0 6px 0 #a98525,
        0 10px 22px rgba(201,168,76,.34);
}

.eie-home-fund-btn-whitepaper:hover{
    transform:translateY(-3px);
    color:#111;
    box-shadow:
        0 10px 0 #a98525,
        0 16px 30px rgba(201,168,76,.42);
}

.eie-home-fund-btn-disabled{
    background:linear-gradient(135deg,#9ca3af 0%,#6b7280 100%);
    color:#fff;
    cursor:not-allowed;
    pointer-events:none;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    opacity:.88;
}

.eie-home-fund-nav{
    position:absolute;
    top:50%;
    right:10px;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:8px;
    z-index:10;
}

.eie-home-fund-nav button{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#059ea3;
    color:#fff;
    font-size:24px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(0,0,0,.16);
    transition:.2s;
}

.eie-home-fund-nav button:hover{
    transform:translateY(-2px);
    background:#047f84;
}

.eie-home-fund-slider-wrap::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:80px;
    height:100%;
    background:linear-gradient(to left,var(--soft),rgba(239,250,248,0));
    pointer-events:none;
}

.services-swipe-hint{
    position:absolute;
    right:64px;
    bottom:8px;
    color:#059ea3;
    font-size:14px;
    font-weight:700;
    pointer-events:none;
    animation:hintFloat 1.8s ease-in-out infinite;
}

@keyframes hintFloat{
    0%{transform:translateY(0);opacity:.85;}
    50%{transform:translateY(-2px);opacity:1;}
    100%{transform:translateY(0);opacity:.85;}
}

/* =========================
   ABOUT
========================= */

.about-section{
    padding:56px 44px 64px;
    background:var(--soft);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:center;
}

.about-img img{
    width:100%;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(15,23,42,.14);
}

.inner-title{
    font-size:30px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:16px;
}

.our-story{
    background:#fff;
    border:1px solid #e7edf2;
    border-radius:24px;
    padding:28px;
    box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.our-story h3{
    font-size:22px;
    font-weight:900;
    color:#059ea3;
    margin-bottom:14px;
}

.our-story p{
    font-size:15px;
    color:#475569;
    line-height:1.9;
}

.our-story ul{
    list-style:none;
    margin:18px 0;
    display:grid;
    gap:10px;
}

.our-story li{
    display:flex;
    align-items:center;
    gap:9px;
    color:#334155;
    font-weight:800;
}

.check{
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--grad);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    flex-shrink:0;
}

/* =========================
   COMPANY FOOTER
========================= */

.company-footer{
    background:var(--soft);
    padding:24px 44px 36px;
    border-top:0;
    font-size:12px;
    color:#64748b;
}

.company-footer-inner{
    line-height:1.8;
}

.footer-toggle{
    cursor:pointer;
    user-select:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#0f172a;
    font-weight:900;
}

.footer-arrow{
    display:inline-block;
    width:12px;
    height:7px;
    position:relative;
    transition:transform .35s ease;
    flex-shrink:0;
}

.footer-arrow svg{
    width:100%;
    height:100%;
    display:block;
}

.footer-detail{
    overflow:hidden;
    max-height:0;
    opacity:0;
    transition:max-height .4s ease, opacity .35s ease;
}

.footer-detail-inner{
    margin-top:12px;
    padding:16px 18px;
    background:#fff;
    border:1px solid #e7edf2;
    border-radius:16px;
    color:#475569;
    line-height:1.8;
}

/* =========================
   FLOATING CHAT
========================= */

#floating-chat{
    position:fixed;
    right:20px;
    bottom:45%;
    transform:translateY(50%);
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#059ea3,#0dcaf0);
    border-radius:50%;
    box-shadow:0 15px 35px rgba(0,0,0,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99998;
    cursor:pointer;
    animation:floaty 3s ease-in-out infinite;
}

#floating-chat i{
    color:#fff;
    font-size:30px;
    z-index:2;
}

.chat-ping{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(13,202,240,.4);
    animation:ping 1.8s infinite;
    z-index:1;
}

@keyframes ping{
    0%{transform:scale(1);opacity:.7;}
    70%{transform:scale(1.8);opacity:0;}
    100%{opacity:0;}
}

@keyframes floaty{
    0%,100%{transform:translateY(50%) translateY(0);}
    50%{transform:translateY(50%) translateY(-8px);}
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){
    .page{
        max-width:100%;
    }

    .header-inner{
        max-width:100%;
        flex-direction:column;
        gap:14px;
        padding:18px 20px;
    }

    .nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .frame,
    .project-frame{
        margin:0;
    }

    .hero{
        padding:44px 32px;
    }

    .face{
        display:none;
    }

    .hero h1{
        font-size:34px;
    }

    .funding-section{
        padding:32px 20px 46px;
    }

    .funding-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .wave-section{
        height:250px;
    }

    .project-section,
    .about-section,
    .company-footer{
        padding-left:20px;
        padding-right:20px;
    }

    .eie-home-fund-card{
        grid-template-columns:1fr;
        flex-basis:88%;
    }

    .eie-home-fund-thumb{
        height:240px;
    }

    .eie-home-fund-title{
        font-size:24px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    .logo{
        font-size:24px;
    }

    .nav a{
        font-size:13px;
        padding:7px 12px;
    }

    .hero{
        padding:34px 24px;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:14px;
        line-height:1.6;
    }

    .cta{
        width:100%;
        text-align:center;
        padding:13px 20px;
    }

    .funding-grid{
        grid-template-columns:1fr;
    }

    .funding-card h3{
        min-height:auto;
    }

    .project-section{
        padding-top:36px;
    }

    .section-title h2{
        font-size:24px;
    }

    .eie-home-fund-card{
        flex-basis:92%;
        border-radius:22px;
    }

    .eie-home-fund-body{
        padding:18px 16px;
    }

    .eie-home-fund-title{
        font-size:22px;
    }

    .eie-home-fund-rate{
        font-size:24px;
    }

    .eie-home-fund-raised{
        font-size:17px;
    }

    .eie-home-fund-actions{
        width:100%;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:flex-start;
        gap:10px;
        flex-wrap:nowrap;
    }

    .eie-home-fund-actions .eie-home-fund-btn{
        width:auto;
        min-width:0;
        flex:1;
        height:42px;
        padding:0 14px;
        font-size:13px;
        white-space:nowrap;
    }

    .eie-home-fund-nav{
        right:6px;
    }

    .eie-home-fund-nav button{
        width:36px;
        height:36px;
        font-size:20px;
    }

    .services-swipe-hint{
        right:14px;
        bottom:4px;
        font-size:13px;
    }

    #floating-chat{
        width:60px;
        height:60px;
        right:14px;
    }

    #floating-chat i{
        font-size:26px;
    }
}



/* =========================================================
   FINAL STRUCTURE FIX
   - 바깥 전체는 민트
   - 실제 사이트 폭만 1120px 중앙 정렬
   - page/header-inner 흰 배경 때문에 생기던 양쪽 흰 영역 제거
========================================================= */
html,
body{
    background:var(--outside-mint) !important;
    min-height:100%;
    overflow-x:hidden;
}

.site-shell{
    width:min(100%,1120px);
    margin-left:auto;
    margin-right:auto;
    background:transparent;
    box-sizing:border-box;
}

.header,
.site-main,
main{
    width:100%;
    background:var(--outside-mint) !important;
}

.header-shell{
    background:transparent !important;
    position:relative;
    z-index:20;
}

.header-inner{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    background:transparent !important;
    background-color:transparent !important;
    box-shadow:none !important;
}

.content-shell{
    background:transparent !important;
}

.page{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    background:transparent !important;
    background-color:transparent !important;
}

.frame,
.project-frame{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
}

@media(max-width:1120px){
    .site-shell{
        width:100%;
    }
}

/* =========================================================
   FULL-BLEED FIX (v2)
   - 콘텐츠는 1120px 중앙 유지
   - 배경색 번짐을 "섹션 단위"가 아닌 "프레임 단위"로 처리
     → 섹션 경계마다 생기던 얇은 흰 선(서브픽셀 틈) 제거
   - wave-section의 흰색 장식 그라디언트 제거
     → 물결 구간과 위 컨텐츠의 청록색 완전 일치
========================================================= */

/* box-shadow가 밖으로 번질 수 있도록 프레임 클리핑 해제 */
.frame,
.project-frame,
.wave-section{
    overflow:visible !important;
}

/* 홈 프레임: 청록(오션) 배경을 프레임 전체 높이로 한 번에 좌우 확장
   (섹션마다 따로 번지지 않으므로 경계 틈이 생기지 않음) */
.frame{
    box-shadow:0 0 0 100vmax var(--ocean);
    clip-path:inset(0 -100vmax);
}

/* 프로젝트 프레임: 기부 페이지와 동일한 청록 배경으로 좌우 확장 */
.project-frame{
    background:var(--ocean) !important;
    box-shadow:0 0 0 100vmax var(--ocean);
    clip-path:inset(0 -100vmax);
}

/* 푸터(회사정보)는 소프트 민트로 자기 구간만 덮어쓰기
   (프레임의 청록 번짐 위에 그려져 푸터 양옆도 민트가 됨) */
.company-footer{
    box-shadow:0 0 0 100vmax var(--soft);
    clip-path:inset(0 -100vmax);
}

/* 물결 구간을 살짝 밝게 만들던 흰색 라디얼 장식 제거
   → 물결 위 배경색이 funding-section과 완전히 동일해짐 */
.wave-section::before{
    display:none;
}

/* 물결 SVG는 화면 전체 폭으로 확장 (양옆 끝까지 출렁이게) */
.hero-waves{
    left:50% !important;
    width:100vw !important;
    max-width:100vw;
    transform:translateX(-50%);
}

/* =========================================================
   PROJECT PAGE MINT FIX
   - Project / EIE 페이지도 기부 페이지와 동일한 청록 배경
   - 물결도 동일하게 가로 전체 (위 .hero-waves 규칙이 공통 적용됨)
   - 청록 배경 위에서 안 보이던 어두운 폰트는 흰색으로 변경
========================================================= */

/* 섹션 배경을 소프트 민트 → 청록으로 */
.project-section,
.about-section{
    background:var(--ocean);
}

/* D-day 타이틀 / 진행 예정 타이틀: 검정 → 흰색 */
.section-title h2{
    color:#fff;
}

/* 카운트다운 텍스트: 청록 → 연민트 (청록 배경 위에서 보이게) */
.section-title h2 span{
    color:#d7f7f2;
}

/* Project EIE Team 타이틀: 검정 → 흰색 */
.inner-title{
    color:#fff;
}

/* "옆으로 넘겨 더 보기" 힌트: 청록 → 흰색 */
.services-swipe-hint{
    color:#fff;
}

/* 슬라이더 오른쪽 페이드: 소프트 민트 → 청록으로 자연스럽게 */
.eie-home-fund-slider-wrap::after{
    background:linear-gradient(to left,var(--ocean),rgba(8,166,165,0));
}

/* =========================================================
   ABOUT IMAGE LIGHTBOX / HEADER SHADOW
========================================================= */
.header{
    position:relative;
    z-index:1000;
    box-shadow:0 10px 24px rgba(4,127,132,.16) !important;
}

.header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-16px;
    height:16px;
    pointer-events:none;
    background:linear-gradient(to bottom,rgba(4,127,132,.14),rgba(4,127,132,0));
}

.header-inner{
    box-shadow: 0 8px 10px -8px rgba(4, 127, 132, .35) !important;
}

.about-img a.glightbox{
    display:block;
    border-radius:16px;
    overflow:hidden;
    cursor:zoom-in;
}

.about-img a.glightbox img{
    transition:transform .28s ease, filter .28s ease;
}

.about-img a.glightbox:hover img{
    transform:scale(1.02);
    filter:brightness(1.04);
}

.about-hidden-gallery{
    display:none !important;
}

.glightbox-clean .gslide-image img,
.glightbox-modern .gslide-image img{
    max-height:82vh;
    object-fit:contain;
}

/* funding 카드 3개 균등 배치 */
.funding-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}

/* 태블릿 */
@media(max-width:900px){
    .funding-grid{
        grid-template-columns:repeat(1,minmax(0,1fr)) !important;
    }
}

/* 모바일 */
@media(max-width:560px){
    .funding-grid{
        grid-template-columns:1fr !important;
    }
}
/* 메인 히어로 오른쪽 잎 아이콘 */
.face.hero-leaf-icon{
    background:transparent !important;
    box-shadow:none !important;
    border-radius:0 !important;

    width:190px;
    height:190px;

    right:86px;
    top:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff !important;
    font-size:190px;
    line-height:1;

    transform:translateY(-50%) rotate(-18deg);
}

.face.hero-leaf-icon i{
    display:block;
    font-size:190px;
    line-height:1;
    color:#fff !important;
    text-shadow:0 18px 38px rgba(0,80,75,.12);
}

/* 모바일에서는 기존처럼 숨김 유지 */
@media(max-width:900px){
    .face.hero-leaf-icon{
        display:none !important;
    }
}


/* =========================================================
   CTA IMAGE BETWEEN HERO / FUNDING
   - assets/img/cta-bg.jpg 전체 가로 배치
   - position:fixed 완전 차단
   - 스크롤하면 이미지도 같이 지나가게 처리
========================================================= */
.call-to-action.cta-image-break{
    position:relative !important;
    width:100vw !important;
    height:100px !important;
    min-height:100px !important;
    margin:0 0 0 50% !important;
    padding:0 !important;
    transform:translateX(-50%) !important;
    overflow:hidden !important;
    clip-path:none !important;
    background:var(--ocean) !important;
}

.call-to-action.cta-image-break > img{
    position:static !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    max-width:none !important;
    height:100px !important;
    min-height:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
    z-index:auto !important;
}

.call-to-action.cta-image-break::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:rgba(8,166,165,.35);
}

.call-to-action.cta-image-break::after{
    display:none !important;
    content:none !important;
}

@media(max-width:900px){
    .call-to-action.cta-image-break,
    .call-to-action.cta-image-break > img{
        height:100px !important;
        min-height:100px !important;
    }
}

@media(max-width:560px){
    .call-to-action.cta-image-break,
    .call-to-action.cta-image-break > img{
        height:100px !important;
        min-height:100px !important;
    }
}

/* =========================================================
   CTA IMAGE — 패럴럭스 창문 효과
   - 이미지는 뷰포트에 고정(fixed)
   - 섹션이 clip-path:inset(0) 으로 '창' 역할
   - 스크롤하면 창이 지나가며 이미지의 다른 부분이 보임
========================================================= */
section.call-to-action.cta-image-break,
.call-to-action.cta-image-break{
    position:relative !important;
    width:100vw !important;
    margin:0 !important;
    margin-left:calc(50% - 50vw) !important; /* transform 없이 가로 전체 확장 */
    padding:0 !important;
    transform:none !important;              /* ★ transform 있으면 fixed가 깨짐 */
    overflow:hidden !important;
    clip-path:inset(0) !important;           /* ★ 창문 효과의 핵심 */
    -webkit-clip-path:inset(0) !important;
    background:var(--ocean) !important;
}

.call-to-action.cta-image-break > img{
    position:fixed !important;               /* ★ 이미지를 화면에 고정 */
    top:0 !important;
    left:0 !important;
    inset:auto !important;
    width:100vw !important;
    height:100vh !important;                 /* 바탕화면 사이즈 그대로 화면 채움 */
    max-width:none !important;
    min-height:0 !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
    z-index:-1;                               /* 창 안에서 콘텐츠 뒤로 */
}

/* 청록 틴트 오버레이 (기존 유지) */
.call-to-action.cta-image-break::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:rgba(8,166,165,.35);
}

.call-to-action.cta-image-break::after{
    display:none !important;
}

@media(max-width:900px){
    section.call-to-action.cta-image-break,
    .call-to-action.cta-image-break{
        height:200px !important;
        min-height:200px !important;
    }
}

@media(max-width:560px){
    section.call-to-action.cta-image-break,
    .call-to-action.cta-image-break{
        height:150px !important;
        min-height:150px !important;
    }
}

/* CTA 이미지: 중간 부분이 보이도록 크게 키우고 위로 당김 */
.call-to-action.cta-image-break > img{
    height:150vh !important;   /* 화면보다 1.5배 크게 */
    top:-25vh !important;      /* 위로 25vh 당겨서 가운데 정렬 */
}
.hero .hero-leaf-icon.hero-bayleef-pair{
    overflow:visible !important;
    isolation:isolate;
}
.hero .hero-leaf-icon.hero-bayleef-pair > .bx.bxs-leaf{
    position:relative;
    z-index:4;
}
.hero .hero-bayleef-visual{
    position:absolute;
    top:50%;
    right:calc(100% - 22px);
    z-index:5;
    display:inline-block;
    width:clamp(175px,16vw,270px);
    max-width:none;
    line-height:0;
    overflow:visible;
}
.hero .hero-bayleef-image{
    display:block;
    width:100px;
    max-width:none;
    height:auto;
    object-fit:contain;
    pointer-events:none;
    filter:drop-shadow(0 16px 22px rgba(0,72,73,.20));
    transform-origin:92% 96%;
    animation:homeBayleefFloat 3.2s ease-in-out infinite;
    will-change:transform;
}
.hero .hero-bayleef-number{
    position:absolute;
    top:52%;
    left:calc(100% + 12px);
    z-index:7;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:68px;
    padding:8px 17px;
    border-radius:17px;
    color:#fff;
    background:#9fd4a3;
    box-shadow:0 8px 18px rgba(58,130,67,.18);
    font-family:'Noto Sans','Noto Sans KR',sans-serif;
    font-size:25px;
    font-weight:900;
    line-height:1;
    white-space:nowrap;
    transform:translateY(-50%) rotate(-4deg);
}
@keyframes homeBayleefFloat{
    0%,100%{transform:translateY(-50%) rotate(29deg)}
    50%{transform:translateY(calc(-50% - 9px)) rotate(31deg)}
}
@media (max-width:900px) and (min-width:621px){
    .hero .hero-bayleef-visual{right:calc(100% - 18px);width:clamp(145px,19vw,205px)}
    .hero .hero-bayleef-number{left:calc(100% + 9px);min-width:59px;padding:7px 14px;font-size:22px}
}
@media (max-width:620px){
    .hero{position:relative !important;display:grid !important;grid-template-columns:minmax(0,1fr) 166px !important;grid-template-rows:auto !important;align-items:center !important;column-gap:0 !important;overflow:visible !important}
    .hero .hero-content{position:relative;z-index:6;grid-column:1;grid-row:1;width:100%;min-width:0;padding-right:4px}
    .hero .hero-content h1{position:relative;z-index:6;max-width:100%}
    .hero .hero-leaf-icon.hero-bayleef-pair{position:relative !important;top:auto !important;right:auto !important;bottom:auto !important;left:auto !important;z-index:5;grid-column:2;grid-row:1;display:block !important;visibility:visible !important;opacity:1 !important;align-self:center;width:166px !important;min-width:166px;height:128px !important;min-height:128px;margin:0 !important;overflow:visible !important;transform:translateY(-2px) !important}
    .hero .hero-leaf-icon.hero-bayleef-pair > .bx.bxs-leaf{position:absolute !important;top:50%;right:-26px;z-index:3;display:block !important;visibility:visible !important;opacity:1 !important;font-size:78px !important;line-height:1 !important;transform:translateY(-50%)}
    .hero .hero-bayleef-visual{top:50%;right:77px;z-index:5;width:98px}
    .hero .hero-bayleef-image{transform-origin:52% 86% !important;animation-name:bayleefMobileMove20 !important;animation-duration:2.8s !important;animation-timing-function:ease-in-out !important;animation-iteration-count:infinite !important;animation-direction:alternate !important;animation-fill-mode:both !important}
    .hero .hero-bayleef-number{top:20%;left:calc(100% + 3px);min-width:47px;padding:6px 10px;border-radius:13px;font-size:17px;transform:translateY(-50%) rotate(-4deg)}
}
@keyframes bayleefMobileMove20{
    0%{transform:translate3d(0,-50%,0) rotate(-1.5deg)}
    100%{transform:translate3d(0,calc(-50% - 8px),0) rotate(-17.5deg)}
}
@media (max-width:430px){
    .hero{grid-template-columns:minmax(0,1fr) 148px !important}
    .hero .hero-leaf-icon.hero-bayleef-pair{width:148px !important;min-width:148px;height:116px !important;min-height:116px}
    .hero .hero-leaf-icon.hero-bayleef-pair > .bx.bxs-leaf{right:-24px;font-size:70px !important}
    .hero .hero-bayleef-visual{right:69px;width:89px}
    .hero .hero-bayleef-number{min-width:43px;padding:5px 9px;font-size:16px}
}
@media (max-width:360px){
    .hero{grid-template-columns:minmax(0,1fr) 132px !important}
    .hero .hero-leaf-icon.hero-bayleef-pair{width:132px !important;min-width:132px;height:104px !important;min-height:104px}
    .hero .hero-leaf-icon.hero-bayleef-pair > .bx.bxs-leaf{right:-22px;font-size:62px !important}
    .hero .hero-bayleef-visual{right:61px;width:79px}
    .hero .hero-bayleef-number{min-width:39px;padding:5px 8px;font-size:14px}
}
@media (prefers-reduced-motion:reduce){
    .hero .hero-bayleef-image{animation:none !important;transform:translateY(-50%) rotate(30deg)}
}
@media (max-width:620px) and (prefers-reduced-motion:reduce){
    .hero .hero-bayleef-image{transform:translateY(-50%) rotate(-20deg)}
}
@media (min-width:621px){
    .hero .hero-bayleef-visual{right:calc(100% - 111px) !important}
    .hero .hero-bayleef-image{margin-left:auto;margin-right:72px}
}
.bayleef-intro-section{
    position:relative;
    margin-top:34px;
    padding:34px 26px 30px;
    border-radius:24px;
    background:linear-gradient(160deg,#f2faf3 0%,#e7f5ea 55%,#ddf0e2 100%);
    box-shadow:0 14px 30px rgba(0,72,73,.08);
    overflow:hidden;
    font-family:'Noto Sans','Noto Sans KR',sans-serif;
}
.bayleef-intro-section::before{
    content:'\ea67';
    font-family:'boxicons';
    position:absolute;
    right:-24px;
    bottom:-30px;
    z-index:0;
    font-size:190px;
    line-height:1;
    color:rgba(159,212,163,.28);
    transform:rotate(-18deg);
    pointer-events:none;
}
.bayleef-intro-inner{position:relative;z-index:1}
.bayleef-intro-badge{display:inline-flex;align-items:center;gap:6px;padding:7px 15px;border-radius:999px;background:#fff;color:#3a8243;font-size:13px;font-weight:700;box-shadow:0 6px 14px rgba(58,130,67,.12)}
.bayleef-intro-section h2{margin:16px 0 10px;color:#1f3b28;font-size:26px;font-weight:900;line-height:1.35;letter-spacing:-.02em}
.bayleef-intro-section h2 em{font-style:normal;color:#3a8243}
.bayleef-intro-lead{margin:0 0 22px;color:#4a6552;font-size:15px;font-weight:500;line-height:1.75;word-break:keep-all}
.bayleef-intro-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:22px}
.bayleef-intro-card{padding:20px 16px 18px;border-radius:18px;background:#fff;box-shadow:0 8px 18px rgba(0,72,73,.07);transition:transform .25s ease,box-shadow .25s ease}
.bayleef-intro-card:hover{transform:translateY(-4px);box-shadow:0 14px 26px rgba(0,72,73,.12)}
.bayleef-intro-card .bx{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;margin-bottom:12px;border-radius:13px;background:#e7f5ea;color:#3a8243;font-size:22px}
.bayleef-intro-card h3{margin:0 0 6px;color:#1f3b28;font-size:15.5px;font-weight:800;letter-spacing:-.01em}
.bayleef-intro-card p{margin:0;color:#5f7767;font-size:13.5px;line-height:1.65;word-break:keep-all}
.bayleef-intro-cta{display:inline-flex;align-items:center;gap:7px;padding:12px 22px;border-radius:999px;background:#9fd4a3;color:#fff;font-size:14.5px;font-weight:800;text-decoration:none;box-shadow:0 10px 20px rgba(58,130,67,.22);transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.bayleef-intro-cta:hover{transform:translateY(-2px);background:#8ccb92;box-shadow:0 14px 26px rgba(58,130,67,.28)}
.bayleef-intro-cta .bx{font-size:17px}
@media (max-width:620px){
    .bayleef-intro-section{margin-top:26px;padding:28px 20px 26px;border-radius:20px}
    .bayleef-intro-section::before{font-size:140px;right:-30px;bottom:-34px}
    .bayleef-intro-section h2{font-size:22px}
    .bayleef-intro-lead{font-size:14px}
    .bayleef-intro-cards{grid-template-columns:1fr;gap:11px}
    .bayleef-intro-card{display:grid;grid-template-columns:42px 1fr;column-gap:14px;align-items:start;padding:16px 16px 15px}
    .bayleef-intro-card .bx{margin-bottom:0;grid-row:1 / span 2}
    .bayleef-intro-cta{width:100%;justify-content:center}
}
.company-footer{position:relative;width:100vw;margin-left:calc(50% - 50vw);color:#b9c4d3;font-family:'Noto Sans','Noto Sans KR',sans-serif;overflow:hidden}
.company-footer,.company-footer *{box-sizing:border-box}
.company-footer-inner{display:flex;flex-direction:column;width:100%;max-width:1600px;min-height:430px;margin:0 auto;padding:54px clamp(26px,4.5vw,82px) 27px}
.company-footer-main{display:grid;grid-template-columns:minmax(0,1fr) 230px;gap:70px;flex:0}
.company-footer-info{min-width:0}
.company-footer-logo{display:inline-block;margin:0;color:#111810;font-size:23px;font-weight:700;line-height:1;letter-spacing:-.055em}
.company-footer-address{display:flex;flex-direction:column;gap:5px;margin:18px 0 0;color:#2e3135;font-size:17px;font-style:normal;font-weight:400;line-height:1.55;letter-spacing:-.025em}
.company-footer-address p{margin:0}
.company-footer-address a{color:inherit;text-decoration:none;transition:color .2s ease}
.company-footer-address a:hover{color:#9F8170}
.company-footer-powered{margin-top:2px !important}
.company-footer-powered strong{font-weight:700}
.company-footer-nav{display:flex;flex-direction:column;align-items:flex-start;gap:20px;padding-top:8px}
.company-footer-nav-title{margin-bottom:23px;color:#111810;font-size:23px;font-weight:800;line-height:1;letter-spacing:-.04em}
.company-footer-nav a{position:relative;display:inline-block;color:#2e3135;font-size:17px;font-weight:400;line-height:1.2;text-decoration:none;transition:color .2s ease,transform .2s ease}
.company-footer-nav a::after{content:'';position:absolute;right:0;bottom:-8px;left:0;height:1px;background:#9F8170;transform:scaleX(0);transform-origin:left center;transition:transform .25s ease}
.company-footer-nav a:hover{color:#9F8170;transform:translateX(3px)}
.company-footer-nav a:hover::after{transform:scaleX(1)}
.company-footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-top:42px;padding-top:22px;border-top:1px solid #808080;color:#4e4b51;font-size:13px;line-height:1.6}
.company-footer-copyright{margin:0}
.company-footer-policy{display:flex;align-items:center;gap:13px;white-space:nowrap}
.company-footer-policy a{color:#4e4b51;font-weight:500;text-decoration:none;transition:color .2s ease}
.company-footer-policy a:hover{color:#9F8170;text-decoration:underline;text-underline-offset:4px}
.company-footer-divider{color:#586576}
.company-footer-terms{color:#7f8b9a}
@media (max-width:900px){
    .company-footer-inner{min-height:390px;padding-top:46px}
    .company-footer-main{grid-template-columns:minmax(0,1fr) 180px;gap:45px}
    .company-footer-address{margin-top:50px}
    .company-footer-nav{gap:32px}
    .company-footer-nav-title{margin-bottom:15px}
}
@media (max-width:620px){
    .company-footer-inner{min-height:0;padding:40px 22px 25px}
    .company-footer-main{display:block}
    .company-footer-logo{font-size:28px}
    .company-footer-address{gap:5px;margin-top:20px;font-size:15px}
    .company-footer-nav{display:grid;grid-template-columns:repeat(2,auto);justify-content:start;column-gap:30px;row-gap:20px;margin-top:42px;padding-top:27px;border-top:1px solid rgba(255,255,255,.12)}
    .company-footer-nav-title{grid-column:1 / -1;margin:0;font-size:22px}
    .company-footer-nav a{font-size:16px}
    .company-footer-bottom{flex-direction:column;align-items:flex-start;gap:11px;margin-top:38px;padding-top:20px;font-size:12px}
    .company-footer-policy{gap:10px;white-space:normal}
}
