/* ================= TOKENS ================= */
:root {
  --bg:        #FBF8F3;
  --bg-2:      #F4EDE0;
  --bg-3:      #F0E7D4;
  --bg-sage:   #EEF2EA;
  --bg-sky:    #EAF1F5;
  --bg-cream:  #F7F0E3;
  --card:      #FFFFFF;
  --card-soft: #FBF6EC;

  --ink:       #2A2118;
  --ink-2:     #4A3F33;
  --ink-mute:  #7C6E5E;
  --ink-soft:  #A89C8B;
  --line:      #EBE2D2;
  --line-2:    #DFD3BD;

  --brown:     #8B6F47;
  --brown-d:   #6B5538;
  --brown-l:   #C9B391;
  --brown-xl:  #EFE2CB;

  --sage:      #6B8E6F;
  --sage-l:    #B6CDB6;
  --sage-xl:   #DDE8DC;

  --sky:       #5E8AA8;
  --sky-l:     #B2C9D7;
  --sky-xl:    #DCE7EE;

  --amber:     #C68A3E;
  --amber-l:   #EBC68A;
  --amber-xl:  #F4E4C7;

  --radius:    22px;
  --radius-lg: 28px;
  --radius-sm: 14px;

  --shadow-1:  0 1px 0 rgba(60,40,20,.04), 0 6px 18px -8px rgba(60,40,20,.10);
  --shadow-2:  0 1px 0 rgba(60,40,20,.04), 0 20px 50px -22px rgba(60,40,20,.20);
  --shadow-3:  0 30px 80px -30px rgba(60,40,20,.28), 0 8px 20px -10px rgba(60,40,20,.10);

  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-disp: 'Plus Jakarta Sans', var(--font-sans);
  --font-serif:'Instrument Serif', ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.display {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.display em { font-size: 1.04em; color: var(--brown); line-height: 1; }
.h-display {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.h-display em { color: var(--brown); }
.h-display.light em { color: var(--brown-l); }
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-mute);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.55;
  text-wrap: pretty;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 640px;
  margin: 0;
  text-wrap: pretty;
}
.section-head.center { text-align: center; margin: 0 auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-d);
  background: var(--brown-xl);
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 0 3px rgba(139,111,71,.18);
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.kicker-brown { color: var(--brown-d); background: var(--brown-xl); }
.kicker-sage  { color: #3F5C44;        background: var(--sage-xl); }
.kicker-sky   { color: #2F516B;        background: var(--sky-xl); }
.kicker-cream { color: var(--brown-xl); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 10px 24px -10px rgba(42,33,24,.5);
}
.btn-primary:hover { transform: translateY(-1px); background: #1c1610; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--card-soft); }
.btn-ghost .play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brown); color: white; font-size: 9px; padding-left: 2px;
}
.btn-cream { background: var(--bg); color: var(--ink); }
.btn-cream:hover { transform: translateY(-1px); background: white; }
.btn-outline-light {
  background: transparent; color: var(--bg);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,.08); }

.link-quiet { color: var(--ink-mute); font-size: 14.5px; font-weight: 500; }
.link-quiet:hover { color: var(--ink); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(235,226,210,.7);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}
.brand-mark { width: 32px; height: 32px; display: inline-flex; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 7px; }
.brand-mark.sm { width: 22px; height: 22px; }
.brand-name { color: var(--ink); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-mute);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 18px; }

.hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 0%, var(--brown-xl) 0%, transparent 55%),
    radial-gradient(700px 400px at 0% 30%, var(--sage-xl) 0%, transparent 60%);
  opacity: .6;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-row.center { justify-content: center; }

.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-mute);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
.hero-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); display: inline-block; }
.hero-meta.light { color: rgba(247,240,227,.7); justify-content: center; margin-top: 24px; }
.hero-meta.light strong { color: var(--bg); }
.hero-meta.light .sep { background: rgba(247,240,227,.4); }

.hero-visual { position: relative; padding: 24px 0 24px 24px; min-height: 580px; }

