/* ========================================= */
/* Styles from page3.html */
/* ========================================= */

html, body { height: 100%; }
body {
  font-family: 'Figtree', sans-serif;
  background: #faf7f4;
  color: #2d2926;
  overflow-x: hidden;
}

/* ── Top bar ── */
.top-bar {
  background: #2d2926;
  color: #faf7f4;
  text-align: center;
  padding: 11px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.top-bar strong { color: #f4c585; font-weight: 500; }

/* ── Nav ── */
nav.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 52px;
  height: 80px;
  position: relative;
  border-bottom: 1px solid rgba(45,41,38,0.09);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo-dot { color: #d4845a; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  color: rgba(45,41,38,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #2d2926; }

.btn-terracotta {
  background: #d4845a;
  color: #fff;
  padding: 11px 24px;
  border: none;
  border-radius: 7px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-terracotta:hover { background: #c0704a; }

/* ── Hero ── */
.hero {
  padding: 88px 52px 56px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,132,90,0.1);
  border: 1px solid rgba(212,132,90,0.25);
  color: #b06040;
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 0.5s 0.05s forwards;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #d4845a;
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

.page-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.8vw, 70px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 0.6s 0.18s forwards;
}
h1 em {
  font-style: italic;
  color: #d4845a;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(45,41,38,0.57);
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: rise 0.6s 0.3s forwards;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.6s 0.44s forwards;
}
.btn-dark {
  background: #2d2926;
  color: #faf7f4;
  padding: 15px 32px;
  border: none;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-dark:hover { background: #444; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #2d2926;
  padding: 15px 26px;
  border: 1.5px solid rgba(45,41,38,0.2);
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(45,41,38,0.4); }

.platform-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  animation: rise 0.6s 0.56s forwards;
}
.from-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45,41,38,0.38);
  margin-right: 4px;
}
.chip {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid transparent;
}
.chip.gpt { background: rgba(16,163,127,0.07); border-color: rgba(16,163,127,0.22); color: #0a7a60; }
.chip.gem { background: rgba(66,133,244,0.07); border-color: rgba(66,133,244,0.22); color: #1a5fbd; }
.chip.cop { background: rgba(0,180,216,0.07); border-color: rgba(0,180,216,0.22); color: #006e88; }

/* ── Feature cards ── */
.cards-section {
  padding: 0 52px 72px;
  max-width: 1120px;
  margin: 0 auto;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid rgba(45,41,38,0.08);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all 0.25s;
}
.card:hover {
  border-color: rgba(212,132,90,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(45,41,38,0.07);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.card-icon.a { background: rgba(212,132,90,0.12); }
.card-icon.b { background: rgba(100,160,120,0.12); }
.card-icon.c { background: rgba(100,130,200,0.12); }
.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.card p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(45,41,38,0.52);
  font-weight: 300;
}

/* ── Reasons section ── */
.reasons-section {
  padding: 72px 52px;
  background: #f0ebe3;
  border-top: 1px solid rgba(45,41,38,0.08);
  border-bottom: 1px solid rgba(45,41,38,0.08);
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4845a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #d4845a;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.15;
  max-width: 520px;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(45,41,38,0.07);
  transition: all 0.2s;
}
.reason-card:hover {
  border-color: rgba(212,132,90,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,41,38,0.06);
}
.reason-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #d4845a;
  font-weight: 500;
  margin-bottom: 8px;
}
.reason-title {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
}
.reason-body {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(45,41,38,0.5);
  font-weight: 300;
}
.reasons-row2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}

/* ── Testimonial ── */
.testimonial {
  background: #2d2926;
  color: #faf7f4;
  padding: 80px 52px;
  text-align: center;
}
.t-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,247,244,0.35);
  margin-bottom: 28px;
}
.t-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(250,247,244,0.82);
}
.t-attr {
  font-size: 13px;
  color: rgba(250,247,244,0.36);
  letter-spacing: 0.05em;
}
.model-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.model-badge {
  padding: 10px 20px;
  border: 1px solid rgba(250,247,244,0.1);
  border-radius: 7px;
  font-size: 13px;
  color: rgba(250,247,244,0.45);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.model-badge:hover {
  border-color: rgba(250,247,244,0.25);
  color: rgba(250,247,244,0.75);
}

/* ── Footer ── */
footer {
  padding: 32px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(45,41,38,0.08);
  margin-bottom: 100px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
}
.footer-right {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(45,41,38,0.38);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  nav.main-nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px 40px; }
  .cards-section { padding: 0 24px 56px; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .reasons-section { padding: 56px 24px; }
  .reasons-grid, .reasons-row2 { grid-template-columns: repeat(2, 1fr); }
  .testimonial { padding: 56px 24px; }
  footer { padding: 28px 24px; flex-direction: column; gap: 12px; margin-bottom: 100px; }
}


/* ========================================= */
/* Styles from how-it-works-3.html */
/* ========================================= */

    /* ── Hero ── */
    .hiw-hero {
      padding: 88px 52px 32px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 132, 90, 0.1);
      border: 1px solid rgba(212, 132, 90, 0.25);
      color: #b06040;
      padding: 7px 18px;
      border-radius: 40px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 36px;
      opacity: 0;
      animation: rise 0.5s 0.05s forwards;
    }

    .hiw-h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(38px, 5.8vw, 70px);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-bottom: 28px;
      opacity: 0;
      animation: rise 0.6s 0.18s forwards;
    }

    .hiw-hero-sub {
      font-size: 18px;
      line-height: 1.72;
      color: rgba(45, 41, 38, 0.57);
      margin-bottom: 44px;
      font-weight: 300;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: rise 0.6s 0.3s forwards;
    }

    /* ── Content Sections ── */
    .content-section {
      padding: 40px 52px 80px;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      animation: rise 0.6s 0.4s forwards;
    }

    .step-card {
      background: #fff;
      border: 1px solid rgba(45, 41, 38, 0.08);
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 24px;
    }

    .step-eyebrow {
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #d4845a;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .hiw-h2 {
      font-family: 'Fraunces', serif;
      font-size: 26px;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hiw-p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(45, 41, 38, 0.65);
      margin-bottom: 16px;
    }

    .hiw-p:last-child {
      margin-bottom: 0;
    }

    .hiw-ul {
      padding-left: 20px;
      margin-bottom: 0;
      font-size: 15px;
      line-height: 1.65;
      color: rgba(45, 41, 38, 0.65);
    }

    .hiw-li {
      margin-bottom: 8px;
    }

    .hiw-li:last-child {
      margin-bottom: 0;
    }

    .hiw-code {
      font-family: 'Space Mono', monospace;
      background: rgba(45, 41, 38, 0.05);
      padding: 3px 6px;
      border-radius: 4px;
      font-size: 13px;
      color: #d4845a;
    }

    /* ── FAQ Accordion ── */
    .faq-list {
      margin-top: 8px;
    }

    .hiw-details {
      border-top: 1px solid rgba(45, 41, 38, 0.08);
    }

    .hiw-details:last-of-type {
      border-bottom: 1px solid rgba(45, 41, 38, 0.08);
    }

    .hiw-summary {
      font-family: 'Figtree', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: rgba(45, 41, 38, 0.85);
      padding: 16px 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color 0.2s;
    }

    .hiw-summary::-webkit-details-marker {
      display: none;
    }

    .hiw-summary::after {
      content: '+';
      font-size: 18px;
      color: #d4845a;
      font-weight: 300;
      flex-shrink: 0;
      line-height: 1;
    }

    .hiw-details[open]>.hiw-summary {
      color: #2d2926;
    }

    .hiw-details[open]>.hiw-summary::after {
      content: '−';
    }

    details .hiw-p {
      padding-bottom: 16px;
      margin: 0;
    }

