:root {
  --green-900: #0b4337;
  --green-800: #115E4C;
  --green-700: #19765f;
  --green-600: #2E7D4F;
  --green-200: #DCEBE4;
  --green-100: #EAF3EF;
  --cream: #F7F2E8;
  --cream-soft: #FCF9F2;
  --peach: #F2E6D6;
  --text: #0E2823;
  --muted: #60736c;
  --line: rgba(11, 67, 55, .14);
  --shadow: 0 24px 80px rgba(11, 67, 55, .14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 125, 79, .14), transparent 34rem),
    radial-gradient(circle at top right, rgba(242, 230, 214, .85), transparent 42rem),
    linear-gradient(180deg, var(--cream-soft), #F3F5F1 45%, #F8F5EC);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(var(--shell), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 132px) 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--green-900);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 249, 242, .84);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(11, 67, 55, .16);
}
.brand span { display: grid; gap: 0; }
.brand strong {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -.06em;
  line-height: 1;
}
.brand em {
  font-style: normal;
  font-weight: 800;
  color: var(--green-800);
  text-transform: uppercase;
  font-size: .73rem;
  letter-spacing: .12em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
}
.nav a, .nav-action {
  font-weight: 800;
  font-size: .95rem;
  color: rgba(14, 40, 35, .78);
  border-radius: 999px;
  transition: .2s ease;
}
.nav a { padding: 10px 15px; }
.nav a:hover, .nav a:focus-visible {
  background: var(--green-100);
  color: var(--green-900);
}
.nav-action {
  padding: 12px 18px;
  color: white;
  background: var(--green-900);
  box-shadow: 0 12px 34px rgba(11, 67, 55, .22);
}
.nav-action:hover, .nav-action:focus-visible { transform: translateY(-1px); }

.hero {
  padding-top: clamp(60px, 8vw, 110px);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 4% -10% auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(17,94,76,.13), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}
.hero-copy { max-width: 670px; }
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, #0BC980, var(--green-800));
  box-shadow: 0 0 0 8px rgba(46,125,79,.09);
}
h1, h2, h3 {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  max-width: 840px;
}
h2 { font-size: clamp(2.05rem, 4.1vw, 4.15rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.42rem); }
p { margin: 0; }
.lead {
  margin-top: 28px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.hero-actions, .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .22s ease;
}
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--green-900), #24977A);
  box-shadow: 0 18px 44px rgba(17,94,76,.27);
}
.button.secondary {
  color: var(--green-900);
  background: rgba(255,255,255,.62);
  border-color: var(--line);
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 46px;
}
.proof-row div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.proof-row strong { display:block; font-size: 1.02rem; }
.proof-row span { display:block; margin-top: 4px; color: var(--muted); font-weight: 650; font-size: .92rem; }

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}
.phone-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 10px solid #0a261f;
  background: #0a261f;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.42) inset;
}
.phone-frame img { width: 100%; height: auto; }
.phone-main {
  width: min(380px, 82vw);
  transform: rotate(2.4deg);
}
.impact-note {
  position: absolute;
  left: max(0px, calc(50% - 290px));
  bottom: 66px;
  width: min(325px, 72vw);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, var(--green-900), #25A986);
  box-shadow: 0 22px 60px rgba(11,67,55,.28);
}
.impact-note img { border-radius: 14px; }
.impact-note span { font-weight: 900; line-height: 1.25; }

.card, .workflow-card, .download-card, .charity-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.62);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.purpose { padding-top: 40px; }
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.large-card { padding: clamp(30px, 5vw, 56px); }
.large-card p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.necessity { background: linear-gradient(180deg, transparent, rgba(220,235,228,.36), transparent); }
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.09rem;
}
.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.need-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.need-card.accent {
  background: linear-gradient(140deg, var(--green-900), #1D9072);
  color: white;
  border-color: rgba(255,255,255,.16);
}
.need-card p { color: var(--muted); margin-top: 18px; }
.need-card.accent p { color: rgba(255,255,255,.80); }
.number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 950;
}
.need-card.accent .number { background: rgba(255,255,255,.15); color: white; }

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(390px, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}
.app-copy p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.feature-list div {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}
.feature-list strong { display:block; font-size: 1.02rem; }
.feature-list span { display:block; color: var(--muted); margin-top: 4px; font-weight: 650; }
.screenshots {
  min-height: 610px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  align-items: center;
  gap: 18px;
}
.small-phone {
  border-width: 8px;
  border-radius: 30px;
  margin: 0;
}
.small-phone figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  color: var(--green-900);
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.tilted-left { transform: rotate(-3deg) translateY(12px); }
.tilted-right { transform: rotate(3deg) translateY(-16px); }

