/* ============================================================
   SayLess — Website Styles
   ============================================================ */

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

:root {
  --bg:          #FDFAF6;
  --surface:     #F9EEE7;
  --border:      #E8C4B8;
  --grad-start:  #F9D4C8;
  --grad-end:    #ECC5D8;
  --text:        #2C2424;
  --text-sec:    #7A5C5C;
  --accent:      #B07070;
  --charcoal:    #2C2424;
  --footer-sec:  #D4A5A5;
  --white:       #FFFFFF;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow:      0 4px 24px rgba(176, 112, 112, .08);
  --shadow-lg:   0 12px 40px rgba(176, 112, 112, .12);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-ui:     'DM Sans', system-ui, sans-serif;
  --max-w:       680px;
  --max-w-wide:  800px;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utility ---------- */
.container       { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px; }
.section-pad     { padding: 100px 0; }
.text-center     { text-align: center; }

.label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.headline {
  font-family: var(--font-head);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
}

.headline--lg { font-size: clamp(36px, 5vw, 52px); }
.headline--md { font-size: clamp(28px, 4vw, 40px); }
.headline--sm { font-size: clamp(24px, 3.5vw, 32px); }

.body-text {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 540px;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero specific fade */
.hero-fade {
  opacity: 0;
  animation: heroIn .9s ease forwards;
}
@keyframes heroIn {
  to { opacity: 1; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 246, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.site-header__logo {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 22px;
  color: var(--text-sec);
  letter-spacing: -.5px;
}
.site-header__nav {
  display: flex;
  gap: 28px;
}
.site-header__nav a {
  font-size: 13px;
  color: var(--text-sec);
  transition: color var(--transition);
}
.site-header__nav a:hover { color: var(--accent); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-sec);
  border-radius: 2px;
  transition: var(--transition);
}

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(253, 250, 246, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover  { transform: scale(.97); }
.btn:active { transform: scale(.95); }

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn--dark:hover {
  box-shadow: 0 6px 20px rgba(44,36,36,.18);
}

.btn--outline {
  background: transparent;
  color: var(--text-sec);
  border: 1.5px solid var(--border);
}

.btn--gradient {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: var(--white);
}
.btn--gradient:hover {
  box-shadow: 0 6px 24px rgba(236, 197, 216, .4);
}

.btn--disabled {
  opacity: .4;
  pointer-events: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--grad-start) 0%, transparent 70%);
  opacity: .15;
  border-radius: 50%;
  right: -10%;
  top: 10%;
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}
.hero__text {
  flex: 1;
  min-width: 0;
}
.hero__headline {
  font-family: var(--font-head);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 58px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-sec);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__proof {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-sec);
  letter-spacing: .3px;
}

/* iPhone mockup */
.hero__phone {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}
.phone-frame {
  width: 280px;
  height: 570px;
  background: var(--white);
  border: 3px solid var(--charcoal);
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(176, 112, 112, .15);
}
.phone-frame__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 32px;
  background: var(--charcoal);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}
.phone-frame__screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px 20px;
}
.phone-frame__screen-content {
  width: 100%;
  text-align: center;
}
.phone-frame__screen-content .pf-logo {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 6px;
}
.phone-frame__screen-content .pf-tagline {
  font-size: 11px;
  color: var(--text-sec);
  margin-bottom: 28px;
}
.phone-frame__screen-content .pf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  text-align: left;
}
.phone-frame__screen-content .pf-card-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.phone-frame__screen-content .pf-card-text {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}
.phone-frame__screen-content .pf-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  border-radius: var(--radius-pill);
  text-align: center;
  margin-top: 8px;
  border: none;
}
.phone-frame__screen-content .pf-tones {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.phone-frame__screen-content .pf-tone {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-sec);
}
.phone-frame__screen-content .pf-tone--active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---------- SECTION: Problem ---------- */
.problem { background: var(--surface); }
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-card__emoji { font-size: 36px; margin-bottom: 16px; }
.problem-card__text {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.problem-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- SECTION: How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.step {
  position: relative;
  padding: 20px 0;
}
.step__number {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  color: var(--border);
  opacity: .5;
  line-height: 1;
  margin-bottom: -16px;
  pointer-events: none;
}
.step__title {
  font-weight: 500;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ---------- SECTION: Tone Showcase ---------- */
.tones { background: var(--surface); }
.tone-scenario {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 28px;
  margin-top: 32px;
  margin-bottom: 32px;
  font-style: italic;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
}
.tone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tone-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tone-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.tone-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--surface);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.tone-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.tone-caption {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
}

/* ---------- SECTION: Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

/* ---------- SECTION: Features ---------- */
.features-section { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1;
  padding-top: 2px;
}
.feature-item__title {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-item__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ---------- SECTION: CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  text-align: center;
}
.cta .headline { margin-bottom: 16px; }
.cta .body-text {
  margin: 0 auto 36px;
}
.cta__small {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-sec);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal);
  padding: 48px 24px 32px;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__logo {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 20px;
  color: var(--bg);
}
.site-footer__links {
  display: flex;
  gap: 24px;
}
.site-footer__links a {
  font-size: 13px;
  color: var(--footer-sec);
  transition: color var(--transition);
}
.site-footer__links a:hover { color: var(--bg); }
.site-footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--footer-sec);
}
.site-footer__copy {
  width: 100%;
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 165, 165, .2);
  font-size: 12px;
  color: var(--footer-sec);
}

/* ---------- LEGAL / SUPPORT PAGES ---------- */
.page-hero {
  padding: 120px 24px 60px;
  text-align: center;
}
.page-hero .headline { margin-bottom: 12px; }
.page-hero .meta {
  font-size: 14px;
  color: var(--text-sec);
  font-weight: 300;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-content ul li {
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
}
.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* Contact card */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 60px;
}
.contact-card__title {
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-card__body {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero__content {
    flex-direction: column;
    text-align: center;
  }
  .hero__body { margin: 0 auto 36px; }
  .hero__phone { margin-top: 40px; }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tone-cards {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .site-footer__links {
    justify-content: center;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 34px; }
  .btn { font-size: 14px; padding: 12px 22px; }
  .section-pad { padding: 70px 0; }
}
