/* ─── Brand colours ──────────────────────────────────────────
   Green  : #1f7d25  (primary)  #2da832 (bright)  #155a1a (dark)
   Blue   : #1a3ea0  (primary)  #0f2870 (dark)    #2e5cc8 (mid)
   ─────────────────────────────────────────────────────────── */

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

html, body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background: linear-gradient(160deg, #050f20 0%, #0a1f4e 35%, #0f2870 65%, #1a3ea0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* ─── Stars ─────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%,  rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%,  rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 12%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 18%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 7%,  rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 28%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 33% 3%,  rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 78% 22%, rgba(255,255,255,0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Clouds ─────────────────────────────────────────────── */
.clouds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  filter: blur(38px);
}

.c1 { width: 420px; height: 115px; top:  8%; left:  1%;  animation: cloud-drift 70s linear infinite; }
.c2 { width: 270px; height:  80px; top: 17%; left: 28%;  animation: cloud-drift 95s linear 18s infinite; }
.c3 { width: 500px; height: 105px; top:  4%; right: -2%; animation: cloud-drift 80s linear infinite reverse; }
.c4 { width: 210px; height:  68px; top: 26%; right:16%;  animation: cloud-drift 105s linear 35s infinite reverse; }
.c5 { width: 340px; height:  90px; top: 33%; left: 52%;  animation: cloud-drift 78s linear 10s infinite; }
.c6 { width: 180px; height:  55px; top: 13%; left: 62%;  animation: cloud-drift 88s linear 25s infinite reverse; }

@keyframes cloud-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(7vw); }
}

/* ─── Scene ──────────────────────────────────────────────── */
.scene {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 160px;
  z-index: 10;
}

/* ─── Vehicles shared ────────────────────────────────────── */
.vehicle {
  position: fixed;
  top: 50%;
  z-index: 2;
}

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

.ship img {
  mix-blend-mode: screen;
}

/* ─── Vehicle badges ─────────────────────────────────────── */
.badge {
  position: absolute;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: badge-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 2.1s forwards;
}

@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.7) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.badge-plane {
  bottom: -6px;
  right: 10%;
  background: rgba(31, 125, 37, 0.22);
  border: 1px solid rgba(45, 168, 50, 0.5);
  color: #5be062;
}

.badge-ship {
  bottom: 18%;
  left: 6%;
  background: rgba(26, 62, 160, 0.28);
  border: 1px solid rgba(46, 92, 200, 0.5);
  color: #89aeff;
}

/* ─── Plane ──────────────────────────────────────────────── */
.plane {
  left: 0;
  width: min(42vw, 460px);
  transform: translateY(-65%) translateX(-110%);
  animation:
    fly-in-left 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
    plane-float 5s ease-in-out 1.8s infinite;
  filter: drop-shadow(0 8px 24px rgba(31, 125, 37, 0.5));
}

@keyframes fly-in-left {
  to { transform: translateY(-65%) translateX(-8%); }
}

/* ─── Ship ───────────────────────────────────────────────── */
.ship {
  right: 0;
  width: min(46vw, 500px);
  transform: translateY(-50%) translateX(110%);
  animation:
    sail-in-right 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards,
    ship-bob 6s ease-in-out 2.2s infinite;
  filter: drop-shadow(0 8px 28px rgba(26, 62, 160, 0.6));
}

@keyframes sail-in-right {
  to { transform: translateY(-50%) translateX(15%); }
}

/* ─── Float / bob loops ──────────────────────────────────── */
@keyframes plane-float {
  0%, 100% { margin-top: 0; }
  50%       { margin-top: -14px; }
}

@keyframes ship-bob {
  0%, 100% { margin-top: 0; }
  50%       { margin-top: 10px; }
}

