/* ============================================
   AllezAllez.cc Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Brand — derived from logo */
  --color-brand: #4c8db5;
  --color-brand-hover: #3d7a9e;
  --color-brand-light: #6aabcf;
  --color-bg-brand: #e3eef5;

  /* Accent — CTA buttons only */
  --color-accent: #304FFE;
  --color-accent-hover: #2a47e5;
  --color-bg-accent: #E8EAF6;

  /* Neutrals */
  --color-off-white: #F5F5F3;
  --color-warm-light: #FCF7F2;
  --color-dark: #1A1A1A;
  --color-text-secondary: #5A5A5A;
  --color-text-muted: #999;
  --color-white: #FFFFFF;

  /* Radii */
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 36px;
  --text-3xl: 48px;

  /* Layout */
  --max-width: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   1. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.navbar__logo-text {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--color-accent);
}

.navbar__lang-toggle {
  background: none;
  border: 1px solid #ddd;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  line-height: 0;
}

.navbar__lang-toggle:hover {
  border-color: var(--color-brand);
}

.navbar__lang-toggle svg {
  border-radius: 2px;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 100px 24px 60px;
  gap: 48px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  flex: 1;
}

.hero__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: var(--text-lg);
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.5;
}

.hero__proof {
  font-size: var(--text-sm);
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- Signup Card (hero right side) --- */
.hero__signup {
  position: relative;
  z-index: 2;
  flex: 0 0 400px;
  max-width: 400px;
}

.signup-card {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px 28px 20px;
}

.signup-step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.signup-step__desc {
  font-size: var(--text-sm);
  color: #bbb;
  line-height: 1.5;
  margin-bottom: 16px;
}

.signup-field {
  margin-bottom: 16px;
}

.signup-field label {
  display: block;
  color: #ccc;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.signup-field input[type="text"],
.signup-field input[type="tel"],
.signup-field input[type="date"] {
  width: 100%;
  padding: 12px 14px;
  font-size: var(--text-base);
  font-family: var(--font);
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: var(--radius-md);
  color: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.signup-field input:focus {
  outline: none;
  border-color: var(--color-brand);
}

.signup-field input::placeholder {
  color: #666;
}

.signup-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #25D366;
  font-size: var(--text-xs);
  margin-top: 6px;
}

.signup-otp-input {
  text-align: center;
  font-size: var(--text-2xl) !important;
  letter-spacing: 8px;
  font-weight: 700;
  padding: 14px !important;
}

.signup-btn {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 8px;
}

.btn--strava {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #FC4C02;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.btn--strava:hover {
  background: #e04400;
}

.signup-link {
  display: block;
  text-align: center;
  color: #888;
  font-size: var(--text-sm);
  margin-top: 6px;
  cursor: pointer;
}

.signup-link:hover {
  color: var(--color-brand);
}

.signup-back {
  margin-top: 12px;
}

.signup-otp-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.signup-error {
  margin-top: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 82, 82, 0.12);
  color: #ff5252;
  font-size: var(--text-sm);
}

.signup-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76, 141, 181, 0.12);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Chips (level / goal selection) */
.signup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.signup-chip {
  padding: 8px 14px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 20px;
  color: #999;
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.15s;
}

.signup-chip:hover {
  border-color: #555;
  color: #ccc;
}

.signup-chip--selected {
  border-color: var(--color-brand);
  background: rgba(76, 141, 181, 0.1);
  color: #fff;
}

/* Progress dots */
.signup-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.signup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  transition: background 0.2s;
}

.signup-dot--active {
  background: var(--color-brand);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  height: 56px;
  padding: 0 40px;
  font-size: var(--text-lg);
}

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

.btn--submit {
  background: var(--color-accent);
  color: var(--color-white);
  width: 100%;
  height: 52px;
  font-size: var(--text-lg);
  margin-top: 24px;
}

