@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=General+Sans:wght@400;500;600&display=swap');

:root {
  /* Warm editorial palette */
  --bg: #FAF7F2;
  --bg-secondary: #F5F0E8;
  --bg-elevated: #FFFFFF;
  --card: #FFFFFF;
  --card-warm: #FDF9F3;
  --border: rgba(45, 35, 25, 0.08);
  --border-strong: rgba(45, 35, 25, 0.15);
  --text: #1A1612;
  --text-secondary: #5C544A;
  --muted: #8A8078;
  --accent: #E07850;
  --accent-hover: #C9653F;
  --accent-light: rgba(224, 120, 80, 0.12);
  --accent-secondary: #D4A574;
  --ink: #2C2520;
  --ink-light: #4A433C;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Paper texture overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 0;
}

/* Decorative gradient orbs */
.gradient {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.gradient-one {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 120, 80, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.gradient-two {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
}

/* Container */
.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.logo-text small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 12px;
}

.lang-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--font-body);
  transition: all 0.2s var(--ease-out);
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.lang-btn.active {
  background: var(--card);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 100px);
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.1s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Live badge style - App Store available */
.hero-badge.live {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.15) 0%, rgba(48, 176, 80, 0.12) 100%);
  color: #2d8a47;
  border: 1px solid rgba(52, 199, 89, 0.25);
}

.hero-badge.live::before {
  background: #34c759;
  box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 24px;
  color: var(--ink);
  animation: fadeSlideUp 0.6s var(--ease-out) 0.2s both;
}

.hero-subtitle {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.3s both;
}

.hero-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.4s both;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-points li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.5s both;
}

.btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease-out);
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(224, 120, 80, 0.35), 0 2px 4px rgba(224, 120, 80, 0.2);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 120, 80, 0.4), 0 4px 8px rgba(224, 120, 80, 0.25);
}

.btn.disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

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

