/* ======================
   aimark.jp Main Styles
   Final Version
   ====================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--navy);
  background-color: var(--warm-white);
  overflow-x: hidden;
  cursor: none;
}

/* ======================
   Custom Cursor
   ====================== */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-color: var(--primary);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Show default cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ======================
   Scroll Progress Bar
   ====================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ======================
   Text Reveal Animation
   ====================== */
.line-wrapper {
  overflow: hidden;
}

.line-inner {
  will-change: transform;
}

/* ======================
   Noise Texture Overlay
   ====================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
}

strong {
  font-weight: 500;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--primary-dark);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-description {
  color: var(--navy-light);
  font-size: var(--text-lg);
}

/* ======================
   Header
   ====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-sticky);
  border-bottom: 1px solid var(--sage);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--navy);
}

.logo-icon {
  width: auto;
  height: 80px;
}

.nav {
  display: flex;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-dark);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-sticky) + 2);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================
   Hero Section
   ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero {
  --parallax-offset: 0px;
  position: relative;
}

/* Gradient Mesh Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(56, 178, 164, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(232, 240, 232, 0.4) 0%, transparent 50%);
  z-index: -2;
  animation: meshMove 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: var(--parallax-offset);
  right: -10%;
  width: 50%;
  height: 120%;
  background: linear-gradient(135deg, var(--sage) 0%, transparent 60%);
  border-radius: 0 0 0 40%;
  z-index: -1;
  transition: top 0.1s linear;
}

@keyframes meshMove {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
  }
  25% {
    background-position: 10% 10%, 90% 10%, 60% 90%;
  }
  50% {
    background-position: 5% 5%, 95% 5%, 40% 95%;
  }
  75% {
    background-position: 15% 0%, 85% 15%, 55% 85%;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 140%;
  background-image: url('../assets/images/decorations/hero-pattern.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--navy);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-6);
}

.badge-divider {
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-description {
  font-size: var(--text-base);
  color: var(--navy-light);
  margin-bottom: var(--space-8);
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

/* Terminal / Chat Window */
.terminal-window {
  background: linear-gradient(180deg, #1e1e1e 0%, var(--charcoal) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.terminal-window::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 20%);
  pointer-events: none;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }

.terminal-title {
  margin-left: var(--space-4);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.terminal-body {
  padding: var(--space-6);
  min-height: 280px;
}

/* Chat Messages */
.chat-message {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-message:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.chat-header {
  margin-bottom: var(--space-2);
}

.chat-author {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary);
  margin-right: var(--space-3);
}

.chat-time {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.chat-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-top: var(--space-2);
  margin-bottom: 0;
}

/* ======================
   Section Waves
   ====================== */
.section-wave {
  position: relative;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23FAFAF8' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.section-wave-sage::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23E8F0E8' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ======================
   Pain Section
   ====================== */
.pain {
  background: var(--navy);
  color: #fff;
  padding-top: var(--space-20);
}

.pain .section-tag {
  background: rgba(56,178,164,0.15);
  color: var(--primary);
  border-color: rgba(56,178,164,0.3);
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--primary);
}

.pain .section-title {
  color: #fff;
}

.pain-intro {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-10);
  max-width: 600px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  padding: var(--space-4) var(--space-6);
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(56,178,164,0.4);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pain-list li::before {
  content: '—';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-close {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-8);
}

.pain-close .highlight {
  color: var(--primary);
}

@media (max-width: 768px) {
  .pain-list li {
    font-size: var(--text-base);
  }
  .pain-close {
    font-size: var(--text-lg);
  }
}

/* ======================
   Why Section
   ====================== */
.why {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  position: relative;
}

.why-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* Vertical connector line between why cards (desktop) */
.why-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--primary-muted) 20%, var(--primary-muted) 80%, transparent 95%);
  opacity: 0.3;
  z-index: 0;
}

