/* Make It Happen Pro — Marketing Site Styles
   Apple-confident, clean, dark-red accent to match the app (#cc0000) */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --red: #cc0000;
  --red-hover: #a30000;
  --ink: #0a0a0a;
  --ink-soft: #333;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --border: #e5e7eb;
  --border-soft: #f1f3f5;
  --bg-soft: #fafafa;
  --bg-card: #f8f9fb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.09);
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }

/* ━━━ NAVIGATION ━━━ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  font-weight: 800; font-size: 17px; letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo-mark {
  height: 40px; width: auto;
  display: block;
}
/* .PRO suffix matches the logo box height and sits flush against it */
.nav-logo-suffix {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 40px;
  color: var(--ink);
  margin-left: 0;
  display: inline-block;
}
.footer-brand .nav-logo-suffix { color: #fff; font-size: 32px; line-height: 32px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color .15s;
}
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ━━━ BUTTONS ━━━ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: all .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 14px rgba(204,0,0,.25);
}
.btn-primary:hover { background: var(--red-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(204,0,0,.33); }
.btn-ghost {
  background: transparent; color: var(--ink-soft);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-xl { font-size: 17px; padding: 16px 32px; }

/* ━━━ CONTAINERS ━━━ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ━━━ HERO ━━━ */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(204,0,0,.06), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(204,0,0,.04), transparent 40%),
    #fff;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(204,0,0,.08); color: var(--red);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  max-width: 900px;
  color: var(--ink);
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 640px; margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust {
  font-size: 13px; color: var(--muted-2);
  display: inline-flex; gap: 6px; align-items: center;
}
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; }

/* ━━━ HERO SCREENSHOT ━━━ */
.hero-shot {
  max-width: 1100px; margin: 60px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1d24;
  position: relative;
  padding: 0;
}
.hero-shot-placeholder {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: #4a5563;
  font-size: 16px; font-weight: 500;
  background:
    linear-gradient(135deg, #1a1d24 0%, #252936 100%);
  border: 1px dashed #3a3f4d;
  position: relative;
}
.hero-shot-placeholder::before {
  content: "📸";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 24px));
  font-size: 36px;
}
.hero-shot-placeholder-txt {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 30px));
  font-size: 13px; color: #6b7280;
  text-align: center;
  width: 80%;
}

/* ━━━ SECTION HEADERS ━━━ */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block; color: var(--red);
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 auto 16px;
  max-width: 720px;
  color: var(--ink);
}
.section-header p {
  font-size: 18px; color: var(--muted);
  max-width: 600px; margin: 0 auto;
}

