@font-face {
  font-family: DM;
  src: url("/site/fonts/dm-sans.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/site/fonts/manrope.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  font-family: DM, system-ui, sans-serif;
  color: #292940;
  background: #fbfaff;
  --primary: #5b5cde;
  --muted: #66667d;
  --line: #e7e5f3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #5b5cde;
  outline-offset: 5px;
}
h1,
h2,
h3,
.logo {
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 700;
}
h1,
h2,
h3,
p {
  margin: 0;
}
p {
  line-height: 1.8;
  color: var(--muted);
}
h1 {
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.13;
  letter-spacing: -0.035em;
  word-spacing: 0.045em;
}
h1 em {
  font-style: normal;
  color: var(--primary);
}
h2 {
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 800px;
}
h3 {
  font-size: 21px;
  line-height: 1.4;
}
.skip {
  position: absolute;
  top: -100px;
  background: #fff;
  padding: 15px;
}
.skip:focus {
  top: 5px;
  z-index: 10;
}
.site-header {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 25px 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 27px;
  letter-spacing: -1px;
}
.site-header nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.site-header .button {
  font-size: 12px;
  min-height: 43px;
}
main {
  max-width: 1240px;
  padding: 0 32px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 72px 0 90px;
}
.kicker {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 22px;
}
.lead {
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-top: 25px;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}
.text-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}
.actions .text-link {
  margin-top: 0;
}
.fine {
  font-size: 11px;
  margin-top: 20px;
}
.hero-demo {
  position: relative;
  padding: 25px 0;
}
.hero-demo:before {
  content: "";
  position: absolute;
  inset: -30px -20px;
  background: radial-gradient(ellipse, #dedbff, transparent 70%);
  z-index: -1;
}
.demo-calendar {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 27px;
  box-shadow: 0 25px 70px #6660a015;
}
.hero-demo .demo-calendar {
  transform: rotate(2deg);
}
.demo-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
  font-size: 16px;
}
.demo-head > span {
  font-size: 10px;
  color: var(--muted);
  background: #f1effa;
  border-radius: 9px;
  padding: 5px 8px;
}
.demo-week,
.demo-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  gap: 9px;
}
.demo-week {
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 15px;
}
.demo-days > span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 12px;
}
.demo-days .gym {
  background: #10b981;
  color: #06291e;
}
.demo-days .food {
  background: #f7b348;
  color: #3e2b0b;
}
.demo-days .headache {
  background: #8b5cf6;
  color: white;
}
.demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 22px;
}
.sample-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  background: white;
  font-size: 12px;
}
.sample-tag b {
  color: var(--tag);
  font-size: 18px;
}
.demo-legend .sample-tag {
  font-size: 10px;
  padding: 6px 7px;
  gap: 5px;
}
.demo-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 25px 10px 0;
  padding: 16px 20px;
  background: #eeecff;
  border: 1px solid #dedbf7;
  border-radius: 15px;
}
.demo-note > span {
  font-size: 30px;
  color: var(--primary);
}
.demo-note strong {
  font-size: 12px;
}
.demo-note small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
  color: var(--muted);
}
.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 20px;
}
.steps,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps {
  margin-top: 42px;
}
.steps article p,
.feature-grid p {
  font-size: 14px;
  margin-top: 14px;
}
.step {
  display: block;
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 16px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.split p {
  margin-top: 20px;
  font-size: 15px;
}
.soft {
  padding: 45px;
  border: 0;
  border-radius: 27px;
  background: #eeecfa;
}
.tag-board {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  align-content: center;
  padding: 20px;
}
.tag-board .sample-tag {
  font-size: 14px;
  padding: 13px 16px;
  transform: rotate(-2deg);
}
.tag-board .sample-tag:nth-child(even) {
  transform: rotate(3deg);
}
.tag-board p {
  font-size: 11px;
  text-align: center;
}
.example-story {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.example-story > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.example-story > div:last-child {
  border: 0;
}
.example-story span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
}
.example-story strong {
  font-size: 18px;
}
.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 27px;
  background: white;
}
.feature-grid article h2 {
  font-size: 23px;
}
.badge {
  display: inline-block;
  background: #eeecff;
  color: var(--primary);
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 7px;
  margin-bottom: 12px;
}
.install-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #e6e3ff;
  border: 0;
  padding: 40px;
  border-radius: 25px;
}
.install-strip h2 {
  font-size: 30px;
}
.install-strip p {
  margin-top: 12px;
}
.install-strip .actions {
  margin: 0;
  min-width: 190px;
}
.faq h2 {
  margin-bottom: 35px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
}
.faq details p {
  max-width: 900px;
  margin-top: 15px;
  font-size: 15px;
}
.final-cta {
  text-align: center;
  padding: 60px 20px 90px;
}
.final-cta h2 {
  margin: auto;
}
.final-cta p {
  margin: 20px 0 25px;
}
.site-footer {
  padding: 40px 32px;
  background: #eeedf6;
  text-align: center;
}
.site-footer p {
  font-size: 12px;
  margin-top: 12px;
}
.site-footer > div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  font-size: 12px;
}
.site-footer button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-size: 12px;
}
.article-intro {
  padding: 70px 0 55px;
}
.guide {
  max-width: 850px;
  margin: auto;
}
.guide h2 {
  font-size: 28px;
  margin: 35px 0 18px;
}
.guide h2:first-child {
  margin-top: 0;
}
.guide p {
  margin: 16px 0;
}
.guide a:not(.button) {
  color: var(--primary);
  text-decoration: underline;
}
.guide-list {
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 820px;
}
.guide-list li {
  padding: 8px 0;
}
.consent {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 50px #29294026;
  padding: 22px;
  max-width: 430px;
  z-index: 20;
}
.consent[hidden],
[hidden] {
  display: none !important;
}
.consent strong {
  font-size: 17px;
}
.consent p {
  font-size: 13px;
  margin: 10px 0;
}
.consent > a {
  color: var(--primary);
  font-size: 12px;
  text-decoration: underline;
}
.consent > div {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.consent button {
  flex: 1;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #f5f3ff;
  border-radius: 9px;
}
dialog {
  width: min(520px, calc(100% - 28px));
  max-height: 85dvh;
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: inherit;
}
dialog::backdrop {
  background: #29294088;
}
dialog form {
  display: flex;
  justify-content: flex-end;
}
dialog form button {
  width: 44px;
  height: 44px;
  background: #eeecff;
  border: 0;
  border-radius: 50%;
  font-size: 26px;
}
dialog h2 {
  font-size: 26px;
  margin-bottom: 25px;
}
dialog h3 {
  font-size: 19px;
  margin-top: 20px;
}
dialog p {
  font-size: 14px;
  margin: 12px 0 24px;
}
@media (max-width: 900px) {
  .site-header {
    gap: 15px;
    padding: 20px;
  }
  .site-header nav {
    gap: 14px;
  }
  .hero {
    gap: 25px;
    padding: 45px 0 60px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .demo-calendar {
    padding: 18px;
  }
  .demo-week,
  .demo-days {
    gap: 5px;
  }
  .split {
    gap: 25px;
  }
  .soft {
    padding: 28px;
  }
  .steps {
    gap: 22px;
  }
  .install-strip {
    padding: 30px;
  }
  .lead {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .site-header {
    flex-wrap: wrap;
    padding: 18px;
  }
  .site-header > .button {
    margin-left: auto;
  }
  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 5px 0 0;
    font-size: 12px;
  }
  .logo {
    font-size: 25px;
  }
  main {
    padding: 0 19px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 25px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.18;
  }
  .kicker {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .lead {
    font-size: 16px;
  }
  .hero-demo {
    padding: 0 7px;
  }
  .hero-demo:before {
    inset: -25px -12px;
  }
  .demo-calendar {
    padding: 20px;
  }
  .demo-days {
    gap: 10px;
  }
  .demo-legend {
    gap: 5px;
  }
  .demo-note {
    margin-left: 0;
    margin-right: 0;
  }
  .section {
    padding: 43px 0;
  }
  h2 {
    font-size: 29px;
  }
  .steps,
  .feature-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .steps {
    margin-top: 30px;
  }
  .steps article {
    padding-bottom: 18px;
  }
  .soft {
    padding: 27px 21px;
  }
  .tag-board {
    padding: 10px 0;
  }
  .tag-board .sample-tag {
    font-size: 12px;
    padding: 10px;
  }
  .feature-grid {
    gap: 15px;
  }
  .feature-grid article {
    padding: 24px;
  }
  .install-strip {
    display: block;
    padding: 27px 23px;
  }
  .install-strip .actions {
    margin-top: 24px;
  }
  .install-strip h2 {
    font-size: 28px;
  }
  .faq summary {
    font-size: 16px;
  }
  .article-intro {
    padding: 40px 0;
  }
  .article-intro h1 {
    font-size: 42px;
  }
  .guide h2 {
    font-size: 25px;
  }
  .site-footer {
    padding: 32px 20px;
  }
  .consent {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 18px;
  }
  .final-cta {
    padding-bottom: 55px;
  }
}

/* Public home navigation and presentation */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  max-width: none;
  padding-inline: max(32px, calc((100vw - 1176px) / 2));
  background: #fbfaffee;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e7e5f388;
}
.site-header nav a {
  padding: 8px 0;
  transition: color 0.2s;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: var(--primary);
}
.hero {
  min-height: 650px;
}
.hero h1 {
  font-size: clamp(46px, 5.5vw, 76px);
}
.hero-demo .demo-calendar {
  transition: transform 0.4s;
}
.hero-demo:hover .demo-calendar {
  transform: rotate(0deg) translateY(-4px);
}
.button {
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px #5b5cde25;
}
.section {
  scroll-margin-top: 110px;
}
.consent {
  border-top: 3px solid var(--primary);
}
@media (max-width: 650px) {
  .site-header {
    padding: 12px 19px;
    gap: 8px;
  }
  .site-header nav {
    gap: 8px;
    font-size: 11px;
  }
  .hero {
    min-height: auto;
  }
  .hero h1 {
    font-size: 44px;
  }
  html {
    scroll-padding-top: 130px;
  }
  .section {
    scroll-margin-top: 130px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.editorial-links {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}
.editorial-links a,
.guide p a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.guide .example-story {
  margin: 24px 0;
}
.guide h3 {
  margin-top: 24px;
}

main > .explore-more {
  margin-bottom: 64px;
}
.guide-chart,
.visual-log {
  margin: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  min-width: 0;
}
.guide-chart figcaption {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}
.guide-chart figcaption span {
  font-size: 13px;
  color: var(--muted);
}
.chart-row {
  display: grid;
  grid-template-columns: 68px 1fr 48px;
  gap: 10px;
  align-items: center;
  margin: 20px 0;
  font-size: 13px;
}
.chart-track {
  height: 16px;
  border-radius: 12px;
  background: #f0eef8;
  overflow: hidden;
}
.chart-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
}
.visual-log > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.visual-log > div > span:first-child {
  color: var(--muted);
  font-size: 12px;
}
.visual-log > div b:last-child {
  margin-left: auto;
}
.visual-log p {
  margin-top: 14px;
  font-size: 14px;
}
.sample-kpis {
  display: flex;
  gap: 20px;
  margin: 24px 0;
}
.sample-kpis > div {
  background: #efedff;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 8px;
}
.sample-kpis strong {
  font-size: 42px;
  color: var(--primary);
}

#guias > h2 {
  margin-bottom: 36px;
}
.plant-tree {
  background: #fff;
  border: 1px solid #d9eadf;
  border-radius: 24px;
  padding: 28px;
}
.plant-tree > strong {
  display: block;
  margin: 20px 0;
  color: #187443;
  font-size: 24px;
}
.plant-tree ul {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0 0 0 22px;
  border-left: 2px solid #bbe0c9;
}
.plant-tree li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 0;
}
.plant-tree li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 24px;
  width: 14px;
  border-top: 2px solid #bbe0c9;
}
.plant-tree small {
  color: var(--muted);
}