.workflow { padding-top: 20px; }
.workflow-card {
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 36px;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(46,125,79,.12), transparent 35rem),
    rgba(255,255,255,.64);
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.workflow-steps article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(247,242,232,.72);
  border: 1px solid var(--line);
}
.workflow-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  font-weight: 950;
}
.workflow-steps p { margin-top: 12px; color: var(--muted); font-size: .97rem; }

.download-section { padding-top: 54px; }
.download-card {
  padding: clamp(34px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, rgba(11,67,55,.96), rgba(17,94,76,.90));
  color: white;
  overflow: hidden;
  position: relative;
}
.download-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.download-card .eyebrow { color: rgba(255,255,255,.86); }
.download-card .eyebrow span { background: white; box-shadow: 0 0 0 8px rgba(255,255,255,.11); }
.download-card p:not(.eyebrow) { margin-top: 16px; max-width: 620px; color: rgba(255,255,255,.78); }
.download-card .button.primary { background: white; color: var(--green-900); box-shadow: none; }
.download-card .button.secondary { color: white; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.download-actions { margin-top: 0; position: relative; z-index: 2; }

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  background: rgba(252, 249, 242, .56);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner > a:last-child {
  font-weight: 900;
  color: var(--green-900);
}
.footer-brand strong { font-size: 1.45rem; }
.footer-brand em { font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; padding: 14px 0; }
  .nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .nav-action { display:none; }
  .hero-grid, .purpose-grid, .app-grid, .workflow-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .phone-main { width: min(360px, 86vw); }
  .need-grid, .workflow-steps { grid-template-columns: 1fr; }
  .need-card { min-height: 250px; }
  .screenshots { min-height: auto; }
  .download-card { display: grid; }
}

@media (max-width: 660px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .section { padding: 58px 0; }
  .brand strong { font-size: 1.45rem; }
  .brand em { font-size: .62rem; }
  .brand img { width: 48px; height: 48px; }
  h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .proof-row { grid-template-columns: 1fr; }
  .hero-actions, .download-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { padding-top: 10px; }
  .impact-note { position: relative; left: auto; bottom: auto; margin-top: -16px; }
  .screenshots { grid-template-columns: 1fr; gap: 26px; }
  .tilted-left, .tilted-right { transform: none; }
  .small-phone { width: min(330px, 88vw); margin-inline: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Character story page */
.nav a[aria-current="page"] {
  background: var(--green-100);
  color: var(--green-900);
}
.character-teaser { padding-top: 24px; padding-bottom: 24px; }
.character-teaser-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left, rgba(46,125,79,.13), transparent 25rem),
    rgba(255,255,255,.66);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.teaser-avatar {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-100), rgba(242,230,214,.72));
  border: 1px solid var(--line);
}
.teaser-avatar img { border-radius: 22px; }
.character-teaser-card p:not(.eyebrow) { margin-top: 16px; color: var(--muted); max-width: 740px; }

.story-hero { padding-top: clamp(64px, 8vw, 112px); }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}
.character-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: end center;
  padding: 30px 20px 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 45% 25%, rgba(255,255,255,.9), transparent 22rem),
    linear-gradient(180deg, rgba(220,235,228,.66), rgba(247,242,232,.72));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.character-stage::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto auto;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(46,125,79,.11);
}
.jor-explain {
  position: relative;
  width: min(430px, 92%);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 22px 36px rgba(11,67,55,.16));
}
.speech-bubble {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(11,67,55,.13);
  box-shadow: 0 20px 55px rgba(11,67,55,.13);
}
.speech-bubble strong { display:block; color: var(--green-900); font-size: 1.05rem; }
.speech-bubble span { display:block; margin-top: 4px; color: var(--muted); font-weight: 700; line-height: 1.35; }

