@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&family=Inter:wght@400;500;600&display=swap');
.vet-landing * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.vet-landing {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 50%, #f0f7f2 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a2e23;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
.vet-bg-pattern {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 230, 118, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(0, 200, 83, 0.03) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.vet-grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}
.vet-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 100px;
  position: relative;
  z-index: 1;
}
.vet-hero-content {
  flex: 1;
  max-width: 620px;
}
.vet-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05));
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #00a344;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.vet-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00c853;
  border-radius: 50%;
  animation: vet-pulse 2s infinite;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}
@keyframes vet-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.vet-landing h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #0d2818;
}
.vet-h1-gradient {
  background: linear-gradient(135deg, #1a3d2b 0%, #2d5a3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vet-h1-accent {
  background: linear-gradient(135deg, #00c853 0%, #00a344 50%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.vet-landing h1 span.vet-h1-sub {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #6b7a74;
  -webkit-text-fill-color: #6b7a74;
  margin-top: 16px;
  letter-spacing: 0;
}
.vet-hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a5652;
  margin-bottom: 36px;
  font-family: 'Inter', sans-serif;
}
.vet-hero-description strong {
  color: #00a344;
  font-weight: 600;
}
.vet-waitlist-form {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.vet-waitlist-form input {
  flex: 1;
  padding: 18px 24px;
  background: #ffffff;
  border: 2px solid #e4e9e7;
  border-radius: 14px;
  color: #1a2e23;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.vet-waitlist-form input:focus {
  outline: none;
  border-color: #00c853;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
}
.vet-waitlist-form input::placeholder {
  color: #9ca8a3;
}
.vet-btn-primary {
  padding: 18px 36px;
  background: linear-gradient(135deg, #00c853, #00a344);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}
.vet-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.vet-btn-primary:hover::before {
  left: 100%;
}
.vet-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}
.vet-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.vet-success-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0, 200, 83, 0.08);
  border: 2px solid rgba(0, 200, 83, 0.3);
  padding: 18px 24px;
  border-radius: 14px;
  color: #00a344;
  animation: vet-slide-in 0.5s ease-out;
  margin-bottom: 28px;
  font-weight: 500;
}
.vet-success-message.show {
  display: flex;
}
.vet-error-message {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(244, 67, 54, 0.08);
  border: 2px solid rgba(244, 67, 54, 0.3);
  padding: 18px 24px;
  border-radius: 14px;
  color: #d32f2f;
  animation: vet-slide-in 0.5s ease-out;
  margin-bottom: 28px;
  font-weight: 500;
}
.vet-error-message.show {
  display: flex;
}
@keyframes vet-slide-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.vet-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #6b7a74;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}
.vet-trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.05);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 200, 83, 0.1);
}
.vet-hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.vet-dashboard-container {
  position: relative;
  width: 520px;
}
.vet-dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.vet-gauges-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 200, 83, 0.15);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}
.vet-gauges-container::before {
  content: 'LIVE EMISSION MONITOR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00c853, #00a344);
  padding: 6px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: #ffffff;
  letter-spacing: 2px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}
