:root {
  --cream: #fff9ef;
  --cream-deep: #f4eadb;
  --paper: #fffdf8;
  --forest: #153f35;
  --forest-dark: #0e2f28;
  --ink: #24231f;
  --muted: #6f6b63;
  --coral: #eb6b59;
  --coral-dark: #d95746;
  --sage: #9cad91;
  --line: rgba(36, 35, 31, 0.13);
  --shadow: 0 24px 70px rgba(61, 47, 30, 0.12);
  --shell: 1180px;
  color-scheme: light;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.09;
  background:
    radial-gradient(circle at 20% 30%, rgba(21, 63, 53, .35) 0 0.7px, transparent .9px) 0 0 / 7px 7px,
    radial-gradient(circle at 75% 65%, rgba(235, 107, 89, .28) 0 0.6px, transparent .8px) 0 0 / 9px 9px;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 249, 239, 0.9);
  border-bottom: 1px solid rgba(36, 35, 31, 0.09);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(21, 63, 53, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--forest);
  font-weight: 700;
  padding: 10px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 760;
  transition: transform 180ms cubic-bezier(.16, 1, .3, 1), background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
  box-shadow: 0 14px 30px rgba(21, 63, 53, 0.2);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button.secondary {
  background: transparent;
  color: var(--forest);
  border-color: rgba(21, 63, 53, 0.22);
}

.button.secondary:hover {
  background: rgba(21, 63, 53, 0.06);
  box-shadow: none;
}

.button.coral {
  background: var(--coral);
}

.button.coral:hover {
  background: var(--coral-dark);
  box-shadow: 0 14px 30px rgba(235, 107, 89, 0.22);
}

.coming-soon {
  cursor: default;
}

.coming-soon:hover {
  transform: none;
}

.hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  padding: 70px 0 84px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(235, 107, 89, 0.1);
  filter: blur(1px);
  right: -220px;
  top: 70px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: 78px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  font-weight: 730;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 720;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 680;
}

.trust-line span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--coral);
}

.hero-visual {
  min-width: 0;
  position: relative;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-left: 11%;
  border-radius: 160px 160px 28px 28px;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.face-cover {
  position: absolute;
  display: grid;
  place-items: center;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(36, 35, 31, 0.14);
  transition: background 320ms cubic-bezier(.16, 1, .3, 1), border-radius 320ms ease, backdrop-filter 320ms ease;
}

.face-cover.one {
  left: 12.5%;
  top: 52.5%;
}

.face-cover.two {
  left: 80.5%;
  top: 48.5%;
}

.face-cover[data-style="cover"] {
  background: var(--coral);
}

.face-cover[data-style="mosaic"] {
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(21,63,53,.78) 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(rgba(235,107,89,.86) 50%, rgba(156,173,145,.9) 50%) 0 0 / 18px 18px;
}

.face-cover[data-style="soft"] {
  background: rgba(255, 249, 239, 0.15);
  backdrop-filter: blur(13px);
  border: 1px solid rgba(255,255,255,.35);
}

.face-cover[data-style="emoji"] {
  background: #f2c75b;
  border: 2px solid rgba(85,62,20,.12);
}

.face-cover[data-style="emoji"]::before,
.face-cover[data-style="emoji"]::after {
  content: "";
  position: absolute;
}

.face-cover[data-style="emoji"]::before {
  width: 42%;
  height: 16%;
  border-bottom: 3px solid #5d461d;
  border-radius: 0 0 999px 999px;
  bottom: 24%;
}

.face-cover[data-style="emoji"]::after {
  width: 52%;
  height: 10%;
  top: 30%;
  background: radial-gradient(circle, #5d461d 0 22%, transparent 25%) left center / 50% 100% no-repeat,
              radial-gradient(circle, #5d461d 0 22%, transparent 25%) right center / 50% 100% no-repeat;
}

.visual-note {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: min(280px, 50%);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 20px 60px rgba(36,35,31,.16), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
}

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

.visual-note strong {
  color: var(--forest);
  font-size: 1.05rem;
}

.visual-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.83rem;
}

.privacy-banner {
  background: var(--forest);
  color: #fffaf0;
}

.privacy-banner .shell {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 60px;
  padding-block: 40px;
}

.privacy-banner h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.privacy-banner p {
  margin: 0;
  color: rgba(255,250,240,.74);
  font-size: 1.05rem;
}

.section {
  padding: 112px 0;
}

.section.soft {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .56fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.style-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 60px;
  align-items: center;
}

.demo-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.demo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-photo .face-cover {
  left: 70%;
  top: 44%;
  width: 20%;
}

.demo-panel {
  padding: 8px 0;
}

.demo-panel .mini-label,
.feature-number,
.article-kicker,
.page-kicker {
  color: var(--coral-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.demo-panel h3 {
  margin-top: 15px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.demo-panel > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.style-picker {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.style-button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.style-button:hover {
  transform: translateX(4px);
  border-color: rgba(21,63,53,.3);
}

.style-button[aria-pressed="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.style-button small {
  opacity: .7;
}

.workflow-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 86px;
  align-items: center;
}

.phone-shot {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.phone-shot img {
  width: 100%;
  filter: drop-shadow(0 28px 34px rgba(36,35,31,.18));
}

.workflow-list {
  border-top: 1px solid var(--line);
}

.workflow-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
}

.feature-number {
  padding-top: 4px;
}

.metadata-section {
  overflow: hidden;
  background: var(--forest);
  color: #fffaf0;
}

.metadata-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

.metadata-copy p {
  color: rgba(255,250,240,.72);
  font-size: 1.08rem;
}

.removed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.removed-list span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,250,240,.82);
  font-size: .84rem;
}

.metadata-visual {
  position: relative;
}

.metadata-visual img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  filter: drop-shadow(0 26px 35px rgba(0,0,0,.25));
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-item {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item p {
  margin: 0;
  color: var(--muted);
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 1.24rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.article-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.16,1,.3,1), border-color 220ms ease, box-shadow 220ms ease;
}

.article-card:first-child {
  grid-row: span 2;
  min-height: 578px;
  background:
    linear-gradient(180deg, transparent 35%, rgba(14,47,40,.92) 100%),
    url("/assets/playground-family.jpg") center / cover;
  color: white;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21,63,53,.28);
  box-shadow: 0 22px 44px rgba(36,35,31,.09);
}

.article-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-card:first-child p,
.article-card:first-child .article-kicker {
  color: rgba(255,255,255,.76);
}

.cta-section {
  padding: 0 0 112px;
}

.cta-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr .66fr;
  align-items: center;
  gap: 60px;
  padding: 64px;
  border-radius: 30px;
  background: var(--coral);
  color: #fffdf8;
  overflow: hidden;
  position: relative;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255,255,255,.13);
  border-radius: 50%;
  right: -130px;
  top: -140px;
}