.reason-section { background: linear-gradient(180deg, transparent, rgba(220,235,228,.36), transparent); }
.reason-layout { display: grid; gap: 18px; }
.reason-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.emotion-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,.62fr);
  gap: 24px;
  align-items: stretch;
}
.emotion-card, .quote-card { padding: clamp(30px, 5vw, 56px); }
.emotion-card p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, var(--green-900), #1d8a70);
  color: white;
}
.quote-card img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.quote-card blockquote {
  margin: 0;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.mirror-section { padding-top: 18px; }
.mirror-card {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr);
  gap: 38px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(46,125,79,.12), transparent 29rem),
    rgba(255,255,255,.66);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.mirror-card p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.mirror-points {
  display: grid;
  gap: 14px;
}
.mirror-points div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(247,242,232,.76);
  border: 1px solid var(--line);
}
.mirror-points strong { display:block; font-size: 1.12rem; }
.mirror-points span { display:block; margin-top: 5px; color: var(--muted); font-weight: 700; }

@media (max-width: 980px) {
  .character-teaser-card, .story-grid, .emotion-grid, .mirror-card { grid-template-columns: 1fr; }
  .character-teaser-card { align-items: start; }
  .reason-cards { grid-template-columns: 1fr; }
  .character-stage { min-height: 580px; }
}

@media (max-width: 660px) {
  .character-teaser-card { gap: 18px; }
  .teaser-avatar { width: 88px; height: 88px; border-radius: 22px; }
  .character-stage { min-height: 520px; padding-inline: 10px; }
  .speech-bubble { left: 14px; right: 14px; bottom: 14px; }
  .mirror-card { gap: 24px; }
}


/* Transparency and money flow pages */
.transparency-section {
  padding-top: 24px;
  background: linear-gradient(180deg, transparent, rgba(220,235,228,.30), transparent);
}
.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(380px,1.1fr);
  gap: 24px;
  align-items: stretch;
}
.transparency-main,
.transparency-mini-card {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(46,125,79,.12), transparent 30rem),
    rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.transparency-main p:not(.eyebrow),
.transparency-mini-card p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}
.transparency-main .button { margin-top: 30px; }
.transparency-points {
  display: grid;
  gap: 14px;
}
.transparency-point {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: 0 14px 40px rgba(11,67,55,.06);
}
.transparency-point strong { display:block; font-size: 1.16rem; }
.transparency-point span { display:block; margin-top: 8px; color: var(--muted); font-weight: 700; }
.transparency-compact { padding-top: 18px; }
.transparency-mini-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
}

