:root {
  color-scheme: light dark;
  --background: #f7f5ef;
  --panel: #fffdf8;
  --elevated-row: #ffffff;
  --surface: #e7e3da;
  --surface-high: #f0ece3;
  --text: #18201f;
  --muted-text: #66716d;
  --outline: #c8c4ba;
  --feed: #006b5f;
  --feed-soft: #ddf4f0;
  --sleep: #4f5d95;
  --sleep-soft: #e8ebfa;
  --diaper: #f2a900;
  --success: #2e7d5b;
  --danger: #d62828;
  --shadow: 0 20px 48px rgba(24, 32, 31, 0.10);
  --soft-shadow: 0 10px 28px rgba(24, 32, 31, 0.08);
  --glass-fill: rgba(255, 253, 248, 0.68);
  --glass-row: rgba(255, 255, 255, 0.62);
  --glass-stroke: rgba(200, 196, 186, 0.42);
  --artwork: url("/assets/app-background-light-seamless.png");
  --page-gutter: 24px;
  --max-width: 1120px;
  --radius-row: 24px;
  --radius-panel: 28px;
  --radius-button: 999px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #101615;
    --panel: #1b2321;
    --elevated-row: #222b28;
    --surface: #2b3330;
    --surface-high: #35413d;
    --text: #f4f7f4;
    --muted-text: #a8b3ae;
    --outline: #3f4a46;
    --feed: #8fd1d3;
    --feed-soft: #0b2b2a;
    --sleep: #a8b4ff;
    --sleep-soft: #17224a;
    --diaper: #f5c85c;
    --success: #74cfa5;
    --danger: #eb6a6a;
    --shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
    --soft-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    --glass-fill: rgba(27, 35, 33, 0.72);
    --glass-row: rgba(34, 43, 40, 0.66);
    --glass-stroke: rgba(63, 74, 70, 0.54);
    --artwork: url("/assets/app-background-night-seamless.png");
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.72), rgba(247, 245, 239, 0.94)),
    var(--artwork) center top / 430px auto repeat;
}

@media (prefers-color-scheme: dark) {
  body::before {
    background:
      linear-gradient(180deg, rgba(16, 22, 21, 0.74), rgba(16, 22, 21, 0.94)),
      var(--artwork) center top / 430px auto repeat;
  }
}

a {
  color: var(--feed);
}

img,
svg {
  max-width: 100%;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.backdrop-layer {
  position: absolute;
  inset: -12vh -8vw;
  background-image: var(--artwork);
  background-repeat: repeat;
  background-size: 430px auto;
  opacity: 0.18;
  will-change: transform;
}

.backdrop-layer-soft {
  filter: blur(1px);
}

.backdrop-layer-drift {
  opacity: 0.11;
  background-position: 52% 28%;
  transform: scale(1.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px var(--page-gutter);
  background: color-mix(in srgb, var(--background) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--outline) 52%, transparent);
  backdrop-filter: blur(22px) saturate(1.18);
}

.nav,
.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--glass-stroke);
  border-radius: 12px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--feed) 16%, transparent), transparent),
    var(--glass-row);
  box-shadow: var(--soft-shadow);
  color: var(--feed);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius-button);
  color: var(--muted-text);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--feed);
  background: color-mix(in srgb, var(--feed-soft) 72%, transparent);
}

.hero-section,
.value-section,
.privacy-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 84px var(--page-gutter);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 58px;
  padding-top: 44px;
  padding-bottom: 52px;
}

.hero-copy h1,
.section-heading h2,
.night-content h2,
.legal h1 {
  margin: 0;
  max-width: 760px;
  font-family: ui-serif, "New York", Georgia, serif;
  font-size: 4.05rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.lead,
.section-heading p,
.night-content p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted-text);
  font-size: 1.25rem;
  line-height: 1.55;
}

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

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

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

.button-primary {
  background: var(--feed);
  color: var(--background);
  box-shadow: var(--soft-shadow);
}

