/* 2026-06-01 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Outfit:wght@400;700;800&display=swap');

:root {
  --bg-color: #0b1120;
  --bg-light: #151e32;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-color: #6366f1; /* Indigo */
  --accent-secondary: #a855f7; /* Purple */
  --accent-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --highlight-yellow: #fbbf24;
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .step-num, .price {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.text-accent { color: var(--accent-secondary); }

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: rgba(99, 102, 241, 0.4);
  z-index: -1;
  transform: skew(-15deg);
}

.highlight-text {
    color: var(--highlight-yellow);
    font-weight: bold;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.nav-cta {
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 12rem 5% 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: -1;
    background-image: 
      radial-gradient(circle at 20% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 80% 60%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 2rem;
    color: #d8b4fe;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.glow-badge {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.hero .main-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.concept-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.concept-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.concept-icon {
    font-size: 2rem;
    color: var(--accent-secondary);
}

.urgency-text {
    color: #fca5a5;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: 3rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -150%; }
  20% { left: 150%; }
  100% { left: 150%; }
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-xl {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

/* Sections */
.section {
  padding: 6rem 5%;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Premium Cards */
.premium-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(40, 50, 75, 0.8);
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    width: 80px; height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Pain Points (Target) */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent-secondary);
}

.pain-point i {
    font-size: 1.8rem;
    margin-top: 0.2rem;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.panel-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1rem;
}

.check-list {
    list-style: none;
}
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
.check-list li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    position: absolute;
    left: 0; top: 0.2rem;
    color: var(--accent-color);
}

/* Timeline / Method */
.method-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.method-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0; height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 42px; height: 42px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(168,85,247,0.5);
}

.timeline-content {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 1rem;
    flex-grow: 1;
    border: 1px solid var(--card-border);
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tool-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 150px;
}
.tool-card .step-num {
    display: block; color: var(--accent-secondary); font-size: 0.9rem; margin-bottom: 0.5rem;
}
.tool-yomi {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Fee Campaign */
.campaign-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+PGRlZnM+PHBhdHRlcm4gaWQ9ImEiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PGNpcmNsZSBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGN4PSIxMCIgY3k9IjEwIiByPSIyIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2EpIi8+PC9zdmc+');
    border: 1px solid var(--accent-color);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
    text-align: center;
}

.campaign-title {
    font-size: 2.2rem;
}
.highlight-yellow {
    color: var(--highlight-yellow);
}

.fee-card, .trial-card {
    background: rgba(11, 17, 32, 0.8);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.fee-header {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--card-border);
}

.fee-body {
    padding: 2rem;
    text-align: left;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}
.currency, .period { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }

.fee-details { list-style: none; }
.fee-details li { margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center; }

.trial-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trial-desc { margin-bottom: 1.5rem; }
.location-info {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.text-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}
.text-link:hover {
    color: var(--highlight-yellow);
    text-decoration-color: var(--highlight-yellow);
}

.trial-highlight {
    font-size: 1.2rem;
    border: 2px dashed var(--highlight-yellow);
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--highlight-yellow);
    width: 100%;
}

footer {
    padding: 4rem 5% 2rem;
    background: #060913;
    border-top: 1px solid var(--card-border);
}

.footer-access-links {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 2.5rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* Utilities */
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: block; }
  .hero .main-title { font-size: 2.2rem; }
  .concept-cards { flex-direction: column; }
  .hamburger { display: flex; }
  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: rgba(11, 17, 32, 0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.4s ease;
      z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links a { margin: 1.5rem 0; font-size: 1.2rem; }
  
  .section { padding: 4rem 5%; }
  .campaign-container { padding: 3rem 1rem; }
  .campaign-title { font-size: 1.8rem; }
  .modal { padding: 2rem 1.5rem; }
  .btn-large { 
      width: 100%; 
      justify-content: center; 
      padding: 1.2rem 1rem; 
      font-size: 1.2rem; 
  }
  .btn-xl { 
      width: 100%; 
      justify-content: center; 
      padding: 1.5rem 1rem; 
      font-size: 1.35rem; 
  }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 17, 32, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1; visibility: visible;
}
.modal {
    background: var(--bg-light);
    border: 1px solid var(--accent-secondary);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 90%; width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1.5rem;
    background: transparent; border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-close:hover { color: #fff; }
.modal-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.modal-desc {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Clickable Cards */
.clickable-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.clickable-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}
.card-hint {
    font-size: 1.15rem;
    color: var(--highlight-yellow);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Location Modal specific styles */
.location-modal {
    padding: 3rem 2.5rem;
    max-width: 95%;
    width: 600px;
}
.location-details {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
}
.location-details p {
    margin-bottom: 1.2rem;
}
.map-container {
    width: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--card-border);
    background: rgba(0,0,0,0.2);
}
.access-notes {
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-secondary);
    padding-left: 1rem;
    margin-bottom: 0 !important;
}


