/* Velio — Photography SaaS — Minimal editorial design */
:root {
  --bg: #fafaf8;
  --bg-dark: #111110;
  --bg-warm: #f5f3ef;
  --bg-card: #ffffff;
  --fg: #111110;
  --fg-muted: #6b6b67;
  --fg-light: #a8a89f;
  --accent: #c9a96e;
  --accent-dark: #a8803f;
  --accent-light: #faf3e7;
  --border: #e8e6e1;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ============ SHARED ============ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: #2a2a28;
  transform: translateY(-1px);
}
.btn-primary.btn-lg {
  padding: 15px 36px;
  font-size: 15px;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--fg);
  background: #f0efec;
}
.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--fg);
}

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ HERO ============ */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-footnote {
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-light);
}

/* Mockup */
.hero-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.mockup-header {
  background: #f0ede8;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }
.mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--fg-light);
}
.mockup-body { padding: 20px; }
.mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.mockup-stat {
  background: var(--bg-warm);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}
.mockup-stat.ms-accent {
  background: var(--accent-light);
}
.ms-num {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  line-height: 1.2;
}
.mockup-stat.ms-accent .ms-num { color: var(--accent-dark); }
.ms-label {
  display: block;
  font-size: 10px;
  color: var(--fg-light);
  margin-top: 4px;
}
.mockup-client-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-warm);
  border-radius: 8px;
}
.mci-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mci-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mci-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.mci-detail { font-size: 11px; color: var(--fg-light); }
.mci-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.badge-signed { background: #e6f9f0; color: #1a8a50; }
.badge-pending { background: var(--accent-light); color: var(--accent-dark); }
.badge-gallery { background: #ede6ff; color: #6835d0; }

/* ============ PROBLEM ============ */
.problem {
  background: var(--bg-dark);
  padding: 100px 24px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.problem-text .section-label { color: var(--accent); }
.problem-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.problem-text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.75;
}
.problem-text strong { color: rgba(255,255,255,0.9); }
.tools-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tool-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
}
.tool-pill-vs {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.tool-pill-vs strong {
  color: var(--accent);
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}
.vs-sep { font-size: 18px; color: var(--accent); }
.problem-pains {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.pain-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.pain-item div { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.pain-item strong { color: rgba(255,255,255,0.9); }

/* ============ FEATURES ============ */
.features {
  padding: 100px 24px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.features-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 60px;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.feature-item-highlight {
  background: var(--fg);
  border-color: var(--fg);
  color: #fff;
}
.feature-item-highlight h3 { color: #fff; }
.feature-item-highlight p { color: rgba(255,255,255,0.65); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ============ FRENCH ============ */
.french {
  background: var(--bg-warm);
  padding: 100px 24px;
}
.french-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.french h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.french-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 56px;
  max-width: 520px;
}
.french-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.french-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.fi-icon { font-size: 28px; margin-bottom: 16px; }
.french-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.french-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ============ PRICING ============ */
.pricing {
  padding: 100px 24px;
  text-align: center;
}
.pricing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}
.pricing-teaser {
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
}
.pt-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pt-title {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.pt-price {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
}
.pt-price span { font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.5); }
.pt-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.65; }
.pt-features {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pt-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.pricing-teaser .btn-primary {
  background: var(--accent);
  color: var(--fg);
  font-weight: 700;
}
.pricing-teaser .btn-primary:hover { background: var(--accent-dark); color: #fff; }

/* ============ SOCIAL PROOF ============ */
.social-proof {
  background: var(--bg-warm);
  padding: 80px 24px;
}
.sp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 60px;
  align-items: center;
}
.sp-stat { text-align: center; }
.sp-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.sp-label {
  display: block;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  max-width: 160px;
}
.sp-divider { background: var(--border); height: 100%; min-height: 120px; }
.sp-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.t-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-author strong { display: block; font-size: 13px; }
.t-author span { display: block; font-size: 12px; color: var(--fg-light); }

/* ============ WAITLIST ============ */
.waitlist {
  background: var(--fg);
  padding: 100px 24px;
  text-align: center;
}
.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
}
.waitlist h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.waitlist p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-bottom: 36px;
}
.wl-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.wl-form input[type="email"] {
  flex: 1;
  padding: 13px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.wl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.wl-form input[type="email"]:focus { border-color: var(--accent); }
.wl-form .btn-primary {
  background: var(--accent);
  color: var(--fg);
  font-weight: 700;
  white-space: nowrap;
}
.wl-form .btn-primary:hover { background: var(--accent-dark); color: #fff; }
.wl-note { font-size: 12px; color: rgba(255,255,255,0.3); }
.waitlist-success {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  padding: 20px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-dark);
  padding: 48px 24px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .problem-pains { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px 50px;
    gap: 48px;
  }
  .hero-sub { max-width: 100%; }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .french-grid { grid-template-columns: 1fr; }
  .sp-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-divider { display: none; }
  .sp-stat { text-align: left; }
  .sp-label { max-width: 100%; }
  .wl-form { flex-direction: column; }
  .wl-form input[type="email"] { border-radius: 8px; }
  .wl-form .btn-primary { border-radius: 8px; }
  .mockup-stat-row { grid-template-columns: 1fr 1fr; }
  .pt-features { grid-template-columns: 1fr; }
  .nav-actions .btn-secondary { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .feature-item { padding: 24px; }
  .french-item { padding: 24px; }
  .pain-item { padding: 20px; }
}