.button-secondary {
  background: var(--glass-fill);
  border-color: var(--glass-stroke);
  color: var(--feed);
  backdrop-filter: blur(18px) saturate(1.16);
}

.hero-preview {
  justify-self: end;
  will-change: transform;
}

.phone-shell {
  width: min(100%, 372px);
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--outline) 62%, transparent);
  border-radius: 42px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--panel) 78%, transparent), color-mix(in srgb, var(--surface-high) 54%, transparent)),
    var(--artwork) center / cover;
  box-shadow: var(--shadow);
}

.phone-screen {
  overflow: hidden;
  border: 1px solid var(--glass-stroke);
  border-radius: 32px;
  background: var(--background);
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.night-row,
.value-row,
.link-card {
  display: flex;
  align-items: center;
}

.value-row,
.link-card {
  border: 1px solid var(--glass-stroke);
  background: var(--glass-fill);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px) saturate(1.18);
}

.value-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section-heading h2,
.night-content h2,
.legal h1 {
  font-size: 3.2rem;
}

.value-list {
  display: grid;
  gap: 12px;
}

.value-row {
  gap: 18px;
  align-items: flex-start;
  min-height: 112px;
  padding: 20px;
  border-radius: var(--radius-row);
}

.value-number {
  min-width: 44px;
  color: var(--feed);
  font-weight: 900;
}

