/* SilentExit - Clean White & Black Design */

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

em {
  font-style: italic;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.hero-label {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #000;
}

.price-note {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  color: #666;
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #000000;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-cta:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
  pointer-events: none;
}

/* === STORIES SECTION === */
.stories {
  padding: 120px 30px;
  background-color: #ffffff;
}

.stories-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  margin-bottom: 2rem;
}

.stories h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 4rem;
  max-width: 700px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.story-card {
  padding: 2rem 0;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.story-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.story-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.story-card p {
  color: #444;
  font-size: 1rem;
}

/* === WHAT'S INSIDE SECTION === */
.what-inside {
  padding: 120px 30px;
  background-color: #f9f9f9;
}

.inside-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.inside-left h2 {
  font-size: 2.5rem;
  max-width: 500px;
}

.inside-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.inside-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

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

.inside-num {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.inside-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* === CLOSING SECTION === */
.closing {
  padding: 120px 30px;
  background-color: #ffffff;
  text-align: center;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: #999;
  font-weight: 300;
}

/* === FOOTER === */
.site-footer {
  padding: 40px 30px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-weight: 600;
}

.footer-divider {
  margin: 0 1rem;
  color: #666;
}

.footer-copy {
  color: #aaa;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-price {
    font-size: 2rem;
  }

  .stories {
    padding: 80px 20px;
  }

  .stories h2 {
    font-size: 2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-inside {
    padding: 80px 20px;
  }

  .inside-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .closing {
    padding: 80px 20px;
  }

  .closing h2 {
    font-size: 2rem;
  }

  .hero-cta {
    padding: 14px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-price {
    font-size: 1.8rem;
  }

  .stories {
    padding: 60px 15px;
  }

  .stories h2 {
    font-size: 1.4rem;
  }

  .closing {
    padding: 60px 15px;
  }

  .closing h2 {
    font-size: 1.4rem;
  }

  .what-inside {
    padding: 60px 15px;
  }
}