.roadmap > h2 {
  margin-bottom: 20px;
}
.roadmap-intro {
  max-width: 720px;
  margin-bottom: 34px;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.roadmap-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--roadmap-line);
  background: var(--roadmap-bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.roadmap-health {
  --roadmap-bg: #eaf6f0;
  --roadmap-line: #cfe5d9;
  --roadmap-ink: #246746;
}
.roadmap-reminders {
  --roadmap-bg: #fff3df;
  --roadmap-line: #f0dfbe;
  --roadmap-ink: #885313;
}
.roadmap-shared {
  --roadmap-bg: #eaf2ff;
  --roadmap-line: #d3dff6;
  --roadmap-ink: #345ea0;
}
.roadmap-ai {
  --roadmap-bg: #f3edff;
  --roadmap-line: #e2d5f6;
  --roadmap-ink: #6b4797;
}
.roadmap-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #ffffffb3;
  color: var(--roadmap-ink);
  border-radius: 17px;
  margin-bottom: 24px;
}
.roadmap-icon svg {
  width: 28px;
  height: 28px;
}
.roadmap-card h3 {
  margin-bottom: 14px;
}
.roadmap-card p {
  color: #4e5064;
  margin-bottom: 24px;
}
.roadmap-example {
  margin-top: auto;
  color: var(--roadmap-ink);
  font-size: 14px;
  line-height: 1.6;
  padding-top: 18px;
  border-top: 1px solid var(--roadmap-line);
  width: 100%;
}
.roadmap-note {
  margin-top: 24px;
  font-size: 13px;
  max-width: 780px;
}
@media (max-width: 640px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-card {
    padding: 26px;
  }
}