.why-card {
  padding: var(--space-8);
  background: var(--sage);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

.why-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(56, 178, 164, 0.12);
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.why-card p {
  font-size: var(--text-base);
  color: var(--navy);
  margin: 0;
  line-height: 1.9;
}

.why-card strong {
  color: var(--navy);
}

/* ======================
   Features Section
   ====================== */
.features {
  background: var(--sage);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.feature-card {
  padding: var(--space-8);
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary-muted);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
}

.feature-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--navy-light);
  margin: 0;
  line-height: 1.8;
}

.features-meta {
  text-align: center;
  padding: var(--space-6);
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-dark);
}

.meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-dark);
  background: var(--sage);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.meta-value {
  font-size: var(--text-sm);
  color: var(--navy-light);
}

/* ======================
   Fit Section
   ====================== */
.fit {
  background: var(--warm-white);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.fit-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.fit-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.fit-card ul {
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.fit-card li:last-child {
  margin-bottom: 0;
}

.fit-yes {
  background: linear-gradient(135deg, var(--sage), rgba(56, 178, 164, 0.1));
  border: 2px solid var(--primary-muted);
  position: relative;
  overflow: hidden;
}

.fit-yes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(56, 178, 164, 0.1) 0%, transparent 70%);
}

.fit-yes h3 {
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.fit-yes h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.fit-yes li {
  color: var(--navy);
}

.fit-yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  box-shadow: 0 0 0 3px rgba(56, 178, 164, 0.15);
}

.fit-no {
  background: rgba(45, 62, 80, 0.03);
  border: 2px solid var(--sage-dark);
}

.fit-no h3 {
  color: var(--navy-light);
}

.fit-no li {
  color: var(--navy-light);
}

.fit-no li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy-light);
}

/* ======================
   Voices Section
   ====================== */
.voices {
  background: var(--warm-white);
  overflow: hidden;
}

.voices-wrapper {
  overflow: hidden;
  margin: 0 calc(-1 * var(--space-6));
  padding: 0 var(--space-6);
}

.voices-track {
  display: flex;
  gap: var(--space-6);
  will-change: transform;
}

.voice-card {
  flex-shrink: 0;
  width: 320px;
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--warm-white), var(--sage));
  border-radius: var(--radius-xl);
  border: 1px solid var(--sage-dark);
  position: relative;
  transition: all 0.3s ease;
}

.voice-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-2);
  left: var(--space-4);
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
}

.voice-card:hover {
  border-color: var(--primary-muted);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.voice-text {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.voice-meta {
  font-size: var(--text-sm);
  color: var(--navy-light);
}

/* ======================
   Founders Section
   ====================== */
.founders {
  background: var(--sage);
}

/* Founders Event Photo */
.founders-photo {
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.founders-event-img {
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  filter: grayscale(20%);
  display: block;
}

.founders-photo-caption {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--navy-light);
  margin-top: 8px;
  opacity: 0.7;
}

/* Manga Gallery */
.manga {
  background: var(--sage);
}

.manga-gallery {
  max-width: 480px;
  margin: 0 auto;
}

.manga-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #fff;
  scrollbar-width: none;
}

.manga-viewport::-webkit-scrollbar {
  display: none;
}

.manga-track {
  display: flex;
}

.manga-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.manga-img {
  display: block;
  width: 100%;
  height: auto;
}

.manga-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.manga-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-full);
  background: var(--warm-white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.manga-arrow:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.manga-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.manga-dots {
  display: flex;
  gap: var(--space-2);
}

.manga-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--navy);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-base);
}

.manga-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.manga-counter {
  text-align: center;
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--navy-light);
}

