﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Syne:wght@700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
    --bg-main: #0A0A0C;
    --bg-card: #121216;
    --accent-gold: #D4AF37;
    --accent-crimson: #8B0000;
    --text-main: #F4F4F5;
    --text-muted: #A1A1AA;
    --border: rgba(212, 175, 55, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Noto Sans JP', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    line-height: 1.7; 
    overflow-x: hidden;
    position: relative;
}

/* Unique Graphic: Animated Zen Enso & Glassmorphism Orb */
.zen-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.15;
    pointer-events: none;
}
.orb-gold { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--accent-gold); }
.orb-crimson { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--accent-crimson); }

.enso-ring {
    position: fixed;
    top: 50%; left: 50%;
    width: 80vw; height: 80vw;
    max-width: 800px; max-height: 800px;
    border: 2px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: rotateSlow 60s linear infinite;
    pointer-events: none;
}
.enso-ring::before {
    content: ''; position: absolute; top: -10px; left: 50%;
    width: 20px; height: 20px; background: var(--accent-gold);
    border-radius: 50%; filter: blur(5px);
}
@keyframes rotateSlow { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }

h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.02em; }
h1 span, h2 span { font-family: 'Syne', sans-serif; color: var(--accent-gold); text-transform: uppercase; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Huge Typography */
h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 24px; color: #FFF; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; margin-bottom: 30px; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 15px; color: #FFF; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }

/* Header */
header { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(10, 10, 12, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 1000; }
.logo { display: flex; align-items: center; gap: 15px; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 2px; }
.logo img { width: 36px; height: 36px; }
.nav-links { display: none; }
.btn-primary { background: var(--accent-gold); color: #000; padding: 14px 32px; border-radius: 2px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: 0.4s; display: inline-block; }
.btn-primary:hover { background: #FFF; box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); transform: translateY(-2px); }

/* Layout */
section { padding: 120px 5%; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; padding-top: 150px; }
.hero-content { max-width: 800px; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 650px; margin-bottom: 40px; }

/* Form Section (Early placement for Lead-Gen focus) */
.form-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.form-wrapper { max-width: 700px; margin: 0 auto; background: rgba(10, 10, 12, 0.7); padding: 50px; border-radius: 4px; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.8); position: relative; }
.form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--accent-gold); }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; color: #FFF; font-family: 'Noto Sans JP', sans-serif; font-size: 1rem; transition: 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent-gold); background: rgba(212, 175, 55, 0.05); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
.checkbox-group input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent-gold); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.submit-btn { width: 100%; }
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg i { font-size: 4rem; color: var(--accent-gold); margin-bottom: 20px; }
.success-msg h3 { font-size: 1.8rem; color: #FFF; margin-bottom: 15px; font-family: 'Syne', sans-serif; }

/* Features (Asymmetric) */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.features-img { position: relative; padding: 15px; border: 1px solid var(--border); background: var(--bg-card); }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; color: #FFF; }
.features-list i { color: var(--accent-gold); font-size: 1.2rem; margin-top: 4px; }

/* Random Section: Methodology / Metrics */
.metrics-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
.metric-card { padding: 40px; background: rgba(255,255,255,0.02); border-left: 2px solid var(--accent-gold); transition: 0.3s; }
.metric-card:hover { background: rgba(212, 175, 55, 0.05); transform: translateX(10px); }
.metric-card h3 { font-family: 'Syne', sans-serif; font-size: 3rem; color: var(--accent-gold); margin-bottom: 10px; }

/* About (Umbrella Brand) */
.about { background: var(--bg-card); border-top: 1px solid var(--border); }
.brand-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 40px; }
.brand-item { padding: 15px 20px; border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); display: flex; align-items: center; gap: 15px; border-radius: 4px; }
.brand-item i { color: var(--accent-gold); }
.brand-item strong { font-family: 'Syne', sans-serif; color: #FFF; letter-spacing: 1px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
summary { font-size: 1.2rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: #FFF; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-gold); transition: 0.3s; }
details[open] summary::after { transform: rotate(45deg); color: var(--accent-crimson); }
.faq-content { padding-top: 20px; color: var(--text-muted); font-size: 1.05rem; }

/* Footer */
footer { background: #050506; padding: 80px 5% 40px; border-top: 1px solid var(--border); z-index: 10; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 1.2rem; margin-bottom: 20px; color: #FFF; text-transform: uppercase; letter-spacing: 2px; }
.footer-col p, .footer-col a { display: block; margin-bottom: 12px; color: var(--text-muted); transition: 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: #555; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -150px; left: 0; width: 100%; background: var(--bg-card); padding: 25px 5%; display: flex; flex-direction: column; gap: 15px; z-index: 9999; border-top: 2px solid var(--accent-gold); transition: bottom 0.5s ease; box-shadow: 0 -10px 40px rgba(0,0,0,0.9); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; color: var(--text-muted); }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie { padding: 12px 24px; border-radius: 2px; cursor: pointer; font-weight: 700; border: none; transition: 0.3s; font-family: 'Noto Sans JP', sans-serif; }
.btn-accept { background: var(--accent-gold); color: #000; }
.btn-decline { background: transparent; color: #FFF; border: 1px solid #555; }

/* Legal Pages (White Card) */
.legal-main { padding: 160px 5% 100px; }
.legal-card { max-width: 900px; margin: 0 auto; background: #FFFFFF; color: #111; padding: 60px; border-radius: 4px; box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1); position: relative; z-index: 10; }
.legal-card h1 { color: #0A0A0C; font-size: clamp(2rem, 4vw, 3.5rem); border-bottom: 3px solid var(--accent-gold); padding-bottom: 20px; margin-bottom: 40px; font-family: 'Noto Sans JP', sans-serif; }
.legal-card h2 { color: #121216; margin: 40px 0 20px; font-size: 1.8rem; }
.legal-card p, .legal-card li { color: #333; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.8; }
.legal-card ul { padding-left: 20px; margin-bottom: 25px; }
.map-iframe { width: 100%; height: 400px; border: 0; margin-top: 30px; filter: grayscale(100%); }

/* Desktop Media Queries */
@media(min-width: 992px) {
    .nav-links { display: flex; gap: 40px; }
    .nav-links a { font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; }
    .nav-links a:hover { color: var(--accent-gold); }
    
    .features-grid { grid-template-columns: 1fr 1fr; }
    .features-grid.reverse { direction: rtl; }
    .features-grid.reverse > * { direction: ltr; }
    .metrics-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    
    .form-wrapper { padding: 60px 80px; }
    .form-row { display: flex; gap: 20px; }
    .form-row .form-group { flex: 1; }
    
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .cookie-banner { flex-direction: row; justify-content: space-between; align-items: center; }
    .cookie-text { max-width: 65%; }
    .legal-card { padding: 80px 100px; }
}
