:root {
  --cyan: #35d9f5;
  --cyan-2: #86efff;
  --cyan-3: #e8fbff;
  --deep: #062f52;
  --blue: #086fc2;
  --text: #15384d;
  --muted: #5e7b8c;
  --white: #ffffff;
  --line: rgba(6, 47, 82, 0.12);
  --shadow: 0 24px 70px rgba(6, 47, 82, 0.16);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 78% 12%, rgba(53, 217, 245, 0.34), transparent 22%),
    linear-gradient(180deg, #dff9ff 0%, #f8feff 42%, #e8fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
main,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding-top: 94px;
}

.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--deep);
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
}

.brand small,
.hero-text,
.body-copy p,
.section-heading p,
.product-card p,
.delivery-card p,
.contact-card p,
.final-cta p,
.footer p {
  color: var(--muted);
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-menu a {
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-menu a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--deep);
  font-weight: 800;
}

.nav-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.nav-order,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #09bed8);
  box-shadow: 0 16px 32px rgba(8, 111, 194, 0.22);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.mobile-facebook {
  display: none;
}

.button-light {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.nav-order:hover,
.facebook-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.section-block {
  padding: 86px 0;
  scroll-margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 92px);
  padding-top: 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
}

h1,
h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: 1.06;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 3vw, 3.05rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.22rem;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.water-orb {
  position: absolute;
  inset: 10% 2% 6% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 62% 70%, rgba(8, 111, 194, 0.32), transparent 26%),
    linear-gradient(135deg, var(--cyan-2), var(--cyan));
  filter: drop-shadow(0 42px 60px rgba(8, 111, 194, 0.18));
}

.hero-product {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  width: min(82%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 32px rgba(6, 47, 82, 0.18));
}

.hero-card {
  position: absolute;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  color: var(--deep);
  margin-bottom: 6px;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-card-left {
  left: 0;
  top: 18%;
}

.hero-card-right {
  right: 0;
  bottom: 20%;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.quick-strip span {
  padding: 16px;
  border-radius: 18px;
  background: rgba(232, 251, 255, 0.9);
  color: var(--deep);
  font-weight: 900;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.body-copy {
  display: grid;
  gap: 18px;
}

.body-copy p,
.section-heading p,
.product-card p,
.delivery-card p,
.contact-card p,
.final-cta p {
  margin: 0;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

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

.product-card {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: contain;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, var(--cyan-3));
  padding: 18px;
}

.featured-product {
  transform: translateY(-18px);
}

.product-card div {
  display: grid;
  gap: 10px;
}

.product-label {
  color: var(--blue) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card a {
  width: fit-content;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 900;
}

.cyan-panel {
  margin: 18px 0;
  padding-inline: 30px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(135deg, rgba(53, 217, 245, 0.75), rgba(232, 251, 255, 0.96));
  box-shadow: var(--shadow);
}

.delivery-grid,
.contact-grid,
.role-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.delivery-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.delivery-card,
.contact-card,
.form-card,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.delivery-card {
  padding: 22px;
}

.delivery-card span {
  color: var(--blue);
  font-weight: 900;
}

.delivery-card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--deep);
  font-size: 1.1rem;
}

.form-card {
  padding: 24px;
}

.compact-form {
  margin-top: 20px;
}

.form-card h3 {
  margin-bottom: 18px;
}

.form-message {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(232, 251, 255, 0.92);
  color: var(--blue);
  font-weight: 900;
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.career-status {
  min-height: 24px;
  color: var(--blue);
  font-weight: 900;
}

.career-panel {
  min-width: 0;
}

.role-grid {
  grid-template-columns: repeat(2, 1fr);
}

.role-grid span {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  color: var(--deep);
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--deep);
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 34px;
  text-align: center;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 44px 0 52px;
  text-align: center;
}

.footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow);
}

.footer a {
  color: var(--blue);
  font-weight: 900;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 34px rgba(18, 126, 72, 0.28);
  font-weight: 900;
}

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

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

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-menu,
  .nav-actions {
    display: none;
  }

  .site-menu.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 10px;
  }

  .site-menu.open a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(232, 251, 255, 0.8);
  }

  .site-menu.open .mobile-facebook {
    display: block;
    color: #1877f2;
  }

  .hero,
  .split-section,
  .product-grid,
  .delivery-grid,
  .contact-grid,
  .quick-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 500px;
  }

  .featured-product {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .brand small {
    display: none;
  }

  .section-block {
    padding: 62px 0;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-product {
    left: 50%;
    bottom: 32px;
    width: min(88%, 330px);
    padding: 8px;
  }

  .water-orb {
    inset: 8% 0 18% 0;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 10vw, 3.25rem);
  }

  h2 {
    max-width: 100%;
  }

  .form-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }
}
