/* ========================================
   VAREFY — styles.css
   ======================================== */

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

:root {
  --bg:        #080c08;
  --bg-2:      #0e120e;
  --bg-3:      #131a13;
  --border:    rgba(255,255,255,0.07);
  --accent:    #52c41a;
  --accent-2:  #73d13d;
  --accent-glow: rgba(82,196,26,0.22);
  --brand-lime: #a8e63a;
  --text:      #f0f5f0;
  --text-muted: #8899aa;
  --text-dim:  #4a5a4a;
  --success:   #52c41a;
  --radius:    12px;
  --radius-lg: 20px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ========================================
   NAV
   ======================================== */

.switcher-bar {
  background: rgba(82, 196, 26, 0.08);
  border-bottom: 1px solid rgba(82, 196, 26, 0.15);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-dim);
}

.switcher-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.switcher-bar a:hover {
  text-decoration: underline;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-img--sm {
  height: 28px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--brand-lime) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-switch {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-switch:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 17px;
}

/* ========================================
   SECTION COMMON
   ======================================== */

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.accent {
  background: linear-gradient(135deg, var(--accent) 0%, #73d13d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  padding: 196px 24px 100px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(82,196,26,0.10);
  border: 1px solid rgba(82,196,26,0.28);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-slogan {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-video {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(82,196,26,0.25);
  box-shadow: 0 0 60px rgba(82,196,26,0.12), 0 24px 48px rgba(0,0,0,0.4);
}

.hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how .section-title,
.how .section-label {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.step:hover {
  border-color: rgba(82,196,26,0.28);
  transform: translateY(-4px);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::before {
  opacity: 1;
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ========================================
   WHY CONTRACTORS
   ======================================== */

.why {
  padding: 100px 0;
}

.why .section-title {
  margin-bottom: 48px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.benefit {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.benefit:hover {
  border-color: rgba(82,196,26,0.22);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: 100px 0;
  background: linear-gradient(160deg, rgba(82,196,26,0.06) 0%, var(--bg) 50%);
  border-top: 1px solid rgba(82,196,26,0.18);
  border-bottom: 1px solid rgba(82,196,26,0.18);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(82,196,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-intro {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.services-right-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.service-category {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.service-category:hover {
  border-color: rgba(82,196,26,0.22);
}

.service-cat-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.service-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}


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

@media (max-width: 600px) {
  .services-right-col {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TEXAS PILOT
   ======================================== */

.pilot {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pilot-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.pilot-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pilot-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pilot-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
}

.pilot-points li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pilot-map {
  flex-shrink: 0;
}

/* Boss Tier block */
.boss-tier {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(82,196,26,0.07) 0%, rgba(115,209,61,0.07) 100%);
  border: 1px solid rgba(82,196,26,0.28);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.boss-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.boss-badge-label {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.boss-value {
  background: linear-gradient(135deg, var(--accent) 0%, #73d13d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.boss-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.boss-perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.boss-perks li {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-card {
  background: var(--bg-3);
  border: 1px solid rgba(82,196,26,0.28);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(82,196,26,0.07);
}

.map-state {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--accent) 0%, #73d13d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.map-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.map-stat {
  background: rgba(82,196,26,0.10);
  border: 1px solid rgba(82,196,26,0.20);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
}

/* ========================================
   COMMITMENT FORM
   ======================================== */

.commit {
  padding: 100px 0;
}

.commit .container {
  max-width: 640px;
}

.commit-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.commit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 0.15s, background 0.15s;
}

.checkbox-item:hover {
  border-color: var(--accent);
  background: rgba(82, 196, 26, 0.06);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: rgba(82, 196, 26, 0.1);
  color: var(--accent);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238888aa' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(82,196,26,0.50);
  box-shadow: 0 0 0 3px rgba(82,196,26,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Founding Promise Block */
.founding-promise {
  background: rgba(82,196,26,0.07);
  border: 1px solid rgba(82,196,26,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.founding-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.founding-sub {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}

.founding-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.founding-perks li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.founding-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.form-disclaimer {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin-top: 4px;
}

.job-intent-block {
  background: rgba(82,196,26,0.06);
  border: 1px solid rgba(82,196,26,0.20);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 0.5rem;
}

.job-intent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.job-intent-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0 0 1.25rem 0;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.job-intent-nudge {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0.75rem 0 0 0;
  font-weight: 500;
}

.form-urgency {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 600;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-2);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-lg);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--success);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ========================================
   TRACTION
   ======================================== */

.traction {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.traction .section-title {
  margin-bottom: 48px;
}

.traction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.traction-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.traction-card:hover {
  border-color: rgba(82,196,26,0.28);
  transform: translateY(-4px);
}

.traction-number {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1.1;
}

.traction-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.investor-note {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.investor-note p {
  font-size: 15px;
  color: var(--text-muted);
}

.investor-note a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.investor-note a:hover {
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 80px;
  }

  .hero-title {
    letter-spacing: -2px;
  }

  .hero-proof {
    padding: 20px;
    gap: 0;
  }

  .proof-stat {
    padding: 8px 20px;
  }

  .proof-divider {
    height: 30px;
  }

  .stat-number {
    font-size: 22px;
  }

  .pilot-inner {
    grid-template-columns: 1fr;
  }

  .pilot-map {
    display: flex;
    justify-content: center;
  }

  .boss-perks {
    grid-template-columns: 1fr;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .steps,
  .benefits,
  .traction-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-proof {
    flex-direction: column;
    gap: 12px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }
}