/* ========================================= */
/* Survey / Signup Styles for Peach Theme */
/* ========================================= */

body.page-signup {
  background: #faf7f4;
  color: #2d2926;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.survey-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
}

.question-wrapper {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 680px;
  width: 100%;
}

.question-wrapper.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.question-wrapper.done {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
}

p.subtitle {
  font-size: 18px;
  color: rgba(45, 41, 38, 0.57);
  margin-bottom: 40px;
  line-height: 1.5;
}

.q-number {
  font-size: 11px;
  color: #d4845a;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.sub-question {
  font-size: 16px;
  font-weight: 500;
  color: #2d2926;
  margin-bottom: 14px;
}

.options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.option-card, .checkbox-card {
  background: #fff;
  border: 1px solid rgba(45, 41, 38, 0.1);
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  font-size: 16px;
  font-weight: 400;
}

.option-card:hover, .checkbox-card:hover {
  background: #fdfdfd;
  border-color: rgba(212, 132, 90, 0.3);
}

.option-card.selected, .checkbox-card.selected {
  background: #fffafa;
  border-color: #d4845a;
  box-shadow: 0 0 0 1px #d4845a;
}

.option-key {
  font-size: 11px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(45, 41, 38, 0.05);
  color: rgba(45, 41, 38, 0.4);
  flex-shrink: 0;
}

.option-card.selected .option-key, .checkbox-card.selected .option-key {
  background: #d4845a;
  color: #fff;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

textarea, input[type="email"], input[type="text"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(45, 41, 38, 0.1);
  color: #2d2926;
  font-size: 20px;
  font-family: 'Figtree', sans-serif;
  padding: 16px 0;
  outline: none;
  transition: border-color 0.3s;
}

textarea:focus, input[type="email"]:focus, input[type="text"]:focus {
  border-color: #d4845a;
}

.controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-next, .btn-start {
  background: #2d2926;
  color: #faf7f4;
  border: none;
  padding: 16px 32px;
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-next:hover, .btn-start:hover {
  background: #444;
  transform: translateY(-2px);
}

.btn-back {
  background: transparent;
  color: #2d2926;
  border: 1.5px solid rgba(45, 41, 38, 0.2);
  padding: 16px 24px;
  font-size: 14px;
  font-family: 'Figtree', sans-serif;
  border-radius: 8px;
  cursor: pointer;
}

.progress-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(45, 41, 38, 0.05);
}

.progress-bar {
  height: 100%;
  background: #d4845a;
  width: 0%;
  transition: width 0.4s ease;
}

hr.separator {
  border: none;
  border-top: 1px solid rgba(45, 41, 38, 0.08);
  margin: 32px 0;
}

.custom-tooltip {
  background: #2d2926;
  color: #faf7f4;
  font-family: 'Figtree', sans-serif;
}



