:root {
    --bg-color: #fbf6e7;
    --bg-soft: #fff9e8;
    --card-bg: rgba(255, 253, 246, 0.9);
    --card-hover: rgba(255, 249, 232, 0.98);
    --text-main: #211a0b;
    --text-muted: #6a5726;
    --primary: #2f2612;
    --secondary: #9a6a05;
    --success: #16794d;
    --warning: #9a5a00;
    --line: rgba(47, 38, 18, 0.16);
    --shadow: rgba(82, 57, 8, 0.14);
}

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

body {
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 245, 205, 0.42), transparent 34rem),
        linear-gradient(135deg, #fffdf6 0%, #fbf3dc 48%, #f3e3b6 100%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-elements {
    display: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 2rem 5%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 249, 232, 0.72);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.brand-icon {
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 8px;
    flex: 0 0 auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.tools-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tools-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1;
}

.tools-toggle::after {
    content: '▾';
    font-size: 0.75rem;
    line-height: 1;
}

.tools-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 220px;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem;
    background: rgba(255, 253, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px var(--shadow);
    z-index: 20;
}

.tools-menu.open .tools-dropdown {
    display: flex;
}

.tools-dropdown.mega-tools {
    width: min(860px, calc(100vw - 2rem));
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 0.9rem;
}

.tools-menu.open .tools-dropdown.mega-tools {
    display: grid;
}

.tools-group {
    display: grid;
    align-content: start;
    gap: 0.25rem;
    min-width: 0;
}

.tools-group-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.86rem;
    padding: 0.45rem 0.55rem 0.6rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.2rem;
}

.tools-dropdown a,
.tools-soon {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tools-dropdown a:hover {
    color: var(--text-main);
    background: rgba(154, 106, 5, 0.12);
}

.tools-soon {
    display: block;
    opacity: 0.55;
    cursor: default;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #20170a, #8b5e05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-showcase {
    width: 100%;
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.showcase-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 253, 246, 0.78);
    box-shadow: 0 18px 44px var(--shadow);
}

.showcase-panel.reverse {
    grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.showcase-panel.reverse .showcase-copy {
    order: 2;
}

.showcase-panel.reverse .showcase-visual {
    order: 1;
}

.showcase-copy {
    display: grid;
    gap: 0.95rem;
}

.showcase-kicker {
    width: max-content;
    padding: 0.35rem 0.62rem;
    border-radius: 999px;
    background: rgba(47, 38, 18, 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-copy h2 {
    max-width: 520px;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.showcase-copy p {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.showcase-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.72rem 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(47, 38, 18, 0.24);
    color: var(--text-main);
    background: rgba(255, 253, 246, 0.88);
    font-weight: 800;
    text-decoration: none;
}

.showcase-actions a:first-child {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f2612, #8b5e05);
}

.showcase-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    justify-self: center;
    isolation: isolate;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    inset: 12% 8%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(47, 38, 18, 0.08), rgba(154, 106, 5, 0.18));
    filter: blur(26px);
    transform: translateY(18px);
    z-index: -1;
    animation: visualGlow 4.8s ease-in-out infinite alternate;
}

.showcase-visual img {
    width: 100%;
    aspect-ratio: 36 / 23;
    object-fit: contain;
    border-radius: 18px;
    transform-origin: center;
    animation: visualFloat 5.8s ease-in-out infinite;
}

.motion-chip {
    position: absolute;
    min-width: 4.4rem;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 38, 18, 0.16);
    background: rgba(255, 253, 246, 0.92);
    color: var(--text-main);
    box-shadow: 0 12px 28px rgba(82, 57, 8, 0.16);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.03em;
    z-index: 2;
    animation: slideChip 6.6s cubic-bezier(.45, 0, .2, 1) infinite;
}

.chip-one {
    top: 18%;
    left: 6%;
}

.chip-two {
    top: 48%;
    right: 2%;
    animation-delay: -2.2s;
}

.chip-three {
    bottom: 13%;
    left: 38%;
    color: #fff;
    background: linear-gradient(135deg, #2f2612, #8b5e05);
    animation-delay: -4.4s;
}

@keyframes visualFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.012);
    }
}

@keyframes visualGlow {
    from {
        opacity: 0.58;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 0.9;
        transform: translateY(22px) scale(1.04);
    }
}

@keyframes slideChip {
    0% {
        opacity: 0;
        transform: translateX(-34px) translateY(10px) scale(0.92);
    }
    16%, 70% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(42px) translateY(-10px) scale(0.94);
    }
}

.logo-link {
    text-decoration: none;
}

