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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background: #ffffff;

  color: #111b67;

  overflow-x: hidden;
}

/* =========================================================
   MAIN PAGE
========================================================= */

.launch-page {
  position: relative;

  width: 100%;

  min-height: 100vh;
  min-height: 100svh;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(232, 237, 255, 0.45),
      transparent 30%
    ),
    #ffffff;

  display: flex;

  flex-direction: column;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: relative;

  z-index: 20;

  width: 100%;

  padding: 38px clamp(40px, 7.5vw, 120px) 0;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  flex-shrink: 0;
}

/* =========================================================
   LOGO
========================================================= */

.logo-wrapper {
  display: flex;

  align-items: flex-start;
}

.logo {
  display: block;

  width: clamp(250px, 26vw, 415px);

  height: auto;
}

/* =========================================================
   TOP RIGHT TAGLINE
========================================================= */

.tagline {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: 7px;

  margin-top: 10px;

  color: #25336b;

  font-size: clamp(10px, 0.9vw, 15px);

  letter-spacing: 4px;

  line-height: 1.35;

  text-align: right;
}

.tagline-line {
  width: 39px;

  height: 3px;

  margin-top: 8px;

  background: #2450db;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  z-index: 5;

  width: 100%;

  flex: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(400px, 0.85fr);

  align-items: center;

  padding: 0 clamp(40px, 7.5vw, 120px) 150px;
}

/* =========================================================
   HERO LEFT CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 10;

  transform: translateY(-40px);
}

/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
  color: #1452df;

  font-size: clamp(14px, 1.25vw, 20px);

  font-weight: 600;

  letter-spacing: 6px;

  line-height: 1.3;

  margin-bottom: 12px;
}

/* =========================================================
   MAIN HEADING
========================================================= */

.hero h1 {
  color: #111b67;

  font-size: clamp(58px, 5.8vw, 94px);

  line-height: 0.98;

  letter-spacing: -4px;

  font-weight: 700;

  margin-bottom: 25px;

  white-space: nowrap;
}

.hero h1 span {
  color: #1654e9;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.description {
  color: #30416d;

  font-size: clamp(17px, 1.35vw, 23px);

  line-height: 1.5;

  font-weight: 400;

  margin-bottom: 42px;
}

/* =========================================================
   FEATURES
========================================================= */

.features {
  display: flex;

  align-items: flex-start;

  gap: clamp(35px, 4vw, 72px);

  position: relative;

  z-index: 20;
}

.feature {
  min-width: 105px;

  text-align: center;

  color: #273764;
}

/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
  width: 68px;

  height: 68px;

  margin: 0 auto 12px;

  border-radius: 50%;

  background: linear-gradient(145deg, #f3f6ff, #e7edff);

  display: flex;

  justify-content: center;

  align-items: center;
}

.feature-icon i {
  font-size: 32px;
  color: #1452df;
}

.feature p {
  font-size: clamp(13px, 0.95vw, 17px);

  line-height: 1.4;

  font-weight: 500;
}

/* =========================================================
   CONTACT + SOCIALS
   INSIDE HERO CONTENT
========================================================= */

.footer {
  position: relative;

  z-index: 30;

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 58px;

  color: #344269;

  font-size: clamp(12px, 0.95vw, 16px);
}

/* =========================================================
   CONTACT / EMAIL
========================================================= */

.contact {
  display: flex;

  align-items: center;

  gap: 12px;
}

.contact svg {
  width: 21px;

  height: 21px;

  fill: #344269;

  stroke: #ffffff;

  stroke-width: 1.2;
}

/* =========================================================
   FOOTER DIVIDER
========================================================= */

.footer-divider {
  width: 1px;

  height: 26px;

  background: #aeb5c8;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.socials {
  display: flex;

  align-items: center;

  gap: 17px;
}

.socials a {
  width: 22px;

  height: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  color: #344269;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);

  color: #1452df;
}

.socials i {
    font-size: 20px;
    color: #344269;
}

.socials a:hover i {
    color: #1452df;
}

/* =========================================================
   RIGHT PRODUCT AREA
========================================================= */

.hero-product {
  position: relative;

  height: 100%;

  min-height: 440px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: visible;
}

/* =========================================================
   PALE CIRCLE
========================================================= */

