/* Manna's website: the app's paper, ink and gold, written once by daylight and once by lamplight. */
:root {
  color-scheme: light dark;
  --paper: #F6F1E4; --card: #FFFDF8; --ink: #243A30; --soft: #3E5246; --muted: #62705F;
  --gold: #A5884C; --gold-bright: #C9A24E; --wheat: #E8D8AE; --marker: #F1E2A3;
  --sage: #D5E4C3; --sky: #CFE0EB; --rose: #F0D2CE; --line: #E1DBC8;
  --band: #243A30; --on-band: #F4EFE2; --band-muted: #B9C6B3;
  --clay: #9C5A3C; --lake: #3F6E8A; --plum: #6E4C6E; --moss: #5F7150;
  --shadow: 58 46 24;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .24 0 0 0 0 .2 0 0 0 0 .13 0 0 0 .32 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --grain-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .96 0 0 0 0 .94 0 0 0 0 .86 0 0 0 .16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #131916; --card: #1C2420; --ink: #E9EEE3; --soft: #CBD6C6; --muted: #A3B09F;
    --gold: #D8C48C; --gold-bright: #D8B865; --wheat: #3E3722; --marker: rgba(216, 190, 110, .32);
    --sage: #213027; --sky: #1D2B33; --rose: #33242A; --line: #2B3530;
    --band: #1B2621; --on-band: #EEF0E6; --band-muted: #A9B8A5;
    --clay: #D08F6E; --lake: #86B2CC; --plum: #C49BC4; --moss: #A7BB93;
    --shadow: 0 0 0;
    --grain: var(--grain-light);
  }
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; overflow-x: clip; color: var(--ink); font: 17px/1.6 var(--sans);
  background-color: var(--paper); background-image: var(--grain);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--gold); text-underline-offset: .18em; }
a:focus-visible, .button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding-inline: 20px; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.eyebrow { font: 600 13px/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--moss); margin: 0 0 14px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--ink); text-wrap: balance; margin: 0; }
h2 { font-size: clamp(34px, 4.6vw, 52px); line-height: 1.04; letter-spacing: -.025em; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0; }
.lede { font: 21px/1.5 var(--serif); color: var(--soft); max-width: 36ch; }

/* The mark: the app's sun and its word, with the gold full stop. */
.top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font: 700 31px/1 var(--serif); letter-spacing: -.05em; }
.brand .icon { width: 28px; height: 28px; }
.dot { color: var(--gold); }
.nav { display: flex; gap: 26px; font-size: 15px; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav a:not(.keep) { display: none; } }

