:root {
  --green: #16a34a;
  --green-dark: #04763a;
  --red: #ef4444;
  --ink: #131c29;
  --muted: #5b6472;
  --line: #dce7df;
  --soft: #f4fbf6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #eef6f1 0%, #f8fbf9 52%, #eef6f1 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  padding: clamp(12px, 2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(1500px, 100%);
  min-height: 820px;
  padding: clamp(20px, 3vw, 56px) clamp(20px, 3.2vw, 56px) clamp(24px, 3vw, 44px);
  background:
    radial-gradient(circle at 78% 54%, rgba(22, 163, 74, 0.12), transparent 28%),
    radial-gradient(circle at 5% 96%, rgba(22, 163, 74, 0.10), transparent 22%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
  overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.brand {
  width: min(190px, 44vw);
  max-width: 190px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-actions,
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: clamp(12px, 1.7vw, 14px) clamp(18px, 2.4vw, 28px);
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #aeb8c4;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 28px rgba(22, 163, 74, .22);
}

.btn-outline {
  color: var(--green-dark);
  background: var(--white);
  border: 1.5px solid var(--green);
}

.btn-large {
  min-width: 210px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(16px, 1.4vw, 18px);
}

.icon {
  font-size: 28px;
  line-height: 1;
}

.divider {
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 8%, var(--line) 92%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 3vw, 40px);
  min-height: 640px;
  align-items: center;
  padding-top: clamp(8px, 2vw, 16px);
}

.hero-copy {
  max-width: 690px;
  padding-top: clamp(20px, 3vw, 44px);
}

.opening-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(22, 163, 74, .22);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(22,163,74,.08), rgba(255,255,255,.8), rgba(239,68,68,.08));
  background-size: 220% 100%;
  animation: shimmer 3.2s ease-in-out infinite;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 rgba(239, 68, 68, .55);
  animation: pulse 1.6s infinite;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 900;
}

h2 {
  margin: 24px 0 24px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
}

h2 span {
  color: var(--green);
}

p {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  max-width: 640px;
}

.search-box {
  width: min(680px, 100%);
  margin-top: 28px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  background: var(--white);
  border: 1px solid #dce3ea;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}

.search-box span {
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.search-box input {
  border: 0;
  outline: none;
  width: 100%;
  color: var(--ink);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 650;
}

.search-box input::placeholder {
  color: #98a2b3;
}

.bubble-stage {
  position: relative;
  height: clamp(320px, 56vw, 600px);
  width: min(100%, 560px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  --orbit-radius: min(240px, 34vw);
  perspective: 1000px;
  margin: 0 auto;
}

.center-logo {
  position: relative;
  z-index: 3;
  width: clamp(140px, 24vw, 210px);
  height: clamp(140px, 24vw, 210px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(224,247,232,1) 100%);
  box-shadow: var(--shadow);
  animation: centerFloat 6s ease-in-out infinite;
}

.center-logo img {
  width: clamp(90px, 16vw, 150px);
  height: auto;
}

/* Slow rotating loader on the center logo */
.logo-rotor {
  display: inline-block;
  will-change: transform;
     /* 1s spin then 10s pause → 11s total loop */
     animation: logo-spin 11s linear infinite;
}

@keyframes logo-spin {
     /* 100 * (1/11) ≈ 9.0909% -> 1s of the 11s loop */
     0% { transform: rotate(0deg); }
     9.0909% { transform: rotate(360deg); }
     100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-rotor {
    animation: none;
  }
}

.orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(22, 163, 74, .18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit-rotor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-radius) * 2);
  height: calc(var(--orbit-radius) * 2);
  transform: translate(-50%, -50%);
  display: block;
  --orbit-rotation: 0deg;
  animation: orbit-rotate-var 60s linear infinite;
}

@keyframes orbit-rotate-var {
  0% {
    --orbit-rotation: 0deg;
  }
  100% {
    --orbit-rotation: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-rotor { animation: none; }
}

.product-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: clamp(96px, 18vw, 156px);
  height: clamp(96px, 18vw, 156px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(214, 222, 229, .95);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(calc(var(--angle) + var(--orbit-rotation))) translate(var(--orbit-radius)) rotate(calc(0deg - var(--angle) - var(--orbit-rotation)));
}

.product-bubble .bubble-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: inherit;
  animation: floatBubble 5s ease-in-out infinite;
  animation-delay: var(--delay);
}

.product-bubble strong {
  font-size: clamp(14px, 1.4vw, 18px);
}

.bubble-icon {
  width: clamp(52px, 10vw, 82px);
  height: clamp(42px, 8vw, 66px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 4.5vw, 48px);
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.10));
}

.bubble-car, .bubble-bike, .bubble-camera, .bubble-room, .bubble-tools, .bubble-gear {
  pointer-events: auto;
}

.decor-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(22, 163, 74, .15);
  animation: floatBubble 4.4s ease-in-out infinite;
}

.dot-one {
  left: 62px;
  top: 160px;
  width: 26px;
  height: 26px;
  background: rgba(22, 163, 74, .35);
}

.dot-two {
  right: 20px;
  top: 185px;
  width: 54px;
  height: 54px;
}

.dot-three {
  right: 315px;
  bottom: 105px;
  width: 26px;
  height: 26px;
  background: rgba(15, 23, 42, .08);
}

