:root {
  --ink: #111114;
  --muted: #696972;
  --line: #e8e8ee;
  --surface: #ffffff;
  --soft: #f4f3f8;
  --rose: #e63475;
  --rose-dark: #ba1556;
  --teal: #1f8a8a;
  --gold: #b87b1f;
  --shadow: 0 24px 70px rgba(17, 17, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(232, 232, 238, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--rose-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, calc(100svh - 76px));
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(44px, 7vw, 88px);
  background: #fbf8fb;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: #ffffff;
}

.hero-copy,
.phone-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: #303036;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 720;
  line-height: 1.14;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.release-note {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.phone-stage {
  min-height: 690px;
  max-width: 100%;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid #111114;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone-front {
  right: clamp(30px, 6vw, 96px);
  top: 8px;
  width: min(35vw, 360px);
  min-width: 260px;
  z-index: 4;
}

.phone-back {
  width: min(29vw, 300px);
  min-width: 210px;
  opacity: 0.95;
  z-index: 2;
}

.phone-back.left {
  left: 0;
  top: 96px;
  transform: rotate(-8deg);
}

.phone-back.right {
  right: 0;
  top: 188px;
  transform: rotate(7deg);
}

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

.trust-strip div {
  min-height: 136px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
}

.moments-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: #fff9f2;
  border-bottom: 1px solid rgba(184, 123, 31, 0.18);
}

.moments-copy {
  position: sticky;
  top: 108px;
  max-width: 560px;
}

.moments-copy p:last-child {
  max-width: 500px;
  font-size: 18px;
}

.moments-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.moment-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(78, 54, 35, 0.1);
}

.moment-gift,
.moment-laugh {
  grid-column: span 7;
}

.moment-cafe,
.moment-flowers {
  grid-column: span 5;
}

.moment-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.moment-gift img {
  aspect-ratio: 16 / 9;
}

.moment-cafe img {
  aspect-ratio: 4 / 3;
}

.moment-flowers img {
  aspect-ratio: 4 / 5;
}

.moment-laugh img {
  aspect-ratio: 16 / 9;
}

.photo-focus-gift {
  object-position: 52% 38%;
}

.photo-focus-cafe {
  object-position: 50% 44%;
}

.photo-focus-flowers {
  object-position: 50% 45%;
}

.photo-focus-laugh {
  object-position: 48% 42%;
}

.moment-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.moment-card strong {
  font-size: 19px;
}

.moment-card span {
  color: var(--muted);
}

.section,
.split-section,
.final-cta {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

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

h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

p {
  color: var(--muted);
}

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

.feature-grid article,
.price-card {
  min-height: 250px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.price-card p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  background: #ffffff;
}

.screen-panel {
  display: flex;
  justify-content: center;
}

.mixed-panel {
  position: relative;
  min-height: 620px;
  align-items: center;
}

.screen-panel .app-screen {
  width: min(100%, 360px);
  border: 10px solid #111114;
  border-radius: 34px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.date-photo {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 1;
  width: min(55%, 360px);
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 17, 20, 0.16);
}

.steps ol {
  display: grid;
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
}

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

.pricing-section {
  background: #f7f8fa;
}

.section-heading p {
  max-width: 620px;
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.price-card {
  min-height: 220px;
}

.price-card.emphasized {
  border-color: rgba(230, 52, 117, 0.42);
  box-shadow: 0 18px 50px rgba(230, 52, 117, 0.13);
}

.price {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: var(--ink);
  color: #ffffff;
}

.final-cta .eyebrow,
.final-cta p {
  color: #ff9dbf;
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 30px;
}

.final-cta .button.primary {
  background: #ffffff;
  color: var(--ink);
}

.final-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.legal-page {
  padding: clamp(48px, 8vw, 90px) clamp(20px, 5vw, 72px);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 56px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1.12;
}

.legal-content p,
.legal-content li {
  font-size: 17px;
}

.legal-content a {
  color: var(--rose-dark);
  font-weight: 800;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-stage {
    min-height: 620px;
  }

  .phone-front {
    right: 50%;
    transform: translateX(50%);
    width: 320px;
  }

  .phone-back.left {
    left: 6%;
  }

  .phone-back.right {
    right: 6%;
  }

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

  .moments-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .moments-copy {
    position: static;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-photo {
    max-height: 420px;
  }
}

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

  .nav-links,
  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-text {
    font-size: 23px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone {
    border-width: 7px;
    border-radius: 26px;
  }

  .phone-front {
    width: 255px;
    min-width: 0;
  }

  .phone-back {
    width: 190px;
    min-width: 0;
  }

  .phone-back.left {
    left: -32px;
    top: 92px;
  }

  .phone-back.right {
    right: -32px;
    top: 148px;
  }

  .trust-strip,
  .feature-grid,
  .pricing-grid,
  .moments-gallery {
    grid-template-columns: 1fr;
  }

  .moment-card,
  .moment-gift,
  .moment-cafe,
  .moment-flowers,
  .moment-laugh {
    grid-column: auto;
  }

  .moment-gift img,
  .moment-cafe img,
  .moment-laugh img {
    aspect-ratio: 16 / 10;
  }

  .moment-flowers img {
    aspect-ratio: 4 / 5;
  }

  .mixed-panel {
    min-height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .date-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    order: 2;
  }

  .feature-grid article,
  .price-card {
    min-height: auto;
  }

  .feature-icon {
    margin-bottom: 32px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
