:root {
  --black: #111111;
  --white: #ffffff;
  --offwhite: #f5f5f1;
  --grey: #6b6b6b;
  --light-grey: #deded9;
  --lime: #78FFA7;
  --brand-dark: #2b3136;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Google Sans", Arial, Helvetica, sans-serif;
  background: var(--offwhite);
  color: var(--black);
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

section {
  padding: 95px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: clamp(44px, 6vw, 70px);
  line-height: .92;
  letter-spacing: -4px;
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 18px;
  color: var(--grey);
}

.eyebrow {
  display: inline-block;
  background: var(--lime);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.button {
  display: inline-block;
  padding: 18px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 7px;
  font-size: 17px;
  font-weight: 900;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  opacity: .9;
}

.button.lime {
  background: var(--lime);
  color: var(--black);
}

.button-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.small-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--grey);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 10px 20px;

  background: rgba(43, 49, 54, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:not(.nav-cta) {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a[aria-current="page"] {
  color: var(--lime);
}

.nav-cta {
  background: var(--lime);
  color: var(--brand-dark);
  padding: 11px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 900;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  background: #91ffb6;
  box-shadow: 0 8px 24px rgba(120, 255, 167, 0.22);
}

/* HERO */
.hero {
  padding: 150px 0 90px;
  text-align: center;
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto 30px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: .86;
  letter-spacing: -7px;
  font-weight: 900;
}

.hero h1 span {
  color: #777;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 21px;
  color: #444;
}

.hero-price {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -5px;
  margin-bottom: 25px;
}

.hero-price span {
  font-size: 18px;
  color: var(--grey);
  letter-spacing: 0;
  font-weight: 600;
}

/* STRIP */
.strip {
  background: var(--black);
  color: var(--white);
  padding: 20px 0;
}

.strip-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 10px;
  padding: 30px;
}

.feature-number {
  font-size: 12px;
  color: #999;
  font-weight: 900;
  margin-bottom: 35px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature p {
  color: var(--grey);
}

/* PORTFOLIO */
.portfolio {
  background: var(--white);
}

.portfolio-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

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

.projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  overflow: hidden;
  transition: .25s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.portfolio-card img,
.project-placeholder {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-bottom: 1px solid var(--light-grey);
}

.project-placeholder {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.portfolio-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-category {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 800;
  margin-bottom: 8px;
}

.portfolio-info h3 {
  font-size: 30px;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.portfolio-info p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 22px;
}

.portfolio-link {
  font-size: 14px;
  font-weight: 900;
  margin-top: auto;
}

.disabled-link {
  color: #aaa;
  pointer-events: none;
}

.portfolio-bottom {
  text-align: center;
  margin-top: 60px;
}

.portfolio-bottom p {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.portfolio-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* PROJECTS PAGE */
.projects-hero {
  padding: 150px 0 55px;
}

.projects-hero h1 {
  font-size: clamp(60px, 10vw, 120px);
  line-height: .84;
  letter-spacing: -7px;
  font-weight: 900;
  max-width: 1000px;
}

.projects-hero h1 span {
  color: #777;
}

.projects-hero p {
  color: var(--grey);
  font-size: 20px;
  max-width: 620px;
  margin-top: 28px;
}

.projects-section {
  padding-top: 30px;
}

/* OFFER */
.offer {
  background: var(--lime);
  text-align: center;
}

.offer h2 {
  font-size: clamp(50px, 7vw, 90px);
  line-height: .88;
  letter-spacing: -5px;
  margin-bottom: 20px;
}

.offer > .container > p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 19px;
}

.offer-card {
  max-width: 520px;
  margin: 0 auto 35px;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 8px 8px 0 var(--black);
}

.offer-card h3 {
  margin-bottom: 20px;
  font-size: 21px;
}

.offer-card ul {
  list-style: none;
}

.offer-card li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.offer-card li:last-child {
  border-bottom: none;
}

.not-included {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 13px;
}

/* AUDIENCE */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 9px;
  padding: 25px;
  font-size: 18px;
  font-weight: 800;
}

/* PROCESS */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.process-card {
  border-top: 3px solid var(--black);
  padding-top: 20px;
}

.process-card .number {
  font-size: 12px;
  font-weight: 900;
  color: var(--grey);
}

.process-card h3 {
  font-size: 28px;
  margin: 10px 0;
}

.process-card p {
  color: var(--grey);
}

/* FAQ */
.faq {
  max-width: 800px;
}

.faq-item {
  padding: 25px 0;
  border-top: 1px solid var(--light-grey);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--grey);
}

/* FINAL */
.final {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
}

.final h2 {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: clamp(55px, 8vw, 100px);
  line-height: .86;
  letter-spacing: -6px;
}

.final p {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 35px;
}

/* FOOTER */
footer {
  background: var(--black);
  color: #777;
  border-top: 1px solid #333;
  padding: 30px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

footer a {
  color: #aaa;
}

/* Existing onboarding support */
.onboarding-page { background: var(--offwhite); }
.onboarding-header { padding: 25px 0; border-bottom: 1px solid var(--light-grey); }
.onboarding-container { max-width: 850px; }
.onboarding-hero { padding: 70px 0 45px; }
.onboarding-hero h1 { font-size: clamp(48px, 7vw, 78px); line-height: .88; letter-spacing: -5px; margin-bottom: 25px; }
.onboarding-hero > p { max-width: 650px; color: var(--grey); font-size: 18px; }
.onboarding-note { display: inline-block; margin-top: 25px; padding: 14px 18px; background: var(--lime); border-radius: 7px; font-size: 14px; }
.form-section { background: var(--white); border: 1px solid var(--light-grey); border-radius: 12px; padding: 35px; margin-bottom: 20px; }
.form-section-header { display: flex; gap: 20px; margin-bottom: 32px; }
.form-section-header > span { font-size: 12px; font-weight: 900; color: #999; }
.form-section-header h2 { font-size: 28px; letter-spacing: -1px; margin-bottom: 5px; }
.form-section-header p { color: var(--grey); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { margin-bottom: 22px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.field label span { color: #888; }
input, textarea, select { width: 100%; border: 1px solid var(--light-grey); border-radius: 7px; padding: 14px; font-family: inherit; font-size: 15px; background: #fff; color: var(--black); outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--black); }
textarea { min-height: 130px; resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--light-grey); border-radius: 7px; cursor: pointer; }
.checkbox input { width: auto; }
.checkbox span { font-weight: 600; }
.upload { border: 2px dashed var(--light-grey); border-radius: 8px; padding: 25px; text-align: center; }
.upload input { border: none; padding: 0; }
.upload p { color: var(--grey); font-size: 13px; margin-top: 7px; }
.submit-area { background: var(--lime); padding: 40px; border-radius: 12px; text-align: center; margin-bottom: 80px; }
.submit-area h2 { font-size: 34px; letter-spacing: -1px; margin-bottom: 10px; }
.submit-area > p { max-width: 600px; margin: 0 auto 25px; color: #444; }
.submit-area button { border: none; background: var(--black); color: var(--white); padding: 17px 32px; border-radius: 7px; font-family: inherit; font-size: 17px; font-weight: 900; cursor: pointer; }
.submit-area button:hover { opacity: .9; }
.fine-print { margin-top: 15px; font-size: 12px; color: #666; }

@media (max-width: 1050px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .site-nav {
    top: 12px;
  }

  .nav-inner {
    width: calc(100% - 24px);
    padding: 8px 8px 8px 16px;
  }

  .logo {
    font-size: 19px;
    letter-spacing: -1.2px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-cta {
    padding: 10px 15px;
    font-size: 12px;
  }

  section { padding: 70px 0; }
  .hero { padding: 120px 0 70px; }
  .hero h1, .projects-hero h1 { letter-spacing: -4px; }
  .hero-price { font-size: 58px; }
  .features, .portfolio-grid, .projects-grid, .process { grid-template-columns: 1fr; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .offer-card { padding: 28px; box-shadow: 5px 5px 0 var(--black); }
  .final h2 { letter-spacing: -3px; }
  .footer-inner { flex-direction: column; }
  .nav-links a:not(.nav-cta) { display: none; }
  .portfolio-bottom { margin-top: 45px; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .form-section { padding: 25px; }
  .onboarding-hero { padding-top: 50px; }
  .projects-hero { padding: 120px 0 55px; }
}




/* ========================================
   ONENINETYNINE BRAND ASSETS + ACCENT
======================================== */

::selection {
  background: var(--lime);
  color: var(--brand-dark);
}

.button.lime {
  background: var(--lime);
  color: var(--brand-dark);
}

.button.lime:hover {
  opacity: 1;
  background: #91ffb6;
  box-shadow: 0 10px 28px rgba(120, 255, 167, 0.20);
}

.offer {
  background: var(--lime);
}

.onboarding-note,
.submit-area {
  background: var(--lime);
}

.form-section input:focus,
.form-section textarea:focus,
.form-section select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(120, 255, 167, 0.15);
}

.onboarding-header .logo img {
  width: 210px;
}

/* Give the standalone onboarding header enough contrast for the green wordmark */
.onboarding-header {
  background: var(--brand-dark);
  border-bottom: 0;
}

@media (max-width: 750px) {
  .logo img {
    width: 155px;
  }

  .nav-inner {
    padding-left: 16px;
  }

  .onboarding-header .logo img {
    width: 170px;
  }
}

@media (max-width: 520px) {
  .logo img {
    width: 138px;
  }
}