@media (min-width: 768px) {
  .manga-gallery {
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .manga-gallery {
    max-width: 100%;
  }

  .manga-viewport {
    border-radius: var(--radius-lg);
  }
}

/* Photo Break */
.photo-break {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.photo-break-img {
  width: 100%;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  display: block;
}

.founders-narrative {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.founders-story {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--navy-light);
  margin-bottom: var(--space-8);
  border-left: 4px solid var(--primary-muted);
  padding-left: var(--space-6);
}

.founders-story p {
  margin-bottom: var(--space-4);
}

.founders-story strong {
  color: var(--navy);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.founder-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--sage-dark);
  transition: all var(--transition-base);
}

.founder-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-muted);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.founder-info h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.founder-handle {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--primary-dark);
  margin-bottom: var(--space-3);
}

.founder-handle:hover {
  color: var(--primary);
}

.founder-bio {
  font-size: var(--text-sm);
  color: var(--navy-light);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ======================
   Join Section
   ====================== */
.join {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.join::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(56, 178, 164, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 70% 30%, rgba(56, 178, 164, 0.08) 0%, transparent 30%);
  animation: joinGlow 15s ease-in-out infinite;
}

@keyframes joinGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 5%); }
}

.join-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.join-header {
  margin-bottom: var(--space-12);
}

.join-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.join-subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.join-description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.join-question {
  background: rgba(255, 255, 255, 0.08);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-10);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
}

.join-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 178, 164, 0.5), transparent);
}

.question-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.question-text {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.question-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.join-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.join-meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
}

/* Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* 3D Tilt Effect */
.feature-card,
.why-card,
.founder-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.feature-card:hover,
.why-card:hover,
.founder-card:hover {
  box-shadow:
    var(--shadow-xl),
    0 0 40px rgba(56, 178, 164, 0.15);
}

/* ======================
   Glow Effects
   ====================== */
.btn-primary {
  position: relative;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 0.6;
}

/* ======================
   Enhanced Card Hover
   ====================== */
.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 178, 164, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

/* ======================
   Enhanced Typography
   ====================== */
.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: var(--primary);
  opacity: 0.2;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightReveal 0.8s ease 1s forwards;
}

@keyframes highlightReveal {
  to {
    transform: scaleX(1);
  }
}

/* ======================
   Floating Animation
   ====================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.terminal-window {
  animation: float 6s ease-in-out infinite;
}

/* ======================
   Gradient Text
   ====================== */
.section-tag {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================
   Focus States (Accessibility)
   ====================== */
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* ======================
   Selection Style
   ====================== */
::selection {
  background: var(--primary);
  color: white;
}

/* ======================
   Reduced Motion
   ====================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-animate {
    opacity: 1 !important;
    transform: none !important;
  }

  .terminal-window {
    animation: none;
  }

  .hero::before {
    animation: none;
  }

  .join::before {
    animation: none;
  }

  .cursor,
  .cursor-dot {
    display: none;
  }

  body {
    cursor: auto;
  }
}

/* ======================
   Facilities Section
   ====================== */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.facility-card {
  background: var(--warm-white);
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
}

.facility-tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.facility-tier.free {
  background: rgba(56, 178, 164, 0.12);
  color: var(--primary-dark);
}

.facility-tier.paid {
  background: rgba(45, 62, 80, 0.1);
  color: var(--navy);
}

.facility-icon-wrap {
  font-size: 28px;
  margin-bottom: 12px;
}

.facility-tier.future {
  background: var(--navy-light);
  color: #fff;
  opacity: 0.6;
}

.facility-future {
  opacity: 0.65;
}

/* Coming Soon Block */
.facility-coming-soon {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--sage) 0%, rgba(56, 178, 164, 0.08) 100%);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.facility-coming-soon h3 {
  font-size: var(--text-lg);
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.coming-soon-lead {
  font-size: var(--text-sm);
  color: var(--navy-light);
  margin-bottom: 24px;
}

.coming-soon-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coming-soon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.coming-soon-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.coming-soon-item strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
  margin-bottom: 2px;
}

.coming-soon-item span {
  font-size: 13px;
  color: var(--navy-light);
  line-height: 1.6;
}

.facility-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.facility-card p {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.7;
}

