:root {
  --slate: #22343b;
  --slate-soft: #526168;
  --ink: #1a292e;
  --teal: #2e7d6a;
  --teal-deep: #1f6253;
  --coral: #e07a5f;
  --coral-deep: #c45f45;
  --sage: #81b29a;
  --cream: #faf8f5;
  --cream-dark: #f1eee8;
  --paper: #fff;
  --line: #dedbd4;
  --muted: #758087;
  --font-display: "Manrope", "Plus Jakarta Sans", sans-serif;
  --font-mono: "DM Mono", monospace;
  --shadow-soft: 0 22px 60px rgba(34, 52, 59, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--slate);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(34, 52, 59, 0.08);
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(34, 52, 59, 0.05);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  direction: ltr;
}

.brand img {
  width: 142px;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-inline-start: auto;
}

.site-nav a {
  color: #48585e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

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

.language-picker {
  position: relative;
  height: 38px;
  padding-inline-start: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(34, 52, 59, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--slate);
  direction: ltr;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.language-picker:hover,
.language-picker:focus-within {
  border-color: var(--teal);
  background: white;
}

.language-picker svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  pointer-events: none;
}

.language-picker select {
  height: 100%;
  padding: 0 23px 0 3px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 49px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding-inline: 19px;
  background: var(--slate);
  color: white;
  font-size: 12px;
}

.button-small:hover,
.button-dark:hover {
  background: #0f2229;
  box-shadow: 0 10px 24px rgba(34, 52, 59, 0.2);
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 26px rgba(46, 125, 106, 0.2);
}

.button-primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 14px 30px rgba(46, 125, 106, 0.3);
}

.button-dark {
  background: var(--slate);
  color: white;
}

.button-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 26px rgba(224, 122, 95, 0.2);
}

.button-coral:hover {
  background: var(--coral-deep);
  box-shadow: 0 14px 30px rgba(224, 122, 95, 0.3);
}

