/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #0b0f19;
    /* Deep dark blue */
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.logo,
.badge-text {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Gradients */
.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 20s infinite alternate linear;
}

.bg-gradient-1 {
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(124, 58, 237, 0) 70%);
}

.bg-gradient-2 {
    top: 20%;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0) 70%);
    animation-delay: -5s;
}

.bg-gradient-3 {
    bottom: -300px;
    left: 20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0) 70%);
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.logo span {
    color: #38bdf8;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
}

.nav a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #cbd5e1;
}

.nav-link:hover {
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 30px;
    font-size: 13px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-desc {
    font-size: 13px;
    color: #cbd5e1;
}

.hero-title {
    font-size: 61.4px;
    /* 51.2px * 1.2 (approx 20% smaller) */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #fff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Value Props (Expanded content instead of logos) */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Subtle glow inside card */
.glass-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8fafc;
}

.card-desc {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .value-props {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 46px;
        /* approx 20% smaller than 57.6 */
    }

    .nav {
        display: none;
        /* Hide nav on mobile for simplicity */
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 34px;
        /* approx 20% smaller than 43.2 */
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Base Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section.bg-alternate {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-inline: auto;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.text-center {
    text-align: center;
}

/* Variables Setup (if not present) */
:root {
    --primary: #c084fc;
    --secondary: #38bdf8;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Layout Split */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.container-split.align-center {
    align-items: center;
}

.container-split.reverse .split-content {
    order: 2;
}

.container-split.reverse .split-visual {
    order: 1;
}

@media (max-width: 900px) {
    .container-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .container-split.reverse .split-content,
    .container-split.reverse .split-visual {
        order: unset;
    }
}

/* List Styles */
.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    margin-bottom: 16px;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li strong {
    color: var(--primary);
}

/* Badge for sections */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(192, 132, 252, 0.1);
    color: var(--primary);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.error-card {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.error-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Solution Section (Network Animation Mock) */
.network-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.5);
    z-index: 2;
    color: #fff;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
}

.n1 {
    top: 10%;
    left: 20%;
    animation: float 4s ease-in-out infinite;
}

.n2 {
    top: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite reverse;
}

.n3 {
    bottom: 15%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.n4 {
    bottom: 25%;
    right: 20%;
    animation: float 4.5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* CMS Section (Mockup UI) */
.mockup-panel {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4B5563;
}

.mockup-header .dot:nth-child(1) {
    background: #EF4444;
}

.mockup-header .dot:nth-child(2) {
    background: #F59E0B;
}

.mockup-header .dot:nth-child(3) {
    background: #10B981;
}

.mockup-body {
    padding: 24px;
    position: relative;
}

.mockup-line {
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    width: 100%;
}

.mockup-line.title {
    height: 24px;
    width: 60%;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.mockup-line.short {
    width: 40%;
}

.mockup-img {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.edit-cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
    pointer-events: none;
    animation: pulse 2s infinite;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Analytics Section */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.data-card {
    border-left: 4px solid var(--secondary);
    text-align: left;
}

.data-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

.data-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing / Comparison Section */
.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.table-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: #fff;
}

.table-header>div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.table-row>div {
    padding: 20px;
}

.table-row>div.col-feature {
    justify-content: flex-start;
    color: var(--text-muted);
}

.table-row>div.highlight {
    background: rgba(192, 132, 252, 0.1);
    color: white;
    font-weight: bold;
    border-left: 1px solid rgba(192, 132, 252, 0.2);
    border-right: 1px solid rgba(192, 132, 252, 0.2);
}

.table-footer {
    font-size: 1.125rem;
}

.table-footer .highlight {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
    color: var(--secondary);
}

@media (max-width: 600px) {
    .table-row {
        flex-direction: column;
        text-align: left;
    }

    .table-row>div {
        width: 100%;
    }

    .table-row>div.col-feature {
        background: rgba(255, 255, 255, 0.02);
        font-weight: bold;
        color: white;
    }

    .table-row>div.highlight {
        border: none;
        border-bottom: 1px solid rgba(192, 132, 252, 0.2);
    }
}

/* Support Section */
.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0;
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.bg-gradient-cta {
    position: absolute;
    background: radial-gradient(circle at center, rgba(192, 132, 252, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(11, 15, 25, 0.8);
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

.footer p {
    color: #64748b;
    font-size: 14px;
}