.value-row h3,
.link-card span,
.night-row strong {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.value-row p {
  margin: 6px 0 0;
  color: var(--muted-text);
}

.night-section {
  position: relative;
  width: min(calc(100% - 2 * var(--page-gutter)), 1180px);
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #3f4a46 72%, transparent);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(16, 22, 21, 0.96), rgba(16, 22, 21, 0.74)),
    url("/assets/app-background-night-seamless.png") center / 430px auto repeat;
  box-shadow: var(--shadow);
  color: #f4f7f4;
}

.night-art {
  min-height: 540px;
  background: url("/assets/app-background-night-seamless.png") center / cover;
  opacity: 0.82;
  will-change: transform;
}

.night-content {
  position: relative;
  z-index: 1;
  padding: 56px;
}

.night-content h2,
.night-content p,
.night-row strong {
  color: #f4f7f4;
}

.night-content p,
.night-row span {
  color: #a8b3ae;
}

.night-rows {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.night-row {
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(168, 179, 174, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.night-row strong {
  flex: 0 0 160px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.link-card {
  min-height: 166px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius-row);
  color: var(--text);
  text-decoration: none;
}

.link-card span {
  color: var(--feed);
  font-weight: 900;
}

.link-card strong {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--page-gutter) 46px;
  color: var(--muted-text);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.content {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 64px var(--page-gutter) 86px;
}

.legal {
  color: var(--text);
}

.legal h1 {
  margin-bottom: 24px;
}

.legal h2 {
  margin: 42px 0 12px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.legal h3 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
}

.legal p,
.legal li {
  color: var(--muted-text);
  font-size: 1rem;
}

.legal strong {
  color: var(--text);
}

.legal ul {
  padding-left: 1.3rem;
}

.legal li + li {
  margin-top: 0.45rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.card,
.callout {
  padding: 20px;
  border: 1px solid var(--glass-stroke);
  border-radius: var(--radius-row);
  background: var(--glass-fill);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px) saturate(1.18);
}

.card h3 {
  margin-top: 0;
}

.callout {
  margin: 28px 0;
}

.contact-panel {
  margin: 34px 0 46px;
  padding: 24px;
  border: 1px solid var(--glass-stroke);
  border-radius: var(--radius-row);
  background: var(--glass-fill);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px) saturate(1.18);
}

.contact-panel h2 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-grid-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.contact-form label span {
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: color-mix(in srgb, var(--elevated-row) 86%, transparent);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--feed) 28%, transparent);
  border-color: var(--feed);
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.form-status {
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.form-status-error {
  color: var(--danger);
}

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

  .hero-section {
    min-height: auto;
    gap: 42px;
  }

  .hero-preview {
    justify-self: center;
    width: 100%;
  }

  .phone-shell {
    margin: 0 auto;
  }

  .night-section {
    width: min(calc(100% - 32px), 760px);
  }

  .night-art {
    min-height: 220px;
  }

  .night-content {
    padding: 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 18px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-section,
  .value-section,
  .privacy-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .section-heading h2,
  .night-content h2,
  .legal h1 {
    font-size: 2.35rem;
  }

  .lead,
  .section-heading p,
  .night-content p {
    font-size: 1.08rem;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .privacy-grid,
  .cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .night-row {
    display: block;
  }

  .night-row span {
    display: block;
    margin-top: 6px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    margin-top: 14px;
  }
}

@media (max-width: 460px) {
  .nav {
    align-items: flex-start;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 0 8px;
  }

  .hero-copy h1 {
    font-size: 2.28rem;
  }

  .phone-shell {
    padding: 8px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .backdrop-layer,
  .hero-preview,
  .night-art {
    transform: none !important;
  }
}

/* Current public-release homepage */

.page-release {
  color-scheme: light;
  --background: #f7f5ef;
  --panel: #fffdf8;
  --elevated-row: #ffffff;
  --surface: #e7e3da;
  --surface-high: #f0ece3;
  --text: #17211f;
  --muted-text: #65716d;
  --outline: #c8c4ba;
  --feed: #087f73;
  --feed-soft: #ddf4f0;
  --sleep: #4f5d95;
  --sleep-soft: #e8ebfa;
  --diaper: #d99100;
  --glass-fill: rgba(255, 253, 248, 0.72);
  --glass-row: rgba(255, 255, 255, 0.76);
  --glass-stroke: rgba(200, 196, 186, 0.46);
  --release-width: 1240px;
  background: var(--background);
}

.page-release::before {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.84), rgba(247, 245, 239, 0.96)),
    url("/assets/app-background-light-seamless.png") center top / 430px auto repeat;
}

.page-release .backdrop-layer {
  background-image: url("/assets/app-background-light-seamless.png");
  opacity: 0.14;
}

.release-header {
  background: rgba(247, 245, 239, 0.82);
}

.release-header .nav,
.release-footer {
  width: min(100%, var(--release-width));
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(8, 127, 115, 0.14);
}

.release-hero {
  width: min(100%, var(--release-width));
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 38px;
  margin: 0 auto;
  padding: 74px var(--page-gutter) 64px;
}

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

.release-hero-copy h1,
.release-section-heading h2,
.shared-copy h2,
.release-privacy h2,
.closing-section h2 {
  margin: 0;
  color: var(--text);
  font-family: ui-serif, "New York", Georgia, serif;
  letter-spacing: -0.035em;
}

.release-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3.7rem, 6.7vw, 6.4rem);
  line-height: 0.95;
}

.release-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: var(--muted-text);
  font-size: clamp(1.13rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted-text);
  font-size: 0.92rem;
  font-weight: 750;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 17px;
}

.trust-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--feed);
  box-shadow: 0 0 0 5px rgba(8, 127, 115, 0.09);
}

.release-hero-visual {
  position: relative;
  min-height: 670px;
  isolation: isolate;
}

.device-shot,
.shared-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(121, 132, 127, 0.24);
  background: #fff;
  box-shadow:
    0 42px 88px rgba(24, 32, 31, 0.17),
    0 10px 28px rgba(24, 32, 31, 0.10);
}

.device-shot img,
.shared-shot img,
.care-card-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.device-shot {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 42px;
  transform-origin: center;
}

.device-shot-main {
  z-index: 3;
  width: 340px;
  transform: translate(-50%, -50%);
}

.device-shot-side {
  z-index: 1;
  width: 270px;
  opacity: 0.92;
}

.device-shot-left {
  transform: translate(-98%, -48%) rotate(-7deg);
}