.button-light {
  background: var(--cream);
  color: var(--slate);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(34, 52, 59, 0.34);
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 16px;
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: 800px;
  height: min(900px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(34, 52, 59, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 52, 59, 0.024) 1px, transparent 1px),
    var(--cream);
  background-size: 68px 68px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(255, 255, 255, 0.7), transparent 38%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.55;
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  top: 10%;
  right: -190px;
  background: rgba(129, 178, 154, 0.15);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  bottom: -190px;
  left: -120px;
  background: rgba(224, 122, 95, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
  padding-top: 75px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 12px 0 0 var(--sage);
  margin-right: 12px;
}

.hero h1 {
  margin: 26px 0 24px;
  color: var(--ink);
  font-size: clamp(58px, 5.3vw, 79px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em,
h2 em,
h3 em,
blockquote em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 500px;
  margin: 0;
  color: #58666b;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #68757a;
  font-size: 11px;
  font-weight: 700;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e4eee9;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  height: 590px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(46, 125, 106, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
  top: 10px;
  left: 44px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  top: 74px;
  left: 110px;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: 3px;
  width: 565px;
  padding: 28px;
  border: 1px solid rgba(34, 52, 59, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 80px rgba(38, 69, 65, 0.14);
  transform: rotate(1.1deg);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.micro-label {
  color: #8a9498;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-head h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.avatar,
.mini-avatar {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcebe4;
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 800;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
  margin-top: 23px;
}

.snapshot {
  min-height: 218px;
  padding: 18px;
  border: 1px solid #e8e9e6;
  border-radius: 15px;
  background: #fcfcfa;
}

.snapshot-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #748085;
  font-size: 9px;
  font-weight: 700;
}

.snapshot-title svg {
  width: 16px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
}

.snapshot-balance > strong {
  display: block;
  margin: 15px 0 4px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.positive {
  color: var(--teal);
  font-size: 8px;
  font-weight: 700;
}

.mini-chart {
  height: 84px;
  margin: 19px -5px 0;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: url(#area);
}

.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.tiny-date {
  font-family: var(--font-mono);
  font-size: 7px;
}

.routine-item {
  position: relative;
  display: grid;
  grid-template-columns: 33px 1fr 7px;
  gap: 10px;
  align-items: center;
  margin-top: 25px;
}

.routine-item + .routine-item {
  margin-top: 18px;
}

.routine-icon {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.routine-icon.coral {
  background: #f9e8e2;
  color: var(--coral);
}

.routine-icon.sage {
  background: #e5f0e9;
  color: var(--teal);
}

.routine-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.routine-item span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.routine-item b {
  color: #3a484d;
  font-size: 9px;
}

.routine-item small {
  margin-top: 3px;
  color: #92999b;
  font-size: 7px;
}

.routine-item > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.routine-item:last-child > i {
  background: var(--sage);
}

.dashboard-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 15px 17px;
  border-radius: 13px;
  background: #f3f7f3;
}

.dashboard-bottom p {
  margin: 4px 0 0;
  color: #5c696d;
  font-size: 9px;
}

.dashboard-bottom p b {
  color: var(--teal);
}

.family-dots {
  display: flex;
}

.family-dots span {
  width: 25px;
  height: 25px;
  margin-left: -5px;
  border: 2px solid #f3f7f3;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #48605b;
  font-size: 7px;
  font-weight: 800;
}

.dot-one { background: #f4d4cb; }
.dot-two { background: #d7e7df; }
.dot-three { background: #dce1e8; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(34, 52, 59, 0.09);
  background: white;
  box-shadow: 0 19px 50px rgba(38, 60, 60, 0.14);
}

.play-float {
  left: -25px;
  bottom: 60px;
  width: 238px;
  gap: 13px;
  padding: 15px;
  border-radius: 17px;
  transform: rotate(-2.5deg);
}

.shape-stack {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #fceeea;
}

.shape {
  position: absolute;
}

.shape-circle {
  width: 16px;
  height: 16px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.shape-square {
  width: 14px;
  height: 14px;
  right: 7px;
  bottom: 7px;
  background: var(--teal);
  transform: rotate(10deg);
}

.shape-triangle {
  bottom: 7px;
  left: 8px;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #efb94e;
  border-left: 8px solid transparent;
}

.play-float > div:nth-child(2) {
  min-width: 100px;
  display: flex;
  flex-direction: column;
}

.play-float b {
  color: var(--slate);
  font-size: 10px;
}

.play-float div span {
  margin-top: 4px;
  color: #8a9396;
  font-size: 8px;
}

.play-button {
  width: 27px;
  height: 27px;
  margin-inline-start: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: white;
  font-size: 8px;
}

.goal-float {
  top: 20px;
  right: -25px;
  gap: 10px;
  padding: 13px 17px 13px 12px;
  border-radius: 15px;
  transform: rotate(3deg);
}

.goal-float svg {
  width: 37px;
  height: 37px;
  transform: rotate(-90deg);
}

.goal-float circle {
  fill: none;
  stroke: #e7ece9;
  stroke-width: 4;
}

.goal-float .progress-ring {
  stroke: var(--sage);
  stroke-dasharray: 80 113;
  stroke-linecap: round;
}

.goal-float div {
  display: flex;
  flex-direction: column;
}

.goal-float span {
  color: #8a9396;
  font-size: 7px;
}

.goal-float b {
  margin-top: 2px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #96a09e;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 27px;
  background: var(--teal);
  animation: scroll-pulse 1.6s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.principles {
  border-bottom: 1px solid var(--line);
  background: #f5f2ed;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  position: relative;
  min-height: 133px;
  padding: 31px 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--line);
}

.principle:last-child {
  border-right: 1px solid var(--line);
}

.principle-number {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #b1b4b1;
  font-family: var(--font-mono);
  font-size: 8px;
}

.principle-icon,
.roadmap-icon {
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.principle-icon svg,
.roadmap-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.teal { color: var(--teal); background: #deebe5; }
.coral { color: var(--coral); background: #f7e1da; }
.sage { color: var(--teal-deep); background: #dfece5; }

.principle h2 {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.principle p {
  margin: 5px 0 0;
  color: #849095;
  font-size: 10px;
}

.section {
  padding: 125px 0;
}

.section-heading,
.roadmap-heading,
.journal-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 65px;
}

.section-heading h2,
.roadmap-heading h2,
.journal-heading h2,
.closing-inner h2 {
  margin: 13px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 59px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading > p,
.roadmap-heading > p {
  width: 400px;
  max-width: 100%;
  margin: 0 0 8px;
  color: #6d797d;
  font-size: 14px;
  line-height: 1.75;
}

.product-feature {
  position: relative;
  min-height: 675px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-feature + .product-feature {
  margin-top: 38px;
}

.product-content {
  position: relative;
  z-index: 2;
  padding: 80px 35px 72px 72px;
}

.budget-feature {
  background: #edf2ee;
}

.play-feature {
  background: #f9eee9;
}

.product-meta {
  display: flex;
  align-items: center;
  color: #778589;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.coral-dot {
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}

.meta-divider {
  width: 1px;
  height: 12px;
  margin: 0 12px;
  background: #c3cbc7;
}

.product-content h3 {
  margin: 30px 0 12px;
  color: var(--slate);
  font-size: clamp(38px, 3.1vw, 49px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.budget-feature h3 em {
  color: var(--teal);
}

.product-tagline {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.product-description {
  max-width: 430px;
  margin: 18px 0 0;
  color: #647278;
  font-size: 13px;
  line-height: 1.72;
}

.feature-list {
  margin: 34px 0 37px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(34, 52, 59, 0.1);
  color: #43545a;
  font-size: 11px;
  font-weight: 700;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(34, 52, 59, 0.1);
}

.feature-list span {
  color: #92a09d;
  font-family: var(--font-mono);
  font-size: 8px;
}

.product-preview {
  position: relative;
  min-width: 0;
}

.budget-preview {
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    var(--teal);
  background-size: 44px 44px;
  border-radius: 120px 0 0 120px;
}

.rings {
  position: absolute;
  width: 540px;
  height: 540px;
  top: 55px;
  left: 70px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.rings::before,
.rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
}

.rings::before { inset: 60px; }
.rings::after { inset: 120px; }

.phone {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 615px;
  top: 43px;
  left: 50%;
  overflow: hidden;
  border: 8px solid #142a29;
  border-radius: 43px;
  background: #fbfcfa;
  box-shadow: 0 30px 70px rgba(17, 46, 39, 0.4);
  transform: translateX(-50%) rotate(2.4deg);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.budget-preview:hover .phone,
.product-preview.preview-active .phone {
  transform: translateX(-50%) rotate(0deg) translateY(-8px);
}

.phone-bar {
  height: 30px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #31443f;
  font-family: var(--font-mono);
  font-size: 7px;
}

.phone-bar i {
  width: 65px;
  height: 18px;
  border-radius: 12px;
  background: #142a29;
}

.phone-screen {
  padding: 12px 18px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
}

.mini-avatar {
  width: 28px;
  height: 28px;
  font-size: 7px;
}

.phone-amount {
  display: block;
  margin: 6px 0 9px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.budget-pill {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 12px;
  background: #e3f0e8;
  color: var(--teal);
  font-size: 6px;
  font-weight: 800;
}

.spend-card {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #e6ebe8;
  border-radius: 14px;
  background: white;
}

.spend-card > div:first-child {
  display: flex;
  justify-content: space-between;
  color: #8c9694;
  font-size: 7px;
}

.spend-card > div b {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
}

.bars {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  margin-top: 14px;
  border-bottom: 1px solid #edf0ee;
  background: repeating-linear-gradient(to bottom, #edf0ee 0, #edf0ee 1px, transparent 1px, transparent 25px);
}

.bars i {
  width: 14px;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: #7eb9a7;
}

.bars i:nth-child(4) {
  background: var(--teal);
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #a0a7a5;
  font-size: 5px;
}

.transaction-title {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 9px;
  color: var(--slate);
  font-size: 8px;
}

.transaction-title span { color: var(--teal); font-size: 6px; }

.transaction {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #eef0ee;
}

.transaction > i {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
}

.transaction > i.grocery { background: #f7e4dd; color: var(--coral); }
.transaction > i.home { background: #deebe5; color: var(--teal); }
.transaction > span { display: flex; flex-direction: column; }
.transaction b { color: #3f4e52; font-size: 7px; }
.transaction small { margin-top: 3px; color: #a1a8a8; font-size: 5px; }
.transaction > strong { color: #445156; font-family: var(--font-mono); font-size: 7px; }
.transaction > strong.positive-text { color: var(--teal); }

.phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 61px;
  padding: 8px 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e4e8e5;
  background: white;
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #9aa3a1;
  font-size: 12px;
}

.phone-nav span:first-child { color: var(--teal); }
.phone-nav small { font-size: 5px; }

.preview-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  border: 1px solid rgba(34, 52, 59, 0.08);
  background: white;
  box-shadow: 0 18px 35px rgba(17, 54, 45, 0.2);
}

.note-spending {
  top: 157px;
  left: 18px;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 13px;
  transform: rotate(-4deg);
}

.note-spending > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcece5;
  color: var(--teal);
  font-size: 12px;
}

.note-spending div { display: flex; flex-direction: column; }
.note-spending b { color: var(--teal); font-family: var(--font-mono); font-size: 9px; }
.note-spending small { color: #8a9693; font-size: 6px; margin-top: 2px; }

.note-secure {
  right: 17px;
  bottom: 66px;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #596964;
  font-size: 7px;
  font-weight: 700;
  transform: rotate(3deg);
}

.note-secure svg {
  width: 18px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
}

.play-feature {
  grid-template-columns: 1fr 1fr;
}

.play-feature .product-content {
  grid-column: 2;
  grid-row: 1;
  padding-left: 74px;
}

.play-feature .product-preview {
  grid-column: 1;
  grid-row: 1;
}

.play-preview {
  background:
    radial-gradient(circle at 13% 24%, rgba(255,255,255,.36) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 75%, rgba(255,255,255,.36) 0 3px, transparent 4px),
    var(--coral);
  background-size: 82px 82px, 111px 111px, auto;
  border-radius: 0 120px 120px 0;
}

.tablet {
  position: absolute;
  z-index: 2;
  width: 515px;
  height: 390px;
  top: 138px;
  right: -11px;
  padding: 13px;
  overflow: hidden;
  border: 8px solid #313f44;
  border-radius: 30px;
  background: #313f44;
  box-shadow: 0 30px 65px rgba(117, 48, 32, 0.32);
  transform: rotate(-2deg);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.play-preview:hover .tablet,
.product-preview.preview-active .tablet {
  transform: rotate(0deg) translateY(-8px);
}

.tablet-camera {
  position: absolute;
  z-index: 4;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0e171a;
}

.game-screen {
  height: 100%;
  padding: 16px;
  overflow: hidden;
  border-radius: 17px;
  background: #fff9ef;
}

.game-top {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
}

.game-avatar {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f5c456;
  color: #74542b;
  font-size: 9px;
  font-weight: 800;
}

.game-top > span:nth-child(2) { display: flex; flex-direction: column; }
.game-top small { color: #b18d68; font-size: 5px; font-weight: 800; letter-spacing: .1em; }
.game-top b { margin-top: 2px; color: #66483a; font-size: 9px; }
.star-count { padding: 5px 9px; border-radius: 12px; background: #f9e4ad; color: #9b6f21; font-family: var(--font-mono); font-size: 7px; }

.game-title {
  margin: 14px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a07f70;
  font-size: 6px;
}

.game-title b { color: #5e4438; font-size: 9px; }

.game-world {
  position: relative;
  height: 227px;
  overflow: hidden;
  border-radius: 16px;
  background: #a8d8de;
}

.sun {
  position: absolute;
  top: 18px;
  right: 37px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #f5c451;
  box-shadow: 0 0 0 8px rgba(245, 196, 81, 0.18);
}

.cloud {
  position: absolute;
  width: 40px;
  height: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}

.cloud::before { content: ""; position: absolute; width: 18px; height: 18px; left: 8px; bottom: 0; border-radius: 50%; background: inherit; }
.cloud-one { top: 42px; left: 34px; }
.cloud-two { top: 73px; right: 97px; transform: scale(.7); }

.hill {
  position: absolute;
  bottom: -100px;
  border-radius: 50% 50% 0 0;
}

.hill-back { width: 420px; height: 250px; left: -40px; background: #8dbe88; transform: rotate(6deg); }
.hill-front { width: 440px; height: 225px; right: -100px; bottom: -130px; background: #5b9f73; transform: rotate(-6deg); }

.tree { position: absolute; z-index: 2; left: 62px; bottom: 46px; }
.tree i { display: block; width: 11px; height: 55px; margin: auto; border-radius: 5px; background: #79533d; }
.tree b { position: absolute; width: 61px; height: 71px; bottom: 35px; left: -25px; border-radius: 50% 50% 45% 45%; background: #377a57; }

.animal { position: absolute; z-index: 3; left: 214px; bottom: 26px; width: 94px; height: 124px; }
.animal-head { position: absolute; z-index: 2; top: 8px; left: 13px; width: 67px; height: 64px; border-radius: 48% 48% 45% 45%; display: block; background: #e0a45f; }
.animal-head > i { position: absolute; top: 24px; width: 5px; height: 7px; border-radius: 50%; background: #3c362f; }
.animal-head > i:first-child { left: 18px; }.animal-head > i:nth-child(2) { right: 18px; }
.animal-head span { position: absolute; width: 22px; height: 13px; left: 23px; bottom: 12px; border-bottom: 2px solid #6d4c39; border-radius: 50%; }
.animal-ear { position: absolute; z-index: 1; top: 0; width: 31px; height: 38px; border-radius: 50% 50% 30% 30%; background: #c7834d; }
.animal-ear.left { left: 6px; transform: rotate(-31deg); }.animal-ear.right { right: 6px; transform: rotate(31deg); }
.animal > em { position: absolute; bottom: 0; left: 21px; width: 53px; height: 70px; border-radius: 28px 28px 13px 13px; background: #d89a5c; }

.game-play {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 20px;
  width: 41px;
  height: 41px;
  border: 4px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: white;
  cursor: pointer;
  font-size: 10px;
  transition: transform .2s ease;
}

.game-play:hover { transform: scale(1.08); }
.game-play.playing { animation: play-bounce .6s ease; }
@keyframes play-bounce { 50% { transform: scale(.78); } }

.game-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 9px;
  color: #886b5d;
  font-size: 6px;
}

.game-progress > i { flex: 1; height: 5px; overflow: hidden; border-radius: 4px; background: #f0e5d5; }
.game-progress > i b { display: block; width: 60%; height: 100%; border-radius: inherit; background: var(--coral); }

.doodle {
  position: absolute;
  z-index: 1;
  color: rgba(255,255,255,.8);
  font-family: Georgia, serif;
  font-size: 27px;
}

.doodle-star { top: 55px; left: 55px; }
.doodle-spark { right: 33px; bottom: 48px; font-size: 36px; }
.doodle-loop { left: 32px; bottom: 70px; transform: rotate(30deg); }

.sticker {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(34, 52, 59, 0.08);
  background: white;
  box-shadow: 0 17px 36px rgba(100, 44, 30, 0.18);
}

.sticker-safe {
  top: 85px;
  left: 28px;
  padding: 13px 17px;
  border-radius: 50% 45% 50% 43%;
  color: #765447;
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-8deg);
}

.sticker-safe b { color: var(--coral); }

.sticker-skills {
  right: 10px;
  bottom: 64px;
  padding: 10px 14px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: rotate(4deg);
}

.sticker-skills > span { width: 27px; height: 27px; border-radius: 9px; display: grid; place-items: center; background: #f9e6b7; color: #b9811f; }
.sticker-skills div { display: flex; flex-direction: column; }
.sticker-skills small { color: #a9978e; font-size: 5px; letter-spacing: .08em; }
.sticker-skills b { margin-top: 2px; color: #664e44; font-size: 7px; }

.roadmap-section {
  background: #f0ede7;
}

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

.roadmap-card {
  min-height: 380px;
  padding: 30px;
  border: 1px solid #d8d5cd;
  border-radius: 18px;
  background: rgba(250, 248, 245, 0.55);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.roadmap-card:hover {
  transform: translateY(-6px);
  background: var(--cream);
  box-shadow: 0 20px 45px rgba(34, 52, 59, .08);
}

.roadmap-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.roadmap-icon {
  border-radius: 13px;
}

.roadmap-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 14px;
  background: #e2ece7;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.roadmap-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.roadmap-status.concept {
  background: #e6e3dd;
  color: #7b8587;
}

.roadmap-category {
  color: #8d9898;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  margin: 15px 0 17px;
  color: var(--slate);
  font-size: 22px;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.roadmap-card p {
  min-height: 61px;
  margin: 0;
  color: #768186;
  font-size: 11px;
  line-height: 1.65;
}

.card-link {
  margin-top: 26px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid #aeb5b3;
  background: transparent;
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.card-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

.roadmap-callout {
  margin-top: 23px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px dashed #c3c1ba;
  border-radius: 14px;
}

.spark-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7e2dc;
  color: var(--coral);
}

.roadmap-callout p { margin: 0; color: #7a8487; font-size: 10px; line-height: 1.6; }
.roadmap-callout p strong { color: #3d4e54; font-size: 11px; }

.philosophy-section {
  overflow: hidden;
  background: var(--slate);
  color: white;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  align-items: center;
}

.philosophy-art {
  position: relative;
  height: 530px;
}

.art-sun {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 10px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--coral);
}

.art-window {
  position: absolute;
  z-index: 2;
  inset: 45px 45px 30px 0;
  overflow: hidden;
  border-radius: 200px 200px 16px 16px;
  background: #d6dfd5;
  box-shadow: 25px 26px 0 rgba(255,255,255,.06);
}

.art-window::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: #ccad87;
}

.art-window::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 0;
  bottom: 43%;
  border-right: 2px solid rgba(34,52,59,.12);
  border-left: 2px solid rgba(34,52,59,.12);
}

.art-plant {
  position: absolute;
  z-index: 2;
  bottom: 86px;
  left: 55px;
  width: 90px;
  height: 185px;
}

.art-plant b { position: absolute; bottom: 0; left: 25px; width: 48px; height: 58px; background: #c95f49; clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%); }
.art-plant::after { content: ""; position: absolute; bottom: 52px; left: 48px; width: 4px; height: 105px; background: #477c60; }
.art-plant i { position: absolute; z-index: 1; width: 48px; height: 26px; border-radius: 100% 0 100% 0; background: #477c60; }
.art-plant i:nth-child(1) { bottom: 109px; left: 3px; transform: rotate(19deg); }
.art-plant i:nth-child(2) { bottom: 136px; left: 45px; transform: scaleX(-1) rotate(19deg); }
.art-plant i:nth-child(3) { bottom: 80px; left: 48px; transform: scaleX(-1) rotate(5deg); }

.art-table {
  position: absolute;
  z-index: 3;
  bottom: 80px;
  right: 37px;
  width: 230px;
  height: 92px;
  border-top: 20px solid #6a493c;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.art-table::before,
.art-table::after { content: ""; position: absolute; top: 0; width: 12px; height: 85px; background: #6a493c; }
.art-table::before { left: 18px; transform: rotate(5deg); }.art-table::after { right: 18px; transform: rotate(-5deg); }

.art-family { position: absolute; z-index: 4; right: 65px; bottom: 159px; display: flex; align-items: flex-end; gap: 20px; }
.art-family span { position: relative; display: block; width: 50px; height: 94px; border-radius: 25px 25px 10px 10px; background: #d77a59; }
.art-family span::before { content: ""; position: absolute; top: -28px; left: 9px; width: 32px; height: 32px; border-radius: 50%; background: #9f694d; }
.art-family span:nth-child(2) { height: 117px; background: #3d745f; }
.art-family span:nth-child(2)::before { background: #704638; }
.art-family span:nth-child(3) { width: 39px; height: 70px; background: #e4b952; }
.art-family span:nth-child(3)::before { width: 28px; height: 28px; left: 6px; background: #bc7b59; }

.art-label {
  position: absolute;
  z-index: 6;
  right: -12px;
  bottom: 3px;
  padding: 15px 19px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  transform: rotate(7deg);
}

.light-kicker { color: #8dc0a8; }

.philosophy-copy blockquote {
  margin: 24px 0;
  color: white;
  font-size: clamp(33px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.16;
}

.philosophy-copy p {
  max-width: 475px;
  margin: 0 0 31px;
  color: #afbdc0;
  font-size: 13px;
  line-height: 1.8;
}

.journal-section {
  background: var(--cream);
}

.journal-heading {
  align-items: end;
}

.journal-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
}

.filter-group {
  display: flex;
  gap: 5px;
  padding: 4px;
  border-radius: 22px;
  background: #efede8;
}

.filter-group button {
  padding: 8px 12px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #758084;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.filter-group button.active {
  background: white;
  color: var(--slate);
  box-shadow: 0 3px 10px rgba(34,52,59,.08);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  transition: opacity .25s ease, transform .25s ease;
}

.article-card.hidden {
  display: none;
}

.article-image {
  position: relative;
  height: 255px;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.article-tag {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border-radius: 15px;
  background: rgba(255,255,255,.9);
  color: #4a5b60;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.article-arrow {
  position: absolute;
  z-index: 4;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--slate);
  font-size: 14px;
  transition: transform .25s ease;
}

.article-image:hover .article-arrow { transform: rotate(45deg); }

.article-finance {
  display: grid;
  place-items: center;
  background: #dceae3;
}

.article-finance::before,
.article-finance::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(46,125,106,.15);
  border-radius: 50%;
}

.article-finance::before { width: 250px; height: 250px; left: -80px; top: -110px; }
.article-finance::after { width: 160px; height: 160px; right: -50px; bottom: -60px; }

.receipt-art {
  position: relative;
  z-index: 2;
  width: 155px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  box-shadow: 11px 14px 0 rgba(46,125,106,.13);
  transform: rotate(-4deg);
  transition: transform .35s ease;
}

.article-image:hover .receipt-art { transform: rotate(0) scale(1.04); }
.receipt-art span { color: #9a9f9c; font-family: var(--font-mono); font-size: 6px; }
.receipt-art b { margin: 8px 0 14px; color: var(--slate); font-family: var(--font-mono); font-size: 20px; }
.receipt-art i { height: 4px; margin: 3px 0; background: #e3e4df; }
.receipt-art i:nth-of-type(2) { width: 72%; }.receipt-art i:nth-of-type(3) { width: 85%; }
.receipt-art em { margin-top: 18px; color: var(--teal); font-family: var(--font-mono); font-size: 7px; font-style: normal; }

.article-kids { background: #f5d8cf; }
.article-kids::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 22% 72%, rgba(255,255,255,.35) 0 3px, transparent 4px); background-size: 48px 48px; }
.blocks-art { position: absolute; inset: 0; }
.blocks-art i { position: absolute; width: 75px; height: 75px; display: grid; place-items: center; border-radius: 9px; box-shadow: 6px 8px 0 rgba(80,55,45,.12); color: white; font-size: 22px; font-style: normal; font-weight: 800; transition: transform .35s ease; }
.block-a { left: 85px; top: 70px; background: var(--coral); transform: rotate(-8deg); }
.block-b { left: 160px; top: 116px; background: #e5b646; transform: rotate(5deg); }
.block-c { left: 213px; top: 49px; background: var(--teal); transform: rotate(12deg); }
.block-d { left: 265px; top: 128px; background: #77a6b3; transform: rotate(-5deg); }
.article-image:hover .blocks-art i { transform: rotate(0) translateY(-6px); }

.article-home { background: #dce2db; }
.room-art { position: absolute; inset: 0; perspective: 500px; }
.room-art::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%; background: #b69b78; transform: skewX(-15deg); transform-origin: bottom; }
.room-window { position: absolute; top: 35px; right: 43px; width: 100px; height: 88px; border: 8px solid #f5f2ea; background: #9fc4ca; box-shadow: inset 42px 0 0 rgba(255,255,255,.2); }
.room-desk { position: absolute; z-index: 2; left: 65px; bottom: 72px; width: 210px; height: 15px; background: #745440; box-shadow: 20px 17px 0 -5px #745440; }
.room-desk::before,.room-desk::after { content:""; position:absolute; top:12px; width:10px; height:70px; background:#745440; }.room-desk::before{left:14px}.room-desk::after{right:14px}
.room-chair { position: absolute; z-index: 3; left: 170px; bottom: 23px; width: 55px; height: 58px; border-radius: 25px 25px 5px 5px; background: var(--coral); }
.room-plant { position:absolute;z-index:3;right:52px;bottom:45px;width:48px;height:58px;background:#b95f4d;clip-path:polygon(0 0,100% 0,85% 100%,15% 100%)}
.room-plant::before { content:""; position:absolute; bottom:43px; left:-9px; width:65px; height:80px; border-radius:50% 0 50% 0; background:#4f8066; transform:rotate(38deg) }

.article-meta {
  margin: 17px 0 11px;
  display: flex;
  justify-content: space-between;
  color: #939b9c;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.article-card h3 a { transition: color .2s ease; }
.article-card h3 a:hover { color: var(--teal); }
.article-card > p { margin: 11px 0 0; color: #7b8589; font-size: 10px; line-height: 1.7; }

.values-strip {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: #f2efe9;
}

.values-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
}

.value-intro h2 {
  margin: 15px 0 0;
  color: var(--slate);
  font-size: 27px;
  letter-spacing: -.045em;
  line-height: 1.2;
}

.value {
  padding-left: 26px;
  border-left: 1px solid #d6d3cc;
}

.value > span { color: var(--coral); font-family: var(--font-mono); font-size: 8px; }
.value h3 { margin: 19px 0 9px; color: var(--slate); font-size: 13px; }
.value p { margin: 0; color: #7e888c; font-size: 9px; line-height: 1.7; }

.closing-cta {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  background: #ebe7df;
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.closing-mark {
  position: relative;
  width: 32px;
  height: 42px;
  margin-bottom: 16px;
}

.closing-mark i,
.closing-mark b {
  position: absolute;
  left: 0;
  width: 31px;
  height: 18px;
  border: 6px solid;
}

.closing-mark i { top: 0; border-color: var(--teal) transparent transparent var(--teal); border-radius: 22px 0 0 0; }
.closing-mark b { bottom: 0; border-color: transparent transparent var(--coral) var(--coral); border-radius: 0 0 0 22px; }

.closing-inner p {
  max-width: 460px;
  margin: 21px auto 0;
  color: #727e82;
  font-size: 13px;
  line-height: 1.7;
}

.closing-actions { margin-top: 29px; }

.closing-shape {
  position: absolute;
  border: 1px solid rgba(46,125,106,.13);
  border-radius: 50%;
}

.shape-left { width: 460px; height: 460px; top: -220px; left: -190px; box-shadow: 0 0 0 70px rgba(46,125,106,.03), 0 0 0 140px rgba(46,125,106,.025); }
.shape-right { width: 340px; height: 340px; right: -160px; bottom: -160px; border-color: rgba(224,122,95,.17); box-shadow: 0 0 0 60px rgba(224,122,95,.035), 0 0 0 120px rgba(224,122,95,.025); }

.site-footer {
  padding: 65px 0 22px;
  background: var(--slate);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr 1.1fr;
  gap: 60px;
}

.footer-brand .brand img {
  mix-blend-mode: normal;
}

.footer-brand > p {
  margin: 18px 0 43px;
  color: #b5c0c2;
  font-size: 11px;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8fa0a4;
  font-size: 8px;
}

.footer-note span { color: var(--coral); font-size: 14px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links h2,
.footer-newsletter h2 {
  margin: 0 0 8px;
  color: #8fa0a4;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  color: #d8ddde;
  font-size: 10px;
  transition: color .2s ease;
}

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

.footer-newsletter > p {
  margin: 5px 0 16px;
  color: #b3bec0;
  font-size: 9px;
}

.footer-newsletter form {
  position: relative;
}

.footer-newsletter input {
  width: 100%;
  height: 42px;
  padding: 0 45px 0 14px;
  border: 1px solid #526369;
  border-radius: 5px;
  outline: none;
  background: #2b4047;
  color: white;
  font-size: 9px;
}

.footer-newsletter input:focus { border-color: var(--sage); }
.footer-newsletter input::placeholder { color: #819094; }
.footer-newsletter button { position: absolute; top: 5px; right: 5px; width: 32px; height: 32px; border: 0; border-radius: 4px; background: var(--teal); color: white; cursor: pointer; }

.form-message {
  display: block;
  min-height: 16px;
  margin-top: 8px;
  color: var(--sage);
  font-size: 8px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid #3c5056;
  color: #77898e;
  font-family: var(--font-mono);
  font-size: 6px;
}

.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom > span:last-child { text-align: right; }

.waitlist-dialog {
  width: min(510px, calc(100% - 32px));
  padding: 48px;
  border: 0;
  border-radius: 24px;
  background: var(--cream);
  color: var(--slate);
  box-shadow: 0 30px 90px rgba(22, 42, 47, .3);
}

.waitlist-dialog::backdrop {
  background: rgba(18, 35, 41, .58);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--slate);
  font-size: 20px;
  cursor: pointer;
}

.dialog-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f5dfd8;
  color: var(--coral);
}

.waitlist-dialog h2 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 34px;
  letter-spacing: -.04em;
}

.waitlist-dialog > p {
  margin: 0 0 28px;
  color: #6d7a7e;
  font-size: 13px;
  line-height: 1.7;
}

.waitlist-dialog label {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
}

.waitlist-dialog form > div {
  display: flex;
  gap: 8px;
}

.waitlist-dialog input {
  flex: 1;
  min-width: 0;
  height: 49px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: white;
  font-size: 12px;
}

.waitlist-dialog input:focus { border-color: var(--teal); }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.reveal-delay {
  transition-delay: .12s;
}

html[lang="he"] {
  --font-display: "Heebo", Arial, sans-serif;
  --font-mono: "Heebo", Arial, sans-serif;
}

html[lang="he"] h1 em,
html[lang="he"] h2 em,
html[lang="he"] h3 em,
html[lang="he"] blockquote em {
  font-family: "Heebo", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
}

html[dir="rtl"] .button svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .article-tag {
  right: 15px;
  left: auto;
}

html[dir="rtl"] .article-arrow {
  right: auto;
  left: 15px;
}

html[dir="rtl"] .dialog-close {
  right: auto;
  left: 17px;
}

html[dir="rtl"] .footer-newsletter input {
  padding: 0 14px 0 45px;
}

html[dir="rtl"] .footer-newsletter button {
  right: auto;
  left: 5px;
}

html[dir="rtl"] .footer-bottom > span:last-child {
  text-align: left;
}

html[dir="rtl"] .value {
  padding-right: 26px;
  padding-left: 0;
  border-right: 1px solid #d6d3cc;
  border-left: 0;
}

@media (max-width: 1100px) {
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 30px; }
  .dashboard-card { width: 510px; right: -20px; }
  .goal-float { right: -8px; }
  .product-content { padding-left: 48px; }
  .tablet { width: 480px; right: -30px; }
  .footer-grid { gap: 35px; }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .brand { order: 1; }
  .language-picker {
    order: 2;
    margin-inline-start: auto;
  }
  .menu-toggle {
    z-index: 102;
    order: 3;
    width: 42px;
    height: 42px;
    margin-inline-start: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--slate);
    cursor: pointer;
  }
  .menu-toggle span { width: 17px; height: 1.5px; background: white; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-size: 27px; color: var(--slate); }
  .hero { height: auto; min-height: 0; padding: 155px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 0; }
  .hero-copy { max-width: 630px; }
  .hero h1 { font-size: clamp(59px, 10vw, 83px); }
  .hero-visual { width: min(650px, 100%); margin: 20px auto 0; }
  .dashboard-card { right: 20px; }
  .goal-float { right: 0; }
  .scroll-cue { display: none; }
  .principle { padding-inline: 22px; }
  .section { padding: 90px 0; }
  .section-heading, .roadmap-heading, .journal-heading { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 45px; }
  .product-feature { grid-template-columns: 1fr; }
  .product-content { padding: 55px; }
  .product-preview { min-height: 650px; }
  .budget-preview { border-radius: 80px 80px 0 0; }
  .play-feature { grid-template-columns: 1fr; }
  .play-feature .product-content { grid-column: 1; grid-row: 1; padding-left: 55px; }
  .play-feature .product-preview { grid-column: 1; grid-row: 2; }
  .play-preview { border-radius: 80px 80px 0 0; }
  .tablet { width: 515px; right: auto; left: 50%; transform: translateX(-50%) rotate(-2deg); }
  .play-preview:hover .tablet, .product-preview.preview-active .tablet { transform: translateX(-50%) rotate(0) translateY(-8px); }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-card:last-child { grid-column: span 2; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 65px; }
  .philosophy-art { width: min(600px, 100%); }
  .journal-controls { align-items: flex-start; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card:last-child { grid-column: span 2; max-width: calc(50% - 10px); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-intro { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 32px, 560px); }
  .nav-wrap { height: 72px; }
  .brand img { width: 125px; }
  .hero { padding-top: 126px; }
  .hero h1 { margin-top: 22px; font-size: clamp(50px, 15vw, 68px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .trust-list { gap: 12px; }
  .hero-visual { height: 440px; margin-top: 25px; }
  .dashboard-card { top: 50px; right: -55px; width: 480px; padding: 22px; transform: scale(.77) rotate(1deg); transform-origin: right top; }
  .orbit-one { width: 390px; height: 390px; left: 0; }
  .orbit-two { width: 290px; height: 290px; left: 47px; }
  .play-float { left: -14px; bottom: 20px; transform: scale(.84) rotate(-2.5deg); transform-origin: left bottom; }
  .goal-float { top: 10px; right: -8px; transform: scale(.84) rotate(3deg); transform-origin: right top; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle { min-height: 108px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .section-heading h2, .roadmap-heading h2, .journal-heading h2, .closing-inner h2 { font-size: 41px; }
  .product-feature { margin-inline: -16px; border-radius: 20px; }
  .product-content, .play-feature .product-content { padding: 46px 28px; }
  .product-content h3 { font-size: 38px; }
  .product-preview { min-height: 550px; }
  .budget-preview, .play-preview { border-radius: 60px 60px 0 0; }
  .phone { top: 28px; transform: translateX(-50%) scale(.84) rotate(2deg); transform-origin: top center; }
  .budget-preview:hover .phone, .product-preview.preview-active .phone { transform: translateX(-50%) scale(.84) rotate(0) translateY(-5px); }
  .note-spending { left: 1px; top: 130px; transform: scale(.84) rotate(-4deg); transform-origin: left center; }
  .note-secure { right: 3px; bottom: 43px; }
  .tablet { top: 95px; width: 500px; transform: translateX(-50%) scale(.78) rotate(-2deg); transform-origin: center top; }
  .play-preview:hover .tablet, .product-preview.preview-active .tablet { transform: translateX(-50%) scale(.78) rotate(0) translateY(-6px); }
  .sticker-safe { left: 5px; top: 60px; }.sticker-skills { right: 2px; bottom: 54px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-card:last-child { grid-column: auto; }
  .roadmap-card { min-height: 345px; }
  .roadmap-callout { grid-template-columns: 42px 1fr; }
  .roadmap-callout .text-link { grid-column: 2; justify-self: start; }
  .philosophy-art { height: 430px; }
  .art-window { inset: 35px 12px 20px 0; }
  .art-sun { width: 125px; height: 125px; }
  .art-family { right: 28px; transform: scale(.8); transform-origin: bottom right; }
  .art-table { right: 16px; width: 200px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card:last-child { grid-column: auto; max-width: none; }
  .article-image { height: 280px; }
  .filter-group { max-width: 100%; overflow-x: auto; }
  .filter-group button { white-space: nowrap; }
  .values-grid { grid-template-columns: 1fr; }
  .value-intro { grid-row: auto; margin-bottom: 15px; }
  .value { padding: 24px 0 0; border-top: 1px solid #d6d3cc; border-left: 0; }
  html[dir="rtl"] .value { padding-right: 0; border-right: 0; }
  .closing-cta { padding: 95px 0; }
  .closing-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand, .footer-newsletter { grid-column: span 2; }
  .footer-brand > p { margin-bottom: 20px; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 15px; }
  .footer-bottom > span:last-child { display: none; }
  .waitlist-dialog { padding: 40px 24px 30px; }
  .waitlist-dialog form > div { flex-direction: column; }
}

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