:root {
  --pink: #f70a78;
  --rose: #ff4f9a;
  --coral: #ff7b61;
  --mint: #35c9b3;
  --sky: #7fb1e8;
  --plum: #35102f;
  --ink: #251321;
  --muted: #6f5968;
  --soft: #fff4fa;
  --soft-strong: #ffe3f0;
  --white: #ffffff;
  --line: rgba(53, 16, 47, 0.12);
  --shadow: 0 24px 70px rgba(53, 16, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(53, 16, 47, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 16, 47, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fff5fa 46%, #ffffff 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

a {
  color: var(--pink);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
main,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  font-weight: 900;
}

.mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 14px 30px rgba(247, 10, 120, 0.22);
}

.site-nav,
.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a,
.footer a {
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--plum);
}

.nav-cta:hover {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  align-items: center;
  gap: 46px;
  min-height: 600px;
  padding: 34px 0 58px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--plum);
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.hero-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #5b4555;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 18px 38px rgba(247, 10, 120, 0.23);
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--plum);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.privacy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.privacy-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: #5d4656;
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.82);
}

.privacy-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 16px 0;
}

.photo-pair {
  position: relative;
  min-height: 540px;
}

.glow-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(53, 16, 47, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(53, 16, 47, 0.16);
}

.glow-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.glow-photo figcaption {
  padding: 12px 14px;
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.96);
}

.glow-photo-before {
  z-index: 1;
  top: 70px;
  left: 0;
  width: min(300px, 54%);
  transform: rotate(-3deg);
}

.glow-photo-after {
  z-index: 2;
  top: 0;
  right: 0;
  width: min(330px, 58%);
  transform: rotate(2deg);
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: min(300px, 78%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(53, 16, 47, 0.13);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--plum);
  font-size: 0.98rem;
}

.hero-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 0.78fr;
  gap: 14px;
  margin-top: -10px;
  padding-bottom: 50px;
}

.founder-card,
.proof-card,
.privacy-card,
.steps article,
.launch-card,
.download-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(53, 16, 47, 0.07);
}

.founder-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 20px;
}

.founder-avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  font-weight: 950;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, var(--plum), var(--pink));
}

.founder-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.28;
}

.founder-card p,
.proof-card p,
.privacy-card p,
.launch-card p {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.proof-card,
.privacy-card {
  padding: 20px;
}

.proof-label,
.channel {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-card a,
.launch-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
}

.section {
  padding: 78px 0;
}

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

.section-heading p,
.sample-copy p,
.download-band p {
  margin: 16px 0 0;
}

.steps-section,
.sample-section,
.launch-section {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.steps article {
  min-height: 250px;
  padding: 24px;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.steps p {
  margin: 14px 0 0;
}

.sample-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.sample-copy {
  max-width: 560px;
}

.outcome-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 24px;
  color: var(--plum);
  font-weight: 850;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.sample-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 402 / 920;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(53, 16, 47, 0.12);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(53, 16, 47, 0.14);
}

.sample-grid img:nth-child(2) {
  margin-top: 42px;
}

.launch-section {
  padding-bottom: 64px;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.launch-card {
  min-height: 270px;
  padding: 24px;
}

.launch-card h3 {
  font-size: 1.28rem;
}

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 72px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 227, 240, 0.96), rgba(235, 250, 246, 0.94)),
    var(--white);
}

.download-band h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.download-band p {
  max-width: 620px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 64px;
}

.page.narrow {
  width: min(860px, calc(100% - 40px));
}

.page .site-header,
.page .nav {
  width: auto;
  margin: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 36px;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.nav nav a {
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 800;
}

.content {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.content h1 {
  max-width: 720px;
  font-size: 4rem;
  line-height: 1;
}

.content h2 {
  margin-top: 34px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.content p {
  max-width: 760px;
}

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

.email {
  display: inline-flex;
  margin: 12px 0 18px;
  color: var(--plum);
  font-size: 1.25rem;
  font-weight: 900;
}

.muted {
  color: rgba(114, 93, 108, 0.84);
}

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding-top: 24px;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .trust-row,
  .sample-section {
    grid-template-columns: 1fr;
  }

  .sample-grid {
    max-width: 660px;
  }
}

@media (max-width: 820px) {
  .steps,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .steps article,
  .launch-card {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 24px;
  }

  .download-band,
  .footer,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .footer,
  .page,
  .page.narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-nav,
  .nav nav,
  .footer nav {
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-copy > p {
    font-size: 1.05rem;
  }

  .actions,
  .actions .button,
  .download-band .button {
    width: 100%;
  }

  .privacy-strip {
    display: grid;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .photo-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
  }

  .glow-photo {
    position: static;
    width: 100%;
    transform: none;
  }

  .glow-photo figcaption {
    min-height: 58px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .trust-row {
    margin-top: 0;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

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

  .sample-grid img:nth-child(2) {
    margin-top: 0;
  }

  .download-band {
    margin-bottom: 56px;
    padding: 22px;
  }

  .content {
    padding: 28px;
  }

  .content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  h2,
  .download-band h2 {
    font-size: 1.95rem;
  }

  p,
  li {
    font-size: 1rem;
  }

  .brand {
    font-size: 0.98rem;
  }

  .site-nav,
  .nav nav,
  .footer nav {
    gap: 12px;
  }

  .content h1 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
