:root {
  color-scheme: light;
  --ink: #0b1c2c;
  --muted: #506578;
  --accent: #0b6cb3;
  --accent-dark: #074a7a;
  --accent-soft: #e7f3fb;
  --surface: #ffffff;
  --surface-alt: #f2f7fb;
  --border: #dbe6ef;
  --shadow: 0 20px 45px rgba(9, 29, 50, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

.bg-animated {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(120, 197, 234, 0.55), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(182, 228, 248, 0.45), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(231, 243, 251, 0.9), transparent 55%),
    linear-gradient(120deg, #f7fbff 0%, #ffffff 60%, #eef6fd 100%);
  background-size: 180% 180%, 160% 160%, 180% 180%, 200% 200%;
  animation: backgroundShift 18s ease-in-out infinite;
  overflow: hidden;
}

.bg-plant {
  position: absolute;
  bottom: 6%;
  left: 6%;
  width: clamp(60px, 8vw, 90px);
  height: clamp(90px, 12vw, 140px);
  background: url("assets/plant.svg") no-repeat center / contain;
  opacity: 0.55;
  filter: drop-shadow(0 12px 24px rgba(11, 108, 179, 0.12));
  animation: plantFloat 8s ease-in-out infinite;
}

.bg-loader {
  position: absolute;
  top: 18%;
  left: -20%;
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  background: url("assets/source.gif") no-repeat center / contain;
  opacity: 0.5;
  filter: drop-shadow(0 12px 24px rgba(11, 108, 179, 0.12));
  animation: loaderWave 26s ease-in-out infinite;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 230, 239, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

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

.logo-mark {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 14px 26px rgba(11, 108, 179, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 108, 179, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(11, 108, 179, 0.2);
}

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

.hero {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 50px;
}

.hero-text h1 {
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.8rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 430px;
}

.hero-metrics h3 {
  font-size: 1.4rem;
}

.hero-metrics p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-gif {
  position: absolute;
  top: 8px;
  right: 0;
  width: clamp(90px, 12vw, 150px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 10px 20px rgba(11, 108, 179, 0.18));
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.7;
}

.glow-a {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #86d5f2 0%, rgba(134, 213, 242, 0) 70%);
  top: 10%;
  right: 12%;
}

.glow-b {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #d5effb 0%, rgba(213, 239, 251, 0) 70%);
  bottom: 5%;
  left: 12%;
}

.orbit-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(219, 230, 239, 0.9);
  position: relative;
  z-index: 2;
  width: min(420px, 92%);
}

.orbit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.orbit-mid {
  margin: 24px 0;
}

.orbit-mid h4 {
  font-size: 1.4rem;
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 10px;
}

.orbit-mid p {
  color: var(--muted);
}

.orbit-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.orbit-bottom h5 {
  color: var(--ink);
  font-size: 1rem;
  margin-top: 6px;
}

.orbit-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(11, 108, 179, 0.25);
  animation: float 6s ease-in-out infinite;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section-header {
  max-width: 620px;
  margin-bottom: 42px;
}

.section-header h2 {
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 35px rgba(12, 34, 60, 0.08);
}

.card h3 {
  margin-bottom: 10px;
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

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

.tag {
  display: inline-flex;
  margin-top: 18px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.destination-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(11, 108, 179, 0.14);
  box-shadow: 0 18px 32px rgba(12, 34, 60, 0.06);
}

.destination-card h3 {
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 12px;
}

.destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-tags span {
  background: #eef6fd;
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 22px 0 28px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.checklist li::before {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

.split-card {
  background: linear-gradient(160deg, #ffffff, #eef6fd);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #d5e9f6;
  box-shadow: var(--shadow);
}

.split-pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.split-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-family: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

.split-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.split-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 90%);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-details h4 {
  font-size: 1rem;
}

.contact-details p {
  color: var(--muted);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(12, 34, 60, 0.08);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafafa;
  resize: vertical;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

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

@keyframes plantFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes loaderWave {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(30vw, -16px) rotate(3deg);
  }
  40% {
    transform: translate(60vw, 12px) rotate(-2deg);
  }
  60% {
    transform: translate(90vw, -14px) rotate(2deg);
  }
  80% {
    transform: translate(120vw, 10px) rotate(-1deg);
  }
  100% {
    transform: translate(150vw, 0) rotate(0deg);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .logo-mark {
    height: 36px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .orbit-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .bg-plant {
    left: 4%;
    bottom: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring,
  .reveal,
  .bg-animated,
  .bg-plant,
  .bg-loader {
    animation: none;
    transition: none;
  }
}
