@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-page: #F7F7F8;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F7F7F8;
  --text: #0A0A0A;
  --text-secondary: #555560;
  --text-muted: #8C8C96;
  --text-dim: #B0B0B8;
  --accent: #E8366D;
  --accent-hover: #c92d5b;
  --accent-light: rgba(232,54,109,0.06);
  --accent-light2: rgba(232,54,109,0.1);
  --green: #16a34a;
  --green-light: rgba(22,163,74,0.08);
  --yellow: #ca8a04;
  --yellow-light: rgba(202,138,4,0.08);
  --blue: #2563eb;
  --blue-light: rgba(37,99,235,0.08);
  --border: #E8E8EC;
  --border-light: #F0F0F4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Header CSS lives in /css/site-header.css */

/* ═══ HERO ═══ */
.hero {
  /* F-06: was min-height:100vh, which extends the hero past the visible
     area (the sticky site header overlays the top ~64px). align-items:center
     then centered the row's vertical axis relative to 100vh — meaning the
     text drifted ~30-40px below visible center while the page rendered
     ~200-300px of blank above the eyebrow. Subtract the header height so
     the hero fits the visible viewport and the text sits where the eye
     expects it. */
  min-height: calc(100vh - 64px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(232,54,109,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(232,54,109,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  /* F-06 follow-up: padding-top was 80px which left the eyebrow sitting
     ~140px below the sticky header (header + padding). Reduced to 48px so
     the eyebrow lands at a natural reading position. */
  padding: 48px 24px 80px;
  display: grid; grid-template-columns: 1.3fr 1fr;
  /* F-06 follow-up: was align-items:center. With a tall right-column
     image card driving the row height, the shorter left text column got
     vertically centered to match — pushing the eyebrow down ~250px on a
     900px viewport. align-items:start anchors the text to the top of
     the row regardless of image height. */
  gap: 48px; align-items: start;
  width: 100%; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
  max-width: 480px;
}
.hero-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex; gap: 0; margin-bottom: 40px;
}
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px; color: var(--text-muted);
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 12px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,54,109,0.25);
}
.btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 12px;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ═══ HERO VISUAL — Crossfading photos ═══ */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hv-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: none;
}
/* 12s cycle synced with story lines */
.hv-bg--1 { animation: crossfade 12s ease infinite; }
.hv-bg--2 { animation: crossfade 12s ease infinite; animation-delay: 2.4s; }
.hv-bg--3 { animation: crossfade 12s ease infinite; animation-delay: 4.8s; }
.hv-bg--4 { animation: crossfade 12s ease infinite; animation-delay: 7.2s; }
.hv-bg--5 { animation: crossfade 12s ease infinite; animation-delay: 9.6s; }
@keyframes crossfade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  20%  { opacity: 1; }
  23%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Animated story box — cycling content, Apple-level polish */
.hv-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hv-storybox {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 0;
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,0,0,0.12);
  position: relative;
  height: 56px;
  min-width: 300px;
  overflow: hidden;
}
.hv-story-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  opacity: 0;
}
/* 12s cycle, 5 lines, each visible ~2s */
.hv-story-line--1 { animation: cycleLine 12s ease infinite; }
.hv-story-line--2 { animation: cycleLine 12s ease infinite; animation-delay: 2.4s; }
.hv-story-line--3 { animation: cycleLine 12s ease infinite; animation-delay: 4.8s; }
.hv-story-line--4 { animation: cycleLine 12s ease infinite; animation-delay: 7.2s; }
.hv-story-line--5 { animation: cycleLine 12s ease infinite; animation-delay: 9.6s; }
@keyframes cycleLine {
  0%   { opacity: 0; transform: translateY(10px); filter: blur(2px); }
  3%   { opacity: 1; transform: translateY(0); filter: blur(0); }
  17%  { opacity: 1; transform: translateY(0); filter: blur(0); }
  20%  { opacity: 0; transform: translateY(-10px); filter: blur(2px); }
  100% { opacity: 0; }
}

/* Icons */
.hv-story-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-story-icon--pin { background: var(--accent-light2); }
.hv-story-icon--pin svg { width: 15px; height: 15px; color: var(--accent); }
.hv-story-icon--check { background: var(--green-light); }
.hv-story-icon--check svg { width: 15px; height: 15px; color: var(--green); }
.hv-story-icon--trip { background: rgba(37,99,235,0.08); }
.hv-story-icon--trip svg { width: 15px; height: 15px; color: var(--blue); }

