:root {
  color-scheme: light;
  --ink: #20231f;
  --muted: #4d534b;
  --soft: #b7b6ac;
  --paper: #c8c6bb;
  --paper-raised: #d5d1c5;
  --line: rgba(32, 35, 31, 0.18);
  --night: #242927;
  --ember: #d36856;
  --blue: #3f6280;
  --green: #557764;
  --lavender: #68627f;
  --gold: #a77a43;
  --shadow: 0 18px 45px rgba(40, 38, 34, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #c3c1b6 0%, var(--soft) 420px, #adafa5 100%);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(196, 194, 183, 0.90);
  border-bottom: 1px solid rgba(32, 35, 31, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(42, 38, 34, 0.16);
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  min-height: min(760px, 82vh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  padding: 74px clamp(18px, 6vw, 76px);
  color: #fffaf4;
  background:
    radial-gradient(circle at 80% 32%, rgba(234, 128, 103, 0.42), transparent 34%),
    radial-gradient(circle at 10% 86%, rgba(78, 124, 158, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(42, 38, 37, 0.98), rgba(70, 54, 50, 0.94) 52%, rgba(92, 58, 67, 0.90));
  border-bottom: 1px solid rgba(35, 33, 31, 0.14);
}

.hero-copy {
  max-width: 620px;
}

.hero-icon-showcase {
  justify-self: center;
  width: min(390px, 72vw);
}

.hero-icon-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24%;
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 250, 244, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb7a8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 540px;
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--ember);
  color: #fffaf4;
  box-shadow: 0 12px 24px rgba(211, 104, 86, 0.22);
}

.button.primary.dark {
  background: var(--night);
  color: #f6f1ec;
}

.button.secondary {
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.28);
  color: #fffaf4;
}

.button.quiet {
  background: rgba(255, 250, 244, 0.18);
  border-color: rgba(35, 33, 31, 0.15);
  color: var(--ink);
}

.home-hero {
  min-height: min(780px, 84vh);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 94px);
  padding: 76px clamp(18px, 6vw, 76px) 68px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(22, 19, 20, 0.98) 0%, rgba(50, 36, 38, 0.97) 46%, rgba(90, 54, 55, 0.94) 100%),
    #201819;
  border-bottom: 1px solid rgba(35, 33, 31, 0.18);
}

.home-hero-copy {
  max-width: 620px;
}

.home-hero .eyebrow {
  color: #ffb7a8;
}

.time-concept {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 18px;
  width: min(560px, 100%);
  justify-self: center;
  padding: clamp(18px, 4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.08), rgba(255, 250, 244, 0.03)),
    rgba(22, 17, 19, 0.34);
  border: 1px solid rgba(255, 250, 244, 0.13);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.time-concept::before {
  content: "";
  position: absolute;
  inset: auto -22% -34% 34%;
  height: 68%;
  background: radial-gradient(circle, rgba(255, 120, 102, 0.28), transparent 64%);
  pointer-events: none;
}