.contact-section {
  position: static;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2.4vw, 24px);
  padding-bottom: 12px;
}

.contact-card {
  width: min(420px, 100%);
  max-width: 420px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 222, 229, .95);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,249,240,0.92));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: none;
}

.contact-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(22,163,74,0.10);
  border: 1px solid rgba(22,163,74,0.14);
  border-radius: 999px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22,163,74,0.10);
  background: rgba(22,163,74,0.14);
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: rgba(22,163,74,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(22,163,74,0.12);
  border-radius: 900px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Subtle pulsing light effect for LinkedIn links */
a[href*="linkedin.com"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  position: relative;
  padding: 4px 8px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: linkedin-glow 4s ease-in-out infinite;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

a[href*="linkedin.com"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,0.14);
}

@keyframes linkedin-glow {
  0%, 72%, 100% { box-shadow: 0 0 0 rgba(22,163,74,0); }
  80% { box-shadow: 0 6px 18px rgba(22,163,74,0.06); }
  90% { box-shadow: 0 10px 28px rgba(22,163,74,0.12); }
}

@media (prefers-reduced-motion: reduce) {
  a[href*="linkedin.com"] {
    animation: none;
    transition: none;
  }
}

.contact-role {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  opacity: .9;
}

/* Make search box narrower so it doesn't collide with contact pills */
.hero-copy {
  padding-bottom: calc(var(--contact-height, 56px) + 18px);
}

.search-box {
  width: min(480px, 100%);
  max-width: 48vw;
}

@media (max-width: 1100px) {
  .search-box {
    width: 100%;
    max-width: none;
  }
}


.nepal-landscape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  opacity: .45;
  pointer-events: none;
  overflow: hidden;
}

.hills {
  position: absolute;
  right: -8%;
  bottom: -70px;
  width: 70%;
  height: 160px;
  border-radius: 50% 0 0 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, .18), rgba(22, 163, 74, .04));
}

.mountain {
  position: absolute;
  left: 22%;
  bottom: 0;
  width: 520px;
  height: 90px;
  background: linear-gradient(135deg, transparent 30%, rgba(22,163,74,.20) 31%, rgba(22,163,74,.20) 44%, transparent 45%),
              linear-gradient(45deg, transparent 42%, rgba(22,163,74,.18) 43%, rgba(22,163,74,.18) 58%, transparent 59%);
}

.pagoda {
  position: absolute;
  bottom: 12px;
  width: 34px;
  height: 80px;
  background: rgba(22, 163, 74, .18);
  clip-path: polygon(50% 0, 60% 16%, 78% 16%, 64% 25%, 90% 25%, 68% 37%, 86% 37%, 65% 49%, 76% 49%, 60% 62%, 60% 100%, 40% 100%, 40% 62%, 24% 49%, 35% 49%, 14% 37%, 32% 37%, 10% 25%, 36% 25%, 22% 16%, 40% 16%);
}

.p1 { left: 16%; transform: scale(1.25); }
.p2 { left: 53%; transform: scale(1); }

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .opening-badge {
    margin-bottom: 6px;
  }

  .bubble-stage {
    order: -1;
    width: min(100%, 520px);
    height: min(70vw, 520px);
    margin-bottom: -20px;
  }

  .contact-section {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: clamp(18px, 3vw, 32px);
    padding-bottom: 12px;
  }
}

@media (max-width: 700px) {
  .hero-card {
    min-height: auto;
  }

  .hero-content {
    gap: 12px;
  }

  .navbar {
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    min-width: min(100%, 210px);
    width: 100%;
  }

  .opening-badge {
    font-size: 18px;
    padding: 8px 16px;
    margin-bottom: 30px;
    color: #de0000;
    animation: shimmer 2.8s ease-in-out infinite;
    }

  .bubble-stage {
    margin-bottom: -130px;
  }

  h1 {
    font-size: clamp(40px, 10vw, 58px);
  }

  h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  p {
    font-size: clamp(16px, 2.4vw, 22px);
  }

  .search-box {
    min-height: 58px;
    padding: 0 18px;
  }

  .search-box input {
    font-size: 16px;
  }

  .contact-card {
    padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 10px;
  }

  .hero-card {
    padding: 18px 16px 24px;
    border-radius: 20px;
  }

  .brand {
    width: 140px;
  }

  .bubble-stage {
    height: 320px;
  }

  .product-bubble {
    width: 92px;
    height: 92px;
  }

  .bubble-icon {
    font-size: 26px;
  }

  .orbit-line {
    width: 280px;
    height: 280px;
  }
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .55); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatBubble {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.025); }
}

@keyframes centerFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes rotateSlow {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .hero-card {
    padding: 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-box {
    margin-left: auto;
    margin-right: auto;
  }

  .bubble-stage {
    min-width: 0;
    height: 540px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 10px;
  }

  .hero-card {
    border-radius: 20px;
    min-height: auto;
  }

  .navbar {
    align-items: flex-start;
  }

  .brand {
    width: 150px;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn {
    padding: 11px 16px;
  }

  p {
    font-size: 18px;
  }

  .bubble-stage {
    transform: scale(.72);
    transform-origin: top center;
    height: 430px;
    margin-top: -20px;
  }

  .search-box {
    min-height: 62px;
  }

  .search-box input {
    font-size: 16px;
  }
}