.browser {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.browser-bar {
  height: 44px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to bottom, #F8F2E5, #F1E9D6);
  border-bottom: 1px solid var(--line);
}
.browser-bar.small { height: 36px; }
.dots { display: inline-flex; gap: 7px; }
.dots i {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
  background: #E2C9A6;
}
.dots i:nth-child(1) { background: #E89C7B; }
.dots i:nth-child(2) { background: #E8C26B; }
.dots i:nth-child(3) { background: #8FB58A; }
.url {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  max-width: 380px;
  margin: 0 auto;
}
.url .lock { font-size: 10px; }
.browser-tools { color: var(--ink-soft); font-size: 14px; text-align: right; }
.browser-tools .ic { margin-left: 8px; }

.hero-browser { transform: rotate(-1.2deg); }

.dash { display: grid; grid-template-columns: 196px 1fr; min-height: 420px; }
.dash-side {
  background: var(--card-soft);
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 18px;
}
.dash-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; padding: 0 6px; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px; color: var(--ink-mute);
}
.dash-nav a.active {
  background: white;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(60,40,20,.04), 0 1px 3px rgba(60,40,20,.06);
}
.dot-i { width: 18px; text-align: center; color: var(--brown); font-size: 12px; }
.pill {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
}
.pill-sage { background: var(--sage-xl); color: #3F5C44; }
.pill-brown{ background: var(--brown-xl); color: var(--brown-d); }
.pill-sky  { background: var(--sky-xl);  color: #2F516B; }
.pill.sm { font-size: 10.5px; padding: 2px 7px; }

.dash-prop {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.prop-thumb {
  width: 36px; height: 36px; border-radius: 10px;
  background:
    linear-gradient(135deg, var(--brown-l), var(--brown)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.1) 0 4px, transparent 4px 8px);
  background-blend-mode: overlay;
  flex-shrink: 0;
}
.prop-name { font-weight: 600; font-size: 13px; }
.prop-sub { font-size: 11.5px; color: var(--ink-mute); }

.dash-main { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.dash-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.dash-title { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.dash-sub { font-size: 12.5px; color: var(--ink-mute); }
.dash-actions { display: flex; align-items: center; gap: 10px; }
.seg {
  display: inline-flex; align-items: center;
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
}
.seg b, .seg i {
  padding: 5px 10px; border-radius: 999px; font-style: normal; color: var(--ink-mute); font-weight: 500;
}
.seg b { background: white; color: var(--ink); font-weight: 600; box-shadow: 0 1px 2px rgba(60,40,20,.06); }
.btn-mini {
  background: var(--ink); color: white;
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}

.calendar {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.cal-row.cal-head {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: var(--card-soft);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.cal-row.cal-head span { padding: 8px 10px; border-right: 1px solid var(--line); }
.cal-row.cal-head span:last-child { border-right: 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-day {
  min-height: 64px;
  padding: 8px 8px 6px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 11.5px;
}
.cal-day:nth-child(7n) { border-right: 0; }
.cal-day b { font-weight: 600; color: var(--ink-2); font-size: 12px; display: block; }

.ev {
  display: inline-flex; align-items: center;
  margin-top: 6px;
  font-size: 11px; font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  position: relative;
  max-width: 100%;
  z-index: 2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cal-grid .ev { width: calc(100% * var(--w, 1) + (var(--w, 1) - 1) * 1px); }
.ev-brown { background: var(--brown-xl); color: var(--brown-d); border-left: 2px solid var(--brown); }
.ev-sage  { background: var(--sage-xl);  color: #3F5C44;       border-left: 2px solid var(--sage); }
.ev-sky   { background: var(--sky-xl);   color: #2F516B;       border-left: 2px solid var(--sky); }
.ev-amber { background: var(--amber-xl); color: #6F4B1A;       border-left: 2px solid var(--amber); }

.dash-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dcard {
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
}
.dcard-h {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.kdot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.kdot-brown { background: var(--brown); }
.kdot-sage  { background: var(--sage); }
.kdot-sky   { background: var(--sky); }
.kdot-amber { background: var(--amber); }
.dcard-row {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  border-top: 1px dashed var(--line-2);
}
.dcard-row:first-of-type { border-top: 0; }
.dcard-row em { color: var(--ink-mute); font-style: normal; }
.dcard-row .time { font-weight: 600; color: var(--brown-d); width: 38px; flex-shrink: 0; }
.dcard-row.muted { color: var(--ink-mute); }
.chk { display: inline-block; width: 18px; color: var(--brown); font-size: 14px; }
.chk.done { color: var(--sage); }
.strike { text-decoration: line-through; color: var(--ink-mute); }

.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  font-size: 13px;
}
.float-title { font-weight: 600; }
.float-sub { font-size: 11.5px; color: var(--ink-mute); }
.float-card--avatars { left: -10px; top: 40px; transform: rotate(-3deg); }
.float-card--notif { right: -16px; bottom: 60px; transform: rotate(2deg); border-left: 3px solid var(--brown); }
.notif-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--brown-xl);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
}

.avatars { display: inline-flex; }
.ava {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  border: 2px solid white;
  margin-left: -6px;
  flex-shrink: 0;
}
.ava:first-child { margin-left: 0; }
.ava-1 { background: #B47B5A; }
.ava-2 { background: #6B8E6F; }
.ava-3 { background: #5E8AA8; }
.ava-4 { background: #C68A3E; color: white; font-size: 10px; }
.ava.ghost { background: transparent; color: var(--brown); border: 1.5px dashed var(--line-2); }
.ava.dim { opacity: .35; }

.phone {
  width: 220px;
  background: #1B1410;
  border-radius: 38px;
  padding: 8px;
  box-shadow: var(--shadow-3), 0 0 0 1px rgba(0,0,0,.05);
  position: relative;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; border-radius: 999px;
  background: #1B1410;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 30px;
  padding: 34px 14px 18px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
}
.phone-stat {
  display: flex; justify-content: space-between;
  font-size: 10.5px; font-weight: 700; color: var(--ink-2);
  margin-bottom: 4px;
}
.phone-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-mute);
  margin-bottom: 4px;
}
.phone-title { font-weight: 700; color: var(--ink); }
.phone-back { width: 18px; text-align: center; color: var(--brown); font-size: 16px; }

.phone-greet { padding: 4px 2px 8px; }
.phone-greet-l { font-family: var(--font-disp); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; }
.phone-greet-s { font-size: 11.5px; color: var(--ink-mute); }

.phone-card {
  background: white;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(60,40,20,.05);
}
.phone-card-h { font-size: 10.5px; font-weight: 700; color: var(--brown-d); text-transform: uppercase; letter-spacing: 0.06em; }
.phone-card-t { font-weight: 700; font-size: 14px; margin-top: 2px; }
.phone-card-s { font-size: 11.5px; color: var(--ink-mute); }
.phone-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10.5px; font-weight: 600;
  padding: 3px 8px;
  background: var(--sage-xl); color: #3F5C44;
  border-radius: 999px;
}

.phone-task {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
}
.phone-task.soft { background: var(--card-soft); }
.phone-chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.phone-chk.soft { background: transparent; color: var(--brown); border: 1.5px solid var(--brown-l); font-size: 9px; }
.phone-task-t { font-size: 12.5px; font-weight: 600; }
.phone-task-s { font-size: 11px; color: var(--ink-mute); }
.phone-notif {
  background: white;
  border-left: 3px solid var(--brown);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11.5px;
  box-shadow: 0 2px 6px rgba(60,40,20,.05);
}

.hero-phone { position: absolute; right: -16px; bottom: -20px; transform: rotate(4deg); z-index: 4; }

.hero-logos {
  margin-top: 56px;
  display: flex; align-items: center; gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.logos-label { font-size: 12px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.logos {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.logos li { line-height: 1; }

.section { padding: 110px 0; position: relative; }
.section-sage  { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-sage) 30%, var(--bg-sage) 70%, var(--bg) 100%); }
.section-cream { background: var(--bg-cream); }
.section-beige { background: var(--bg-2); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { max-width: 780px; }

.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prob {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.prob:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.prob h3 { font-size: 18px; margin: 16px 0 6px; letter-spacing: -0.01em; }
.prob p  { font-size: 14.5px; color: var(--ink-mute); margin: 0; }
.prob-vis {
  background: var(--card-soft);
  border-radius: 14px;
  height: 140px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
  position: relative;
  overflow: hidden;
}

.bubble {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 14px;
  max-width: 75%;
  background: white;
  border: 1px solid var(--line);
}
.bubble.mine { align-self: flex-end; background: var(--brown); color: white; border-color: transparent; }
.bubble.b1 { transform: rotate(-1deg); }
.bubble.b3 { transform: rotate(1deg); }

.prob-vis-avatars { flex-direction: row; align-items: center; gap: 0; justify-content: center; position: relative; }
.prob-vis-avatars .ava { width: 36px; height: 36px; font-size: 14px; }
.prob-vis-avatars .qm {
  position: absolute; top: 12px; right: 18px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--amber); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 12px rgba(198,138,62,.4);
}

.prob-vis-clash { position: relative; }
.clash-row { display: flex; }
.clash-row .ev { width: 60%; --w: 1; }
.clash-row .ev.overlap { margin-left: 30%; }
.prob-vis-clash .warn {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: #D5573B; color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 4px 12px rgba(213,87,59,.4);
}

.tline {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  padding: 4px 0;
}
.tline.overdue { color: #B43E2A; }
.late { margin-left: auto; font-size: 10px; font-weight: 700; background: #FAE0DA; color: #B43E2A; padding: 2px 6px; border-radius: 4px; }

.sheet {
  background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  font-family: ui-monospace, "SF Mono", monospace; font-size: 11px;
}
.srow {
  display: flex; justify-content: space-between;
  padding: 4px 8px; border-top: 1px solid var(--line);
}
.srow:first-child { border-top: 0; background: var(--card-soft); font-weight: 700; }

.stickies { display: flex; flex-wrap: wrap; gap: 8px; align-content: center; }
.sticky {
  font-size: 11px;
  padding: 8px 10px;
  background: var(--amber-l);
  border-radius: 2px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  box-shadow: 0 4px 8px rgba(60,40,20,.1);
}
.sticky.s1 { transform: rotate(-3deg); background: #F2D8A8; }
.sticky.s2 { transform: rotate(2deg);  background: var(--sage-l); }
.sticky.s3 { transform: rotate(-1deg); background: var(--sky-l); }
.sticky.s4 { transform: rotate(3deg);  background: #ECCEA9; }

.sol-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.benefit-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 14px; }
.benefit-list li { display: flex; gap: 14px; align-items: flex-start; }
.benefit-list b { font-weight: 600; }
.benefit-list div { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.b-ic {
  width: 38px; height: 38px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.b-ic-cal  { background: var(--brown-xl); color: var(--brown-d); }
.b-ic-fam  { background: var(--sky-xl);   color: #2F516B; }
.b-ic-task { background: var(--sage-xl);  color: #3F5C44; }
.b-ic-info { background: var(--amber-xl); color: #6F4B1A; }

.sol-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.sc {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-1);
}
.sc-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.sc-cal { grid-column: 1; grid-row: 1 / span 2; transform: rotate(-1deg); }
.sc-bar { display: grid; grid-template-columns: 100px 1fr; gap: 8px; align-items: center; margin-top: 8px; }
.sc-bar b { font-size: 12px; }
.sc-fam   { grid-column: 2; grid-row: 1; transform: rotate(1.5deg); }
.fam-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  padding: 6px 0;
  border-top: 1px dashed var(--line-2);
}
.fam-row:first-of-type { border-top: 0; }
.fam-row.muted { color: var(--ink-mute); }
.sc-task  { grid-column: 2; grid-row: 2; transform: rotate(-1.5deg); }
.sc-task .tline { padding: 5px 0; }
.sc-info  { grid-column: 1 / span 2; grid-row: 3; transform: rotate(0.5deg); }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  padding: 7px 0;
  border-top: 1px dashed var(--line-2);
}
.info-row:first-of-type { border-top: 0; }
.info-row b { font-family: ui-monospace, "SF Mono", monospace; font-size: 12px; color: var(--brown-d); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--accent, var(--brown-xl)) 100%);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.feat:hover::before { opacity: .25; }
.feat[data-color="brown"] { --accent: var(--brown-xl); }
.feat[data-color="sage"]  { --accent: var(--sage-xl); }
.feat[data-color="sky"]   { --accent: var(--sky-xl); }
.feat[data-color="amber"] { --accent: var(--amber-xl); }

.feat-ic {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--accent);
  color: var(--brown-d);
}
.feat[data-color="sage"]  .feat-ic { color: #3F5C44; }
.feat[data-color="sky"]   .feat-ic { color: #2F516B; }
.feat[data-color="amber"] .feat-ic { color: #6F4B1A; }

.feat h3 { font-size: 19px; margin: 0 0 10px; letter-spacing: -0.01em; }
.feat p  { font-size: 14.5px; color: var(--ink-mute); margin: 0 0 16px; line-height: 1.55; }
.feat-points {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
  border-top: 1px dashed var(--line-2);
  padding-top: 14px;
}
.feat-points li { position: relative; padding-left: 18px; }
.feat-points li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brown);
}
.feat[data-color="sage"]  .feat-points li::before { background: var(--sage); }
.feat[data-color="sky"]   .feat-points li::before { background: var(--sky); }
.feat[data-color="amber"] .feat-points li::before { background: var(--amber); }

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; gap: 24px;
  box-shadow: var(--shadow-1);
}
.step-n {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--brown);
  font-style: italic;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: 60px;
}
.step-body { flex: 1; min-width: 0; }
.step-body h3 { font-size: 22px; margin: 6px 0 8px; letter-spacing: -0.01em; }
.step-body p  { font-size: 15px; color: var(--ink-mute); margin: 0 0 18px; }

.step-mock {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.mini-prop {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12.5px;
}
.mini-prop b { display: block; font-size: 13px; }
.mini-prop i { font-style: normal; font-size: 11.5px; color: var(--ink-mute); }
.mp-thumb {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brown-l), var(--brown));
}
.mp-thumb.mp2 { background: linear-gradient(135deg, var(--sage-l), var(--sage)); }
.mp-thumb.plus {
  background: var(--card-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brown); font-weight: 700; font-size: 18px;
  border: 1.5px dashed var(--line-2);
}
.mini-prop.add { border-style: dashed; background: var(--card-soft); }
.mini-prop.add b { color: var(--brown-d); }

.invite-row {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12.5px;
}
.invite-row.dashed { border-style: dashed; background: transparent; }
.invite-row .pill { margin-left: auto; }

.mini-cal { display: flex; flex-direction: column; gap: 8px; }
.mc-row { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 10px; }
.mc-day { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--ink-mute); }

.apps-wrap { position: relative; }
.apps-toggle {
  display: inline-flex;
  margin: 0 auto 40px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  width: fit-content;
  position: relative;
  left: 50%; transform: translateX(-50%);
}
.apps-tab {
  background: transparent; border: 0;
  padding: 9px 22px; font-weight: 600; font-size: 14px;
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all .2s ease;
}
.apps-tab.is-on { background: var(--ink); color: white; }

.apps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 60px;
  align-items: center;
}
.apps-feature h3 { font-size: 26px; margin: 0 0 18px; letter-spacing: -0.015em; }
.apps-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.apps-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px; color: var(--ink-2);
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.apps-chk {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--brown-xl); color: var(--brown-d);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.apps-panel { display: none; }
.apps-panel.is-on { display: block; animation: fade .25s ease; }

.apps-visual { position: relative; min-height: 460px; }
.apps-browser { transform: rotate(-1deg); }
.apps-dash { display: grid; grid-template-columns: 130px 1fr; min-height: 360px; }
.ad-side { background: var(--card-soft); padding: 16px 12px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.adn { padding: 8px 12px; border-radius: 8px; font-size: 12.5px; color: var(--ink-mute); }
.adn.active { background: white; color: var(--ink); font-weight: 600; box-shadow: 0 1px 2px rgba(60,40,20,.06); }
.ad-main { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.ad-row { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 12px; font-size: 13px; }
.ad-row b { font-weight: 600; }
.ad-row .ev { --w: 1; }
.ad-row.dim { opacity: .65; }
.ad-row .muted { color: var(--ink-mute); font-size: 12px; }

.apps-phone { position: absolute; right: -10px; bottom: -10px; transform: rotate(4deg); z-index: 3; }

.users-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.user-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease;
}
.user-card:hover { transform: translateY(-3px); }
.uc-art {
  height: 110px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.uc-1 { background: linear-gradient(135deg, var(--brown-xl), #E8D4B4); }
.uc-2 { background: linear-gradient(135deg, var(--amber-xl), var(--brown-xl)); }
.uc-3 { background: linear-gradient(135deg, var(--sky-xl), var(--bg-sky)); }
.uc-4 { background: linear-gradient(135deg, var(--sage-xl), #DBE7D2); }
.uc-5 { background: linear-gradient(135deg, var(--sage-xl), var(--amber-xl)); }
.uc-6 { background: linear-gradient(135deg, var(--brown-xl), var(--sage-xl)); }
.uc-emoji { filter: drop-shadow(0 4px 8px rgba(60,40,20,.15)); }
.user-card h3 { font-size: 18px; margin: 0 0 6px; letter-spacing: -0.01em; }
.user-card p  { font-size: 14px; color: var(--ink-mute); margin: 0; }

.ben-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 64px; align-items: start; }
.ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px; }
.ben { display: flex; gap: 16px; align-items: flex-start; }
.ben-n {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--brown);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.ben h4 { font-size: 17px; margin: 4px 0 6px; letter-spacing: -0.01em; }
.ben p  { font-size: 14.5px; color: var(--ink-mute); margin: 0; line-height: 1.55; }

.scen-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
}
.scen { list-style: none; padding: 0; margin: 0; position: relative; }
.scen::before {
  content: '';
  position: absolute; top: 8px; bottom: 8px; left: 56px;
  width: 1px; background: var(--line-2);
}
.scen-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 14px 0;
  opacity: .45;
  transition: opacity .3s ease;
  position: relative;
  cursor: pointer;
}
.scen-step.is-on { opacity: 1; }
.scen-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--brown-d);
  letter-spacing: 0.04em;
  padding-top: 6px;
  text-align: right;
  font-family: ui-monospace, "SF Mono", monospace;
}
.scen-body { position: relative; padding-left: 24px; }
.scen-body::before {
  content: '';
  position: absolute; left: -4px; top: 10px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line-2);
  border: 2px solid var(--bg-cream);
  z-index: 2;
}
.scen-step.is-on .scen-body::before { background: var(--brown); }
.scen-h {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
  margin-bottom: 4px;
}
.scen-ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.ic-brown { background: var(--brown-xl); color: var(--brown-d); }
.ic-sky   { background: var(--sky-xl);   color: #2F516B; }
.ic-sage  { background: var(--sage-xl);  color: #3F5C44; }
.ic-amber { background: var(--amber-xl); color: #6F4B1A; }
.scen-body p { margin: 0; font-size: 14.5px; color: var(--ink-mute); }

.scen-vis {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.scen-phone .phone { width: 260px; }
.scen-phone .phone-screen { padding-bottom: 24px; min-height: 440px; }
.scen-anim { position: relative; min-height: 240px; }
.sa {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.sa.is-on { opacity: 1; transform: translateY(0); }
.scen-controls {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--ink-mute);
}
.scen-controls button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: white;
  font-size: 18px;
  color: var(--ink-2);
}
.scen-controls button:hover { background: var(--card-soft); }

.section-cta { padding: 70px 0; background: var(--bg); }
.cta-wrap { position: relative; }
.cta-card {
  background: linear-gradient(135deg, #3A2C1F 0%, #2A2118 60%, #1F1812 100%);
  color: var(--bg);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.cta-card .h-display.light { color: var(--bg); }
.cta-card .h-display em { color: var(--brown-l); }
.cta-sub {
  font-size: 17px;
  color: rgba(247,240,227,.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}
.cta-decor-1 { width: 360px; height: 360px; background: var(--brown-l); top: -100px; left: -80px; }
.cta-decor-2 { width: 320px; height: 320px; background: var(--sage-l); bottom: -100px; right: -60px; }

.footer {
  background: var(--bg);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.foot-tag { color: var(--ink-mute); font-size: 14px; margin: 14px 0 18px; max-width: 280px; }
.foot-col h5 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-mute);
  margin: 0 0 16px;
}
.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14.5px; color: var(--ink-2); }
.foot-col a:hover { color: var(--brown); }
.foot-base {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 13px; color: var(--ink-mute);
}

@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 540px; }
  .sol-grid { grid-template-columns: 1fr; gap: 40px; }
  .apps-grid { grid-template-columns: 1fr; gap: 40px; }
  .ben-wrap  { grid-template-columns: 1fr; gap: 28px; }
  .scen-wrap { grid-template-columns: 1fr; gap: 40px; }
  .scen-vis  { position: static; }
  .prob-grid, .feat-grid, .users-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-row { height: 64px; }
  .hero { padding: 32px 0 64px; }
  .display { font-size: clamp(34px, 9vw, 48px); }
  .hero-visual { min-height: auto; padding: 0; }
  .float-card { display: none; }
  .hero-phone { position: relative; right: auto; bottom: auto; transform: none; margin: -40px auto 0; }
  .hero-browser { transform: none; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; padding: 12px; gap: 10px; overflow-x: auto; }
  .dash-side .dash-nav { flex-direction: row; }
  .dash-prop { display: none; }
  .dash-cards { grid-template-columns: 1fr; }
  .prob-grid, .feat-grid, .users-grid, .ben-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; padding: 24px; }
  .step-n { font-size: 44px; width: auto; }
  .cta-card { padding: 48px 28px; border-radius: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-base { flex-direction: column; gap: 8px; }
  .hero-logos { flex-direction: column; align-items: flex-start; gap: 12px; }
  .apps-visual { min-height: auto; }
  .apps-phone { position: relative; right: auto; bottom: auto; transform: none; margin: -30px auto 0; }
  .scen-step { grid-template-columns: 50px 1fr; }
  .scen::before { left: 50px; }
}