.btn--submit:hover {
  background: var(--color-accent-hover);
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   3. SECTIONS (shared)
   ============================================ */
.section {
  padding: 80px 0;
}

.section__heading {
  font-size: var(--text-2xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.section__heading--light {
  color: var(--color-white);
}

/* ============================================
   4. HOW IT WORKS
   ============================================ */
.section--how-it-works {
  background: var(--color-off-white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
}

.step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__icon img {
  width: 36px;
  height: 36px;
}

.step__icon--teal,
.step__icon--cyan,
.step__icon--blue {
  background: var(--color-bg-brand);
}

.step__icon--teal img,
.step__icon--cyan img,
.step__icon--blue img {
  filter: invert(45%) sepia(50%) saturate(500%) hue-rotate(165deg) brightness(90%) contrast(95%);
}

.step__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 8px;
}

.step__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   4b. CONVERSATION SHOWCASE
   ============================================ */
.section--conversations {
  background: var(--color-warm-light) url('images/convo-bg.webp') center / cover no-repeat;
}

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

.convo-card {
  display: flex;
  flex-direction: column;
}

.convo-phone {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  flex: 1;
}

.convo-header {
  background: var(--color-off-white);
  padding: 10px 16px;
  border-bottom: 1px solid #E8E8E8;
}

.convo-app {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.convo-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.convo-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.5;
  max-width: 90%;
}

.convo-bubble--user {
  background: #DCF8C6;
  color: var(--color-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.convo-bubble--coach {
  background: var(--color-off-white);
  color: var(--color-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.convo-caption {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================
   5. PERSONA CARDS
   ============================================ */
.section--personas {
  background: var(--color-white);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.persona-card {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 4px solid var(--color-brand);
  display: flex;
  flex-direction: column;
}

.persona-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.persona-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.persona-card__body {
  padding: 28px 28px 32px;
}

.persona-card__label {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.persona-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.positioning-line {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.6;
}

.footer__ai {
  color: var(--color-text-muted);
}

/* ============================================
   5b. SOCIAL PROOF
   ============================================ */
.section--proof {
  background: var(--color-off-white);
  padding: 56px 0;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-stat__number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.proof-stat__label {
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: 4px;
}

.proof-stat__detail {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* ============================================
   5c. WHAT'S INCLUDED (BETA CARD)
   ============================================ */
.section--included {
  background: var(--color-warm-light);
}

.beta-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 36px;
  border-top: 4px solid var(--color-brand);
}

.beta-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.beta-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
}

.beta-card__price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-brand);
}

.beta-card__list {
  margin-bottom: 20px;
}

.beta-card__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: var(--text-base);
  line-height: 1.5;
}

.beta-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-brand);
}

.beta-card__note {
  text-align: center;
  color: var(--color-text-secondary);
  font-style: italic;
  font-size: var(--text-sm);
}

/* ============================================
   5d. FEATURES GRID
   ============================================ */
.section--features {
  background: var(--color-white);
}

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

.feature-card {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-bg-brand);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   6. WAITING LIST FORM
   ============================================ */
.section--waiting-list {
  background: url('images/hero_background_mobile.webp') center / cover no-repeat;
  position: relative;
}

.section--waiting-list::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
  z-index: 0;
}

.section--waiting-list > .container {
  position: relative;
  z-index: 1;
}

/* Beta Signup Form */
.beta-signup {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.beta-signup__text {
  color: #ccc;
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
}

.beta-form__field {
  margin-bottom: 18px;
}

.beta-form__field label {
  display: block;
  color: #e0e0e0;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.beta-form__field input[type="text"],
.beta-form__field input[type="tel"],
.beta-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: var(--text-base);
  font-family: var(--font);
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: var(--radius-md);
  color: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.beta-form__field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.beta-form__field input[type="text"]:focus,
.beta-form__field input[type="tel"]:focus,
.beta-form__field textarea:focus {
  outline: none;
  border-color: var(--color-brand);
}

.beta-form__field input::placeholder,
.beta-form__field textarea::placeholder {
  color: #666;
}

.beta-form__hint {
  display: block;
  color: #888;
  font-size: var(--text-xs);
  margin-top: 5px;
}

.beta-form__channels {
  display: flex;
  gap: 8px;
}

.beta-form__channel {
  cursor: pointer;
}

.beta-form__channel input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.beta-form__channel-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: var(--radius-md);
  color: #999;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all 0.15s;
}

.beta-form__channel-card svg {
  width: 14px;
  height: 14px;
}

.beta-form__channel input[type="radio"]:checked + .beta-form__channel-card {
  border-color: var(--color-brand);
  background: rgba(76, 141, 181, 0.1);
  color: #fff;
}

.beta-form__channel-card:hover {
  border-color: #555;
}

.beta-form__submit {
  width: 100%;
  margin-top: 8px;
  font-size: var(--text-base);
  padding: 14px;
}

.beta-form__status--error {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(255, 82, 82, 0.12);
  color: #ff5252;
}

.beta-form__status--error p {
  font-size: var(--text-sm);
}

.beta-success-card {
  text-align: center;
  padding: 32px 16px;
}

.beta-success-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(76, 141, 181, 0.12);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.beta-success-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.beta-success-card__text {
  font-size: var(--text-base);
  color: #bbb;
  line-height: 1.6;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 999;
  text-align: center;
  font-size: var(--text-lg);
  height: 52px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* ============================================
   7. FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  border-top: 1px solid #333;
  padding: 32px 0;
  color: #999;
  font-size: var(--text-sm);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo-img {
  max-height: 32px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: #999;
  transition: text-decoration 0.2s;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__strava {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__strava:hover {
  opacity: 1;
}

.footer__strava-img {
  height: 24px;
  width: auto;
}

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

.footer__attribution a {
  color: var(--color-brand);
}

.footer__lang-toggle {
  background: none;
  border: 1px solid #555;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  line-height: 0;
}

.footer__lang-toggle:hover {
  border-color: var(--color-brand);
}

.footer__lang-toggle svg {
  border-radius: 2px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 96px 0 64px;
}

.legal-page h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .legal-date {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-page p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

.legal-page a {
  color: var(--color-brand);
  text-decoration: underline;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-page {
  padding: 96px 0 64px;
}

.support-page h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 8px;
}

.support-page__intro {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-bottom: 48px;
}

/* FAQ */
.faq {
  margin-bottom: 64px;
}

.faq h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 24px;
}

.faq__item {
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq__item summary {
  padding: 16px 20px;
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item summary:hover {
  background: var(--color-off-white);
}

.faq__item p {
  padding: 0 20px 16px;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Support Form */
.support-form-section {
  max-width: 600px;
}

.support-form-section h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 8px;
}

.support-form-section__desc {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  margin-bottom: 24px;
}

.support-form__field {
  margin-bottom: 20px;
}

.support-form__field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 6px;
}

.support-form__field input,
.support-form__field select,
.support-form__field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: var(--text-base);
  padding: 12px 14px;
  border: 1px solid #D0D0D0;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-dark);
  transition: border-color 0.2s;
}

.support-form__field input:focus,
.support-form__field select:focus,
.support-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.support-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.support-form__status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
}

.support-form__status--success {
  background: #E8F5E9;
  color: #2E7D32;
}

.support-form__status--error {
  background: #FFEBEE;
  color: #C62828;
}

/* ============================================
   STATUS PAGES (Strava/Calendar success/error)
   ============================================ */
.status-page {
  min-height: calc(100vh - 64px - 97px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0 64px;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2A2A2A 100%);
}

.status-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 48px 40px;
}

.status-card--success {
  border-top: 4px solid var(--color-brand);
}

.status-card--error {
  border-top: 4px solid #E53935;
}

.status-card__icon {
  margin-bottom: 24px;
}

.status-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.status-card__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.status-card__hint {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================
   WHAT'S NEW PAGE
   ============================================ */
.whats-new-page {
  padding: 96px 0 64px;
}

.whats-new-page h1 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 8px;
}

.whats-new-page__intro {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-bottom: 48px;
}

.release {
  border-left: 3px solid var(--color-brand);
  padding: 0 0 0 24px;
  margin-bottom: 40px;
}

.release__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.release__date {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.release__tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.release__tag--new {
  background: var(--color-brand);
  color: var(--color-white);
}

.release__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 12px;
}

.release__list {
  list-style: none;
  padding: 0;
}

.release__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.release__list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ============================================
   RESPONSIVE: MOBILE
   ============================================ */
@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }

  .section__heading {
    font-size: var(--text-xl);
    margin-bottom: 32px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 16px 40px;
    gap: 32px;
    background-image: url('images/hero_background_mobile.webp');
  }

  .hero__content {
    max-width: 100%;
  }

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

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero__signup {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .signup-card {
    padding: 24px 20px 16px;
  }

  .btn--primary {
    font-size: var(--text-lg);
    height: 50px;
    padding: 0 28px;
  }

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

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
  }

  .navbar__logo-text {
    display: none;
  }

  .navbar__right {
    gap: 10px;
  }

  /* Social proof */
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Beta card */
  .beta-card {
    max-width: 100%;
  }

  /* Form pills */
  .form__pills {
    flex-direction: column;
  }

  .form__pill span {
    display: block;
    text-align: center;
  }

  /* Status pages */
  .status-card {
    padding: 36px 24px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-toc {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.news-toc__list {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
}

.news-toc__list a {
  color: var(--color-brand);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
}

.news-toc__list a:hover {
  text-decoration: underline;
}

.news-body {
  margin-top: 16px;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.news-body__text {
  flex: 7;
  min-width: 280px;
}

.news-body__media {
  flex: 3;
  min-width: 200px;
}

.news-body .news-audio {
  flex-basis: 100%;
}

.news-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

@media (max-width: 680px) {
  .news-body__media {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.news-body p {
  margin-bottom: 12px;
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.news-audio {
  margin-top: 24px;
  padding: 20px;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.news-audio__label {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.news-audio__player {
  width: 100%;
  border-radius: var(--radius-md);
}

.release__tag--radio {
  background: #EDE7F6;
  color: #5E35B1;
}