.device-shot-right {
  transform: translate(-2%, -48%) rotate(7deg);
}

.release-hero-visual::before,
.release-hero-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
}

.release-hero-visual::before {
  inset: 10% 6% 14%;
  z-index: -1;
  background: radial-gradient(circle, rgba(115, 211, 199, 0.29), rgba(232, 235, 250, 0.16) 52%, transparent 72%);
}

.release-hero-visual::after {
  right: 5%;
  bottom: 11%;
  width: 140px;
  height: 140px;
  z-index: 2;
  background: rgba(244, 190, 70, 0.18);
}

.proof-strip {
  width: min(calc(100% - 2 * var(--page-gutter)), var(--release-width));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 28px;
  padding: 16px;
  border: 1px solid var(--glass-stroke);
  border-radius: 999px;
  background: var(--glass-fill);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(1.15);
}

.proof-strip span {
  padding: 6px 13px;
  color: var(--muted-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-strip span + span {
  border-left: 1px solid rgba(101, 113, 109, 0.22);
}

.care-section,
.shared-section,
.closing-section {
  width: min(100%, var(--release-width));
  margin: 0 auto;
  padding: 110px var(--page-gutter);
}

.release-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.release-section-heading h2,
.shared-copy h2,
.release-privacy h2,
.closing-section h2 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1;
}

.release-section-heading > p:last-child,
.shared-copy > p,
.release-privacy-copy > p,
.closing-section > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted-text);
  font-size: 1.16rem;
  line-height: 1.6;
}

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

.care-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--glass-stroke);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.care-card-feed {
  background: linear-gradient(160deg, #f7fffc, #dff3ed);
}

.care-card-sleep {
  background: linear-gradient(160deg, #fbfbff, #e7eaf8);
}

.care-card-diaper {
  background: linear-gradient(160deg, #fffdf7, #f8ebca);
}

.care-card-copy {
  position: relative;
  z-index: 2;
  padding: 30px 30px 22px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--feed);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.care-card-sleep .feature-kicker {
  color: var(--sleep);
}

.care-card-diaper .feature-kicker {
  color: var(--diaper);
}

.care-card h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-family: ui-serif, "New York", Georgia, serif;
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.care-card p {
  margin: 12px 0 0;
  color: var(--muted-text);
}

.care-card-screen {
  position: absolute;
  right: 28px;
  bottom: -370px;
  left: 28px;
  overflow: hidden;
  border: 1px solid rgba(121, 132, 127, 0.22);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(24, 32, 31, 0.14);
}

.shared-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 56px;
}

.shared-copy > p {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(101, 113, 109, 0.19);
}

.feature-list strong {
  color: var(--text);
}

.feature-list span {
  color: var(--muted-text);
}

.shared-gallery {
  position: relative;
  min-height: 720px;
}

.shared-shot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  border-radius: 36px;
  transform-origin: center;
}

.shared-shot-journey {
  z-index: 1;
  transform: translate(-110%, -49%) rotate(-6deg);
}

.shared-shot-family {
  z-index: 3;
  transform: translate(-50%, -53%);
}

.shared-shot-privacy {
  z-index: 2;
  transform: translate(10%, -49%) rotate(6deg);
}

.shared-gallery::before {
  position: absolute;
  inset: 9% 3% 6%;
  content: "";
  border-radius: 48%;
  background: radial-gradient(circle, rgba(115, 211, 199, 0.24), rgba(244, 190, 70, 0.13) 55%, transparent 74%);
}

.release-privacy {
  width: min(calc(100% - 2 * var(--page-gutter)), var(--release-width));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  margin: 32px auto;
  padding: 72px;
  border: 1px solid rgba(143, 209, 211, 0.18);
  border-radius: 38px;
  background:
    linear-gradient(125deg, rgba(16, 22, 21, 0.98), rgba(21, 45, 42, 0.93)),
    url("/assets/app-background-night-seamless.png") center / 430px auto repeat;
  box-shadow: var(--shadow);
}

.release-privacy .eyebrow {
  color: #8fd1d3;
}

.release-privacy h2,
.release-privacy-copy > p {
  color: #f4f7f4;
}

.release-privacy-copy > p {
  margin-top: 0;
  color: #afbbb6;
}

.privacy-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.privacy-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(143, 209, 211, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7f4;
  font-weight: 800;
  text-decoration: none;
}

.privacy-links a:hover,
.privacy-links a:focus-visible {
  border-color: rgba(143, 209, 211, 0.5);
  background: rgba(143, 209, 211, 0.1);
}

.closing-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 130px;
  padding-bottom: 130px;
  text-align: center;
}