.vet-gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(145deg, #f8faf9, #ffffff);
  border-radius: 16px;
  border: 1px solid #e4e9e7;
  transition: all 0.3s;
}
.vet-gauge-container:hover {
  background: linear-gradient(145deg, #f0f7f2, #ffffff);
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.1);
}
.vet-gauge-svg { width: 120px; height: 95px; }
.vet-gauge-value { font-family: 'Space Mono', monospace; font-size: 20px; font-weight: 700; fill: #0d2818; }
.vet-gauge-unit { font-size: 9px; font-family: 'Space Mono', monospace; fill: #6b7a74; }
.vet-gauge-label { font-size: 0.8rem; color: #4a5652; font-weight: 600; font-family: 'Inter', sans-serif; }
.vet-gauge-arc { transition: stroke-dashoffset 2s ease-out; }
.vet-gauge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #00a344;
  font-family: 'Space Mono', monospace;
  background: rgba(0, 200, 83, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}
.vet-gauge-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00c853;
  border-radius: 50%;
  animation: vet-pulse 1.5s infinite;
}
.vet-float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0, 200, 83, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  animation: vet-float 4s ease-in-out infinite;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.vet-float-card-1 { top: -10px; right: -20px; animation-delay: 0s; }
.vet-float-card-2 { bottom: 30px; left: -30px; animation-delay: 1s; }
.vet-float-card-3 { top: 45%; right: -40px; animation-delay: 2s; }
@keyframes vet-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.vet-float-card-icon { font-size: 1.4rem; margin-bottom: 6px; }
.vet-float-card-value { font-family: 'Space Mono', monospace; font-size: 1.1rem; font-weight: 700; color: #00a344; }
.vet-float-card-label { font-size: 0.7rem; color: #6b7a74; font-family: 'Inter', sans-serif; }
.vet-process-section {
  padding: 120px 60px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 200, 83, 0.03), transparent);
}
.vet-process-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.vet-section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #00a344;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 600;
}
.vet-section-tag::before, .vet-section-tag::after {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c853);
}
.vet-section-tag::after { background: linear-gradient(90deg, #00c853, transparent); }
.vet-landing h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: #0d2818; letter-spacing: -1px; }
.vet-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.vet-process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}
.vet-process-card {
  text-align: center;
  position: relative;
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid #e4e9e7;
  transition: all 0.3s;
}
.vet-process-card:hover { border-color: rgba(0, 200, 83, 0.3); box-shadow: 0 15px 40px rgba(0, 200, 83, 0.1); transform: translateY(-5px); }
.vet-process-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #00c853, #00a344);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-size: 1.2rem; font-weight: 700; color: #ffffff;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}
.vet-process-icon { font-size: 2.2rem; margin-bottom: 14px; }
.vet-process-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #0d2818; }
.vet-process-card p { color: #6b7a74; font-size: 0.9rem; line-height: 1.6; font-family: 'Inter', sans-serif; }
.vet-qr-section {
  padding: 120px 60px;
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-top: 1px solid #e4e9e7;
  border-bottom: 1px solid #e4e9e7;
}
.vet-qr-content { flex: 1; }
.vet-qr-description { font-size: 1.1rem; line-height: 1.85; color: #4a5652; margin-bottom: 36px; font-family: 'Inter', sans-serif; }
.vet-qr-features { display: flex; flex-direction: column; gap: 16px; }
.vet-qr-feature {
  display: flex; align-items: center; gap: 18px; padding: 20px 24px;
  background: linear-gradient(135deg, #f8faf9, #ffffff);
  border-radius: 16px; border: 1px solid #e4e9e7; border-left: 4px solid #00c853;
  transition: all 0.3s;
}
.vet-qr-feature:hover { background: linear-gradient(135deg, #f0f7f2, #ffffff); transform: translateX(8px); box-shadow: 0 8px 25px rgba(0, 200, 83, 0.08); }
.vet-qr-feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.vet-qr-feature strong { display: block; margin-bottom: 4px; font-size: 1rem; color: #0d2818; }
.vet-qr-feature p { color: #6b7a74; margin: 0; font-size: 0.9rem; font-family: 'Inter', sans-serif; }
.vet-qr-visual-container { flex: 1; display: flex; justify-content: center; }
.vet-qr-visual { position: relative; padding: 50px; }
.vet-qr-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 280px; height: 280px; background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%); border-radius: 50%; }
.vet-qr-scanner { width: 220px; height: 220px; background: #ffffff; border-radius: 24px; border: 2px solid rgba(0, 200, 83, 0.2); padding: 25px; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.vet-qr-scanner::before, .vet-qr-scanner::after { content: ''; position: absolute; width: 35px; height: 35px; border: 3px solid #00c853; }
.vet-qr-scanner::before { top: 12px; left: 12px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.vet-qr-scanner::after { bottom: 12px; right: 12px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }
.vet-qr-code { display: grid; grid-template-columns: repeat(8, 1fr); gap: 3px; width: 100%; height: 100%; }
.vet-qr-cell { border-radius: 2px; animation: vet-qr-fade 0.5s ease-out forwards; opacity: 0; }
@keyframes vet-qr-fade { to { opacity: 1; } }
.vet-scan-line { position: absolute; left: 25px; right: 25px; height: 3px; background: linear-gradient(90deg, transparent, #00c853, transparent); box-shadow: 0 0 20px rgba(0, 200, 83, 0.5); animation: vet-scan 2.5s linear infinite; border-radius: 2px; }
@keyframes vet-scan { 0%, 100% { top: 25px; } 50% { top: calc(100% - 28px); } }
.vet-qr-badge { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #00c853, #00a344); color: #ffffff; padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; animation: vet-bounce 2.5s infinite; box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4); font-family: 'Inter', sans-serif; }
.vet-qr-badge svg { width: 18px; height: 18px; }
@keyframes vet-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }
.vet-features-section { padding: 120px 60px; position: relative; z-index: 1; }
.vet-features-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.vet-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.vet-feature-card { background: #ffffff; border: 1px solid #e4e9e7; border-radius: 20px; padding: 36px 28px; transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
.vet-feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #00c853, #00a344, #00e676); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
.vet-feature-card:hover::before { transform: scaleX(1); }
.vet-feature-card:hover { border-color: rgba(0, 200, 83, 0.3); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 200, 83, 0.12); }
.vet-feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.vet-feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: #0d2818; }
.vet-feature-card p { color: #6b7a74; line-height: 1.7; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.vet-stats-section { padding: 80px 60px; background: linear-gradient(135deg, #0d2818 0%, #1a3d2b 100%); position: relative; z-index: 1; }
.vet-stats-grid { display: flex; justify-content: center; gap: 80px; max-width: 1100px; margin: 0 auto; }
.vet-stat-item { text-align: center; padding: 20px; }
.vet-stat-value { font-family: 'Space Mono', monospace; font-size: 3.5rem; font-weight: 700; color: #00e676; display: block; line-height: 1; text-shadow: 0 0 40px rgba(0, 230, 118, 0.3); }
.vet-stat-label { color: rgba(255,255,255,0.7); font-size: 1rem; margin-top: 12px; font-family: 'Inter', sans-serif; }
.vet-cta-section { padding: 120px 60px; text-align: center; position: relative; z-index: 1; }
.vet-cta-box { max-width: 800px; margin: 0 auto; background: #ffffff; border: 2px solid rgba(0, 200, 83, 0.2); border-radius: 32px; padding: 70px 60px; position: relative; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 200, 83, 0.1); }
.vet-cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at top right, rgba(0, 200, 83, 0.05) 0%, transparent 50%); pointer-events: none; }
.vet-cta-box .vet-section-tag, .vet-cta-box h2, .vet-cta-box p, .vet-cta-box .vet-waitlist-form, .vet-cta-box .vet-success-message, .vet-cta-box .vet-error-message { position: relative; z-index: 1; }
.vet-cta-box p { color: #6b7a74; font-size: 1.1rem; margin-bottom: 36px; font-family: 'Inter', sans-serif; }
.vet-cta-box .vet-waitlist-form { max-width: 500px; margin: 0 auto; }
@media (max-width: 1024px) {
  .vet-hero { flex-direction: column; text-align: center; padding: 120px 30px 60px; gap: 50px; }
  .vet-hero-content { max-width: 100%; }
  .vet-landing h1 { font-size: 2.6rem; }
  .vet-waitlist-form { flex-direction: column; }
  .vet-dashboard-container { width: 100%; max-width: 380px; }
  .vet-float-card { display: none; }
  .vet-qr-section { flex-direction: column; padding: 80px 30px; gap: 50px; text-align: center; }
  .vet-process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vet-process-grid::before { display: none; }
  .vet-features-grid { grid-template-columns: 1fr; gap: 20px; }
  .vet-stats-grid { flex-wrap: wrap; gap: 40px; }
  .vet-trust-badges { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .vet-landing h1 { font-size: 2rem; }
  .vet-landing h2 { font-size: 1.8rem; }
  .vet-process-grid { grid-template-columns: 1fr; }
  .vet-stat-value { font-size: 2.5rem; }
  .vet-cta-box { padding: 40px 24px; }
  .vet-section-tag::before, .vet-section-tag::after { width: 20px; }
}
