:root {
  --ink: #2d2430;
  --muted: #735f70;
  --rose: #fff0f6;
  --pink: #ff5fa8;
  --plum: #6b3a8f;
  --violet: #a775d5;
  --gold: #f6be4f;
  --cream: #fff9ef;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(83, 43, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 95, 168, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(246, 190, 79, 0.16), transparent 24rem),
    linear-gradient(180deg, #fff7fb 0%, #fffaf2 44%, #ffffff 100%);
}

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

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

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px min(5vw, 56px);
  border-bottom: 1px solid rgba(107, 58, 143, 0.1);
  background: rgba(255, 249, 252, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  overflow-wrap: anywhere;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 95, 168, 0.22);
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--plum);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: 26px 0 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 16px 34px rgba(255, 95, 168, 0.28);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-subtitle,
.about-copy p,
.feature-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #321f32;
  background: linear-gradient(135deg, var(--gold), #ffe69a);
  box-shadow: 0 16px 34px rgba(246, 190, 79, 0.32);
}

.button.secondary {
  color: var(--plum);
  border: 1px solid rgba(107, 58, 143, 0.2);
  background: rgba(255, 255, 255, 0.68);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 570px;
}

.phone-frame {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-phone {
  width: min(340px, 78vw);
  aspect-ratio: 9 / 16;
  transform: rotate(2deg);
}

.floating-shot {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: min(170px, 35vw);
  aspect-ratio: 9 / 16;
  border-width: 7px;
  transform: rotate(-7deg);
}

.features {
  padding: 72px 0 86px;
}

.section-heading {
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(107, 58, 143, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(83, 43, 72, 0.08);
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #3f2850;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe8a8, #ffb7d7);
}

.screenshots {
  padding: 78px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(107, 58, 143, 0.08), rgba(255, 240, 246, 0.76));
}

.gallery-heading {
  text-align: center;
}

.gallery-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6px 0 8px;
}

.gallery-card {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(107, 58, 143, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 44px rgba(83, 43, 72, 0.13);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: center;
  padding: 92px 0;
}

.about-panel {
  padding: 30px;
  border: 1px solid rgba(246, 190, 79, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff7df, #fff1f8);
  box-shadow: 0 20px 52px rgba(83, 43, 72, 0.11);
}

.about-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-panel strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.22;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px clamp(24px, 5vw, 58px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(107, 58, 143, 0.92), rgba(255, 95, 168, 0.88)),
    url("assets/screenshot-4-pink-room.png") center / cover;
  box-shadow: var(--shadow);
}

.contact .eyebrow {
  color: #ffe7a4;
}

.contact h2 {
  margin-bottom: 0;
}

.email-link {
  flex: 0 0 auto;
  padding: 16px 22px;
  border-radius: 999px;
  color: #3f2850;
  font-weight: 900;
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 40px min(5vw, 56px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.site-footer strong {
  color: var(--ink);
}

.legal-main {
  padding: 70px 0 86px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  font-size: 4.1rem;
}

.legal-card {
  max-width: 900px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(107, 58, 143, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(83, 43, 72, 0.08);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.65rem;
  line-height: 1.15;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--plum);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, calc(100% - 40px));
  }

  .about,
  .contact,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 2.55rem;
    line-height: 0.94;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .hero-subtitle,
  .about-copy p,
  .feature-card p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 176px;
    margin-top: 18px;
  }

  .main-phone {
    width: min(112px, 33vw);
  }

  .floating-shot {
    width: min(66px, 20vw);
    right: 88px;
    bottom: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-gallery {
    grid-template-columns: 1fr;
    width: min(320px, calc(100% - 40px));
    gap: 20px;
  }

  .legal-hero h1 {
    font-size: 2.65rem;
  }

  .contact {
    padding: 34px 22px;
  }

  .email-link {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }
}