.money-hero { padding-top: clamp(64px, 8vw, 112px); }
.money-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}
.money-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: end center;
  padding: 28px 20px 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.92), transparent 22rem),
    linear-gradient(180deg, rgba(220,235,228,.68), rgba(247,242,232,.76));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.money-visual img {
  position: relative;
  width: min(410px, 92%);
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 22px 36px rgba(11,67,55,.16));
}
.money-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  width: 148px;
  height: 148px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 16px;
  color: white;
  background: linear-gradient(135deg, var(--green-900), #24A883);
  box-shadow: 0 20px 55px rgba(11,67,55,.22);
}
.money-badge strong {
  display: block;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.06em;
}
.money-badge span { display:block; margin-top: 6px; font-weight: 900; line-height: 1.18; }
.money-principles { background: linear-gradient(180deg, transparent, rgba(220,235,228,.36), transparent); }
.money-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.money-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 42px rgba(11,67,55,.06);
}
.money-card.accent {
  background: linear-gradient(140deg, var(--green-900), #1D9072);
  color: white;
  border-color: rgba(255,255,255,.16);
}
.money-card p { color: var(--muted); margin-top: 18px; }
.money-card.accent p { color: rgba(255,255,255,.82); }
.money-card.accent .number { background: rgba(255,255,255,.15); color: white; }
.fair-section { padding-top: 24px; }
.fair-card {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(360px,1.05fr);
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(46,125,79,.12), transparent 29rem),
    rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.fair-card p:not(.eyebrow) { margin-top: 22px; color: var(--muted); font-size: 1.08rem; }
.fair-points { display: grid; gap: 14px; }
.fair-points div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(247,242,232,.78);
  border: 1px solid var(--line);
}
.fair-points strong { display:block; font-size: 1.12rem; }
.fair-points span { display:block; margin-top: 5px; color: var(--muted); font-weight: 700; }
.promise-section { padding-top: 18px; }
.promise-card {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(11,67,55,.96), rgba(17,94,76,.90));
  color: white;
  box-shadow: var(--shadow);
}
.promise-card img { border-radius: 22px; box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.promise-card .eyebrow { color: rgba(255,255,255,.86); }
.promise-card .eyebrow span { background: white; box-shadow: 0 0 0 8px rgba(255,255,255,.11); }
.promise-card p:not(.eyebrow) { margin-top: 18px; color: rgba(255,255,255,.80); font-size: 1.08rem; }

@media (max-width: 1100px) {
  .money-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .transparency-grid,
  .transparency-mini-card,
  .money-hero-grid,
  .fair-card { grid-template-columns: 1fr; }
  .money-visual { min-height: 560px; }
}
@media (max-width: 660px) {
  .money-card-grid { grid-template-columns: 1fr; }
  .money-card { min-height: 280px; }
  .money-visual { min-height: 520px; padding-inline: 10px; }
  .money-badge { top: 16px; right: 16px; width: 118px; height: 118px; border-radius: 28px; }
  .money-badge strong { font-size: 2.2rem; }
  .promise-card { grid-template-columns: 1fr; }
}

/* v9 readability refinements */
h1 { font-size: clamp(3.05rem, 7vw, 5.9rem); max-width: 780px; }
h2 { font-size: clamp(1.9rem, 3.7vw, 3.55rem); }
.lead,
.large-card p:not(.eyebrow),
.section-head p:not(.eyebrow),
.app-copy p:not(.eyebrow),
.emotion-card p:not(.eyebrow),
.mirror-card p:not(.eyebrow),
.fair-card p:not(.eyebrow),
.promise-card p:not(.eyebrow),
.transparency-main p:not(.eyebrow),
.transparency-mini-card p:not(.eyebrow) {
  line-height: 1.68;
}
.need-card,
.money-card { min-height: 300px; }
.money-card-grid { align-items: stretch; }
.nav { max-width: 100%; }
@media (max-width: 660px) {
  h1 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .section { padding: 54px 0; }
}

/* v11 launch-copy and clarity refinements */
.app-phase {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 620px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--green-900);
  font-weight: 850;
  line-height: 1.35;
}
.app-phase::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #2E7D4F;
  box-shadow: 0 0 0 8px rgba(46,125,79,.10);
}
.large-card p + p,
.section-head p + p,
.app-copy p + p,
.story-copy p + p,
.fair-card p + p,
.emotion-card p + p {
  margin-top: 14px;
}
.charity-section { padding-top: 18px; }
.charity-card {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(380px,1.08fr);
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at top right, rgba(46,125,79,.12), transparent 30rem),
    rgba(255,255,255,.68);
}
.charity-card p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}
.charity-points,
.flow-card {
  display: grid;
  gap: 14px;
}
.charity-points div,
.flow-row {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(247,242,232,.78);
}
.charity-points strong,
.flow-row strong {
  display: block;
  font-size: 1.08rem;
  color: var(--text);
}
.charity-points span,
.flow-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}
.flow-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.flow-row:first-child {
  color: white;
  background: linear-gradient(140deg, var(--green-900), #1D9072);
  border-color: rgba(255,255,255,.18);
}
.flow-row:first-child strong { color: white; }
.flow-row:first-child span { color: rgba(255,255,255,.82); }
.flow-section { padding-top: 20px; }
.flow-large-card {
  display: grid;
  grid-template-columns: minmax(0,.76fr) minmax(520px,1.24fr);
  gap: 34px;
  align-items: start;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(46,125,79,.10), transparent 30rem),
    rgba(255,255,255,.70);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.flow-large-card p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}