.closing-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(8, 127, 115, 0.18);
}

.closing-section h2 {
  max-width: 880px;
}

.closing-section > p:not(.eyebrow) {
  max-width: 650px;
}

.release-footer {
  border-top: 1px solid rgba(101, 113, 109, 0.16);
}

@media (max-width: 1080px) {
  .release-hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .release-hero-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .release-hero-copy .actions,
  .trust-list {
    justify-content: center;
  }

  .release-hero-visual {
    width: min(100%, 720px);
    min-height: 650px;
    justify-self: center;
  }

  .shared-section {
    grid-template-columns: 1fr;
  }

  .shared-copy {
    max-width: 760px;
  }

  .shared-gallery {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 880px) {
  .care-gallery {
    grid-template-columns: 1fr;
  }

  .care-card {
    min-height: 600px;
  }

  .care-card-screen {
    right: 18%;
    bottom: -650px;
    left: 18%;
  }

  .release-privacy {
    grid-template-columns: 1fr;
    padding: 52px;
  }
}

@media (max-width: 680px) {
  .release-header .brand span {
    display: none;
  }

  .release-header .nav-links {
    gap: 0;
  }

  .release-hero {
    min-height: auto;
    padding-top: 70px;
  }

  .release-hero-copy h1 {
    font-size: clamp(3.25rem, 14vw, 4.7rem);
  }

  .release-hero-visual {
    min-height: 520px;
    margin-top: 14px;
  }

  .device-shot-main {
    width: 255px;
  }

  .device-shot-side {
    width: 202px;
  }

  .device-shot-left {
    transform: translate(-94%, -48%) rotate(-7deg);
  }

  .device-shot-right {
    transform: translate(-6%, -48%) rotate(7deg);
  }

  .proof-strip {
    border-radius: 28px;
  }

  .proof-strip span + span {
    border-left: 0;
  }

  .care-section,
  .shared-section,
  .closing-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .release-section-heading h2,
  .shared-copy h2,
  .release-privacy h2,
  .closing-section h2 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .care-card {
    min-height: 565px;
    border-radius: 28px;
  }

  .care-card-copy {
    padding: 24px;
  }

  .care-card h3 {
    font-size: 1.8rem;
  }

  .care-card-screen {
    right: 13%;
    bottom: -460px;
    left: 13%;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .shared-gallery {
    min-height: 530px;
    overflow: hidden;
  }

  .shared-shot {
    width: 205px;
  }

  .release-privacy {
    gap: 30px;
    padding: 36px 26px;
    border-radius: 30px;
  }

  .closing-icon {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 430px) {
  .release-header .nav-links a {
    padding: 0 7px;
    font-size: 0.86rem;
  }

  .release-hero-visual {
    min-height: 450px;
    overflow: hidden;
  }

  .device-shot-main {
    width: 225px;
  }

  .device-shot-side {
    width: 174px;
  }

  .care-card-screen {
    right: 8%;
    bottom: -360px;
    left: 8%;
  }

  .shared-gallery {
    min-height: 470px;
  }

  .shared-shot {
    width: 178px;
  }

  .shared-shot-privacy {
    transform: translate(-2%, -49%) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .release-hero-visual,
  .device-shot,
  .shared-shot {
    transform-style: flat;
  }
}