/* ─── Centre content ─────────────────────────────────────── */
.centre {
  position: relative;
  text-align: center;
  z-index: 10;
  max-width: 520px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.9s ease 1.2s forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Logo image ─────────────────────────────────────────── */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo-img {
  width: min(250px, 48vw);
  height: auto;
  border-radius: 12px;
  background: #fff;
  padding: 12px 18px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 32px rgba(45, 168, 50, 0.25);
}

/* ─── Tagline ────────────────────────────────────────────── */
.tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tagline strong {
  color: #2da832;
  font-weight: 700;
}

/* ─── Contact block ──────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.contact-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* mailto — green, primary action */
.contact-btn.mailto {
  background: linear-gradient(135deg, #2da832, #1f7d25);
  color: #fff;
  box-shadow: 0 6px 24px rgba(31, 125, 37, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

.contact-btn.mailto:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(31, 125, 37, 0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* copy — outlined, secondary */
.contact-btn.copy {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.contact-btn.copy:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-btn.copy.copied {
  background: rgba(45, 168, 50, 0.18);
  color: #2da832;
  box-shadow: 0 0 0 1px rgba(45, 168, 50, 0.4);
}

/* ─── Bottom bar (features + ocean together) ─────────────── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

/* ─── Features strip ─────────────────────────────────────── */
.features-strip {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
  padding: 12px 16px 8px;
  background: linear-gradient(to bottom, transparent, rgba(10, 31, 78, 0.92));
  opacity: 0;
  animation: fade-up 0.9s ease 2s forwards;
}

/* ─── Scroll hint ────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  width: 28px;
  height: 28px;
  opacity: 0;
  animation: fade-up 0.9s ease 2.5s forwards, hint-bob 2s ease-in-out 3.5s infinite;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.scroll-hint.hidden { opacity: 0 !important; }

.scroll-hint svg { width: 100%; height: 100%; }

@keyframes hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

.feat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feat-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2da832;
  flex-shrink: 0;
}

.feat-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ─── Ocean strip ────────────────────────────────────────── */
.ocean {
  position: relative;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(10, 31, 78, 0.92), #050f20);
  overflow: hidden;
}

.ocean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(45, 168, 50, 0.35) 20%,
    rgba(46, 92, 200, 0.55) 50%,
    rgba(45, 168, 50, 0.35) 80%,
    transparent 100%
  );
}

.wave {
  position: absolute;
  width: 200%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(31, 125, 37, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.wave1 {
  bottom: 30px;
  left: -50%;
  animation: wave-move 8s linear infinite;
  opacity: 0.7;
}

.wave2 {
  bottom: 15px;
  left: -30%;
  animation: wave-move 12s linear infinite reverse;
  opacity: 0.45;
}

@keyframes wave-move {
  from { transform: translateX(0); }
  to   { transform: translateX(25%); }
}

/* ─── Content section ────────────────────────────────────── */
.content-section {
  width: 100%;
  align-self: stretch;
  min-height: 100vh;
  background: linear-gradient(to bottom, #0a1f4e 0%, #071840 40%, #030d1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 160px;
  position: relative;
  z-index: 1;
}

.content-inner {
  max-width: 660px;
  width: 100%;
  text-align: center;
}

/* ─── Content logo ───────────────────────────────────────── */
.content-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.content-logo {
  width: min(200px, 48vw);
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 10px 16px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(45, 168, 50, 0.2);
}

/* ─── Content text ───────────────────────────────────────── */
.content-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.content-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, #2da832, #1a3ea0);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.content-body {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ─── Coming soon block ──────────────────────────────────── */
.coming-soon {
  margin-top: 48px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2da832;
  background: rgba(45, 168, 50, 0.12);
  border: 1px solid rgba(45, 168, 50, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.coming-soon-heading {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.coming-soon-body {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 18px;
}

.coming-soon-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

/* ─── Large desktop (≥ 1400px) ──────────────────────────── */
@media (min-width: 1400px) {
  .plane { width: min(40vw, 580px); }
  .ship  { width: min(44vw, 640px); }
}

/* ─── Large laptop / small desktop (1281px – 1399px) ────── */
@media (max-width: 1399px) and (min-width: 1281px) {
  .plane { width: min(28vw, 340px); }
  .ship  { width: min(32vw, 380px); }
}

/* ─── Laptop (1025px – 1280px) ──────────────────────────── */
@media (max-width: 1280px) and (min-width: 1025px) {
  .plane { width: min(24vw, 280px); }
  .ship  { width: min(28vw, 320px); }
}

/* ─── Mobile keyframes ───────────────────────────────────── */
@keyframes fly-in-mobile {
  from { transform: translateX(-120%); }
  to   { transform: translateX(0); }
}

@keyframes sail-in-mobile {
  from { transform: translateX(120%); }
  to   { transform: translateX(0); }
}

/* ─── Tablet (641px – 1024px) ────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {
  .plane {
    width: 28vw;
    top: 50%;
  }
  .ship {
    width: 32vw;
    top: 50%;
  }
  .logo-img {
    width: min(260px, 50vw);
  }
  .centre {
    padding: 0 2vw;
  }
}

/* ─── Mobile (≤ 640px) ───────────────────────────────────── */
@media (max-width: 640px) {
  .clouds        { display: none; }
  .badge         { display: none; }
  .ocean::before { display: none; }

  html { overflow-y: auto; }

  /* Body becomes a wrapping row so vehicles + scene can be ordered */
  body {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
  }

  /* Vehicles: in-flow, side by side at the top */
  .vehicle {
    position: relative;
    top: auto; left: auto; right: auto;
    order: 1;
  }

  .plane {
    width: 44vw;
    align-self: flex-end;
    transform: translateX(-120%);
    animation:
      fly-in-mobile 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards,
      plane-float 5s ease-in-out 1.8s infinite;
  }

  .ship {
    width: 50vw;
    align-self: flex-end;
    transform: translateX(120%);
    animation:
      sail-in-mobile 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards,
      ship-bob 6s ease-in-out 2.2s infinite;
  }

  /* Scene: full-width row below the vehicles */
  .scene {
    order: 2;
    flex-basis: 100%;
    width: 100%;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 0 120px;
  }

  .centre {
    width: 100%;
    max-width: 100%;
    padding: 20px 24px;
  }

  .logo-img {
    width: min(130px, 40vw);
    padding: 7px 11px;
  }

  .content-heading { font-size: 1.5rem; margin-bottom: 16px; }
  .content-body    { font-size: 0.9rem; }

  .coming-soon {
    padding: 24px 20px;
    margin-top: 28px;
  }

  .contact-btn {
    font-size: 0.88rem;
    padding: 10px 18px;
  }
}

/* ─── Very small phones (≤ 380px) ───────────────────────── */
@media (max-width: 380px) {
  .plane    { width: 50vw; }
  .ship     { width: 58vw; }
  .logo-img { width: 44vw; }
}