.flow-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.68);
}
.flow-table-row {
  display: grid;
  grid-template-columns: minmax(140px,.9fr) minmax(130px,.8fr) minmax(220px,1.5fr);
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.flow-table-row:first-child { border-top: 0; }
.flow-table-row.head {
  color: white;
  background: linear-gradient(135deg, var(--green-900), #1D9072);
}
.flow-table-row span,
.flow-table-row strong {
  line-height: 1.45;
}
.flow-table-row span {
  color: var(--muted);
  font-weight: 690;
}
.flow-table-row span:first-child {
  color: var(--text);
  font-weight: 900;
}
.hero-copy .lead { max-width: 710px; }
.download-card .download-actions {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .charity-card,
  .flow-large-card { grid-template-columns: 1fr; }
  .flow-table-row { grid-template-columns: 1fr; gap: 6px; }
  .flow-table-row.head { display: none; }
  .flow-table-row span:nth-child(2)::before { content: "Bestemming: "; color: var(--green-900); font-weight: 950; }
  .flow-table-row span:nth-child(3)::before { content: "Uitleg: "; color: var(--green-900); font-weight: 950; }
}

@media (max-width: 660px) {
  .app-phase { border-radius: 20px; align-items: flex-start; }
  .charity-points div,
  .flow-row { padding: 18px; }
}


/* v12 compact copy and mobile navigation */
.mobile-only { display: none; }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  color: var(--green-900);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.menu-toggle i {
  position: relative;
  width: 20px;
  height: 14px;
  display: inline-block;
}
.menu-toggle i::before,
.menu-toggle i::after,
.menu-toggle i {
  border-top: 2px solid var(--green-900);
}
.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
}
.menu-toggle i::before { top: 5px; }
.menu-toggle i::after { top: 12px; }
.compact-section { padding-top: clamp(38px, 6vw, 84px); padding-bottom: clamp(38px, 6vw, 84px); }
.split-card {
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(360px,1.14fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.readable-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}
.readable-copy p + p { margin-top: 16px; }
.text-link {
  color: var(--green-900);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.section.app-section { padding-top: clamp(48px, 7vw, 98px); padding-bottom: clamp(48px, 7vw, 98px); }
.workflow { padding-top: clamp(38px, 6vw, 84px); padding-bottom: clamp(38px, 6vw, 84px); }
.charity-section { padding-top: clamp(38px, 6vw, 84px); padding-bottom: clamp(38px, 6vw, 84px); }
.character-teaser { padding-top: clamp(28px, 5vw, 70px); padding-bottom: clamp(28px, 5vw, 70px); }
.download-section { padding-top: clamp(42px, 6vw, 86px); padding-bottom: clamp(54px, 8vw, 110px); }
.need-card { min-height: 260px; }
.money-card { min-height: 260px; }
.hero { padding-bottom: clamp(40px, 6vw, 78px); }

@media (max-width: 1080px) {
  .nav a { padding: 9px 12px; font-size: .91rem; }
  .nav { gap: 4px; }
}

@media (max-width: 840px) {
  .header-inner {
    min-height: 70px;
    flex-wrap: nowrap;
    padding: 10px 0;
    position: relative;
  }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav-action { display: none; }
  .mobile-only { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    max-width: none;
    padding: 12px;
    border-radius: 24px;
    background: rgba(252,249,242,.98);
    box-shadow: 0 22px 60px rgba(11,67,55,.16);
    border: 1px solid var(--line);
    overflow: visible;
  }
  .nav.is-open { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .nav a {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.56);
  }
  .site-header.menu-open { background: rgba(252,249,242,.96); }
  .brand { min-width: 0; }
  .brand span { min-width: 0; }
  .brand strong { font-size: clamp(1.25rem, 6vw, 1.55rem); letter-spacing: -.055em; }
  .brand em { font-size: .58rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 178px; }
  .split-card { grid-template-columns: 1fr; }
  .app-grid { gap: 34px; }
}

@media (max-width: 660px) {
  .shell { width: min(100% - 26px, var(--shell)); }
  .hero-copy .lead { font-size: 1.08rem; }
  .proof-row { margin-top: 28px; }
  .proof-row div { padding: 15px; }
  .split-card,
  .workflow-card,
  .charity-card,
  .download-card,
  .flow-large-card { border-radius: 26px; }
  .readable-copy p { font-size: 1rem; line-height: 1.66; }
  .feature-list { margin-top: 24px; }
  .feature-list div { padding: 16px 18px; }
  .character-teaser-card { grid-template-columns: 1fr; }
  .character-teaser-card .button { width: 100%; }
  .workflow-card { gap: 26px; }
  .workflow-steps article { padding: 20px; }
  .section-head { margin-bottom: 24px; }
  .section-head p:not(.eyebrow) { font-size: 1rem; }
}

/* v13: compact transparency, varied character images and analytics page */
.teaser-portrait {
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: 210px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(220,235,228,.66), rgba(252,249,242,.88));
  border: 1px solid var(--line);
}
.teaser-portrait img {
  width: min(170px, 34vw);
  margin-top: 10px;
  margin-bottom: -10px;
}
.footer-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.analytics-hero { padding-bottom: clamp(36px, 5vw, 70px); }
.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.analytics-character {
  min-height: 440px;
  display: grid;
  place-items: end center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(220,235,228,.58), rgba(255,255,255,.66));
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.analytics-character img {
  width: min(260px, 62vw);
  margin-bottom: -12px;
}
.analytics-panel {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(11,67,55,.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stat-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(247,242,232,.74);
}
.stat-card span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}
.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--green-900);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.analytics-meta,
.daily-card {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.analytics-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.analytics-meta span,
.daily-card p,
.analytics-day span { color: var(--muted); font-weight: 750; }
.daily-card h3 { margin-bottom: 16px; }
.analytics-day {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) repeat(2, minmax(120px, auto));
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.analytics-day:first-child { border-top: 0; }
.analytics-panel.is-error .daily-card::after {
  content: "Upload analytics.php mee naar een hostingomgeving met PHP om live totalen te meten.";
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}
@media (max-width: 840px) {
  .analytics-grid, .stats-grid { grid-template-columns: 1fr; }
  .analytics-character { min-height: 360px; }
  .analytics-day { grid-template-columns: 1fr; gap: 4px; }
  .teaser-portrait { min-height: 230px; }
  .teaser-portrait img { width: min(210px, 58vw); }
}

/* v14: app tijdelijk op coming soon en karakterverhoudingen vastzetten */
.coming-soon-card {
  background:
    radial-gradient(circle at top left, rgba(46,125,79,.14), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(220,235,228,.50));
}
.coming-soon-section .button.primary,
.coming-soon-section [download] { display: none !important; }

/* Karakterbeelden worden nooit uitgerekt: altijd eigen verhouding behouden. */
.brand img,
.impact-note img,
.teaser-portrait img,
.character-stage img,
.analytics-character img,
.money-visual img,
.promise-card img,
.jor-explain {
  height: auto;
}
.teaser-portrait img,
.character-stage img,
.analytics-character img,
.money-visual img,
.jor-explain {
  object-fit: contain;
  object-position: center bottom;
  max-height: 100%;
}
.teaser-portrait img,
.analytics-character img {
  margin-bottom: 0;
}
.brand img,
.impact-note img {
  object-fit: cover;
  object-position: center;
}
.teaser-portrait,
.analytics-character,
.character-stage,
.money-visual {
  contain: paint;
}

/* v15: definitieve schaalcorrecties voor alle karakter- en appbeelden.
   Afbeeldingen krijgen nu expliciete renderformaten, vaste ratio's en object-fit regels.
   Hierdoor ontstaan geen uitrekking, te grote header-iconen of te kleine karakterbeelden. */
.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
.impact-note img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.phone-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 834;
  object-fit: contain;
}
.phone-main {
  width: min(360px, 80vw);
}
.screenshots {
  min-height: clamp(470px, 48vw, 610px);
}
.small-phone {
  width: min(300px, 42vw);
  align-self: center;
}
.teaser-portrait {
  width: clamp(150px, 17vw, 210px);
  height: clamp(225px, 25vw, 315px);
  min-height: unset;
  align-self: center;
  justify-self: center;
  aspect-ratio: 2 / 3;
}
.teaser-portrait img {
  width: auto;
  height: 96%;
  max-width: 96%;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
}
.character-stage,
.money-visual,
.analytics-character {
  min-height: unset;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: end center;
}
.character-stage {
  width: 100%;
  max-width: 520px;
  justify-self: center;
}
.money-visual {
  width: 100%;
  max-width: 500px;
  justify-self: center;
}
.analytics-character {
  width: min(360px, 100%);
  justify-self: center;
}
.character-stage .jor-explain,
.money-visual > img,
.analytics-character img {
  width: auto;
  height: 92%;
  max-width: 92%;
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
}
.money-visual > img {
  height: 90%;
}
.analytics-character img {
  height: 88%;
}
.quote-card img,
.promise-card img {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.character-teaser-card {
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
}
.money-badge {
  width: clamp(112px, 13vw, 148px);
  height: clamp(112px, 13vw, 148px);
}

@media (max-width: 980px) {
  .character-stage,
  .money-visual {
    max-width: 440px;
    margin-inline: auto;
  }
  .small-phone {
    width: min(290px, 44vw);
  }
}

@media (max-width: 840px) {
  .character-teaser-card {
    grid-template-columns: 1fr;
  }
  .teaser-portrait {
    width: min(210px, 58vw);
    height: min(315px, 82vw);
    justify-self: start;
  }
  .analytics-character {
    width: min(320px, 88vw);
  }
}

@media (max-width: 660px) {
  .brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .footer-brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .impact-note img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .phone-main {
    width: min(315px, 82vw);
  }
  .small-phone {
    width: min(292px, 82vw);
  }
  .screenshots {
    min-height: unset;
  }
  .character-stage,
  .money-visual {
    width: min(330px, 88vw);
    max-width: 330px;
    aspect-ratio: 4 / 5;
    padding-inline: 12px;
  }
  .character-stage .jor-explain,
  .money-visual > img {
    height: 90%;
    max-width: 92%;
  }
  .quote-card img,
  .promise-card img {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }
}


/* v16: avatar crop and character quality refinements */
.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,.78);
  padding: 2px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}