.btn.ghost:hover {
  background: var(--bg-secondary);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* App Store Button */
.btn.app-store-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.app-store-btn:hover {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn.app-store-btn.large {
  padding: 18px 36px;
  font-size: 16px;
}

.app-store-icon {
  flex-shrink: 0;
}

.hero-meta {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  animation: fadeSlideUp 0.6s var(--ease-out) 0.6s both;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.phone {
  width: 300px;
  height: 620px;
  border-radius: 48px;
  padding: 12px;
  background: linear-gradient(145deg, #2C2520 0%, #1A1612 100%);
  position: relative;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}

.phone:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}

.phone::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #1A1612;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E8 100%);
  border-radius: 38px;
  padding: 20px 16px;
  height: calc(100% - 12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
}

.screen-header .pill {
  background: linear-gradient(135deg, #E07850, #D4A574);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.screen-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.screen-card.light {
  background: var(--accent-light);
  border-color: rgba(224, 120, 80, 0.2);
}

.screen-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.screen-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.screen-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 13px;
  padding: 8px 10px;
  background: var(--bg-secondary);
  border-radius: 10px;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.06);
  margin: 12px 0 8px;
  overflow: hidden;
}

.progress-bar {
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: inherit;
  animation: progressGrow 1.5s var(--ease-out) 1s both;
}

@keyframes progressGrow {
  from { width: 0; }
  to { width: 55%; }
}

/* Decorative elements around phone */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ========================================
   PHONE FRAME WITH SCREENSHOTS
======================================== */
.phone-frame {
  width: 300px;
  background: linear-gradient(145deg, #2C2520 0%, #1A1612 100%);
  border-radius: 48px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.15),
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.5s var(--ease-out);
}

.phone-frame:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

.phone-frame .phone-notch {
  width: 100px;
  height: 28px;
  background: #1A1612;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screenshot {
  width: 100%;
  height: auto;
  border-radius: 38px;
  display: block;
}

.phone-frame.small {
  width: 220px;
  border-radius: 36px;
  padding: 8px;
  transform: none;
}

.phone-frame.small:hover {
  transform: translateY(-8px);
}

.phone-frame.small .phone-screenshot {
  border-radius: 30px;
}

.phone-frame.gallery {
  width: 200px;
  border-radius: 32px;
  padding: 6px;
  transform: none;
}

.phone-frame.gallery:hover {
  transform: translateY(-8px) scale(1.02);
}

.phone-frame.gallery .phone-screenshot {
  border-radius: 28px;
}

/* ========================================
   SECTION STYLES
======================================== */
.overline {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.section-head {
  margin: 20px 0 48px;
  max-width: 640px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
  padding: 80px 0 100px;
  display: grid;
  gap: 48px;
}

.stats > div:first-child {
  max-width: 600px;
}

.stats h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}

.stats > div:first-child > p {
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.stat-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.stat-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--border-strong);
}

.stat-grid article:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-light);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.stat-grid h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.stat-grid p {
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

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

.feature-grid article {
  background: var(--card);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.feature-grid .icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s var(--ease-spring);
}

.feature-grid article:hover .icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-grid h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.feature-grid p {
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.7;
}

/* ========================================
   WORKFLOW SECTION
======================================== */
.workflow {
  padding: 100px 0;
  background: var(--bg);
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workflow-step.reverse {
  direction: rtl;
}

.workflow-step.reverse > * {
  direction: ltr;
}

.workflow-step-content {
  max-width: 480px;
}

.workflow-step-visual {
  display: flex;
  justify-content: center;
}

.step {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(224, 120, 80, 0.35);
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.workflow-step p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========================================
   APP SHOWCASE / GALLERY SECTION
======================================== */
.app-showcase {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.screenshot-gallery {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -5vw;
  padding-left: 5vw;
  padding-right: 5vw;
}

.screenshot-gallery::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.screenshot-caption {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

/* ========================================
   PERSONAS SECTION
======================================== */
.personas {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.persona-grid article {
  background: var(--card);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.persona-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.persona-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.persona-grid h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.pill {
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.persona-grid > article > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.persona-grid ul {
  margin-top: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.persona-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.persona-grid li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

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

.testimonial-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.testimonial-grid article::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.testimonial-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.author {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ========================================
   DOWNLOAD / CTA SECTION
======================================== */
.download {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.download > .container > div {
  max-width: 640px;
  margin: 0 auto;
}

.download h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}

.download > .container > div > p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.download-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* QR Code */
.qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code-box {
  background: white;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.qr-code-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.qr-code-img {
  display: block;
  border-radius: 8px;
}

.qr-code-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  max-width: 480px;
  text-align: left;
}

.waitlist p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.waitlist strong {
  color: var(--accent);
  font-weight: 600;
}

.download-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.site-footer > .container > p:nth-child(2) {
  margin-top: 8px;
  color: var(--muted);
}

.footer-links {
  margin: 28px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}

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

.footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ========================================
   DOCUMENTATION PAGES
======================================== */
.doc-page {
  padding: 120px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.doc-header {
  max-width: 680px;
}

.doc-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.doc-header p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.doc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
}

.doc-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.doc-card > p {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.doc-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-list li {
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.doc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.faq-item {
  padding-top: 24px;
}

.faq-item:first-child {
  padding-top: 20px;
}

.faq-item + .faq-item {
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.doc-updated {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 80px 0 100px;
    min-height: auto;
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-points {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-frame {
    transform: none;
  }

  .phone-frame:hover {
    transform: translateY(-8px);
  }

  .stat-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .workflow-step.reverse {
    direction: ltr;
  }

  .workflow-step-content {
    max-width: 100%;
    order: 1;
  }

  .workflow-step-visual {
    order: 2;
  }

  .workflow-steps {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .screenshot-gallery {
    gap: 20px;
  }

  .phone-frame.gallery {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .qr-code-wrapper {
    display: none;
  }

  .download-actions {
    gap: 24px;
  }
}

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .phone-frame {
    width: 260px;
  }

  .phone-frame.small {
    width: 200px;
  }

  .phone-frame.gallery {
    width: 160px;
  }

  .stats,
  .features,
  .workflow,
  .personas,
  .testimonials,
  .app-showcase {
    padding: 70px 0;
  }

  .download {
    padding: 80px 0;
  }

  .stat-grid article,
  .feature-grid article,
  .persona-grid article,
  .testimonial-grid article {
    padding: 24px;
  }

  .waitlist {
    padding: 20px;
  }

  .language-switcher {
    gap: 2px;
    padding: 3px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .workflow-steps {
    gap: 50px;
  }

  .step {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .workflow-step h3 {
    font-size: 1.25rem;
  }

  .screenshot-gallery {
    gap: 16px;
  }

  .screenshot-caption {
    font-size: 0.8rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
