@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* === Core Reset & Base === */
:root {
    --primary: #00ffff; /* Cyan */
    --secondary: #bf00ff; /* Purple */
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(0, 255, 255, 0.15);
}

body, html {
    margin: 0; padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
}

h1, h2, h3, .en-font { font-family: 'Orbitron', sans-serif; letter-spacing: 0.1em; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* === Header === */
.site-header {
    position: fixed; top: 0; width: 100%; padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 1000; box-sizing: border-box;
}
.logo a {
    font-size: 1.8rem; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--primary);
}

nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.hamburger { display: none; }
nav a {
    font-size: 0.8rem; font-weight: bold; color: rgba(255,255,255,0.7); position: relative; letter-spacing: 1px;
}
nav a:hover, nav a.active { color: var(--primary); text-shadow: 0 0 5px var(--primary); }
nav a.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px;
    background: var(--primary); box-shadow: 0 0 10px var(--primary);
}

/* === Layout & Containers === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.page-content { padding-top: 180px; padding-bottom: 120px; }
.full-screen { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

/* === Glass Card === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin-bottom: 40px;
    position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.05) 0%, transparent 60%);
    z-index: -1; pointer-events: none;
}

/* === Components === */
.page-title {
    font-size: 3rem; text-align: center; margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(0,255,255,0.3);
    border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 10px;
    position: relative; left: 50%; transform: translateX(-50%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0088ff);
    color: #000; padding: 16px 40px; border-radius: 4px;
    font-weight: bold; font-family: 'Orbitron'; letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
    display: inline-block;
}
.btn-primary:hover { filter: brightness(1.2); transform: scale(1.05); }

.btn-secondary {
    border: 1px solid var(--primary); color: var(--primary);
    padding: 15px 40px; border-radius: 4px; font-weight: bold; font-family: 'Orbitron';
}
.btn-secondary:hover { background: rgba(0,255,255,0.1); }

/* === Animations === */
.fade-in { animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; transform: translateY(30px); }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* === Specific Styles === */
.hero-content { text-align: center; max-width: 800px; }
.hero-sub { color: var(--primary); letter-spacing: 0.3em; margin-bottom: 20px; display: block; }
.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem); line-height: 1; margin: 0 0 30px 0;
    background: linear-gradient(to right, #fff, var(--primary)); -webkit-background-clip: text; color: transparent;
}
.hero-text { font-size: 1.1rem; line-height: 1.8; color: #ccc; margin-bottom: 50px; }

/* Talent Grid */
.talent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.talent-card { padding: 0; transition: 0.4s; border: 1px solid rgba(255,255,255,0.05); }
.talent-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.talent-img-placeholder {
    width: 100%; height: 250px; background: linear-gradient(45deg, #111, #222);
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}
.talent-info { padding: 20px; text-align: center; }
.sns-icon {
    width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: #00ffff; border: 1px solid #00ffff; margin: 0 5px;
}

/* Service/Dev Icons */
.service-icon { font-size: 3rem; margin-bottom: 20px; color: var(--primary); display: block; text-shadow: 0 0 20px rgba(0,255,255,0.3); }

/* Table */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th { text-align: left; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--primary); width: 30%; }
.info-table td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Footer Links */
.site-footer a { color: #888; text-decoration: none; margin: 0 10px; transition:0.3s; }
.site-footer a:hover { color: var(--primary); }

/* Anti Sales Text */
.anti-sales-text {
    font-size: 0.75rem; color: #ff6b6b; border: 1px solid rgba(255, 107, 107, 0.3);
    background: rgba(255, 0, 0, 0.1); padding: 5px 10px;
    display: inline-block; border-radius: 4px; margin-top: 5px; line-height: 1.4;
}

/* === Allyday LP Styles === */
.app-hero { padding-top: 120px; padding-bottom: 50px; min-height: 80vh; }
.app-hero-text { flex: 1; min-width: 300px; padding: 20px; }
.app-hero-img { flex: 1; display: flex; justify-content: center; align-items: center; padding: 20px; position: relative; }
.phone-frame {
    width: 280px; height: 580px; background: #000; border-radius: 40px; border: 8px solid #333;
    overflow: hidden; position: relative; box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
    transform: rotate(-5deg); transition: 0.5s;
}
.phone-frame:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 0 70px rgba(0, 255, 255, 0.4); }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }
.app-badges { display: flex; gap: 15px; margin-top: 30px; }
.app-badges.center { justify-content: center; }
.store-badge img { height: 50px; }
.feature-card { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.feature-card.reverse { flex-direction: row-reverse; }
.feature-content { flex: 1; min-width: 300px; }
.feature-visual { flex: 1; display: flex; justify-content: center; min-width: 300px; }
.hp-bar-demo { width: 100%; max-width: 350px; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.hp-track { width: 100%; height: 15px; background: #333; border-radius: 10px; overflow: hidden; margin-top:10px;}
.hp-fill { height: 100%; animation: pulseHP 2s infinite; }
@keyframes pulseHP { 0% { opacity: 0.8; } 50% { opacity: 1; } 100% { opacity: 0.8; } }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pricing-card { text-align: center; padding: 40px 30px; display: flex; flex-direction: column; }
.pricing-card.popular { border: 2px solid var(--primary); transform: scale(1.05); z-index: 10; background: rgba(0, 255, 255, 0.05); }
.pricing-card .badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: var(--primary); color: #000; padding: 5px 20px; font-weight: bold; border-radius: 20px; font-size: 0.8rem;
}
.pricing-card .price { font-size: 2.5rem; font-family: 'Orbitron'; margin-bottom: 30px; color: #fff; }
.price-features { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; flex: 1; }
.price-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #ccc; }
.price-features li::before { content: '✔'; color: var(--primary); margin-right: 10px; }
.full-width { display: block; width: 100%; text-align: center; box-sizing: border-box; }

@media (max-width: 768px) {
    .site-header { padding: 15px 20px; }
    .hamburger { display: flex; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
    .hamburger span { width: 30px; height: 3px; background: var(--primary); }
    nav {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
        display: flex; align-items: center; justify-content: center; transition: 0.4s;
    }
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 40px; text-align: center; }
    nav a { font-size: 1.2rem; }
    .page-title { font-size: 2rem; }
    .glass-card { padding: 25px; }
    .app-hero { text-align: center; }
    .phone-frame { margin: 0 auto; }
}