:root {
  --teal: #11b8c9;
  --teal-dark: #059bb1;
  --pink: #ff4f9a;
  --coral: #ff6d4d;
  --orange: #ff9b42;
  --navy: #222338;
  --navy-deep: #171a2f;
  --text: #303244;
  --muted: #6a6c7d;
  --bg-light: #fbfbfd;
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(255, 255, 255, 0.8);
  --shadow: 0 18px 45px rgba(36, 42, 76, 0.12);
  --shadow-soft: 0 12px 28px rgba(36, 42, 76, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(17, 184, 201, 0.1), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(255, 79, 154, 0.1), transparent 18%),
    radial-gradient(circle at 85% 88%, rgba(255, 155, 66, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  overflow-x: hidden;
}

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

.page {
  position: relative;
  flex: 1;
  min-height: 100vh;
  padding: 24px 16px 28px;
  isolation: isolate;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.shape,
.dots,
.triangle,
.ring {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape {
  border-radius: 999px;
  filter: blur(10px);
}

.shape-one {
  top: -60px;
  left: -100px;
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, rgba(17, 184, 201, 0.16), rgba(255, 79, 154, 0.05));
}

.shape-two {
  top: 40px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, rgba(255, 79, 154, 0.12), rgba(255, 155, 66, 0.07));
}

.shape-three {
  bottom: 80px;
  left: 0;
  width: 440px;
  height: 180px;
  background: linear-gradient(90deg, rgba(17, 184, 201, 0.08), rgba(255, 79, 154, 0.06), rgba(255, 155, 66, 0.08));
}

.dots {
  width: 140px;
  height: 80px;
  opacity: 0.65;
  background-image: radial-gradient(rgba(255, 109, 77, 0.45) 1.7px, transparent 1.7px);
  background-size: 15px 15px;
}

.dots-one {
  top: 90px;
  right: 160px;
}

.dots-two {
  bottom: 140px;
  left: 90px;
}

.triangle {
  width: 0;
  height: 0;
  border-right: 16px solid transparent;
  border-bottom: 28px solid rgba(255, 79, 154, 0.45);
  border-left: 16px solid transparent;
}

.triangle-one {
  top: 180px;
  left: 50px;
  transform: rotate(14deg);
}

.triangle-two {
  right: 80px;
  bottom: 180px;
  border-bottom-color: rgba(17, 184, 201, 0.45);
  transform: rotate(-14deg);
}

.ring {
  top: 120px;
  right: 120px;
  width: 240px;
  height: 240px;
  border: 4px solid rgba(17, 184, 201, 0.25);
  border-right-color: rgba(255, 79, 154, 0.25);
  border-bottom-color: rgba(255, 155, 66, 0.25);
  border-radius: 50%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "text visual"
    "footer footer";
  align-items: center;
  gap: 34px;
  row-gap: 18px;
  overflow: hidden;
  padding: 54px 48px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--card-border);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-text,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-text {
  grid-area: text;
  padding-bottom: 34px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  background: rgba(17, 184, 201, 0.1);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.headline-top {
  display: block;
  color: var(--teal-dark);
  font-weight: 800;
}

.headline-script {
  color: var(--coral);
  font-weight: 400;
  font-family: "Pacifico", cursive;
  letter-spacing: 0;
}

.highlight-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 14px 18px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  color: #ffffff;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(255, 79, 154, 0.2);
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), #2bb8a5);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(5, 155, 177, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(5, 155, 177, 0.32);
}

.hero-visual {
  grid-area: visual;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding-bottom: 34px;
}

.image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(440px, 100%);
  margin: 0 auto;
}

.image-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(36, 42, 76, 0.18));
}


.bubble {
  position: absolute;
  max-width: 220px;
  padding: 14px 18px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 700;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.bubble-top {
  top: 38px;
  right: 18px;
  color: var(--teal-dark);
}

.bubble-bottom {
  bottom: 44px;
  left: 8px;
  color: var(--pink);
}

.site-footer {
  grid-area: footer;
  width: calc(100% + 96px);
  margin: 0 -48px;
  padding: 14px 24px 16px;
  background: linear-gradient(135deg, rgba(17, 184, 201, 0.08), rgba(255, 79, 154, 0.08), rgba(255, 155, 66, 0.08));
  border-top: 1px solid rgba(34, 35, 56, 0.08);
  border-radius: 0 0 36px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.copyright,
.built-by {
  color: #6a6c7d;
  font-size: 12px;
  line-height: 1.35;
}

.built-by a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.built-by a:hover {
  color: var(--pink);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "text"
      "footer";
    gap: 24px;
    padding: 36px 24px 0;
  }

  .hero-text {
    padding-bottom: 0;
    text-align: center;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .button-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 360px;
    padding-bottom: 8px;
    align-items: flex-start;
    justify-content: center;
    order: -1;
  }

  .image-wrap {
    width: min(320px, 80vw);
    margin: 0 auto;
  }

  .image-wrap img {
    max-height: 380px;
  }

  .site-footer {
    width: calc(100% + 48px);
    margin: 0 -24px;
    padding: 14px 18px 16px;
  }

  .bubble-top {
    top: 12px;
    right: 12px;
  }

  .bubble-bottom {
    bottom: 18px;
    left: 12px;
  }
}

@media (max-width: 700px) {
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero {
    border-radius: 28px;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    padding-bottom: 0;
    order: -1;
  }

  .image-wrap {
    width: min(320px, 100%);
  }

  .image-wrap img {
    max-height: 300px;
  }

  .bubble {
    max-width: 185px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: center;
  }

  .bubble-top {
    top: 8px;
    right: -6px;
  }

  .bubble-bottom {
    bottom: 12px;
    left: -4px;
  }

  .hero-copy {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 14px 12px 26px;
  }

  .hero {
    padding: 26px 18px 0;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .highlight-badge {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-copy {
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .image-wrap {
    width: min(260px, 100%);
  }

  .image-wrap img {
    max-height: 255px;
  }

  .bubble {
    max-width: 150px;
    padding: 8px 10px;
    font-size: 0.72rem;
    border-radius: 16px;
  }

  .bubble-top {
    top: 4px;
    right: -6px;
  }

  .bubble-bottom {
    bottom: 10px;
    left: -4px;
  }

  .site-footer {
    width: calc(100% + 36px);
    margin: 0 -18px;
    padding: 12px 14px 14px;
    border-radius: 0 0 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }
}
