/* Forge Journal - Clean Minimal Design */

:root {
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --gray-800: #262626;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-delay {
  transition-delay: 0.2s;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--black);
  text-decoration: none;
}

.nav-icon {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: #F5E6DC;
  border-radius: 50%;
  stroke: #E07830;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

/* Hero */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
}

.hero-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus {
  border-color: var(--black);
}

.hero-form button {
  padding: 16px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.hero-form button:hover {
  opacity: 0.85;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: var(--black);
  border-radius: 44px;
  padding: 12px;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--black);
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  background: var(--gray-100);
  border-radius: 36px;
  aspect-ratio: 9/19.5;
  overflow: hidden;
}

.screen-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  gap: 16px;
}

.screen-placeholder svg {
  width: 48px;
  height: 48px;
}

.screen-placeholder span {
  font-size: 0.875rem;
}

/* Social Proof */
.social-proof {
  padding: 60px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.proof-icon {
  display: flex;
}

.proof-icon svg {
  width: 24px;
  height: 24px;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.proof-item span:last-child {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* How Section */
.how-section {
  padding: 120px 0;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ritual-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 40px;
}

.ritual-icon {
  width: 56px;
  height: 56px;
  background: #F5E6DC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ritual-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E07830;
}

.ritual-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ritual-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ritual-card > p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.ritual-prompts {
  list-style: none;
}

.ritual-prompts li {
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  font-style: italic;
  color: var(--gray-800);
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon-large {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon-large svg {
  width: 56px;
  height: 56px;
  stroke: var(--black);
}

.quote-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-card p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.quote-card span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.streak-visual {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.streak-flames {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.flame {
  width: 32px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}

.flame.active {
  background: var(--black);
}

.streak-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Pricing */
.pricing-section {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}

.price-card.featured {
  background: var(--black);
  color: var(--white);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-header {
  margin-bottom: 32px;
}

.price-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-header .price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-header .price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.6;
}

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

.price-card li {
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}

.price-card.featured li {
  border-color: rgba(255, 255, 255, 0.15);
}

.price-cta {
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}

.price-cta:hover {
  opacity: 0.9;
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  background: var(--gray-50);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: var(--white);
}

.cta-form input:focus {
  border-color: var(--black);
}

.cta-form button {
  padding: 16px 28px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cta-form button:hover {
  opacity: 0.85;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-big-text {
  font-size: clamp(80px, 20vw, 240px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.18);
  text-align: center;
  line-height: 1;
  margin-bottom: -40px;
  user-select: none;
}

.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-form {
    max-width: 100%;
    justify-content: center;
  }

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    width: 240px;
  }

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

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-visual {
    order: -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-card.featured {
    order: -1;
  }

  .proof-items {
    flex-direction: column;
    gap: 32px;
  }

  .proof-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

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

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

  .section-header h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }

  .how-section,
  .features-section,
  .pricing-section,
  .final-cta {
    padding: 80px 0;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-big-text {
    font-size: 60px;
  }
}