.impact-note {
  width: min(300px, 72vw);
  gap: 12px;
}
.impact-note img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,.18);
  padding: 1px;
}
.phone-main {
  width: min(350px, 78vw);
}
.small-phone {
  width: min(292px, 41vw);
}
.teaser-portrait {
  width: clamp(170px, 18vw, 220px);
  height: clamp(255px, 28vw, 330px);
}
.teaser-portrait img,
.character-stage .jor-explain,
.money-visual > img,
.analytics-character img {
  image-rendering: auto;
}
.character-stage .jor-explain,
.money-visual > img,
.analytics-character img {
  width: auto;
  height: 90%;
  max-width: 90%;
  object-fit: contain;
  object-position: center bottom;
}
.character-stage,
.money-visual,
.analytics-character {
  background: linear-gradient(180deg, rgba(220,235,228,.58), rgba(255,255,255,.66));
}
@media (max-width: 660px) {
  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .footer-brand img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .impact-note img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .phone-main {
    width: min(308px, 80vw);
  }
  .small-phone {
    width: min(286px, 80vw);
  }
}

/* v18: officieel logo in header/footer en transparante pose-assets */
.brand {
  min-width: 0;
}
.brand .brand-logo {
  width: clamp(188px, 21vw, 244px);
  height: auto;
  flex: 0 1 auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.footer-brand .brand-logo {
  width: clamp(168px, 18vw, 216px);
}
.site-header .brand {
  flex-shrink: 1;
}
.teaser-portrait img,
.character-stage .jor-explain,
.money-visual > img,
.analytics-character img {
  background: transparent;
}
.teaser-portrait {
  width: clamp(178px, 19vw, 230px);
  height: clamp(258px, 29vw, 340px);
}
.character-stage .jor-explain {
  height: 88%;
  max-width: 92%;
}
.money-visual > img {
  height: 87%;
  max-width: 94%;
}
.analytics-character img {
  height: 86%;
  max-width: 90%;
}
@media (max-width: 660px) {
  .brand .brand-logo {
    width: min(196px, 56vw);
  }
  .footer-brand .brand-logo {
    width: min(180px, 54vw);
  }
  .teaser-portrait {
    width: min(205px, 58vw);
    height: min(308px, 82vw);
  }
}
@media (max-width: 380px) {
  .brand .brand-logo {
    width: min(172px, 52vw);
  }
}


/* v19: fix readability of Instagram / coming soon block on light background */
.coming-soon-card {
  color: var(--green-900);
}
.coming-soon-card .eyebrow {
  color: var(--green-800);
}
.coming-soon-card .eyebrow span {
  background: var(--green-900);
  box-shadow: 0 0 0 8px rgba(17,94,76,.08);
}
.coming-soon-card h2 {
  color: var(--green-900);
}
.coming-soon-card p:not(.eyebrow) {
  color: rgba(14, 40, 35, .78);
}
.coming-soon-card .button.secondary {
  color: var(--green-900);
  background: rgba(255,255,255,.86);
  border-color: rgba(17,94,76,.16);
  box-shadow: 0 12px 30px rgba(11,67,55,.08);
}
.coming-soon-card .button.secondary:hover,
.coming-soon-card .button.secondary:focus-visible {
  background: white;
}