.facility-freq {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  border-top: 1px solid var(--sage-dark);
  padding-top: 10px;
  width: 100%;
}

/* Template Sample */
.template-sample {
  grid-column: 1 / -1;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: #fff;
}

.template-sample-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.template-sample-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.template-field {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.template-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(56, 178, 164, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-right: 8px;
}

.template-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.template-sample-alt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ======================
   Plan Section
   ====================== */
.plan-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.plan-table thead th {
  padding: 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-light);
  background: var(--sage);
  text-align: center;
}

.plan-table thead th:first-child { text-align: left; }

.plan-paid-col {
  color: var(--navy) !important;
  border-bottom: 3px solid var(--primary);
}

.plan-paid-col span {
  font-size: 11px;
  font-weight: 400;
  color: var(--navy-light) !important;
}

.plan-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sage);
  font-size: var(--text-sm);
  color: var(--navy-light);
}

.plan-check {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-base);
}

.plan-dash {
  text-align: center;
  color: var(--sage-dark);
}

.plan-note {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 24px;
  background: var(--sage);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-note p {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.8;
}

/* ======================
   Comparison Section
   ====================== */
.comparison {
  background: var(--warm-white);
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.comparison-table thead th {
  padding: 16px 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-light);
  background: var(--sage);
  text-align: center;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.comparison-highlight {
  color: #fff;
  background: var(--primary);
}

.comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--sage);
  font-size: var(--text-sm);
  color: var(--navy-light);
  text-align: center;
}

.comparison-table tbody td.comparison-label {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.comparison-table tbody td.comparison-highlight {
  color: var(--primary-dark);
  font-weight: 600;
  background: rgba(56, 178, 164, 0.08);
}

/* Gray out non-highlight columns */
.comparison-table thead th:not(.comparison-highlight):not(:first-child) {
  color: var(--navy-light);
  opacity: 0.6;
}

.comparison-table tbody td:not(.comparison-highlight):not(.comparison-label) {
  opacity: 0.55;
}

/* ======================
   Pricing Card
   ====================== */
.pricing-card {
  max-width: 480px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary);
  border-top: 5px solid var(--primary);
  overflow: hidden;
}

.pricing-header {
  background: var(--primary);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}

.pricing-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
}

.pricing-unit {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
}

.pricing-sub {
  margin-top: 8px;
  font-size: var(--text-sm);
  opacity: 0.9;
}

.pricing-features {
  padding: 24px 32px;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--sage);
  font-size: var(--text-sm);
  color: var(--navy);
  padding-left: 28px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-future {
  color: var(--navy-light) !important;
  opacity: 0.6;
}

.pricing-cta {
  display: block;
  margin: 0 32px 24px;
  text-align: center;
}

/* ======================
   Monthly Section (Dark)
   ====================== */
.section-dark {
  background: var(--navy);
  padding: 96px 0;
}

.monthly-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-tag-light {
  background: rgba(56, 178, 164, 0.2);
  color: var(--primary-light);
}

.monthly-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 16px 0 40px;
}

.monthly-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.monthly-body p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
}

.monthly-body strong {
  color: #fff;
  background-image: linear-gradient(transparent 60%, rgba(56, 178, 164, 0.4) 60%);
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

.monthly-tagline {
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4) !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ======================
   Process Section
   ====================== */
.section-desc {
  font-size: var(--text-base);
  color: var(--navy-light);
  margin-top: 16px;
  line-height: 1.8;
}

.process-steps {
  max-width: 640px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Dotted timeline connector */
.process-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  border-left: 2px dotted var(--primary-muted);
  opacity: 0.5;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: none;
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--sage);
}

.process-step h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.7;
}

.process-cta {
  text-align: center;
  margin-top: 48px;
}

.process-cta-note {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--navy-light);
}

