:root {
  --navy: #14283a;
  --navy-2: #0f2131;
  --navy-3: #1d3549;
  --pink: #ef9bc2;
  --pink-2: #f7bfd7;
  --hot-pink: #eb1678;
  --mint: #a9fbfb;
  --mint-2: #d5ffff;
  --white: #fff7fb;
  --muted: #bdd0d4;
  --line: rgba(169, 251, 251, 0.2);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.brand-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 68px);
  background: rgba(15, 33, 49, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.nav,
.actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 12px;
  color: var(--pink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-name strong,
.brand-name small {
  display: block;
}

.brand-name strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand-name small {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
}

.mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(239, 155, 194, 0.55);
  border-radius: 50%;
  color: var(--mint);
  box-shadow: inset 0 0 0 1px rgba(169, 251, 251, 0.22);
}

.nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.nav-cta:hover,
.footer a:hover {
  color: var(--mint);
}

.nav-cta,
.button {
  border-radius: 999px;
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(239, 155, 194, 0.34);
  color: var(--pink-2);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 68px) 54px;
  background:
    radial-gradient(circle at 14% 18%, rgba(235, 22, 120, 0.22), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(169, 251, 251, 0.16), transparent 24%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 52%, #183149);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px clamp(18px, 5vw, 68px) 46px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.ornament {
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.62;
  background:
    repeating-conic-gradient(from 8deg, var(--mint) 0 7deg, transparent 7deg 14deg, var(--pink) 14deg 20deg, transparent 20deg 29deg),
    radial-gradient(circle, transparent 0 45%, var(--navy) 46% 54%, transparent 55%);
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.22));
}

.ornament-left {
  top: -190px;
  left: -154px;
}

.ornament-right {
  right: -155px;
  bottom: -196px;
  transform: rotate(18deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  text-align: center;
}

.logo-banner {
  display: block;
  width: min(640px, 100%);
  margin: 0 auto 30px;
  border: 1px solid rgba(169, 251, 251, 0.18);
  box-shadow: var(--shadow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--pink-2);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  text-shadow: 0 2px 0 rgba(169, 251, 251, 0.22), 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hero .place {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 15px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--pink);
  color: var(--navy-2);
  box-shadow: 0 16px 38px rgba(239, 155, 194, 0.22);
}

.button.secondary {
  border: 1px solid rgba(169, 251, 251, 0.34);
  color: var(--mint-2);
}

.summary,
.services,
.contact {
  padding: clamp(74px, 10vw, 126px) clamp(18px, 5vw, 68px);
}

.summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: end;
  background: var(--navy-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary span,
.section-title span,
.contact span {
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary h2,
.section-title h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--pink-2);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-list article {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(20, 40, 58, 0.94);
}

.service-list article span {
  color: var(--hot-pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.service-list h3 {
  color: var(--pink-2);
  font-size: 23px;
  line-height: 1.15;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(28px, 5vw, 42px);
  background: rgba(20, 40, 58, 0.94);
  text-align: center;
}

.proof-item strong {
  color: var(--pink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 8vw, 108px);
  background: var(--navy-3);
  border-top: 1px solid var(--line);
}

.contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-links {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  padding: 18px 20px;
  border: 1px solid rgba(169, 251, 251, 0.22);
  color: var(--mint-2);
  background: rgba(15, 33, 49, 0.68);
  font-weight: 750;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 68px);
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--pink-2);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .summary,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-list,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand-header {
    padding: 14px 16px;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    min-height: 850px;
    padding: 108px 16px 54px;
  }

  .hero::before {
    inset: 70px 16px 32px;
  }

  .ornament {
    width: 250px;
  }

  .ornament-left {
    top: -146px;
    left: -118px;
  }

  .ornament-right {
    right: -124px;
    bottom: -146px;
  }

  .logo-banner {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .button {
    width: 100%;
  }

  .summary,
  .services,
  .contact {
    padding: 68px 16px;
  }

  .service-list,
  .proof {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: 220px;
  }

  .footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
