:root {
  color-scheme: light;
  --teal: #00a995;
  --teal-deep: #007f74;
  --teal-soft: #dff8f4;
  --gold: #f6b72f;
  --gold-soft: #fff2ca;
  --bg: #f4fbfa;
  --panel: #ffffff;
  --ink: #12302e;
  --muted: #6b7d7a;
  --line: #d8ebe7;
  --chip: #edf7f5;
  --warning: #d84e4e;
  --lime: var(--gold);
  --lime-soft: var(--gold-soft);
  --shadow: 0 18px 42px rgba(0, 127, 116, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f7fffd;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, #dff8f4 0%, #f6fffd 205px, #f9fbf8 330px, #fff 100%);
}

.screen {
  min-height: 100vh;
  padding: 28px 20px 96px;
}

.hidden {
  display: none !important;
}

.login-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(0, 169, 149, 0.18) 0%, rgba(246, 183, 47, 0.16) 58%, #fff 100%);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: 184px;
  max-width: min(56vw, 220px);
  height: auto;
  mix-blend-mode: multiply;
}

.brand-block h1 {
  margin: 10px 0 8px;
  max-width: 12ch;
  color: var(--ink);
  font-size: 48px;
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.eyebrow,
.day-label {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.intro {
  max-width: 28ch;
  margin: 0;
  color: rgba(18, 48, 46, 0.7);
  font-size: 18px;
  line-height: 1.35;
}

.login-form,
.admin-form,
.admin-card,
.report-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

select,
input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 104px;
  padding: 14px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(0, 169, 149, 0.28);
  outline-offset: 2px;
}

button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--teal-deep);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

button:active {
  transform: translateY(1px);
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--warning);
  font-size: 14px;
  font-weight: 700;
}

.dashboard-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.top-bar {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 58px 0 0;
  text-align: center;
}

.top-bar .app-brand {
  position: absolute;
  top: 4px;
  left: 0;
}

.top-bar .brand-logo {
  width: 124px;
  max-width: 38vw;
}

