:root {
    --jip-primary: #1159f5;
    --jip-blue: #1487e8;
    --jip-cyan: #18c8c8;
    --jip-navy: #0f172a;
    --jip-text: #1f2937;
    --jip-muted: #64748b;
    --jip-border: #e2e8f0;
    --jip-bg: #f8fafc;
    --jip-card: #ffffff;
    --jip-radius-xl: 30px;
    --jip-radius-lg: 24px;
    --jip-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "Meiryo", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
    color: var(--jip-navy);
    background: var(--jip-bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.jip-one-page {
    min-height: 100vh;
    overflow: visible;
}

.jip-navbar {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.editor_enable .jip-navbar,
.o_editable .jip-navbar {
    position: relative !important;
}

.jip-nav-inner {
    max-width: 1180px;
    height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jip-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.jip-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--jip-primary), var(--jip-blue) 55%, var(--jip-cyan));
    box-shadow: 0 12px 28px rgba(17, 89, 245, 0.28);
}

.jip-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.jip-nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.jip-nav-links a:hover {
    color: var(--jip-primary);
}

.jip-nav-login {
    color: var(--jip-primary) !important;
}

.jip-nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--jip-navy);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.jip-hero {
    padding: 150px 24px 92px;
    background:
        radial-gradient(circle at 18% 8%, rgba(24, 200, 200, 0.24), transparent 34%),
        radial-gradient(circle at 84% 12%, rgba(17, 89, 245, 0.22), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.jip-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.jip-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin-bottom: 24px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.jip-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--jip-cyan);
    box-shadow: 0 0 0 5px rgba(24, 200, 200, 0.16);
}

.jip-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.065em;
}

.jip-gradient-text {
    background: linear-gradient(90deg, var(--jip-primary), var(--jip-blue), var(--jip-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jip-hero-text {
    max-width: 650px;
    margin-bottom: 34px;
    color: #475569;
    font-size: 19px;
}

.jip-hero-actions,
.jip-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.jip-contact-actions {
    justify-content: center;
}

.jip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.jip-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--jip-primary), var(--jip-blue) 55%, var(--jip-cyan));
    box-shadow: 0 18px 36px rgba(17, 89, 245, 0.3);
}

.jip-btn-secondary {
    color: var(--jip-navy);
    background: #fff;
    border: 1px solid var(--jip-border);
}

.jip-btn:hover {
    transform: translateY(-2px);
}

.jip-lang-switch {
    margin-top: 26px;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--jip-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.jip-lang-switch a {
    min-width: 42px;
    padding: 7px 10px;
    border-radius: 999px;
    text-align: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
}

.jip-lang-switch a.active,
.jip-lang-switch a:hover {
    color: #fff;
    background: var(--jip-navy);
}

.jip-dashboard-wrap {
    position: relative;
}

.jip-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(5px);
    opacity: 0.75;
}

.jip-orb-one {
    width: 120px;
    height: 120px;
    top: -28px;
    right: -30px;
    background: rgba(24, 200, 200, 0.24);
}

.jip-orb-two {
    width: 150px;
    height: 150px;
    left: -40px;
    bottom: -35px;
    background: rgba(17, 89, 245, 0.18);
}

.jip-dashboard {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-radius: var(--jip-radius-xl);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--jip-border);
    box-shadow: var(--jip-shadow);
}

.jip-dash-top {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.jip-dash-top span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #cbd5e1;
}

.jip-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.jip-dash-title {
    color: #334155;
    font-size: 15px;
    font-weight: 900;
}

.jip-dash-subtitle {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
}

.jip-dash-user {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: var(--jip-navy);
}

.jip-app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jip-app-card {
    min-height: 166px;
    padding: 20px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid var(--jip-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.jip-app-card:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 89, 245, 0.24);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.jip-app-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--jip-primary), var(--jip-blue), var(--jip-cyan));
}

.jip-app-card h3 {
    margin-bottom: 6px;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.jip-app-card p {
    color: var(--jip-muted);
    font-size: 13px;
}

.jip-section {
    padding: 90px 24px;
}

.jip-container {
    max-width: 1180px;
    margin: 0 auto;
}

.jip-section-title {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.jip-section-title h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.jip-section-title p {
    color: var(--jip-muted);
    font-size: 18px;
}

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

.jip-feature {
    position: relative;
    min-height: 210px;
    padding: 30px 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--jip-border);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.jip-feature-line {
    width: 54px;
    height: 5px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--jip-primary), var(--jip-cyan));
}

.jip-feature strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.jip-feature p {
    color: var(--jip-muted);
}

.jip-ecosystem {
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(24, 200, 200, 0.18), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(17, 89, 245, 0.18), transparent 30%),
        var(--jip-navy);
}

.jip-ecosystem .jip-section-title p {
    color: #cbd5e1;
}

.jip-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.jip-step {
    min-height: 230px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.jip-step-num {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-weight: 950;
    background: linear-gradient(135deg, var(--jip-primary), var(--jip-cyan));
}

.jip-step h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.jip-step p {
    color: #cbd5e1;
    font-size: 14px;
}

.jip-pricing-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 44px;
    text-align: center;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--jip-border);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.jip-price-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--jip-primary);
    font-size: 13px;
    font-weight: 900;
    background: #eef4ff;
}

.jip-pricing-box h2 {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.jip-pricing-box p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--jip-muted);
    font-size: 18px;
}

.jip-contact {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3fa 100%);
}

.jip-footer {
    padding: 36px 24px;
    color: var(--jip-muted);
    background: #fff;
    border-top: 1px solid var(--jip-border);
    font-size: 14px;
}

.jip-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .jip-hero-inner,
    .jip-features,
    .jip-steps {
        grid-template-columns: 1fr;
    }

    .jip-nav-links {
        gap: 14px;
        font-size: 13px;
    }

    .jip-dashboard {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .jip-navbar {
        position: sticky;
    }

    .jip-nav-inner {
        height: auto;
        min-height: 72px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .jip-nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        white-space: nowrap;
    }

    .jip-hero {
        padding-top: 54px;
    }
}

.jip-lang-switch {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 20;
}

.jip-lang-switch a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.jip-lang-switch a.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.jip-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.jip-lang-switch-nav {
    margin: 0 6px 0 12px;
    padding: 4px;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #dbe3ef;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.jip-lang-switch-nav a {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe3ef;
    color: #475569;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-shadow: none;
}

.jip-lang-switch-nav a.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

@media (max-width: 980px) {
    .jip-nav-links {
        gap: 14px;
    }

    .jip-lang-switch-nav {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .jip-hero,
    .jip-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .jip-app-grid {
        grid-template-columns: 1fr;
    }

    .jip-pricing-box {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .jip-dashboard {
        padding: 16px;
        border-radius: 24px;
    }

    .jip-hero h1 {
        letter-spacing: -0.05em;
    }
}