.cta-panel p {
  color: rgba(255,255,255,.8);
  font-size: 1.06rem;
}

.cta-panel .button {
  background: var(--forest);
}

.site-footer {
  padding: 60px 0 30px;
  background: var(--forest-dark);
  color: rgba(255,250,240,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 70px;
  padding-bottom: 44px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand .brand {
  color: white;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: .92rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: white;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-size: .9rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
}

/* Interior pages */
.page-hero {
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero .lead {
  max-width: 66ch;
}

.content-shell {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.prose {
  padding: 76px 0 110px;
}

.prose h2 {
  margin-top: 56px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -.035em;
}

.prose h3 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: #4f4b44;
  font-size: 1.06rem;
  line-height: 1.75;
}

.prose a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 10px;
}

.callout {
  margin: 42px 0;
  padding: 26px 28px;
  border-left: 4px solid var(--coral);
  background: var(--paper);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
}

.article-header {
  padding: 88px 0 62px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 18ch;
  font-size: clamp(2.9rem, 6vw, 5.2rem);
}

.article-meta {
  color: var(--muted);
  font-size: .88rem;
}

.guides-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 70px 0 110px;
}

.guides-list .article-card:first-child {
  grid-row: auto;
  min-height: 300px;
  background: var(--paper);
  color: var(--ink);
}

.guides-list .article-card:first-child p {
  color: var(--muted);
}

.guides-list .article-card:first-child .article-kicker {
  color: var(--coral-dark);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero { padding-top: 44px; }
  .hero-grid,
  .style-demo,
  .workflow-grid,
  .metadata-grid,
  .section-heading,
  .privacy-banner .shell,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 46px; }
  .hero-photo { margin-left: 6%; }
  .privacy-banner .shell { gap: 18px; }
  .privacy-banner h2 { max-width: none; }
  .section-heading { gap: 22px; }
  .workflow-grid { gap: 46px; }
  .metadata-grid { gap: 50px; }
  .metadata-visual img { margin: auto; }
  .cta-panel { padding: 48px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell,
  .content-shell { width: min(100% - 28px, var(--shell)); }
  .hero { min-height: auto; padding: 48px 0 64px; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-photo { margin-left: 0; border-radius: 90px 90px 24px 24px; }
  .visual-note { left: 12px; bottom: 12px; width: 62%; }
  .section { padding: 78px 0; }
  .proof-list,
  .articles-grid,
  .guides-list { grid-template-columns: 1fr; }
  .article-card:first-child { grid-row: auto; min-height: 430px; }
  .proof-item { min-height: 180px; padding: 26px; }
  .cta-section { padding-bottom: 78px; }
  .cta-panel { min-height: 380px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero,
  .article-header { padding: 64px 0 52px; }
  .prose { padding: 50px 0 78px; }
}
