:root {
  --bg: #fff7f2;
  --ink: #161315;
  --muted: #71666f;
  --pink: #ff477e;
  --coral: #ff7a59;
  --yellow: #ffd166;
  --mint: #58c7a7;
  --lilac: #8b5cf6;
  --card: #ffffff;
  --line: rgba(22, 19, 21, 0.12);
  --shadow: 0 24px 60px rgba(80, 31, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 209, 102, 0.32), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(255, 71, 126, 0.18), transparent 30%),
    linear-gradient(180deg, #fff7f2 0%, #fff 42%, #fff7f2 100%);
  color: var(--ink);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 242, 0.82);
  border-bottom: 1px solid rgba(22, 19, 21, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 96px;
  padding: 0 24px;
}

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

.brand {
  font-size: 1.05rem;
  font-weight: 900;
  gap: 10px;
}

.brand img {
  height: 104px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  gap: 24px;
}

.nav-links a:hover {
  color: var(--pink);
}

.hero,
.about,
.content,
.partners,
.formats,
.contact,
.footer {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1fr);
  min-height: calc(100vh - 72px);
  padding-bottom: 72px;
  padding-top: 58px;
}

.tag {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 12vw, 10.5rem);
  letter-spacing: 0;
  line-height: 0.82;
  margin: 0 0 46px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-lead,
.about p,
.section-title p,
.content-cards p,
.contact-copy p,
.format-list span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.hero-lead {
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 14px 34px rgba(255, 71, 126, 0.28);
  color: #fff;
}

.button.ghost {
  background: #fff;
  border: 1px solid var(--line);
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.stats-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  max-width: 620px;
}

.stats-row div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(80, 31, 50, 0.08);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  font-weight: 900;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 3px;
}

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

.hero-visual::before {
  background: linear-gradient(135deg, rgba(255, 71, 126, 0.92), rgba(255, 209, 102, 0.92));
  border-radius: 42px;
  content: "";
  height: 78%;
  left: 13%;
  position: absolute;
  top: 10%;
  transform: rotate(-7deg);
  width: 68%;
}

.phone-shot {
  background: #fff;
  border: 10px solid #fff;
  border-radius: 36px;
  box-shadow: var(--shadow);
  object-fit: cover;
  position: absolute;
}

.main-shot {
  aspect-ratio: 0.75;
  height: min(72vh, 620px);
  left: 28%;
  top: 0;
  z-index: 2;
}

.side-shot {
  aspect-ratio: 0.56;
  height: 330px;
  z-index: 3;
}

.side-shot.one {
  left: 0;
  top: 84px;
  transform: rotate(-8deg);
}

.side-shot.two {
  bottom: 18px;
  right: 0;
  transform: rotate(8deg);
}

.about {
  align-items: end;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  padding-bottom: 78px;
  padding-top: 78px;
}

.section-title {
  margin-bottom: 34px;
  max-width: 860px;
}

.section-title.compact {
  max-width: 760px;
}

.content,
.partners,
.formats,
.contact {
  padding-bottom: 86px;
  padding-top: 86px;
}

.content-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.content-cards article {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(80, 31, 50, 0.1);
  overflow: hidden;
}

.content-cards img {
  aspect-ratio: 0.78;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.content-cards h3,
.content-cards p {
  padding-left: 22px;
  padding-right: 22px;
}

.content-cards h3 {
  margin-top: 22px;
}

.content-cards p {
  padding-bottom: 24px;
}

.partners {
  background: #171317;
  border-radius: 34px;
  color: #fff;
}

.partners .tag {
  color: var(--yellow);
}

.partners .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.brand-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.brand-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  min-width: 0;
  overflow: hidden;
}

.brand-grid img {
  aspect-ratio: 0.74;
  object-fit: cover;
  width: 100%;
}

.brand-grid span {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 14px 12px 16px;
}

.format-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.format-list div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(255, 71, 126, 0.16), rgba(88, 199, 167, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  min-height: 230px;
  padding: 24px;
}

.format-list strong,
.format-list span {
  display: block;
}

.format-list strong {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
}

.contact-copy {
  background:
    linear-gradient(135deg, rgba(255, 71, 126, 0.92), rgba(139, 92, 246, 0.9)),
    url("asses/SaveClip.App_724004722_18084177041640644_3449334341499877012_n.jpg") center/cover;
  border-radius: 34px;
  color: #fff;
  min-height: 440px;
  padding: 44px;
}

.contact-copy .tag,
.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  background: #fff;
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.contact-card span {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
}

.contact-card .button + .button {
  margin-top: 12px;
}

.footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 34px;
  padding-top: 16px;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-credit {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  opacity: 0.66;
  transition: opacity 160ms ease;
}

.developer-credit:hover {
  opacity: 1;
}

.developer-credit span {
  font-size: 0.78rem;
  font-weight: 800;
}

.developer-credit strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.developer-credit img {
  height: 26px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

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

  .content-cards,
  .format-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  .nav {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    text-align: center;
    width: 100%;
  }

  .brand img {
    height: 82px;
  }

  .hero-copy,
  .about,
  .section-title,
  .contact-copy,
  .contact-card {
    text-align: center;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
    line-height: 0.92;
    margin-bottom: 34px;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero,
  .about,
  .content,
  .partners,
  .formats,
  .contact,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats-row,
  .content-cards,
  .brand-grid,
  .format-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .hero-visual::before {
    left: 10%;
    width: 74%;
  }

  .main-shot {
    height: 470px;
    left: 18%;
  }

  .side-shot {
    border-width: 7px;
    height: 225px;
  }

  .side-shot.one {
    top: 74px;
  }

  .side-shot.two {
    bottom: 16px;
  }

  .partners,
  .contact-copy,
  .contact-card {
    border-radius: 26px;
  }

  .contact-copy {
    min-height: 360px;
    padding: 28px;
  }

  .footer,
  .footer div,
  .developer-credit {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .developer-credit {
    flex-wrap: wrap;
  }
}