.product-circle {
  position: absolute;

  width: clamp(370px, 29vw, 510px);

  height: clamp(370px, 29vw, 510px);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(228, 234, 255, 0.95),
    rgba(239, 242, 255, 0.7)
  );

  top: 50%;

  left: 58%;

  transform: translate(-50%, -50%);

  z-index: 0;
}

/* =========================================================
   COOLER IMAGE
========================================================= */

.cooler {
  position: relative;

  z-index: 4;

  width: clamp(300px, 27vw, 440px);

  max-width: none;

  height: auto;

  object-fit: contain;

  transform: translateX(7%);

  filter: drop-shadow(0 18px 15px rgba(40, 54, 100, 0.12));
}

/* =========================================================
   AIR FLOW WAVES
========================================================= */

.air-waves {
  position: absolute;

  z-index: 3;

  top: 50%;

  left: 8%;

  width: 185px;

  height: 180px;

  transform: translateY(-50%) rotate(-8deg);

  pointer-events: none;
}

.air-waves span {
  position: absolute;

  display: block;

  height: 58px;

  border-bottom: 8px solid #78b5f2;

  border-radius: 0 0 100% 100%;

  transform: rotate(-17deg);
}

/* Top wave */

.air-waves span:nth-child(1) {
  width: 145px;

  top: 0;

  left: 30px;
}

/* Second wave */

.air-waves span:nth-child(2) {
  width: 175px;

  top: 42px;

  left: 5px;
}

/* Third wave */

.air-waves span:nth-child(3) {
  width: 185px;

  top: 84px;

  left: 0;
}

/* Fourth wave */

.air-waves span:nth-child(4) {
  width: 150px;

  top: 126px;

  left: 25px;
}

/* =========================================================
   BOTTOM WAVES
========================================================= */

.bottom-waves {
  position: absolute;

  z-index: 1;

  left: 0;

  bottom: 0;

  width: 100%;

  height: 175px;

  overflow: hidden;

  pointer-events: none;
}

/* =========================================================
   BASE WAVE
========================================================= */

.wave {
  position: absolute;

  left: -5%;

  width: 110%;

  border-radius: 50% 50% 0 0;
}

/* =========================================================
   LIGHT BLUE WAVE
========================================================= */

.wave-light {
  height: 125px;

  bottom: 38px;

  background: #c4defa;

  transform: rotate(-3deg) translateY(30px);
}

/* =========================================================
   MEDIUM BLUE WAVE
========================================================= */

.wave-medium {
  height: 110px;

  bottom: 10px;

  background: #557ce0;

  transform: rotate(-5deg) translateY(35px);
}

/* =========================================================
   DARK BLUE WAVE
========================================================= */

.wave-dark {
  height: 98px;

  bottom: -18px;

  background: #3156cf;

  transform: rotate(-5deg) translateY(28px);
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1201px) {
  .header {
    padding-top: 38px;
  }

  .hero {
    /*
           Keep hero content clearly below the logo.
        */
    padding-top: 45px;

    padding-bottom: 150px;
  }

  .hero-content {
    transform: none;
  }

  .hero-product {
    transform: translateY(-5px);
  }
}

/* =========================================================
   LAPTOP
   901px - 1200px
========================================================= */

