@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
    --demo-primary: #3b82f6;
    --demo-primary-dark: #2563eb;
    --demo-accent: #f97316;
    --demo-green: #10b981;
    --demo-ink: #0f172a;
    --demo-text: #475569;
    --demo-soft: #f8fafc;
    --demo-line: #e2e8f0;
    --demo-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.wb-demo-page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: #fff;
    color: var(--demo-ink);
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
}

.wb-demo-page * {
    box-sizing: border-box;
}

.wb-demo-page img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wb-demo-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.wb-demo-hero {
    position: relative;
    padding: 96px 0 84px;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(239, 246, 255, 0.78) 100%),
        radial-gradient(circle at 84% 12%, rgba(59, 130, 246, 0.22), transparent 34%),
        radial-gradient(circle at 6% 90%, rgba(249, 115, 22, 0.16), transparent 30%),
        #ffffff;
}

.wb-demo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}

.wb-demo-eyebrow,
.wb-demo-kicker {
    margin: 0 0 14px;
    color: var(--demo-primary);
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.wb-demo-hero h1 {
    margin: 0 0 24px;
    color: var(--demo-ink);
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.wb-demo-hero h1 span {
    background: linear-gradient(135deg, var(--demo-primary), #8b5cf6 52%, var(--demo-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wb-demo-lead {
    max-width: 680px;
    margin: 0 0 28px;
    color: var(--demo-text);
    font-size: 1.08rem;
}

.wb-demo-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 30px;
}

.wb-demo-meta div {
    padding: 14px 16px;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.wb-demo-meta span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.wb-demo-meta strong {
    display: block;
    color: var(--demo-ink);
    font-size: 0.96rem;
    line-height: 1.45;
}

.wb-demo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wb-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.wb-demo-btn-primary {
    background: var(--demo-primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.28);
}

.wb-demo-btn-secondary {
    border: 2px solid var(--demo-line);
    background: #fff;
    color: var(--demo-ink);
}

.wb-demo-hero-visual {
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.14);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.16);
}

.wb-demo-hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.wb-demo-section {
    padding: 88px 0;
    background: #fff;
}

.wb-demo-section-soft {
    background: var(--demo-soft);
}

.wb-demo-intro {
    max-width: 880px;
    text-align: center;
}

.wb-demo-intro h2,
.wb-demo-section-head h2,
.wb-demo-two-col h2,
.wb-demo-info-card h2,
.wb-demo-profile h2 {
    margin: 0 0 18px;
    color: var(--demo-ink);
    font-size: clamp(1.8rem, 3.8vw, 2.7rem);
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: 0;
}

.wb-demo-intro p,
.wb-demo-section-head p,
.wb-demo-info-card p,
.wb-demo-profile p {
    color: var(--demo-text);
}

.wb-demo-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

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

.wb-demo-card {
    min-height: 248px;
    padding: 28px;
    border: 1px solid var(--demo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.wb-demo-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--demo-primary);
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
}

.wb-demo-card h3 {
    margin: 0 0 12px;
    color: var(--demo-ink);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.45;
}

.wb-demo-card p {
    margin: 0;
    color: var(--demo-text);
    font-size: 0.94rem;
}

.wb-demo-two-col {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.wb-demo-check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wb-demo-check-list li {
    position: relative;
    padding: 14px 18px 14px 44px;
    border: 1px solid rgba(59, 130, 246, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--demo-ink);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.wb-demo-check-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--demo-green);
    transform: translateY(-50%);
}

.wb-demo-testimonial-section {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 58, 138, 0.94) 54%, rgba(127, 29, 29, 0.9)),
        #0f172a;
}

.wb-demo-testimonial {
    max-width: 920px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.wb-demo-testimonial .wb-demo-kicker {
    color: #bfdbfe;
}

.wb-demo-testimonial blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    font-weight: 700;
    line-height: 1.9;
}

.wb-demo-voice-name {
    margin: 22px 0 0;
    color: #fbbf24;
    font-weight: 900;
}

.wb-demo-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
}

.wb-demo-info-card {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--demo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--demo-shadow);
}

.wb-demo-info-card-accent {
    background: linear-gradient(135deg, #eff6ff, #fff7ed);
    border-color: rgba(59, 130, 246, 0.2);
}

.wb-demo-info-card dl {
    display: grid;
    gap: 14px;
    margin: 26px 0 0;
}

.wb-demo-info-card dl div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--demo-line);
}

.wb-demo-info-card dt {
    color: #64748b;
    font-weight: 800;
}

.wb-demo-info-card dd {
    margin: 0;
    color: var(--demo-ink);
    font-weight: 900;
}

.wb-demo-text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--demo-primary-dark);
    font-weight: 900;
    text-decoration: none;
}

.wb-demo-profile {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 54px);
    align-items: start;
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid var(--demo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--demo-shadow);
}

.wb-demo-profile-image {
    overflow: hidden;
    border-radius: 8px;
}

.wb-demo-profile-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.wb-demo-profile-role {
    margin: -6px 0 20px;
    color: var(--demo-primary) !important;
    font-weight: 900;
}

.wb-demo-form-section {
    background: var(--demo-soft);
}

.wb-demo-form-card {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--demo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--demo-shadow);
}

@media (max-width: 980px) {
    .wb-demo-hero-grid,
    .wb-demo-card-grid,
    .wb-demo-two-col,
    .wb-demo-info-grid,
    .wb-demo-profile {
        grid-template-columns: 1fr;
    }

    .wb-demo-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wb-demo-hero {
        padding-top: 72px;
    }
}

@media (max-width: 680px) {
    .wb-demo-container {
        width: min(100% - 28px, 1160px);
    }

    .wb-demo-section {
        padding: 64px 0;
    }

    .wb-demo-meta,
    .wb-demo-card-grid {
        grid-template-columns: 1fr;
    }

    .wb-demo-actions {
        flex-direction: column;
    }

    .wb-demo-btn {
        width: 100%;
    }

    .wb-demo-info-card dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .wb-demo-profile {
        padding: 24px;
    }

    .wb-demo-profile-image {
        max-width: 220px;
        margin: 0 auto;
    }
}