/* The highlighter under a phrase, the way a reader marks a verse in the app. */
.swipe { position: relative; z-index: 0; white-space: nowrap; }
.swipe::before {
  content: ""; position: absolute; z-index: -1; left: -.08em; right: -.1em; top: .5em; bottom: .02em;
  background: var(--marker); transform: rotate(-1.4deg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2 3 C20 1 45 3.5 70 1.6 S96 2.4 99 1 L98 18.5 C80 19.4 55 17.6 30 19 S6 18 1.5 19.2 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M2 3 C20 1 45 3.5 70 1.6 S96 2.4 99 1 L98 18.5 C80 19.4 55 17.6 30 19 S6 18 1.5 19.2 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* Hero */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -140px 0 -40px; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 46% at 8% 22%, color-mix(in srgb, var(--rose) 80%, transparent), transparent 72%),
    radial-gradient(40% 50% at 92% 14%, color-mix(in srgb, var(--sky) 85%, transparent), transparent 72%),
    radial-gradient(34% 40% at 58% 96%, color-mix(in srgb, var(--sage) 70%, transparent), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; padding-block: 36px 96px; }
.hero h1 { font-size: clamp(60px, 8.6vw, 112px); line-height: .96; letter-spacing: -.04em; margin-bottom: 26px; }
.hero .lede { margin-bottom: 32px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }
.button { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--band); color: var(--on-band); font: 600 16px/1 var(--sans); text-decoration: none; }
.button .icon { width: 20px; height: 20px; color: var(--gold-bright); }
.button.soon { cursor: default; }
.quiet-link { font-size: 16px; color: var(--soft); }
.note { margin-top: 22px; font-size: 14px; color: var(--muted); }
.art { position: relative; aspect-ratio: 1 / 1.08; max-width: 520px; justify-self: end; width: 100%; margin-top: 24px; }
.shot { position: absolute; height: auto; border-radius: 26px; background: var(--card); box-shadow: 0 26px 50px -20px rgb(var(--shadow) / .5), 0 0 0 1px rgb(var(--shadow) / .1); }
.art .shot-a { width: 44%; left: 22%; top: 0; rotate: -4deg; z-index: 2; }
.art .shot-b { width: 40%; right: 0; top: 9%; rotate: 5deg; z-index: 1; }
.snap { position: absolute; margin: 0; background: #FFFDF7; padding: 3.2% 3.2% 0; box-shadow: 0 16px 30px -12px rgb(var(--shadow) / .45); }
.snap img { width: 100%; aspect-ratio: 1 / .94; object-fit: cover; }
.snap figcaption { font: italic 19px/1 var(--serif); color: #243A30; text-align: center; padding: 11px 0 13px; }
.snap::before {
  content: ""; position: absolute; top: -13px; left: 30%; width: 42%; height: 26px; rotate: 4deg; opacity: .9;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.45) 0 5px, transparent 5px 11px), #F0D2CE;
  clip-path: polygon(0 0, 100% 0, 96% 25%, 100% 50%, 96% 75%, 100% 100%, 0 100%, 4% 75%, 0 50%, 4% 25%);
}
.snap.sky::before { background: repeating-linear-gradient(45deg, rgba(255,255,255,.45) 0 5px, transparent 5px 11px), #CFE0EB; }
.art .snap { width: 34%; left: 2%; bottom: 6%; rotate: -9deg; z-index: 3; }
.flake { position: absolute; width: 17px; height: 10px; border-radius: 50%; background: #FFFDF4; border: 1.5px solid var(--gold); z-index: 4; }
.spark { position: absolute; width: 16px; height: 16px; fill: var(--gold-bright); z-index: 4; }
/* art:start */
.f0 { left: 6%; top: 8%; rotate: -20deg; }
.f1 { left: 30%; top: -3%; rotate: 30deg; }
.f2 { left: 88%; top: 2%; rotate: -40deg; }
.f3 { left: 95%; top: 38%; rotate: 15deg; }
.f4 { left: 70%; top: 90%; rotate: 50deg; }
.f5 { left: 12%; top: 62%; rotate: -10deg; }
.f6 { left: 48%; top: 97%; rotate: 20deg; }
.f7 { left: 82%; top: 70%; rotate: -35deg; }
.s0 { left: 22%; top: 18%; width: 22.400000000000002px; height: 22.400000000000002px; }
.s1 { left: 60%; top: -4%; width: 17.6px; height: 17.6px; }
.s2 { left: 99%; top: 56%; width: 20.8px; height: 20.8px; }
.s3 { left: 38%; top: 88%; width: 16px; height: 16px; }
/* art:end */
.sprite { position: absolute; overflow: hidden; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 72px; }
  .art { justify-self: center; max-width: 440px; }
}

/* Today's bread */
.bread { background-color: var(--band); background-image: var(--grain-light); color: var(--on-band); padding-block: 96px; position: relative; }
.bread h2, .bread h3 { color: var(--on-band); }
.bread .eyebrow { color: var(--gold-bright); }
.bread-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.bread p { color: var(--band-muted); max-width: 44ch; }
.bread p + p { margin-top: 14px; }
.bread h2 { margin-bottom: 20px; }
.vcard { position: relative; width: 100%; max-width: 440px; aspect-ratio: 4 / 5; justify-self: center; border-radius: 22px; overflow: hidden; rotate: 1.6deg; box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); }
.vcard > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,20,17,.12) 0%, rgba(14,20,17,.42) 45%, rgba(14,20,17,.8) 100%); }
.vcard .v-body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 34px 32px 30px; color: #FBF7EC; }
.vcard .v-mark { position: absolute; z-index: 1; top: 24px; left: 28px; font: 700 22px/1 var(--serif); letter-spacing: -.04em; color: #FBF7EC; }
.vcard .v-mark .dot { color: #D7BD7F; }
.v-text { font: 26px/1.42 var(--serif); margin: 0; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.v-text.long { font-size: 22px; } .v-text.longer { font-size: 18px; }
.v-rule { width: 46px; height: 2px; background: #D7BD7F; margin: 20px 0 12px; }
.v-ref { font: 600 13px/1.3 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: #F1E6C8; }
.bread .tape { position: absolute; z-index: 2; top: -10px; left: 50%; translate: -50% 0; width: 120px; height: 26px; rotate: -3deg; opacity: .88;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.45) 0 5px, transparent 5px 11px), #E8D8AE;
  clip-path: polygon(0 0, 100% 0, 96% 25%, 100% 50%, 96% 75%, 100% 100%, 0 100%, 4% 75%, 0 50%, 4% 25%); }
.vcard-wrap { position: relative; justify-self: center; width: 100%; max-width: 440px; }
@media (max-width: 880px) { .bread-grid { grid-template-columns: 1fr; gap: 44px; } }

/* Sections */
.section { padding-block: 96px; }
.section + .section { padding-top: 24px; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head > p:not(.eyebrow):not(.fine) { margin-top: 18px; font: 20px/1.55 var(--serif); color: var(--soft); }
.features { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 44px; }
.features li { display: grid; grid-template-columns: 44px 1fr; gap: 4px 14px; align-items: start; }
.features .badge { grid-row: span 2; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--card); box-shadow: 0 0 0 1px var(--line); }
.features .badge .icon { width: 23px; height: 23px; }
.features p { font-size: 16px; color: var(--muted); }
.c-clay { color: var(--clay); } .c-lake { color: var(--lake); } .c-plum { color: var(--plum); } .c-moss { color: var(--moss); } .c-gold { color: var(--gold); }
@media (max-width: 940px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.studies { position: relative; }
.studies-top { display: grid; grid-template-columns: 1fr 250px; gap: 64px; align-items: end; margin-bottom: 56px; }
.studies-top .section-head { margin-bottom: 0; }
.studies-top .shot { position: relative; width: 100%; rotate: 3deg; }
.fine { margin-top: 16px; font-size: 15px; color: var(--muted); }
.collections { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.collections .col { display: grid; gap: 28px; }
.collection { background: var(--card); border-radius: 20px; padding: 26px 26px 12px; box-shadow: 0 0 0 1px var(--line); }
.collection h3 { font-size: 24px; margin-bottom: 4px; }
.collection > p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.collection ol { list-style: none; margin: 0; padding: 0; }
.collection li { padding: 14px 0; border-top: 1px solid var(--line); }
.collection .t { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; font: 700 18px/1.3 var(--serif); }
.collection .d { font: 600 12px/1 var(--sans); letter-spacing: .06em; color: var(--gold); white-space: nowrap; text-transform: uppercase; }
.collection li p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin-top: 4px; }
@media (max-width: 940px) { .collections { grid-template-columns: 1fr; } .studies-top { grid-template-columns: 1fr; } .studies-top .shot { max-width: 280px; justify-self: center; } }

.ipad { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--wheat) 45%, transparent) 30%, transparent); }
.desk { border-radius: 18px; box-shadow: 0 34px 70px -30px rgb(var(--shadow) / .55), 0 0 0 1px rgb(var(--shadow) / .12); rotate: -.6deg; width: 100%; height: auto; }
.views { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.views figure { margin: 0; }
.views img { border-radius: 12px; box-shadow: 0 14px 28px -16px rgb(var(--shadow) / .5), 0 0 0 1px rgb(var(--shadow) / .1); width: 100%; height: auto; }
.views figcaption { margin-top: 12px; font-size: 15px; line-height: 1.45; color: var(--muted); }
.views figcaption b { display: block; font: 700 17px/1.3 var(--serif); color: var(--ink); }
.pencil { margin-top: 56px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; max-width: 760px; align-items: start; }
.pencil .badge { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--card); box-shadow: 0 0 0 1px var(--line); color: var(--gold); }
.pencil p { font: 19px/1.55 var(--serif); color: var(--soft); }
@media (max-width: 800px) { .views { grid-template-columns: repeat(2, 1fr); } }

.plus-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.checks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; font-size: 17px; }
.checks .icon { color: var(--moss); width: 24px; height: 24px; }
.price { background: var(--card); border-radius: 24px; padding: 36px 34px; box-shadow: 0 0 0 1px var(--line), 0 30px 60px -34px rgb(var(--shadow) / .5); position: relative; }
.price .ribbon { position: absolute; top: -14px; right: 26px; background: var(--wheat); color: var(--ink); font: 700 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; }
.price .amount { font: 700 46px/1 var(--serif); letter-spacing: -.03em; }
.price .per { font: 18px/1.4 var(--serif); color: var(--soft); margin-top: 8px; }
.price .or { margin: 18px 0; padding-top: 18px; border-top: 1px solid var(--line); font: 19px/1.4 var(--serif); }
.price .terms { font-size: 14px; color: var(--muted); margin-top: 18px; }
.price .button { margin-top: 24px; }
.free-line { margin-top: 26px; font: italic 18px/1.5 var(--serif); color: var(--soft); }
@media (max-width: 880px) { .plus-grid { grid-template-columns: 1fr; } }