/* Text */
.hv-story-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}
.hv-story-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hv-story-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.hv-story-sub--green {
  color: var(--green);
  font-weight: 600;
}

/* ═══ PHONE MOCKUPS (step 4 visual) ═══ */
.step-phones {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 14px; position: relative;
  padding: 10px 0;
}
.phone {
  flex-shrink: 0;
  border-radius: 28px;
  background: #000;
  padding: 5px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.phone--front {
  width: 170px;
  z-index: 2;
}
.phone--back {
  width: 150px;
  transform: translateY(14px) scale(0.94);
  z-index: 1;
}
.phone-notch {
  width: 60px; height: 16px;
  background: #000;
  border-radius: 0 0 10px 10px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  z-index: 5;
}
.phone-screen {
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}
/* Feed screen (TikTok-style) */
.screen-feed {
  background: #0e1117;
  aspect-ratio: 9/19.2;
  position: relative;
  display: flex;
  flex-direction: column;
}
.screen-feed-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/phone-feed.jpg') center/cover no-repeat;
}
.screen-feed-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.screen-feed-status {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px 0;
  font-size: 7px; font-weight: 600; color: #fff;
}
.screen-feed-actions {
  position: absolute; right: 6px; bottom: 50px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.feed-action-item {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.feed-action-item svg { width: 14px; height: 14px; color: #fff; }
.feed-action-item span { font-size: 6px; color: rgba(255,255,255,0.8); font-weight: 600; }
.feed-trip-thumb {
  width: 22px; height: 22px; border-radius: 4px;
  border: 1px solid #fff;
  background: url('../assets/images/phone-trip-icon.jpg') center/cover no-repeat;
  overflow: hidden;
}
.feed-trip-label { font-size: 5px; color: rgba(255,255,255,0.8); font-weight: 600; margin-top: 1px; }
.screen-feed-info {
  position: relative; z-index: 3;
  margin-top: auto;
  padding: 0 8px 4px;
}
.feed-creator-row { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.feed-creator-avatar {
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: 1px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 5px; font-weight: 700; color: #fff;
}
.feed-creator-name { font-size: 7px; font-weight: 600; color: #fff; }
.feed-follow-btn {
  font-size: 6px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 6px; border-radius: 8px;
}
.feed-day-label { font-size: 6px; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 1px; }
.feed-desc {
  font-size: 6px; color: rgba(255,255,255,0.55); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.phone-nav-dark {
  position: relative; z-index: 3;
  display: flex; justify-content: space-around; align-items: center;
  padding: 4px 0 3px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
}
.phone-nav-dark .pn-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-nav-dark .pn-item svg { width: 11px; height: 11px; color: rgba(255,255,255,0.45); }
.phone-nav-dark .pn-item span { font-size: 5px; color: rgba(255,255,255,0.4); }
.phone-nav-dark .pn-item--active svg { color: #fff; }
.phone-nav-dark .pn-item--active span { color: #fff; font-weight: 600; }
.phone-nav-dark .pn-item--plus svg { width: 14px; height: 14px; color: rgba(255,255,255,0.6); }
/* Trip detail screen */
.screen-trip {
  background: #fff;
  aspect-ratio: 9/19.2;
  display: flex;
  flex-direction: column;
}
.screen-trip-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px 0;
  font-size: 7px; font-weight: 600; color: #111;
}
.trip-hero {
  height: 25%; position: relative;
  background: url('../assets/images/phone-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}
.trip-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(0,0,0,0.1) 100%);
}
.trip-hero-back {
  position: absolute; top: 6px; left: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.trip-hero-back svg { width: 8px; height: 8px; color: #fff; }
.trip-hero-info {
  position: absolute; top: 6px; right: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.trip-hero-info svg { width: 8px; height: 8px; color: #fff; }
.trip-hero-tag {
  position: absolute; bottom: 4px; left: 4px;
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  padding: 2px 5px; border-radius: 5px;
  font-size: 6px; color: #fff; font-weight: 500;
}
.trip-hero-tag-flag { font-size: 7px; }
.trip-hero-count {
  position: absolute; bottom: 4px; right: 4px;
  font-size: 6px; color: rgba(255,255,255,0.7); font-weight: 500;
  background: rgba(0,0,0,0.3); padding: 1px 4px; border-radius: 4px;
}
.trip-creator {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px;
}
.trip-creator-left { display: flex; align-items: center; gap: 5px; }
.trip-creator-avatar {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #5a4a3a, #3a3a4a);
  display: flex; align-items: center; justify-content: center;
  font-size: 6px; font-weight: 700; color: #fff;
  position: relative;
}
.trip-creator-avatar::after {
  content: '✓'; position: absolute; bottom: -1px; right: -1px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 4px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #fff;
}
.trip-creator-label { font-size: 5px; color: var(--text-muted); }
.trip-creator-name { font-size: 7px; font-weight: 600; color: var(--text); }
.trip-follow-btn {
  font-size: 6px; font-weight: 600; color: var(--text-secondary);
  border: 1px solid var(--border); padding: 2px 6px; border-radius: 5px;
  background: #fff;
}
.trip-content { padding: 0 8px; flex: 1; overflow: hidden; }
.trip-title {
  font-family: 'Poppins', sans-serif;
  font-size: 9px; font-weight: 700; color: var(--text);
  line-height: 1.3; margin-bottom: 2px;
}
.trip-desc {
  font-size: 6px; color: var(--text-muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 5px;
}
.trip-desc-more { font-weight: 600; color: var(--text); }
.trip-buttons { display: flex; gap: 3px; margin-bottom: 6px; }
.trip-btn-map {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 2px;
  padding: 3px; border-radius: 5px;
  border: 1px solid var(--border); background: #fff;
  font-size: 6px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.trip-btn-map svg { width: 7px; height: 7px; flex-shrink: 0; }
.trip-btn-add {
  flex: 1.3; display: flex; align-items: center; justify-content: center; gap: 2px;
  padding: 3px; border-radius: 5px;
  background: var(--accent); border: none;
  font-size: 6px; font-weight: 700; color: #fff; white-space: nowrap;
}
.trip-btn-add svg { width: 7px; height: 7px; color: #fff; flex-shrink: 0; }
.trip-day-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.trip-day-title { font-size: 6px; color: var(--text); }
.trip-day-title strong { font-weight: 700; }
.trip-day-arrows { display: flex; gap: 2px; }
.trip-day-arrows svg { width: 8px; height: 8px; color: var(--text-muted); }
.trip-stops { display: flex; gap: 4px; overflow: hidden; }
.trip-stop {
  width: 55%; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.trip-stop--highlight { border: 1px solid rgba(232,54,109,0.55); }
.trip-stop-img {
  height: 32px; position: relative;
  background: url('../assets/images/phone-stop1.jpg') center/cover no-repeat;
}
.trip-stop-img--b {
  background: url('../assets/images/phone-stop2.jpg') center/cover no-repeat;
}
.trip-stop-tag {
  position: absolute; top: 2px; left: 2px;
  font-size: 4px; font-weight: 700; color: #fff;
  background: rgba(0,0,0,0.5); padding: 1px 3px; border-radius: 3px;
}
.trip-stop-tapped {
  position: absolute; top: 2px; right: 2px;
  font-size: 4px; font-weight: 800; color: #fff;
  background: var(--accent); padding: 1px 3px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.trip-stop-body { padding: 3px 4px; }
.trip-stop-name { font-size: 6px; font-weight: 600; color: var(--text); line-height: 1.2; }
.trip-stop-desc { font-size: 5px; color: var(--text-muted); margin-top: 1px; }
.phone-nav-light {
  display: flex; justify-content: space-around; align-items: center;
  padding: 3px 0 2px;
  border-top: 1px solid var(--border-light);
  background: #fff;
}
.phone-nav-light .pn-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-nav-light .pn-item svg { width: 10px; height: 10px; color: var(--text-muted); }
.phone-nav-light .pn-item span { font-size: 5px; color: var(--text-muted); }
.phone-nav-light .pn-item--active svg { color: var(--accent); }
.phone-nav-light .pn-item--active span { color: var(--accent); font-weight: 600; }

/* ═══ SECTION SHARED ═══ */
.section { padding: 120px 24px; }
.section--border { border-top: 1px solid var(--border); }
.section--alt { background: var(--bg-page); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-desc { margin: 0 auto; }

/* ═══ PROBLEM CARDS ═══ */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 60px;
}
.problem-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.problem-card:hover {
  border-color: var(--text-dim);
  box-shadow: var(--shadow-md);
}
.problem-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.problem-card-icon svg { width: 20px; height: 20px; color: var(--accent); }
.problem-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  margin-bottom: 8px;
}
.problem-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.problem-card-stat {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--accent); margin-top: auto; padding-top: 16px;
}
.problem-card-stat-label { font-size: 10px; color: var(--text-muted); }

/* ═══ HOW IT WORKS ═══ */
.how-steps { display: flex; flex-direction: column; gap: 100px; }
.how-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.how-step--reverse { direction: rtl; }
.how-step--reverse > * { direction: ltr; }
.how-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 64px; font-weight: 700;
  color: var(--accent); line-height: 1; opacity: 0.45;
  margin-bottom: 12px;
}
.how-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 14px;
}
.how-step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 420px; }
.how-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.how-feat { display: flex; align-items: flex-start; gap: 10px; }
.how-feat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.how-feat p { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }
.how-feat p strong { font-weight: 600; color: var(--text); }

.how-visual {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 20px;
}

/* Trip Builder Visual (Step 1) */
.tripbuild-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tripbuild-title { font-size: 13px; font-weight: 600; color: var(--text); }
.tripbuild-badge { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: var(--accent-light2); color: var(--accent); }
.tripbuild-map {
  height: 120px; border-radius: 10px; margin-bottom: 14px;
  background: linear-gradient(160deg, #d4e4d0 0%, #c8dcc4 30%, #b8d0b4 50%, #a8c4a4 70%, #98b898 100%);
  position: relative; overflow: hidden;
}
.tripbuild-map-pins { position: absolute; inset: 0; }
.tb-pin {
  position: absolute; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.tb-pin--1 { top: 30%; left: 22%; background: var(--accent); }
.tb-pin--2 { top: 45%; left: 48%; background: var(--accent); }
.tb-pin--3 { top: 25%; left: 70%; background: var(--green); }
.tb-route {
  position: absolute; inset: 0;
  pointer-events: none;
}
.tb-route line { stroke: var(--accent); stroke-width: 1; stroke-dasharray: 3 2; opacity: 0.4; }
.tripbuild-stops { display: flex; flex-direction: column; gap: 8px; }
.tb-stop {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: border-color 0.2s;
}
.tb-stop:hover { border-color: var(--border); }
.tb-stop-num {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.tb-stop-num--accent { background: var(--accent); }
.tb-stop-num--green { background: var(--green); }
.tb-stop-info { flex: 1; }
.tb-stop-name { font-size: 11px; font-weight: 600; color: var(--text); }
.tb-stop-meta { font-size: 9px; color: var(--text-muted); margin-top: 1px; }
.tb-stop-tag {
  font-size: 8px; font-weight: 600; padding: 2px 7px;
  border-radius: 4px; flex-shrink: 0;
}
.tb-stop-tag--allot { background: var(--green-light); color: var(--green); }
.tb-stop-tag--request { background: var(--yellow-light); color: var(--yellow); }
.tb-stop-tag--open { background: var(--bg-page); color: var(--text-muted); }

/* Supplier Match Visual (Step 2) */
.match-visual-wrap {
  background: linear-gradient(135deg, #fdf2f6 0%, #f0e8ff 50%, #e8f0fe 100%);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(232,54,109,0.12);
  box-shadow: 0 8px 32px rgba(232,54,109,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.match-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.match-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  animation: matchPulse 2s ease infinite;
  flex-shrink: 0;
}
@keyframes matchPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}
.match-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--text);
  flex: 1;
}
.match-count {
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  border-radius: 20px; background: var(--green); color: #fff;
  letter-spacing: 0.02em;
}
.match-cards { display: flex; flex-direction: column; gap: 12px; }
.match-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.match-card.is-visible { opacity: 1; transform: translateX(0); }
.match-card:nth-child(2) { transition-delay: 0.15s; }
.match-card:nth-child(3) { transition-delay: 0.3s; }
.match-card:hover {
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.match-card--accepted {
  border: 1.5px solid var(--green);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 16px rgba(22,163,74,0.1);
}
.match-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, #5a8a5a 0%, #3d6b3d 100%);
  overflow: hidden;
}
.match-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.match-avatar--blue { background: linear-gradient(135deg, #4a7a8a 0%, #2a5a6a 100%); }
.match-avatar--warm { background: linear-gradient(135deg, #8a6a4a 0%, #6a4a2a 100%); }
.match-body { flex: 1; min-width: 0; }
.match-name { font-size: 15px; font-weight: 700; color: var(--text); }
.match-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.match-offer { margin-top: 8px; }
.match-offer-tag {
  font-size: 12px; font-weight: 700; padding: 5px 12px;
  border-radius: 8px; display: inline-block;
}
.match-offer-tag--allot { background: var(--green-light); color: var(--green); }
.match-offer-tag--request { background: var(--yellow-light); color: var(--yellow); }
.match-status {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
}
.match-status--accepted { color: var(--green); }
.match-status--accepted svg { color: var(--green); }
.match-status--pending { color: var(--text-muted); }
.match-btn {
  font-size: 12px; font-weight: 700; padding: 8px 16px;
  border-radius: 10px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.match-btn:hover { transform: translateY(-1px); }
.match-btn--add { background: var(--text); color: #fff; }
.match-btn--add:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.match-btn--view { background: var(--bg-page); color: var(--text-secondary); border: 1px solid var(--border); }

/* Evergreen Visual (Step 3) */
.evergreen-header { margin-bottom: 16px; }
.evergreen-title { font-size: 13px; font-weight: 600; color: var(--text); }
.evergreen-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.evergreen-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.evergreen-card {
  padding: 14px; border-radius: 10px; border: 1px solid var(--border);
  text-align: center;
}
.evergreen-card--old { opacity: 0.5; }
.evergreen-card--new { border-color: var(--accent); background: var(--accent-light); }
.evergreen-card-label { font-size: 9px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.evergreen-card-val {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--text); line-height: 1;
}
.evergreen-card--new .evergreen-card-val { color: var(--accent); }
.evergreen-card-unit { font-size: 9px; color: var(--text-muted); margin-top: 3px; }
.evergreen-timeline { position: relative; padding-left: 20px; }
.evergreen-timeline::before {
  content: ''; position: absolute; left: 6px; top: 4px; bottom: 4px;
  width: 1px; background: var(--border);
}
.evergreen-event {
  position: relative; padding: 6px 0 6px 14px;
}
.evergreen-event::before {
  content: ''; position: absolute; left: -16px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border);
}
.evergreen-event--active::before { background: var(--accent); }
.evergreen-event-text { font-size: 10px; color: var(--text-secondary); }
.evergreen-event-text strong { color: var(--text); }
.evergreen-event-time { font-size: 8px; color: var(--text-muted); margin-top: 1px; }

/* ═══ COMPARE TABLE ═══ */
.compare-table {
  width: 100%; border-collapse: separate;
  border-spacing: 0; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table thead th {
  padding: 18px 20px; text-align: left;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--bg-page); border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { width: 38%; }
.compare-table thead th.th-highlight { background: var(--accent-light); color: var(--text); }
.compare-table tbody td {
  padding: 16px 20px; font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-card);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.td-highlight { background: rgba(232,54,109,0.02); color: var(--text); font-weight: 600; }
.compare-table tbody td.td-bad { color: var(--text-dim); }
.td-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.td-check svg { width: 11px; height: 11px; }
.td-x {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border-light); color: var(--text-dim);
  display: inline-flex; align-items: center; justify-content: center;
}
.td-x svg { width: 11px; height: 11px; }

/* ═══ TESTIMONIALS ═══ */
.proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  background: var(--bg-card);
  border-radius: 16px; padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.proof-card:hover {
  border-color: var(--text-dim);
  box-shadow: var(--shadow-md);
}
.proof-card-quote { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; font-style: italic; }
.proof-card-author { display: flex; align-items: center; gap: 10px; }
.proof-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
  background: var(--text-muted);
}
.proof-card-name { font-size: 13px; font-weight: 600; color: var(--text); }
.proof-card-role { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ═══ CTA ═══ */
.cta-section {
  padding: 120px 24px;
  position: relative; overflow: hidden;
  background: var(--bg-page);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,54,109,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section--white {
  background: var(--bg);
}
.cta-section--white::before {
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232,54,109,0.03) 0%, transparent 70%);
}

/* ═══ JOIN CARDS ═══ */
.join-cards {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px; align-items: start;
}
.join-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.join-card:hover {
  border-color: var(--text-dim);
  box-shadow: var(--shadow-md);
}
.join-card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--bg-card);
}
.join-card--featured:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.join-card-badge {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-page); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.join-card-badge--featured {
  background: var(--accent-light2); color: var(--accent);
}
.join-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.join-card-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 20px;
}
.join-card-perks {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.join-card-perk {
  display: flex; align-items: flex-start; gap: 8px;
}
.join-card-perk svg {
  width: 14px; height: 14px; flex-shrink: 0;
  margin-top: 1px; color: var(--green);
}
.join-card-perk span {
  font-size: 12px; color: var(--text-secondary); line-height: 1.4;
}
.join-card--featured .join-card-perk span {
  color: var(--text);
}
.join-card-how {
  padding: 14px;
  background: var(--bg-page);
  border-radius: 10px;
  margin-bottom: 20px;
}
.join-card-how-title {
  font-size: 10px; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.join-card-how-desc {
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}
.join-card-btn {
  display: block; text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 13px 24px; border-radius: 10px;
  background: var(--text); color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 10px;
}
.join-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.join-card-btn--featured {
  background: var(--accent);
}
.join-card-btn--featured:hover {
  box-shadow: 0 8px 30px rgba(232,54,109,0.25);
}
.join-card-note {
  font-size: 11px; color: var(--text-muted);
  text-align: center;
}
.join-card-form {
  display: flex; gap: 8px; margin-bottom: 10px;
}
.join-card-input {
  flex: 1; padding: 12px 14px;
  border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.2s;
}
.join-card-input::placeholder { color: var(--text-dim); }
.join-card-input:focus { border-color: var(--accent); }
.join-card-submit {
  padding: 12px 20px; border-radius: 10px;
  background: var(--text); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 600; border: none; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.join-card-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 24px 36px;
  background: var(--bg);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: var(--text-muted);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: var(--text-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }

/* ═══ RESPONSIVE ═══ */
/* ═══ RESPONSIVE — TABLET ═══ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-title { font-size: clamp(32px, 6vw, 44px); }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 0; }
  .hero-stat { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; width: 100%; }
  .hero-visual { min-height: auto; }
  .hv-photo-frame { max-width: 360px; }
  .section { padding: 80px 20px; }
  .cta-section, .cta-section--white { padding: 80px 20px; }
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .section-header { margin-bottom: 48px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-step, .how-step--reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .how-steps { gap: 64px; }
  .how-step-num { font-size: 48px; }
  .proof-cards { grid-template-columns: 1fr; gap: 16px; }
  .join-cards { grid-template-columns: 1fr; gap: 16px; }
  .join-card--featured { order: -1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* ═══ RESPONSIVE — MOBILE ═══ */
@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 24px 40px; gap: 32px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 20px; text-align: center; }
  .hero-title { font-size: 30px; line-height: 1.12; text-align: center; }
  .hero-subtitle { font-size: 15px; line-height: 1.65; margin-bottom: 16px; text-align: center; }
  .hero-desc { font-size: 13px; margin-bottom: 28px; text-align: center; }
  .hero-stats { display: none; }
  .hero-visual { min-height: auto; margin-bottom: 24px; }
  .hero-actions { gap: 10px; flex-direction: row; align-items: center; justify-content: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: auto !important; }
  .btn-primary, .btn-secondary { font-size: 14px; padding: 13px 24px; border-radius: 10px; }

  /* Hero visual — mobile */
  .hv-photo-frame { max-width: 100%; border-radius: 16px; }
  .hv-storybox { min-width: 240px; height: 50px; border-radius: 14px; }
  .hv-story-title { font-size: 13px; }
  .hv-story-sub { font-size: 10px; }

  /* Sections */
  .section { padding: 60px 24px; }
  .cta-section, .cta-section--white { padding: 60px 24px; }
  .section-eyebrow { font-size: 10px; letter-spacing: 1.5px; margin-bottom: 12px; }
  .section-title { font-size: clamp(22px, 6vw, 30px); margin-bottom: 14px; }
  .section-desc { font-size: 14px; }
  .section-header { margin-bottom: 36px; }

  /* Problem cards */
  .problem-card { padding: 24px 20px; }
  .problem-card-title { font-size: 16px; }
  .problem-card-desc { font-size: 13px; }
  .problem-card-stat { font-size: 24px; }

  /* How it works */
  .how-steps { gap: 48px; }
  .how-step, .how-step--reverse { gap: 24px; }
  .how-step-num { font-size: 40px; margin-bottom: 8px; }
  .how-step-title { font-size: 22px; }
  .how-step-desc { font-size: 13px; }
  .how-feat p { font-size: 12px; }
  .how-visual { padding: 16px; }

  /* Step 3 phone mockups */
  .how-step .how-visual[style*="display:flex"] { 
    min-height: 360px !important;
    padding: 20px 12px !important;
    gap: 10px !important;
  }

  /* Testimonials */
  .proof-card { padding: 22px 18px; }
  .proof-card-quote { font-size: 13px; margin-bottom: 18px; }
  .proof-card-name { font-size: 12px; }
  .proof-card-role { font-size: 10px; }
  .proof-card-avatar { width: 32px; height: 32px; font-size: 11px; }

  /* Join cards */
  .join-cards { gap: 14px; }
  .join-card { padding: 24px 20px; }
  .join-card-title { font-size: 18px; }
  .join-card-desc { font-size: 13px; }
  .join-card-perk span { font-size: 12px; }
  .join-card-how { padding: 12px; }
  .join-card-how-desc { font-size: 11px; }
  .join-card-btn { font-size: 13px; padding: 12px 20px; }
  .join-card-form { flex-direction: column; }
  .join-card-input { font-size: 14px; }

  /* Footer */
  .footer { padding: 48px 24px 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ═══ WAITLIST MODAL ═══ */
.wl-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.wl-modal-backdrop.open { display: flex; }
.wl-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  max-width: 420px;
  width: 92%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  font-family: 'Inter', sans-serif;
}
.wl-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #999; line-height: 1; padding: 0;
}
.wl-modal-close:hover { color: #0A0A0A; }
.wl-modal h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: #0A0A0A;
  margin-bottom: 0.35rem; letter-spacing: -0.02em;
}
.wl-modal p { font-size: 0.875rem; color: #6B6B70; margin-bottom: 1.25rem; line-height: 1.5; }
.wl-modal form { display: flex; flex-direction: column; gap: 0.6rem; }
.wl-modal input {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid #E5E5EA; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  color: #0A0A0A; outline: none; transition: border-color 0.2s; background: #F9F9FA;
}
.wl-modal input::placeholder { color: #aaa; }
.wl-modal input:focus { border-color: #0A0A0A; background: #fff; }
.wl-modal-btn {
  width: 100%; padding: 0.85rem; border-radius: 10px; border: none;
  background: #0A0A0A; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.2s; margin-top: 0.3rem;
}
.wl-modal-btn:hover { opacity: 0.85; }
.wl-modal-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.wl-modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.wl-modal-success.show { display: block; }
.wl-modal-success h4 { font-size: 1.1rem; font-weight: 700; color: #0A0A0A; margin-bottom: 0.4rem; }
.wl-modal-success p { color: #6B6B70; font-size: 0.875rem; }

/* ═══ MOBILE REFLOW (Task 19) ═══ */
@media (max-width: 767px) {
  /* Inline-styled inputs in #creatorSignupForm and .join-card form: 48px / 16px so iOS doesn't zoom */
  #creatorSignupForm input,
  .join-card-input,
  .wl-modal input {
    min-height: 48px;
    font-size: 16px !important;
  }
  /* Primary CTAs full-width, 48px min */
  #creatorSignupForm button[type="submit"],
  .join-card-btn,
  .join-card-submit,
  .wl-modal-btn {
    width: 100%;
    min-height: 48px;
  }
  /* Captcha row: stack canvas + reload + input vertically so they fit a phone */
  #creatorSignupForm > div[style*="display:flex"] {
    flex-wrap: wrap;
  }
  /* Join-card form already flex-column at 600px; ensure inputs are 48px there too */
  .join-card-form { flex-direction: column; }
  /* Footer column gap tightening on narrow phones */
  .footer-links { gap: 20px !important; }
}