.pricing-main {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.pricing-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.pricing-kicker {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}

.pricing-hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.04;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.pricing-hero p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.08rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: grid;
    gap: 1.25rem;
    align-content: start;
    min-height: 100%;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: 0 18px 44px var(--shadow);
}

.featured-plan {
    border-color: rgba(47, 38, 18, 0.38);
    background: rgba(255, 249, 232, 0.98);
}

.popular-badge {
    width: max-content;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(47, 38, 18, 0.12);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card h2 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-top: 0.25rem;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #2f2612, #7b5205);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.secondary-plan {
    background: rgba(47, 38, 18, 0.08);
    border: 1px solid rgba(47, 38, 18, 0.28);
}

.pricing-card ul {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.pricing-card li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.pricing-card li i {
    color: var(--success);
    margin-top: 0.15rem;
}

.pricing-note {
    width: min(760px, 100%);
    margin: 2.5rem auto 0;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card-bg);
    text-align: center;
}

.pricing-note h2 {
    margin-bottom: 0.45rem;
}

.pricing-note p {
    color: var(--text-muted);
    line-height: 1.65;
}

.tool-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
}

.tool-category {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.category-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.category-head i {
    color: var(--primary);
    font-size: 1.1rem;
}

.category-head h2 {
    font-size: 1rem;
}

.compact-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.mini-tool {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 251, 0.82);
    color: var(--text-main);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mini-tool span {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.25;
}

.mini-tool strong {
    flex: 0 0 auto;
    font-size: 0.72rem;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ready-tool:hover {
    transform: translateY(-2px);
    background: var(--card-hover);
    border-color: rgba(47, 38, 18, 0.32);
    box-shadow: 0 10px 24px var(--shadow);
}

.ready-tool strong {
    color: var(--success);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.soon-tool {
    opacity: 0.72;
}

.soon-tool strong {
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.1);
}

.about-hero {
    margin-bottom: 3rem;
}

.about-section {
    width: min(920px, 100%);
    display: grid;
    gap: 1rem;
}

.about-panel {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.about-panel h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.about-panel p {
    color: var(--text-muted);
    line-height: 1.75;
}

.site-footer {
    width: min(1200px, calc(100% - 4rem));
    margin: 4rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.footer-group {
    display: grid;
    align-content: start;
    gap: 0.55rem;
}

.footer-group h2 {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.footer-group h2 i {
    color: var(--primary);
}

.footer-group a,
.footer-group span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
}

.footer-group a:hover {
    color: var(--text-main);
}

.footer-group span {
    opacity: 0.58;
}

.footer-legal-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid var(--line);
}

.footer-legal-row a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-legal-row a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-weight: 800;
}

.footer-logo .brand-icon,
.footer-group h2 .brand-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 5px;
}

.footer-bottom p {
    font-size: 0.88rem;
}

.language-menu {
    position: relative;
    margin-left: auto;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--line);
    background: rgba(255, 253, 246, 0.86);
    color: var(--text-main);
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.language-toggle::after {
    content: '▾';
    color: var(--text-muted);
    font-size: 0.75rem;
}

.language-dropdown {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.65rem);
    min-width: 170px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.45rem;
    background: rgba(255, 253, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px var(--shadow);
    z-index: 25;
}

.language-menu.open .language-dropdown {
    display: grid;
}

.language-dropdown button {
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 6px;
    padding: 0.6rem 0.7rem;
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.language-dropdown button:hover,
.language-dropdown button.active {
    color: var(--text-main);
    background: rgba(154, 106, 5, 0.12);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    nav {
        gap: 1rem;
    }

    .tools-dropdown.mega-tools {
        left: 0;
        right: auto;
        width: min(92vw, 520px);
        grid-template-columns: 1fr;
    }

    .tool-categories {
        grid-template-columns: 1fr;
    }

    .feature-showcase {
        margin-bottom: 2.5rem;
    }

    .showcase-panel,
    .showcase-panel.reverse {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .showcase-panel.reverse .showcase-copy,
    .showcase-panel.reverse .showcase-visual {
        order: initial;
    }

    .showcase-visual {
        max-width: 100%;
    }

    .motion-chip {
        min-width: 3.7rem;
        padding: 0.38rem 0.56rem;
        font-size: 0.68rem;
    }

    .compact-tools {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        width: min(100% - 2rem, 1200px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .language-menu {
        width: 100%;
        margin-left: 0;
    }

    .language-toggle {
        width: 100%;
        justify-content: center;
    }

    .language-dropdown {
        left: 0;
        right: auto;
        width: 100%;
    }
}

@media (max-width: 1080px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-visual::before,
    .showcase-visual img,
    .motion-chip {
        animation: none;
    }
}