/* ━━━ TRADES GRID ━━━ */
.trades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.trade-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .2s;
}
.trade-group:hover {
  border-color: rgba(204,0,0,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trade-group h3 {
  font-size: 15px; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 16px;
}
.trade-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.trade-tag {
  font-size: 13px; font-weight: 500;
  padding: 5px 11px; border-radius: 999px;
  background: var(--bg-card); color: var(--ink-soft);
  border: 1px solid var(--border-soft);
}

/* ━━━ FEATURE BLOCKS ━━━ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-text { order: 2; }
.feature-text { max-width: 500px; }
.feature-icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(204,0,0,.1); color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-text h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15; letter-spacing: -0.02em;
  font-weight: 800; margin: 0 0 14px;
  color: var(--ink);
}
.feature-text p {
  font-size: 17px; color: var(--muted);
  margin-bottom: 16px;
}
.feature-text .chip {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: #fef3c7; color: #92400e;
  margin-left: 8px; vertical-align: middle;
}
.feature-shot {
  background: #1a1d24;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280;
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 20px;
  border: 1px dashed #3a3f4d;
  background-image: linear-gradient(135deg, #1a1d24 0%, #252936 100%);
}

/* ━━━ STATS STRIP ━━━ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 32px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  margin: 60px auto;
  max-width: 1100px;
}
.stat { text-align: center; }
.stat-num { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-num .accent { color: var(--red); }
.stat-label { font-size: 13px; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* ━━━ FOUNDER ━━━ */
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.founder-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fafafa, #e5e7eb);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-size: 13px; font-weight: 500;
  border: 1px dashed #d1d5db;
}
.founder-text h3 { font-size: 13px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
.founder-text blockquote {
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.4;
  font-weight: 500; color: var(--ink);
  margin: 0 0 20px; padding: 0;
  letter-spacing: -0.01em;
}
.founder-sig { font-size: 15px; color: var(--muted); }
.founder-sig strong { color: var(--ink); font-weight: 700; }

/* ━━━ PRICING ━━━ */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  margin: 0 auto 50px;
}
.pricing-toggle button {
  padding: 9px 20px; border-radius: 999px;
  border: none; background: transparent; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all .15s;
}
.pricing-toggle button.active {
  background: var(--ink); color: #fff;
}
.pricing-toggle .save-badge {
  background: #dcfce7; color: #166534;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  margin-left: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .2s;
}
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(204,0,0,.02), #fff 50%);
  box-shadow: 0 8px 28px rgba(204,0,0,.1);
}
.plan-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.plan-tagline { font-size: 14px; color: var(--muted); margin-bottom: 22px; min-height: 42px; }
.plan-price { font-size: 52px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.plan-price .period { font-size: 15px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.plan-annual-note { font-size: 12px; color: var(--muted-2); margin-top: 4px; height: 16px; }
.plan .btn { width: 100%; margin: 20px 0; }
.plan-features { list-style: none; padding: 0; margin: 0; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  padding: 8px 0;
  line-height: 1.45;
}
.plan-features li::before {
  content: "✓"; color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.plan-features li.muted { color: var(--muted-2); }
.plan-features li.muted::before { content: "—"; color: var(--muted-2); }

/* ━━━ ADD-ON CARD ━━━ */
.addon {
  max-width: 900px; margin: 60px auto 0;
  background: linear-gradient(135deg, #111 0%, #1f2937 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.addon-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.addon h3 { font-size: 28px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.02em; }
.addon p { color: #9ca3af; font-size: 15px; margin: 0; max-width: 480px; }
.addon-price { text-align: right; }
.addon-price .num { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
.addon-price .unit { color: #9ca3af; font-size: 14px; margin-bottom: 10px; }

/* ━━━ KNIFE LINE ━━━ */
.knife-line {
  max-width: 900px; margin: 80px auto 0;
  padding: 28px 36px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}
.knife-line strong { color: #fff; font-weight: 800; }

/* ━━━ FAQ ━━━ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); transition: transform .2s; }
.faq-item[open] .faq-q::after { content: "–"; }
.faq-a { margin-top: 14px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ━━━ CTA BAND ━━━ */
.cta-band {
  background: linear-gradient(135deg, #0a0a0a 0%, #1f2937 100%);
  color: #fff;
  padding: 80px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 80px auto;
  max-width: 1100px;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; color: #fff; }
.cta-band p { color: #9ca3af; font-size: 18px; margin: 0 auto 28px; max-width: 480px; }

/* ━━━ FOOTER ━━━ */
.footer {
  background: #0a0a0a; color: #9ca3af;
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .nav-logo { color: #fff; font-size: 18px; }
.footer-brand p { font-size: 14px; color: #6b7280; line-height: 1.6; margin: 0; max-width: 340px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #9ca3af; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid #1f2937;
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #6b7280;
}

/* ━━━ FORM ━━━ */
.form-card {
  max-width: 560px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 20px; text-align: center; }
.form-msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; margin-bottom: 18px; }
.form-msg.ok { display: block; background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-msg.err { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ━━━ RESPONSIVE ━━━ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 60px 0 40px; }
  .section { padding: 60px 0; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .feature-block.reverse .feature-text { order: unset; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 220px; margin: 0 auto; }
  .addon { grid-template-columns: 1fr; }
  .addon-price { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
