/* ============================================
   CashMaker — one page site
   ============================================ */

:root {
  --ink: #0b1f1a;
  --ink-soft: #16312a;
  --paper: #f7f5ef;
  --paper-dim: #ece8dd;
  --green: #1f7a5c;
  --green-bright: #36c98a;
  --green-deep: #0f3d30;
  --gold: #e8b86d;
  --line: rgba(11, 31, 26, 0.1);
  --line-light: rgba(247, 245, 239, 0.16);
  --shadow: 0 20px 60px -25px rgba(11, 31, 26, 0.45);
  --radius: 14px;
  --maxw: 1140px;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-bright);
  color: var(--green-deep);
  box-shadow: 0 14px 30px -12px rgba(54, 201, 138, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(54, 201, 138, 0.7);
}

.btn-ghost {
  border-color: var(--line-light);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--paper);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 31, 26, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 31, 26, 0.85);
  border-color: var(--line-light);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--green-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a:not(.btn) {
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a:not(.btn):hover {
  opacity: 1;
  color: var(--green-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%),
    url("../images/gallery/slide_1.jpg");
  background-size: cover;
  background-position: center;
  color: var(--paper);
  padding: 200px 0 140px;
  overflow: hidden;
}


.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-bright);
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 26px;
}

.hero h1 .accent {
  color: var(--green-bright);
}

.hero-lede {
  font-size: 1.2rem;
  color: rgba(247, 245, 239, 0.75);
  max-width: 620px;
  margin-bottom: 18px;
}

.hero-audience {
  font-size: 1.02rem;
  color: rgba(247, 245, 239, 0.6);
  max-width: 640px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid var(--line-light);
  padding-top: 36px;
}

.hero-callout {
  flex: 1 1 220px;
}

.hero-callout .label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 6px;
  font-weight: 700;
}

.hero-callout p {
  font-size: 0.98rem;
  color: rgba(247, 245, 239, 0.7);
}

/* ---------- Pivot / Stop Managing ---------- */

.pivot {
  background: var(--paper);
}

.pivot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.pivot-copy h2 {
  margin-bottom: 24px;
}

.pivot-copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.pivot-copy .lead {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

.pivot-copy .reframe {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--green-bright);
  background: var(--paper-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pivot-copy .reframe span {
  font-size: 1.08rem;
}

.pivot-copy .reframe .past {
  color: var(--ink-soft);
  opacity: 0.6;
  text-decoration: line-through;
  text-decoration-color: rgba(31, 122, 92, 0.4);
}

.pivot-copy .reframe .future {
  color: var(--green);
  font-weight: 700;
  font-size: 1.2rem;
}

.pivot-list {
  list-style: none;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.pivot-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 500;
}

.pivot-list li:last-child {
  border-bottom: none;
}

.pivot-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(54, 201, 138, 0.16);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.tagline-strip {
  text-align: center;
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.tagline-strip .big {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--ink);
}

.tagline-strip .big .muted {
  opacity: 0.35;
}

.tagline-strip .big .pop {
  color: var(--green);
}

/* ---------- Features ---------- */

.features {
  background: var(--paper-dim);
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 44px;
  height: 100%;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 122, 92, 0.25);
}

.feature-icon {
  font-size: 2.1rem;
  margin-bottom: 22px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--paper-dim);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.feature-card .feature-kicker {
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-card ul {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.feature-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green-bright);
}

.feature-card .result {
  margin-top: 22px;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}

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

.features-grid .feature-card.span-2 {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid .feature-card.span-2 {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-card.span-2 {
    grid-column: span 1;
  }
}

/* ---------- Why We're Building ---------- */

.why {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(54, 201, 138, 0.14), transparent 45%);
  pointer-events: none;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why .section-head h2,
.why .section-head .eyebrow {
  color: var(--paper);
}

.why .section-head .eyebrow {
  color: var(--green-bright);
}

.why .section-head p {
  color: rgba(247, 245, 239, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.why-card {
  background: rgba(247, 245, 239, 0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-card .num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--green-bright);
  flex-shrink: 0;
}

.why-statement {
  text-align: center;
  max-width: 760px;
  margin: 64px auto 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.5;
  color: var(--paper);
}

@media (max-width: 680px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Friendware CTA ---------- */

.friendware {
  background: linear-gradient(135deg, var(--green-deep), var(--green) 120%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.friendware::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(247, 245, 239, 0.07);
}

.friendware .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.friendware .eyebrow {
  color: var(--gold);
}

.friendware h2 {
  color: var(--paper);
}

.friendware p {
  font-size: 1.1rem;
  color: rgba(247, 245, 239, 0.85);
  margin-bottom: 36px;
}

.friendware .btn-primary {
  background: var(--paper);
  color: var(--green-deep);
  box-shadow: 0 14px 30px -12px rgba(11, 31, 26, 0.45);
}

.friendware .btn-primary:hover {
  background: var(--gold);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(247, 245, 239, 0.6);
  padding: 56px 0 36px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--paper);
}

.footer-brand span {
  color: var(--green-bright);
}

.footer-powered {
  text-align: right;
}

.footer-powered .by {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 6px;
}

.footer-powered a {
  font-weight: 600;
  color: var(--paper);
}

.footer-powered a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  section {
    padding: 80px 0;
  }

  .pivot-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--line-light);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
    z-index: 110;
  }

  .hero {
    padding: 150px 0 100px;
  }

  .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .feature-card {
    padding: 32px 26px;
  }

  .footer-grid,
  .footer-powered {
    text-align: left;
  }
}