.promise { text-align: center; padding-block: 90px 100px; border-top: 1px solid var(--line); }
.promise .sun { width: 46px; height: 46px; color: var(--gold); margin: 0 auto 22px; }
.promise h2 { max-width: 16ch; margin: 0 auto; }
.promise p { max-width: 52ch; margin: 20px auto 0; color: var(--muted); }

.foot { border-top: 1px solid var(--line); padding-block: 44px 56px; font-size: 14.5px; color: var(--muted); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px 48px; }
.foot .brand { font-size: 26px; }
.foot .brand .icon { width: 24px; height: 24px; }
.foot nav { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: flex-end; align-content: start; }
.foot nav a { color: var(--soft); }
.credits { grid-column: 1 / -1; display: grid; gap: 6px; }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } .foot nav { justify-content: flex-start; } }

/* Policy and support pages */
.doc { max-width: 700px; margin: 0 auto; padding-block: 40px 96px; }
.doc h1 { font-size: clamp(42px, 6vw, 60px); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 14px; }
.doc .meta { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.doc h2 { font-size: 26px; letter-spacing: -.01em; margin: 40px 0 10px; }
.doc p { font: 18px/1.65 var(--serif); color: var(--soft); }
.doc p + p { margin-top: 12px; }
.missing { text-align: center; padding-block: 120px; }
.missing p { margin-top: 16px; color: var(--muted); }

.plus-grid h2 { margin-bottom: 14px; }
