:root {
  --app-display-font: "Bricolage Grotesque", "Arial Rounded MT Bold", "SF Pro Rounded", ui-rounded, system-ui, sans-serif;
  --app-body-font: "Google Sans Flex", "Google Sans", "Product Sans", Arial, system-ui, sans-serif;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("assets/fonts/GoogleSansFlex-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("assets/fonts/GoogleSansFlex-SemiBold.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --ink: #363636;
  --muted: #363636;
  --soft-pink: #fee8f9;
  --pale-pink: #fef3fc;
  --hot-pink: #ff206e;
  --mint: #d9fff2;
  --lemon: #fff3a8;
  --line: rgba(54, 54, 54, 0.14);
  --shadow: 0 24px 80px rgba(54, 54, 54, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  color-scheme: light;
  font-family: var(--app-body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pale-pink);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-family: var(--app-display-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

nav a,
.site-footer a {
  transition: color 160ms ease;
}

nav a:hover,
.site-footer a:hover {
  color: var(--hot-pink);
}

.header-cta,
.primary-button,
.secondary-button,
.store-button {
  font-family: var(--app-display-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  min-height: 48px;
  font-size: 15px;
}

.primary-button,
.secondary-button,
.store-button {
  min-height: 64px;
  font-size: 18px;
}

.header-cta,
.primary-button,
.store-button {
  background: var(--soft-pink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.header-cta {
  padding: 0 18px;
}

.hero {
  min-height: calc(100vh - 85px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(32px, 5.6vw, 78px) clamp(20px, 6vw, 96px) clamp(40px, 6vw, 84px);
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
  transform: translateY(-60px);
}

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

h1 {
  font-family: var(--app-display-font);
  max-width: 700px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 600px;
  margin-top: 26px;
  font-family: var(--app-body-font);
  font-size: 22px;
  line-height: 1.42;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.store-button {
  padding: 0 24px;
}

.secondary-button {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.privacy-line {
  display: block;
  width: fit-content;
  margin-top: 20px !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--app-body-font);
  font-size: 18px !important;
  font-weight: 700;
  color: var(--hot-pink) !important;
}

.hero-media {
  justify-self: center;
  width: min(100%, 393px);
  padding: 14px;
  border-radius: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 68px);
}

h2 {
  font-family: var(--app-display-font);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-heading p {
  font-family: var(--app-body-font);
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
}

.about-section {
  background: linear-gradient(180deg, var(--white), var(--pale-pink));
}

.feature-grid,
.pricing-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.legal-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-grid article {
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  min-height: 240px;
  padding: 34px;
}

.feature-grid span {
  display: inline-flex;
  width: 72px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 999px;
  background: var(--lemon);
  font-size: 18px;
  font-weight: 900;
}

h3 {
  font-family: var(--app-display-font);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
}

article p,
li,
.billing-note,
.download-section p {
  font-family: var(--app-body-font);
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

article p {
  margin-top: 14px;
}

.screenshots-section {
  padding-right: 0;
  background: var(--white);
}

.screenshots-section .section-heading {
  padding-right: clamp(20px, 6vw, 96px);
}

.app-store-rail {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  overflow-x: auto;
  padding: 4px clamp(20px, 6vw, 96px) 32px 0;
  scroll-snap-type: x mandatory;
}

.app-store-export {
  flex: 0 0 min(74vw, 360px);
  margin: 0;
  scroll-snap-align: start;
}

.app-store-export img {
  width: 100%;
  aspect-ratio: 1260 / 2736;
  object-fit: cover;
  border-radius: 34px;
}

.pricing-section {
  background: var(--mint);
}

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

.price-card {
  padding: clamp(26px, 4vw, 42px);
}

.price-card.featured {
  background: var(--soft-pink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.price {
  margin-top: 16px;
  font-size: clamp(30px, 4.6vw, 58px) !important;
  line-height: 1;
  font-weight: 900;
  color: var(--ink) !important;
}

ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 24px;
}

li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--hot-pink);
  content: "";
}

.billing-note {
  margin-top: 24px;
  font-weight: 700;
  color: var(--ink);
}

.download-band {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 96px);
  background: var(--white);
}

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--hot-pink);
  color: var(--white);
  overflow: hidden;
}

.download-interest {
  position: absolute;
  right: clamp(48px, 8vw, 128px);
  bottom: -34px;
  z-index: 1;
  width: clamp(92px, 12vw, 150px);
  height: auto;
  transform: rotate(-6deg);
}

.download-section h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  color: var(--white);
}

.download-section p {
  max-width: 580px;
  margin-top: 14px;
  font-size: 18px;
  color: var(--white);
}

.store-button {
  position: relative;
  z-index: 2;
  min-width: 230px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.download-section > div {
  position: relative;
  z-index: 2;
}

.legal-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.legal-heading {
  align-items: start;
  margin-bottom: 30px;
}

.legal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-grid article {
  padding: 24px;
}

.legal-grid h3 {
  font-size: 19px;
}

.legal-grid p {
  font-size: 14px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.site-footer img {
  position: relative;
  z-index: 2;
  width: 118px;
}

.site-footer div {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  font-family: var(--app-body-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.legal-page-body {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
}

.legal-site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--line);
}

.legal-site-header nav {
  color: var(--muted);
}

.legal-site-header nav a:hover {
  color: var(--hot-pink);
}

.legal-site-header .header-cta {
  background: var(--soft-pink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.legal-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 850px);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(52px, 9vw, 104px) clamp(20px, 6vw, 80px);
}

.legal-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-sidebar p {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.legal-sidebar a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
}

.legal-sidebar a:hover,
.legal-sidebar a.is-active {
  background: var(--soft-pink);
  color: var(--ink);
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-kicker,
.legal-updated {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.legal-document h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  color: var(--ink);
}

.legal-document h2 {
  margin-top: 30px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  color: var(--ink);
}

.legal-document h3 {
  margin-top: 12px;
  font-size: 21px;
  color: var(--ink);
}

.legal-document p,
.legal-document li {
  max-width: 820px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted);
}

.legal-document strong,
.legal-document a {
  color: var(--ink);
}

.legal-document a {
  border-bottom: 1px solid var(--hot-pink);
}

.legal-document ul {
  margin-top: 4px;
  gap: 10px;
}

.legal-document li::before {
  background: var(--hot-pink);
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  justify-content: center;
  padding: 34px clamp(20px, 6vw, 80px) 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.legal-footer a:hover {
  color: var(--hot-pink);
}

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

  nav {
    display: none;
  }

  .hero,
  .section-heading,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 24px;
  }

  .hero-media {
    width: min(82vw, 393px);
  }

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

  .download-section {
    justify-items: start;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .primary-button,
  .secondary-button,
  .store-button {
    width: 100%;
  }

  .app-store-export {
    flex-basis: min(82vw, 330px);
  }

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