.top-bar h2 {
  margin: 8px 0 2px;
  color: var(--ink);
  font-size: 64px;
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.top-bar .eyebrow {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.header-summary {
  margin: 8px auto 0;
  max-width: 26ch;
  color: rgba(18, 48, 46, 0.62);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
}

.ghost-button,
.ghost-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(0, 127, 116, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.view-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 1px rgba(0, 127, 116, 0.06);
}

.view-switch button {
  min-height: 50px;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.view-switch button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(0, 127, 116, 0.12);
}

.today-view {
  display: grid;
  gap: 12px;
}

.day-label {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.done-banner {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 169, 149, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-soft) 0%, #ffffff 68%, var(--gold-soft) 100%);
  box-shadow: 0 12px 26px rgba(0, 127, 116, 0.1);
}

.done-banner strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.done-banner span {
  color: rgba(18, 48, 46, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.today-chores {
  display: grid;
  gap: 10px;
}

.chore-focus {
  min-height: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.bonus-chore {
  border-color: rgba(246, 183, 47, 0.85);
  background: linear-gradient(135deg, var(--gold-soft) 0%, #ffffff 72%);
  box-shadow: 0 16px 34px rgba(246, 183, 47, 0.18);
}

.chore-focus.bonus-chore .status {
  background: var(--gold);
  color: var(--ink);
}

.bonus-chore .reward-row {
  border-color: rgba(246, 183, 47, 0.48);
  background: rgba(246, 183, 47, 0.13);
}

.completed-chore {
  border-color: var(--line);
  background: #f2f7f6;
  box-shadow: none;
  opacity: 0.68;
}

.completed-chore .status,
.completed-chore .reward-row,
.completed-chore .complete-note {
  background: #e3efed;
}

.completed-chore h3,
.completed-chore p,
.completed-chore .reward-row,
.completed-chore .complete-note {
  color: #6f7375;
}

.chore-focus .status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.chore-focus h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}

.chore-focus p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reward-row span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.reward-row strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.done-button {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 999px;
}

.complete-note {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 8px;
  background: var(--chip);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.tomorrow-preview {
  padding: 18px;
  border: 1px dashed rgba(0, 127, 116, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.preview-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.tomorrow-preview h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.tomorrow-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.preview-list {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.preview-footer span,
.preview-footer strong {
  color: var(--ink);
  font-weight: 700;
}

.checklist-question {
  min-height: 132px;
  display: flex;
  align-items: center;
  color: var(--ink) !important;
  font-size: 30px !important;
  font-weight: 760;
  line-height: 1.08 !important;
  letter-spacing: -0.05em;
}

.question-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.yes-button {
  background: var(--teal-deep);
}

.no-button {
  background: var(--chip);
  color: var(--ink);
}

.week-list {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
}

.missed-week-banner {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(249, 83, 53, 0.28);
  border-radius: 8px;
  background: rgba(249, 83, 53, 0.09);
}

.missed-week-banner strong {
  color: #9f2f20;
  font-size: 16px;
  font-weight: 760;
}

.missed-week-banner span {
  color: rgba(159, 47, 32, 0.78);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.week-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 127, 116, 0.06);
}

.week-card.today {
  border-color: var(--teal);
  box-shadow: 0 10px 22px rgba(0, 169, 149, 0.12);
}

.bonus-week-card {
  border-color: rgba(246, 183, 47, 0.75);
  background: linear-gradient(135deg, var(--gold-soft) 0%, #ffffff 80%);
}

.bonus-week-card .weekday {
  background: var(--gold);
  color: var(--ink);
}

.bonus-week-card .week-status {
  color: var(--ink);
}

.completed-week-card {
  background: #f2f7f6;
  opacity: 0.7;
  box-shadow: none;
}

.completed-week-card .weekday {
  background: #90aaa5;
}

.missed-week-card {
  border-color: rgba(249, 83, 53, 0.34);
  background: linear-gradient(135deg, rgba(249, 83, 53, 0.12) 0%, #ffffff 78%);
  box-shadow: 0 8px 20px rgba(249, 83, 53, 0.08);
}

.missed-week-card .weekday {
  background: #f95335;
}

.missed-week-card .week-status {
  color: #9f2f20;
}

.missed-week-card .amount {
  color: #9f2f20;
}

.weekday {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.week-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.week-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.week-status {
  display: inline-flex;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.amount {
  color: var(--ink);
  font-weight: 760;
}

.admin-shell {
  max-width: 760px;
}

.admin-shell .view-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-shell .view-switch button {
  min-width: 0;
  padding: 0 6px;
  font-size: 13px;
  white-space: nowrap;
}

.admin-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.admin-view {
  display: grid;
  gap: 16px;
}

.admin-view h1 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wizard-form {
  overflow: hidden;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.wizard-progress span {
  height: 6px;
  border-radius: 999px;
  background: var(--chip);
}

.wizard-progress span.active {
  background: var(--teal);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: grid;
  gap: 12px;
}

.wizard-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.wizard-step h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.check-option {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.check-option input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.field-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-heading label {
  margin: 0;
}

.admin-form h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.wizard-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.add-chore-button {
  width: 100%;
  border-radius: 999px;
  background: var(--teal-deep);
}

.ai-button {
  display: inline-grid;
  width: 34px;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(246, 183, 47, 0.42);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(246, 183, 47, 0.18);
}

.ai-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.ai-button:disabled,
.ai-button.is-disabled {
  background: var(--chip);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
  box-shadow: none;
}

.ai-button.is-loading svg {
  animation: ai-spin 0.85s linear infinite;
}

@keyframes ai-spin {
  to {
    transform: rotate(360deg);
  }
}

.text-link-button {
  width: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.wizard-actions button {
  min-width: 0;
  width: 100%;
  padding: 0 8px;
  font-size: 14px;
  white-space: nowrap;
}

.secondary-button {
  background: var(--chip);
  color: var(--ink);
}

.secondary-button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.55;
}

.wizard-review {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: var(--chip);
  color: var(--muted);
  font-size: 14px;
}

.wizard-review strong {
  color: var(--ink);
  font-size: 15px;
}

.admin-list,
.report-list {
  display: grid;
  gap: 14px;
}

.admin-group {
  display: grid;
  gap: 10px;
}

.admin-group h2,
.report-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.admin-card h3,
.report-card h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.admin-card p,
.report-card p,
.empty-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.admin-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.chore-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.chore-card-actions button {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 10px;
  white-space: nowrap;
}

.edit-chore-card {
  gap: 10px;
}

.remove-button {
  background: var(--warning);
}

.kid-card-header,
.kid-actions {
  display: grid;
  gap: 10px;
}

.kid-card-header {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.kid-card-header span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.kid-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.kid-actions button {
  width: 100%;
  min-width: 0;
  padding: 0 8px;
  white-space: nowrap;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.report-metrics div {
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--chip);
}

.report-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.report-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.report-section {
  display: grid;
  gap: 12px;
}

.marketing-page {
  min-height: 100vh;
  background: #fbfffc;
  color: var(--ink);
}

.marketing-page a {
  color: inherit;
}

.marketing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgba(0, 127, 116, 0.14);
  background: rgba(251, 255, 252, 0.92);
  backdrop-filter: blur(14px);
}

.marketing-logo img {
  display: block;
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.marketing-nav nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
}

.marketing-nav nav a,
.nav-cta {
  color: rgba(18, 48, 46, 0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(0, 127, 116, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.marketing-hero {
  position: relative;
  min-height: calc(100vh - 69px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 84px) clamp(20px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(251, 255, 252, 0.96) 0%, rgba(251, 255, 252, 0.88) 40%, rgba(223, 248, 244, 0.58) 100%),
    url("assets/broomi-app-today-iphone.png") right 9% center / min(44vw, 460px) auto no-repeat,
    #f5fffb;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.hero-logo {
  display: block;
  width: min(240px, 60vw);
  height: auto;
  margin-bottom: 26px;
  mix-blend-mode: multiply;
}

.marketing-kicker {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.marketing-hero h1,
.marketing-section h2,
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 780;
  letter-spacing: 0;
}

.marketing-hero h1 {
  max-width: 10ch;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.88;
}

.hero-lede {
  max-width: 34rem;
  margin: 24px 0 0;
  color: rgba(18, 48, 46, 0.76);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.3;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  background: var(--teal-deep);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(0, 127, 116, 0.18);
}

.secondary-link {
  border: 1px solid rgba(0, 127, 116, 0.2);
  background: #fff;
  color: var(--ink) !important;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.phone-shot {
  position: absolute;
  width: min(28vw, 310px);
  border: 10px solid #12302e;
  border-radius: 34px;
  background: #12302e;
  box-shadow: 0 30px 70px rgba(0, 127, 116, 0.18);
}

.phone-shot-main {
  right: clamp(30px, 7vw, 110px);
  top: 13%;
}

.phone-shot-side {
  right: clamp(210px, 27vw, 440px);
  bottom: -48px;
  width: min(22vw, 240px);
  opacity: 0.86;
}

.proof-band,
.marketing-section,
.screenshot-section,
.marketing-footer {
  padding-inline: clamp(20px, 6vw, 76px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #12302e;
}

.proof-band div {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  background: #12302e;
  color: #fff;
}

.proof-band strong {
  color: var(--gold);
  font-size: 22px;
  font-weight: 780;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.marketing-section,
.screenshot-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.split-section,
.cost-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.marketing-section h2,
.section-heading h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.marketing-section p,
.feature-grid p,
.steps-list p,
.cost-panel span {
  color: rgba(18, 48, 46, 0.68);
  font-size: 17px;
  line-height: 1.5;
}

.steps-list {
  display: grid;
  gap: 12px;
}

.steps-list article,
.feature-grid article,
.cost-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 127, 116, 0.08);
}

.steps-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 18px;
}

.steps-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.steps-list h3,
.feature-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: 0;
}

.steps-list p {
  grid-column: 2;
  margin: 4px 0 0;
}

.feature-section {
  background: #f1fbf8;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

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

.feature-grid article {
  padding: 22px;
}

.feature-grid p {
  margin: 10px 0 0;
}

.screenshot-section {
  background: #fff;
}

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

.screenshot-grid figure {
  margin: 0;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: top;
  border: 10px solid #12302e;
  border-radius: 34px;
  background: #12302e;
  box-shadow: 0 24px 54px rgba(0, 127, 116, 0.14);
}

.screenshot-grid figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.cost-section {
  background: linear-gradient(135deg, #fff7dc 0%, #f7fffd 70%);
}

.cost-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.cost-panel strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 780;
}

.cost-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cost-panel span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.marketing-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  background: #fbfffc;
  color: rgba(18, 48, 46, 0.68);
  font-weight: 750;
}

.marketing-footer img {
  width: 126px;
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .marketing-hero {
    min-height: calc(100vh - 69px);
    align-items: start;
    background:
      linear-gradient(180deg, rgba(251, 255, 252, 0.98) 0%, rgba(223, 248, 244, 0.78) 100%),
      #f5fffb;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-media {
    position: absolute;
    inset: 0;
  }

  .phone-shot-main {
    right: 4%;
    bottom: -34px;
    width: min(50vw, 260px);
  }

  .phone-shot-side {
    right: min(42vw, 240px);
    left: auto;
    bottom: -26px;
    width: min(36vw, 190px);
  }

  .proof-band,
  .feature-grid,
  .screenshot-grid,
  .split-section,
  .cost-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .marketing-nav {
    grid-template-columns: 1fr auto;
  }

  .marketing-nav nav {
    display: none;
  }

  .marketing-logo img {
    width: 116px;
  }

  .marketing-hero h1 {
    font-size: 58px;
  }

  .marketing-hero {
    min-height: auto;
    padding-bottom: 44px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-logo {
    width: min(190px, 58vw);
    margin-bottom: 18px;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-media {
    display: none;
  }

  .proof-band div {
    min-height: auto;
  }

  .screenshot-grid {
    justify-items: center;
  }

  .screenshot-grid figure {
    width: min(100%, 360px);
  }

  .marketing-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

.report-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.summary-metrics div {
  background: #fff;
  border: 1px solid var(--line);
}

.history-week {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 127, 116, 0.06);
}

.history-week-header,
.history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.history-week-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.history-week-header strong,
.history-item strong {
  color: var(--ink);
  font-weight: 760;
  white-space: nowrap;
}

.history-list {
  display: grid;
  gap: 8px;
}

.history-item {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.history-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.history-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

@media (min-width: 700px) {
  body {
    display: grid;
    place-items: center;
    padding: 0;
  }

  .app-shell {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }
}