/* ======================
   FAQ Section
   ====================== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--sage-dark);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.faq-q::before {
  content: 'Q.';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.8;
  padding-left: 28px;
}

/* ======================
   Footer
   ====================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand .logo {
  color: white;
  margin-bottom: var(--space-4);
}

.footer-description {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.footer-nav h4 {
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: var(--text-sm);
}

/* ======================
   Responsive
   ====================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-visual {
    max-width: 500px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* Switch connector to vertical on stacked layout */
  .why-grid::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent 5%, var(--primary-muted) 15%, var(--primary-muted) 85%, transparent 95%);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .section {
    padding: var(--space-16) 0;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-8) var(--space-8);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: calc(var(--z-sticky) + 1);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition-slow), visibility 0s var(--transition-slow);
  }

  .nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--transition-slow), visibility 0s 0s;
  }

  .nav .nav-link {
    font-size: var(--text-base);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--sage);
  }

  .hamburger {
    display: flex;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: var(--z-sticky);
  }

  .mobile-overlay.open {
    display: block;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Adjust process timeline for section-wave background */
  .process-num {
    box-shadow: 0 0 0 4px var(--sage);
  }

  .founders-event-img {
    height: 200px;
  }

  .photo-break-img {
    height: 240px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .hero-title {
    font-size: var(--text-2xl);
  }

  .hero-badge {
    font-size: var(--text-xs);
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-description {
    font-size: var(--text-sm);
  }

  .why-card,
  .feature-card,
  .fit-card {
    padding: var(--space-6);
  }

  .join-question {
    padding: var(--space-6);
  }

  .question-text {
    font-size: var(--text-lg);
  }

  .btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    width: 100%;
  }

  .voice-card {
    width: 280px;
    padding: var(--space-5);
  }

  .voice-card::before {
    font-size: 4rem;
  }

  .founder-avatar {
    width: 64px;
    height: 64px;
    font-size: var(--text-base);
  }

  .terminal-window {
    animation: none;
  }

  .section-wave::before {
    height: 40px;
  }
}

/* ======================
   Free Trial Banner
   ====================== */
.free-trial-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: var(--space-4) 0;
}

.free-trial-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.free-trial-badge {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.free-trial-text {
  color: #fff;
  font-size: var(--text-base);
  font-weight: 500;
}

.free-trial-banner .btn-small {
  padding: 8px 20px;
  font-size: var(--text-sm);
  background: #fff;
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.free-trial-banner .btn-small:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .free-trial-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }
}

/* ======================
   About Section
   ====================== */
.about-flow {
  display: flex;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto var(--space-10);
}

.about-step {
  flex: 1;
  text-align: center;
}

.about-step-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}

.about-step-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.about-step-body p {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.7;
}

.about-example {
  max-width: 640px;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-example-header {
  background: var(--navy);
  color: #fff;
  padding: var(--space-5) var(--space-6);
}

.about-example-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.about-example-header h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0;
}

.about-example-body {
  padding: var(--space-5) var(--space-6);
}

.about-example-body > p {
  font-size: var(--text-base);
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-format {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.about-format-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-2);
}

.about-format-content {
  font-size: var(--text-sm);
  color: var(--navy);
  line-height: 1.8;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

@media (max-width: 768px) {
  .about-flow {
    flex-direction: column;
    gap: var(--space-4);
  }

  .about-step {
    text-align: left;
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
  }

  .about-step-label {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 2px;
  }
}

/* ======================
   Season Tool Section
   ====================== */
.season-tool {
  padding: var(--space-10) 0;
}

.season-tool-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  max-width: 720px;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid var(--sage-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.season-tool-logo {
  flex-shrink: 0;
  width: 160px;
}

.season-tool-logo img {
  width: 100%;
  height: auto;
}

.season-tool-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.season-tool-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.season-tool-desc {
  font-size: var(--text-sm);
  color: var(--navy-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .season-tool-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .season-tool-logo {
    width: 140px;
  }
}

/* ======================
   Utilities
   ====================== */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .photo-break {
    display: none;
  }

  .comparison {
    display: none;
  }
}