.time-orbit {
  position: relative;
  width: min(280px, 68vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background:
    conic-gradient(#ff7866 0 27%, #2687ef 27% 55%, #3ccc70 55% 73%, #f2ad4f 73% 100%);
  box-shadow:
    inset 0 0 0 28px rgba(21, 13, 20, 0.70),
    0 22px 54px rgba(0, 0, 0, 0.22);
}

.time-orbit::after {
  content: "";
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25141f;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 244, 0.08);
}

.orbit-label {
  position: relative;
  z-index: 1;
  color: #fffaf4;
  font-size: clamp(2rem, 7vw, 3.3rem);
  font-weight: 950;
}

.orbit-dot {
  position: absolute;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.78);
  border: 4px solid rgba(255, 250, 244, 0.24);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.dot-one {
  top: 14%;
  right: 21%;
}

.dot-two {
  left: 11%;
  bottom: 28%;
}

.dot-three {
  right: 17%;
  bottom: 16%;
}

.coral {
  background: linear-gradient(145deg, #ff7b68, #d35d50);
}

.blue {
  background: linear-gradient(145deg, #2c94f4, #175cb5);
}

.green {
  background: linear-gradient(145deg, #51d37a, #27864c);
}

.gold {
  background: linear-gradient(145deg, #f5bb58, #c4772d);
}

.concept-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.concept-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  color: #fffaf4;
  background: rgba(31, 25, 28, 0.72);
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(18px);
}

.concept-card.wide {
  grid-column: 1 / -1;
}

.concept-card strong,
.concept-card small {
  display: block;
  line-height: 1.25;
}

.concept-card strong {
  margin-bottom: 2px;
  font-size: 0.94rem;
}

.concept-card small {
  color: rgba(255, 250, 244, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 750;
}

.concept-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--ember);
  border-radius: 10px;
  font-size: 1.28rem;
  font-weight: 900;
}

.timer-icon {
  background:
    radial-gradient(circle, transparent 0 32%, #fffaf4 33% 40%, transparent 41%),
    linear-gradient(#fffaf4, #fffaf4),
    var(--green);
  background-size: 100% 100%, 4px 13px, auto;
  background-position: center, center 11px, center;
  background-repeat: no-repeat;
}

.bars-icon {
  background:
    linear-gradient(90deg, transparent 0 18%, #fffaf4 18% 32%, transparent 32% 42%, #fffaf4 42% 56%, transparent 56% 66%, #fffaf4 66% 80%, transparent 80%),
    var(--blue);
  background-size: 100% 54%, auto;
  background-position: center;
  background-repeat: no-repeat;
}

.rhythm-strip {
  position: relative;
  z-index: 1;
  display: flex;
  height: 16px;
  gap: 5px;
  padding: 4px;
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 250, 244, 0.11);
  border-radius: 999px;
}

.rhythm-segment {
  flex: 0 0 var(--size);
  min-width: 0;
  border-radius: 999px;
}

.workflow-section {
  background: #b7b6ac;
}

.section-heading.tight {
  max-width: 680px;
  margin-bottom: 24px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(213, 209, 197, 0.72);
  border: 1px solid rgba(32, 35, 31, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.workflow-grid p,
.product-copy p {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 950;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(340px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 7vw, 82px);
  background: #adada2;
}

.product-copy {
  max-width: 620px;
}

.analytics-board {
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(145deg, rgba(248, 243, 231, 0.50), rgba(213, 209, 197, 0.70)),
    #c8c6bb;
  border: 1px solid rgba(32, 35, 31, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.board-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.board-toolbar span {
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(32, 35, 31, 0.07);
  border: 1px solid rgba(32, 35, 31, 0.10);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 850;
}

.breakdown-list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(84px, 0.36fr) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.breakdown-row span,
.breakdown-row b {
  font-size: 0.94rem;
  font-weight: 900;
}

.breakdown-row i {
  height: 14px;
  width: var(--bar);
  max-width: 100%;
  background: linear-gradient(90deg, var(--ember), #f2ad4f);
  border-radius: 999px;
}

.trend-preview {
  min-height: 190px;
  padding: 18px;
  background: rgba(32, 35, 31, 0.08);
  border: 1px solid rgba(32, 35, 31, 0.10);
  border-radius: 8px;
}

.trend-preview svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.grid-line {
  fill: none;
  stroke: rgba(32, 35, 31, 0.12);
  stroke-width: 1;
}

.trend-line {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blue-line {
  stroke: #2687ef;
}

.coral-line {
  stroke: #ff7866;
}

.green-line {
  stroke: #34be68;
}

.compact-callout {
  padding-top: 58px;
  padding-bottom: 58px;
}

.support-actions {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.support-actions button {
  cursor: pointer;
}

.support-actions button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status[data-kind="success"] {
  color: #315f43;
}

.form-status[data-kind="error"] {
  color: #a63f34;
}

.section {
  padding: 72px clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.feature-copy p,
.privacy-callout p,
.legal-hero p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-card,
.feature-list article {
  min-height: 170px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-card p,
.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.category-mark {
  display: block;
  width: 34px;
  height: 8px;
  margin-bottom: 42px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(40, 38, 34, 0.12);
}

.work .category-mark {
  background: var(--blue);
}

.care .category-mark {
  background: var(--green);
}

.recharge .category-mark {
  background: var(--ember);
}

.move .category-mark {
  background: var(--gold);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 86px);
  background:
    radial-gradient(circle at 88% 18%, rgba(211, 104, 86, 0.15), transparent 26%),
    #b0afa5;
}

.product-visual {
  display: grid;
  place-items: center;
}

.screen-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.screen-top span {
  color: rgba(255, 250, 244, 0.58);
  font-weight: 800;
}

.screen-top strong {
  font-size: 2.4rem;
  line-height: 1;
}

.time-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.bar {
  display: block;
  width: var(--width);
  height: 28px;
  border-radius: 7px;
}

.work-bar {
  background: var(--blue);
}

.care-bar {
  background: var(--green);
}

.recharge-bar {
  background: var(--ember);
}

.move-bar {
  background: var(--gold);
}

.screen-list {
  display: grid;
  gap: 10px;
}

.screen-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 250, 244, 0.10);
  border-radius: 8px;
}

.screen-list em {
  color: rgba(255, 250, 244, 0.55);
  font-style: normal;
  font-weight: 700;
}

.feature-copy {
  max-width: 720px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-list article {
  min-height: 190px;
  box-shadow: none;
}

.privacy-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fffaf4;
  background:
    radial-gradient(circle at 82% 22%, rgba(211, 104, 86, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(93, 124, 102, 0.30), rgba(63, 98, 128, 0.20)),
    #565950;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-callout .eyebrow,
.privacy-callout p {
  color: rgba(255, 250, 244, 0.82);
}

.privacy-callout div {
  max-width: 760px;
}

.legal-page {
  padding: 38px clamp(18px, 5vw, 64px) 72px;
}

.legal-hero,
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-hero {
  padding: 52px 0 30px;
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(3rem, 9vw, 6rem);
}

.support-hero {
  padding-bottom: 46px;
}

.legal-content {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
}

.legal-content a {
  color: #365a85;
  font-weight: 800;
}

.legal-content ul {
  padding-left: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #adaea4;
  border-top: 1px solid rgba(32, 35, 31, 0.15);
}

@media (max-width: 920px) {
  .home-hero,
  .product-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-copy {
    max-width: 720px;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .privacy-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 18px 46px;
  }

  .time-concept {
    padding: 16px;
    border-radius: 22px;
  }

  .time-orbit {
    width: min(250px, 76vw);
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-card.wide {
    grid-column: auto;
  }

  .workflow-grid,
  .product-section {
    grid-template-columns: 1fr;
  }

  .workflow-grid article {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .analytics-board {
    padding: 16px;
  }

  .breakdown-row {
    grid-template-columns: minmax(78px, 0.48fr) minmax(76px, 1fr) auto;
    gap: 9px;
  }

  .breakdown-row b {
    font-size: 0.86rem;
  }

  .trend-preview {
    min-height: 150px;
    padding: 14px;
  }

  .hero {
    position: relative;
    min-height: 690px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 330px;
    background:
      radial-gradient(circle at 50% 14%, rgba(234, 128, 103, 0.34), transparent 38%),
      radial-gradient(circle at 12% 78%, rgba(78, 124, 158, 0.30), transparent 34%),
      linear-gradient(180deg, rgba(42, 38, 37, 0.98), rgba(70, 54, 50, 0.94));
  }

  .hero-icon-showcase {
    position: absolute;
    top: 86px;
    left: 50%;
    width: min(230px, 58vw);
    transform: translateX(-50%);
  }

  .category-grid,
  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 24px 20px;
  }
}
