:root {
  --bg: #07131e;
  --text: #08253f;
  --muted: #56718a;
  --line: rgba(8, 37, 63, 0.1);
  --white: #ffffff;
  --primary: linear-gradient(135deg, #2bbef9 0%, #22c55e 100%);
  --soft: linear-gradient(135deg, rgba(43, 190, 249, 0.16), rgba(34, 197, 94, 0.18));
  --shadow: 0 24px 60px rgba(5, 22, 36, 0.2);
  --shadow-soft: 0 18px 42px rgba(5, 22, 36, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 190, 249, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 40%, #f5fff8 100%);
  overflow-x: hidden;
}
/* Banner mobile download app */
.mobile-app-banner {
  position: relative;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 37, 63, 0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(5, 22, 36, 0.08);
}

.mobile-app-banner[hidden] {
  display: none;
}

.mobile-app-banner-close {
  border: 0;
  background: transparent;
  color: #56718a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.mobile-app-banner-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.mobile-app-banner-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mobile-app-banner-copy strong {
  color: #08253f;
  font-size: 0.9rem;
  font-weight: 900;
}

.mobile-app-banner-copy span {
  color: #56718a;
  font-size: 0.76rem;
  line-height: 1.25;
}

.mobile-app-banner-button {
  background: linear-gradient(135deg, #2bbef9 0%, #22c55e 100%);
  color: #fff;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(43, 190, 249, 0.16));
}

.brand-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-wrap: wrap;
}

.brand-share {
  color: #2bbef9;
}

.brand-sensation {
  color: #22c55e;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-weight: 700;
}

.nav a:not(.btn):hover {
  color: #0e466f;
}

.menu-btn {
  display: none;
  border: 0;
  background: white;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-soft,
.btn-outline {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 37, 63, 0.1);
  color: var(--text);
}

.hero {
  --hero-bg: url('img/jetskisunset.jpg');
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 84px 0 72px;
  overflow: hidden;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  z-index: -3;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 16, 26, 0.76) 0%, rgba(5, 16, 26, 0.55) 32%, rgba(5, 16, 26, 0.28) 58%, rgba(5, 16, 26, 0.52) 100%),
    linear-gradient(180deg, rgba(17, 116, 189, 0.12) 0%, rgba(34, 197, 94, 0.12) 100%);
  z-index: -2;
}

.hero-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #dff8ff;
  font-weight: 800;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.hero h1,
.section-head h2,
.showcase-copy h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head h2 {
  max-width: 820px;
}

.showcase-copy h2,
.cta-box h2 {
  max-width: 13ch;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.35rem);
  max-width: 11.5ch;
  letter-spacing: -0.04em;
}

.hero h1 span {
  background: linear-gradient(135deg, #6ad9ff 0%, #65f1a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.showcase-copy p,
.exp-body p,
.step-card p,
.feed-item p,
.cta-box p,
.hero-stats span,
.floating-card p {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 24px;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  color: #ffffff;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.phone-card,
.floating-card,
.experience-card,
.step-card,
.showcase-panel,
.cta-box {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.phone-card {
  position: absolute;
  right: 38px;
  top: 48px;
  width: 320px;
  border-radius: 34px;
  padding: 18px;
  transform: rotate(-6deg);
}

.phone-topbar {
  width: 90px;
  height: 8px;
  background: rgba(8, 37, 63, 0.1);
  border-radius: 999px;
  margin: 0 auto 18px;
}

.phone-content {
  background: linear-gradient(180deg, rgba(43, 190, 249, 0.13), rgba(34, 197, 94, 0.16));
  border-radius: 26px;
  padding: 20px;
}

.mini-badge,
.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: white;
}

.phone-content h3 {
  margin: 16px 0 6px;
  font-size: 1.5rem;
}

.phone-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.mini-map {
  height: 190px;
  border-radius: 22px;
  border: 1px solid rgba(8, 37, 63, 0.06);
}

.mini-image {
  background-size: cover;
  background-position: center;
}

.mini-jet-ski-sunset {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(8, 37, 63, 0.18) 100%),
    url('img/jetskisunset.jpg');
}

.price-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-row span {
  font-size: 1.5rem;
  font-weight: 900;
}

.price-row button {
  border: 0;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
}

.floating-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 190, 249, 0.18), rgba(34, 197, 94, 0.2));
  font-size: 1.3rem;
}

.card-a {
  left: 12px;
  top: 48px;
}

.card-b {
  left: 0;
  bottom: 112px;
}

.card-c {
  right: 0;
  bottom: 30px;
}

.discover,
.steps,
.showcase,
.cta {
  padding: 88px 0;
}

.section-head {
  margin-bottom: 36px;
  max-width: 900px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.discover .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.discover .section-head h2 {
  max-width: 900px;
  margin: 0 auto;
}

.card-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card,
.step-card {
  border-radius: 30px;
  overflow: hidden;
}

.exp-image {
  height: 270px;
  background-size: cover;
  background-position: center;
}

.image-1 {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(8, 37, 63, 0.14) 100%),
    url('img/jetskiadventure.jpg');
}

.image-2 {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(8, 37, 63, 0.12) 100%),
    url('img/hotairballon.jpg');
}

.image-3 {
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(8, 37, 63, 0.14) 100%),
    url('img/rockclimbing.jpg');
}

.exp-body,
.step-card,
.showcase-panel,
.cta-box {
  padding: 24px;
}

.exp-body {
  min-height: 180px;
}

.exp-body h3,
.step-card h3 {
  margin: 14px 0 10px;
}

.exp-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  margin: 14px 0 12px;
}

.exp-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  height: 3.2em;
  margin: 0;
}

.experience-card {
  height: 100%;
}

.step-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(43, 190, 249, 0.15), rgba(34, 197, 94, 0.18));
}

.showcase-copy p {
  margin: 18px 0;
  line-height: 1.7;
  max-width: 58ch;
}

.showcase-copy ul {
  padding-left: 18px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-panel {
  border-radius: 32px;
}

.panel-top,
.feed-item {
  display: flex;
  align-items: center;
}

.panel-top {
  gap: 10px;
  margin-bottom: 22px;
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.feed-item {
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.feed-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(43, 190, 249, 0.15), rgba(34, 197, 94, 0.18));
  font-size: 1.35rem;
}

.cta-box {
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 20px 0 40px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 240px;
  height: 240px;
  top: 100px;
  left: -70px;
  background: rgba(43, 190, 249, 0.16);
}

.orb-2 {
  width: 320px;
  height: 320px;
  top: 240px;
  right: -100px;
  background: rgba(34, 197, 94, 0.12);
}

.orb-3 {
  width: 220px;
  height: 220px;
  bottom: 80px;
  left: 15%;
  background: rgba(85, 185, 255, 0.1);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .showcase-grid,
  .card-grid,
  .steps-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .cta-box {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .phone-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto;
    transform: rotate(-3deg);
    width: min(100%, 320px);
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .hero-visual {
    min-height: auto;
  }

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

a.feed-item {
  color: inherit;
}

a.experience-card {
  color: inherit;
  display: block;
}

.feed-image {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex: 0 0 56px;
  background-size: cover;
  background-position: center;
  background-color: rgba(43, 190, 249, 0.12);
}