@media (min-width: 901px) and (max-width: 1200px) {
  .header {
    padding: 30px 55px 0;
  }

  .logo {
    width: 300px;
  }

  .hero {
    grid-template-columns:
      1.08fr
      0.92fr;

    padding: 0 55px 140px;
  }

  .hero-content {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 72px);

    letter-spacing: -3px;
  }

  .description {
    font-size: 18px;

    margin-bottom: 35px;
  }

  .features {
    gap: 28px;
  }

  .feature-icon {
    width: 62px;

    height: 62px;
  }

  .hero-product {
    min-height: 420px;
  }

  .cooler {
    width: 380px;

    transform: translateX(5%);
  }

  .product-circle {
    width: 370px;

    height: 370px;

    left: 58%;
  }

  .air-waves {
    left: 2%;

    transform: translateY(-50%) scale(0.85) rotate(-8deg);
  }

  .footer {
    margin-top: 50px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .header {
    padding: 25px 40px 0;
  }

  .logo {
    width: 290px;
  }

  .tagline {
    font-size: 10px;

    letter-spacing: 3px;
  }

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

    padding: 50px 40px 180px;

    text-align: center;
  }

  .hero-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    transform: none;
  }

  .hero h1 {
    font-size: clamp(52px, 9vw, 78px);

    letter-spacing: -3px;
  }

  .description {
    font-size: 18px;
  }

  .desktop-break {
    display: none;
  }

  .features {
    justify-content: center;

    flex-wrap: wrap;

    gap: 35px;
  }

  .hero-product {
    min-height: 440px;

    margin-top: 20px;

    transform: none;
  }

  .cooler {
    width: 430px;

    transform: none;
  }

  .product-circle {
    width: 410px;

    height: 410px;

    transform: translate(-50%, -50%);
  }

  .air-waves {
    left: 50%;

    transform: translate(-250px, -50%) scale(0.8) rotate(-8deg);
  }

  .footer {
    width: 100%;

    margin-top: 50px;

    justify-content: center;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .launch-page {
    min-height: 100svh;
  }

  /* -----------------------------------------
       HEADER
    ----------------------------------------- */

  .header {
    padding: 20px 20px 0;

    align-items: center;
    justify-content: center;
  }

  .logo {
    width: 210px;
  }

  .tagline {
    display: none;
  }

  /* -----------------------------------------
       HERO
    ----------------------------------------- */

  .hero {
    display: flex;

    flex-direction: column;

    padding: 30px 20px 100px;

    min-height: auto;
  }

  .hero-content {
    width: 100%;

    transform: none;
  }

  .eyebrow {
    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 65px);

    letter-spacing: -2px;

    white-space: normal;

    margin-bottom: 20px;
  }

  .description {
    font-size: 15px;

    line-height: 1.5;

    margin-bottom: 30px;

    max-width: 350px;
  }

  /* -----------------------------------------
       FEATURES
    ----------------------------------------- */

  .features {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px 15px;
  }

  .feature {
    min-width: 0;
  }

  .feature-icon {
    width: 58px;

    height: 58px;

    margin-bottom: 9px;
  }

  .feature-icon i {
    font-size: 27px;
  }

  .feature p {
    font-size: 12px;
  }

  /* -----------------------------------------
       CONTACT + SOCIALS
    ----------------------------------------- */

  .footer {
    position: relative;

    left: auto;

    bottom: auto;

    width: 100%;

    margin-top: 45px;

    padding: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    transform: none;

    font-size: 11px;
  }

  .contact {
    gap: 7px;
  }

  .contact svg {
    width: 17px;

    height: 17px;
  }

  .footer-divider {
    height: 20px;
  }

  .socials {
    gap: 9px;
  }

  .socials a {
    width: 18px;

    height: 18px;
  }

.socials i {
    font-size: 17px;
}

  /* -----------------------------------------
       COOLER
    ----------------------------------------- */

  .hero-product {
    width: 100%;

    min-height: 330px;

    margin-top: 25px;

    transform: none;
  }

  .product-circle {
    width: 300px;

    height: 300px;
  }

  .cooler {
    width: min(330px, 90vw);

    transform: none;
  }

  .air-waves {
    left: 50%;

    transform: translate(-190px, -50%) scale(0.55) rotate(-8deg);
  }

  /* -----------------------------------------
       BOTTOM WAVES
    ----------------------------------------- */

  .bottom-waves {
    height: 130px;
  }

  .wave-light {
    height: 90px;

    bottom: 30px;
  }

  .wave-medium {
    height: 75px;

    bottom: 5px;
  }

  .wave-dark {
    height: 65px;

    bottom: -15px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .logo {
    width: 180px;
  }

  .hero {
    padding-top: 35px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .eyebrow {
    font-size: 9px;

    letter-spacing: 2px;
  }

  .description {
    font-size: 14px;
  }

  .features {
    gap: 20px 5px;
  }

  .hero-product {
    min-height: 280px;
  }

  .product-circle {
    width: 260px;

    height: 260px;
  }

  .cooler {
    width: 280px;
  }

  .footer {
    font-size: 9px;

    gap: 8px;
  }

  .socials {
    gap: 6px;
  }
}
