/* =======================
   FRAMEONE LANDING PAGE
   ======================= */

:root {
  --bg: #FAF8F5;
  --bg-dark: #141413;
  --fg: #141413;
  --fg-muted: #6B6560;
  --accent: #E8873A;
  --accent-dark: #C4722E;
  --card-bg: #FFFFFF;
  --border: #E8E4DF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-logo-text { font-family: var(--font-display); font-size: 17px; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { background: #2a2a28; }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--fg); }
.btn-dark {
  background: var(--accent);
  color: #fff;
}
.btn-dark:hover { background: var(--accent-dark); }
.btn-large { padding: 14px 28px; font-size: 15px; }
.btn-jumbo { padding: 18px 36px; font-size: 16px; border-radius: 10px; }

/* Section commons */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-headline em { font-style: italic; color: var(--accent); }
.section-headline.centered { text-align: center; }
.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* HERO */
.hero {
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-right {
  position: relative;
  height: 380px;
}
.hero-visual {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.hero-card-top { top: 0; right: 40px; width: 200px; }
.hero-card-mid { top: 100px; left: 10px; width: 220px; z-index: 2; }
.hero-card-bot { bottom: 10px; right: 10px; width: 200px; z-index: 3; }
.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.card-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.card-meta {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.card-rate {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.card-rate span { font-size: 14px; font-family: var(--font-body); font-weight: 400; color: var(--fg-muted); }
.card-earnings {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #22c55e;
  line-height: 1;
}
.hero-grid-art {
  position: absolute;
  bottom: 0;
  right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0.12;
}
.grid-block { background: var(--fg); border-radius: 8px; }
.gb-1 { width: 40px; height: 40px; }
.gb-2 { width: 28px; height: 28px; }
.gb-3 { width: 28px; height: 28px; }
.gb-4 { width: 40px; height: 40px; }

/* Hero stats bar */
.hero-stats {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* FOR CREATORS */
.for-creators {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.creators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.creator-card {
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.creator-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 135, 58, 0.08);
}
.creator-icon {
  margin-bottom: 16px;
}
.creator-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.creator-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.creators-cta { text-align: center; }

/* FOR BRANDS */
.for-brands {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.brands-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brands-benefits {
  list-style: none;
  margin-bottom: 40px;
}
.brands-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}
.benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FEF3E8;
  flex-shrink: 0;
}

/* Brand brief cards */
.brands-card-stack {
  position: relative;
  height: 320px;
}
.brand-brief-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 360px;
}
.brand-brief-card-offset {
  top: 40px;
  left: 20px;
  z-index: 2;
}
.brief-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.brief-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.brief-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.brief-budget {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 20px;
}
.brief-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.brief-specs {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.brief-apps { display: flex; gap: 8px; }
.brief-app-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--fg-muted);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--bg);
}
.how-it-works .section-tag { color: var(--accent); }
.how-it-works .section-headline { color: var(--bg); }
.how-it-works .section-headline em { color: var(--accent); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 64px;
}
.step {
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}
.step-body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 40px;
  flex-shrink: 0;
}
.hiw-creator-quote {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.hiw-creator-quote blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--bg);
  line-height: 1.5;
  margin-bottom: 16px;
}
.hiw-creator-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* PRICING */
.pricing {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px;
  background: var(--bg);
}
.pricing-card-brand {
  background: var(--fg);
  color: var(--bg);
}
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-card-brand .pricing-label { color: rgba(255,255,255,0.5); }
.pricing-rate {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-rate-sub {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.pricing-card-brand .pricing-rate-sub { color: rgba(255,255,255,0.5); }
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card-brand .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pricing-card-brand .pricing-features li::before { background: var(--accent); }
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-card-brand .pricing-note { color: rgba(255,255,255,0.45); }

/* TESTIMONIALS */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px;
  background: #fff;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.t-avatar-2 { background: #6366f1; }
.t-avatar-3 { background: #22c55e; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--fg-muted); }
.testimonial-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
}
.tstat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.tstat-period {
  font-size: 12px;
  color: var(--fg-muted);
}
.testimonial-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-headline em { font-style: italic; color: var(--accent); }
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 40px;
}
.closing-cta { margin-bottom: 16px; }
.closing-sub {
  font-size: 13px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 48px 0 32px;
  background: var(--fg);
  color: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { color: var(--bg); margin-bottom: 12px; }
.footer-brand .nav-logo-text { color: var(--bg); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat { flex: none; width: calc(50% - 8px); }
  .stat-divider { display: none; }
  .creators-grid { grid-template-columns: 1fr; }
  .brands-split { grid-template-columns: 1fr; gap: 48px; }
  .brands-right { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

@media (max-width: 480px) {
  .section-inner, .hero-inner { padding: 0 20px; }
  .hero-stats { padding: 24px 20px; }
  .btn-jumbo { padding: 16px 28px; font-size: 15px; }
}