@charset "UTF-8";

:root {
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --light: #EFF6FF;
  --accent: #F59E0B;
  --background: #F8FAFC;
  --card: #FFFFFF;
  --text: #0F172A;
  --sub: #64748B;
  --border: #E2E8F0
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
p {
  margin: 0
}

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

a,
summary {
  -webkit-tap-highlight-color: transparent
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px
}

.container {
  width: min(1120px, calc(100% - 80px));
  margin-inline: auto
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: white;
  z-index: 30
}

.skip-link:focus {
  top: 10px
}

.header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1
}

.brand-icon {
  width: 35px;
  height: 35px;
  background: var(--primary);
  border-radius: 10px;
  color: white;
  display: grid;
  place-items: center;
  margin-right: 9px
}

.brand-icon svg {
  width: 23px;
  height: 23px
}

.brand-period {
  color: var(--primary)
}

.header nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 600
}

.nav-link:hover,
.text-link:hover {
  color: var(--primary-dark)
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  background: var(--primary);
  color: white;
  padding: 17px 25px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 8px #3b82f615;
  transition: background .2s, transform .2s
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px)
}

.button svg {
  width: 18px;
  height: 18px
}

.button-small {
  font-size: 12px;
  padding: 11px 17px;
  gap: 20px
}

.hero {
  text-align: center;
  padding-top: 49px
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 11px 6px 13px;
  background: white
}

.launch-pill>span,
.status-dot,
.connected-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0
}

.launch-pill b {
  font-size: 8px;
  letter-spacing: 1px;
  background: var(--light);
  color: var(--primary-dark);
  padding: 3px 7px;
  border-radius: 20px;
  margin-left: 4px
}

.hero h1 {
  font-size: clamp(45px, 5.7vw, 74px);
  letter-spacing: -.065em;
  line-height: 1.3;
  margin-top: 25px;
  font-weight: 850;
  word-break: keep-all;
  overflow-wrap: break-word
}

.hero h1>span {
  color: var(--primary)
}

.hero-description {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.95;
  margin-top: 23px
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 600
}

.sub-note {
  font-size: 10px;
  color: var(--sub);
  margin-top: 13px
}

.product-stage {
  position: relative;
  margin-top: 49px;
  background: linear-gradient(120deg, #e5efff, #dceafe 55%, #eaf2ff);
  border: 1px solid #dbe7f9;
  border-radius: 20px;
  padding: 54px 65px 0;
  text-align: left;
  isolation: isolate;
  scroll-margin-top: 25px
}

.product-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff60 1px, transparent 1px), linear-gradient(90deg, #ffffff60 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: -1;
  border-radius: 20px
}

.stage-label {
  position: absolute;
  top: 19px;
  left: 25px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #516a91;
  display: flex;
  align-items: center;
  gap: 7px
}

.dashboard {
  background: white;
  display: grid;
  grid-template-columns: 177px 1fr;
  border: 1px solid #d5dfef;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 16px 55px #285ab61c;
  overflow: hidden;
  min-height: 420px
}

.app-sidebar {
  background: #fbfcfe;
  border-right: 1px solid var(--border);
  padding: 24px 14px;
  position: relative
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800
}

.app-brand svg {
  color: var(--primary);
  width: 22px
}

.household {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  margin: 25px 0 22px;
  font-size: 10px;
  font-weight: 700
}

.household>span {
  display: grid;
  place-items: center;
  background: #eaf0f8;
  border-radius: 5px;
  width: 27px;
  height: 27px;
  font-size: 12px
}

.household small,
.sidebar-bottom small {
  display: block;
  color: var(--sub);
  font-size: 7px;
  font-weight: 400
}

.household b {
  margin-left: auto;
  font-weight: 400
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  color: var(--sub);
  padding: 10px 9px;
  margin-bottom: 4px;
  border-radius: 5px
}

.sidebar-item svg {
  width: 15px;
  height: 15px
}

.sidebar-item.active {
  color: var(--primary-dark);
  background: #eaf2ff;
  font-weight: 700
}

.sidebar-bottom {
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px
}

.sidebar-bottom .connected-dot {
  margin-left: auto;
  background: #2b9876;
  width: 5px;
  height: 5px
}

.avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 9px;
  font-style: normal;
  border: 2px solid white
}

.blue {
  background: #dbeafe;
  color: #2563eb
}

.orange {
  background: #ffedd5;
  color: #9a5716
}

.app-main {
  min-width: 0;
  padding: 0 24px 12px
}

.app-topbar {
  height: 51px;
  border-bottom: 1px solid #edf1f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  color: var(--sub)
}

.slash {
  margin: 0 10px;
  color: #cbd5e1
}

.avatar-group {
  display: flex;
  align-items: center
}

.avatar-group i+i {
  margin-left: -7px
}

.avatar-group>span {
  font-size: 7px;
  margin-left: 6px
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px
}

.app-heading p {
  font-size: 6px;
  letter-spacing: 1.5px;
  color: var(--sub)
}

.app-heading h2 {
  font-size: 22px;
  letter-spacing: -.5px;
  margin-top: 2px
}

.mock-add {
  background: var(--primary);
  color: white;
  font-size: 8px;
  padding: 7px 9px;
  border-radius: 5px
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px
}

.app-stats>div {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 12px
}

.app-stats span {
  font-size: 8px;
  color: var(--sub);
  display: block
}

.app-stats strong {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 650
}

.app-stats small {
  font-size: 9px;
  font-weight: 400;
  color: var(--sub)
}

.orange-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 8px
}

.calendar-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  margin-top: 22px;
  margin-bottom: 10px
}

.calendar-heading>span {
  font-size: 9px;
  color: var(--sub)
}

.calendar-heading b {
  font-weight: 400;
  border: 1px solid var(--border);
  padding: 2px 8px;
  margin: 0 8px;
  border-radius: 4px
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden
}

.day {
  text-align: center;
  font-size: 7px;
  color: var(--sub);
  border-right: 1px solid #edf1f6;
  padding: 7px 0
}

.day strong {
  display: block;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7
}

.day.today {
  background: #f1f6ff
}

.day.today strong {
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 21px;
  margin: auto
}

.day.weekend {
  background: #fafbfd
}

.calendar-body {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-template-rows: 73px 42px;
  gap: 5px 3px;
  border-top: 1px solid var(--border);
  padding: 7px 3px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(100% / 7 - 1px), #edf1f6 calc(100% / 7 - 1px), #edf1f6 calc(100% / 7))
}

.event {
  padding: 6px 5px;
  font-size: 7px;
  background: #eaf2ff;
  border-left: 2px solid var(--primary);
  border-radius: 4px;
  color: #285dab;
  align-self: start
}

.event b,
.event span,
.event small {
  display: block
}

.event b {
  font-size: 7px;
  font-weight: 650;
  line-height: 1.5
}

.event span {
  font-size: 6px;
  margin-top: 4px
}

.event small {
  font-size: 5px;
  margin-top: 4px
}

.event-past {
  grid-column: 1;
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--sub)
}

.event-diapers {
  grid-column: 3
}

.event-books {
  grid-column: 4
}

.event-frozen {
  grid-column: 6/8;
  background: #fff4df;
  border-color: var(--accent);
  color: #966009
}

.event-soap {
  grid-row: 2;
  grid-column: 3
}

.app-footnote {
  font-size: 7px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 11px
}

.app-footnote .status-dot {
  width: 4px;
  height: 4px
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid #e5eaf2;
  border-radius: 12px;
  box-shadow: 0 12px 35px #1e3a8a14;
  padding: 15px;
  display: flex;
  gap: 11px;
  align-items: center
}

.received-card {
  left: -22px;
  bottom: 53px;
  transform: rotate(-4deg)
}

.floating-card strong {
  font-size: 11px;
  display: block
}

.floating-card p {
  font-size: 8px;
  color: var(--sub);
  margin-top: 3px
}

.notice-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: var(--light);
  color: var(--primary);
  border-radius: 10px;
  flex-shrink: 0
}

.notice-icon svg {
  width: 21px;
  height: 21px
}

.notice-icon.amber {
  background: #fff4dc;
  color: #b8750b
}

.delivery-notice {
  right: -22px;
  top: 113px;
  transform: rotate(4deg)
}

.notification-label {
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px
}

.notification-label i {
  font-size: 6px;
  font-style: normal;
  color: var(--sub)
}

.mockup-note {
  font-size: 9px;
  color: var(--sub);
  margin-top: 18px
}

.audience {
  text-align: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border)
}

.audience>p {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--sub);
  font-weight: 600
}

.audience h2 {
  font-size: 24px;
  margin: 13px 0 16px;
  letter-spacing: -.02em;
  font-weight: 600
}

.audience h2 span {
  color: var(--primary-dark);
  font-size: 27px;
  margin: 0 4px
}

.audience>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  font-size: 11px;
  color: var(--sub)
}

.audience i {
  width: 3px;
  height: 3px;
  background: #cbd5e1;
  border-radius: 50%
}

.section {
  padding-block: 100px
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 39px
}

.eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--primary-dark);
  margin-bottom: 15px
}

h2 {
  font-size: 38px;
  letter-spacing: -.045em;
  line-height: 1.5
}

.section-heading>p,
.section-description {
  font-size: 12px;
  color: var(--sub);
  line-height: 2
}

.section-heading>p {
  padding-bottom: 5px
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0
}

.feature-copy {
  padding: 30px 32px 0
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: var(--light);
  color: var(--primary-dark);
  border-radius: 9px;
  margin-bottom: 18px
}

.feature-icon svg {
  width: 20px;
  height: 20px
}

.feature-card h3 {
  font-size: 23px;
  letter-spacing: -.04em;
  line-height: 1.55
}

.feature-card p {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.95;
  margin-top: 12px
}

.agenda {
  margin: 25px 30px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 17px;
  box-shadow: 0 8px 20px #0f172a04
}

.agenda-heading {
  font-size: 10px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px
}

.agenda-heading>span {
  font-weight: 400;
  color: var(--sub);
  font-size: 9px
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid #edf1f6;
  font-size: 10px
}

.agenda-time {
  width: 40px;
  color: var(--primary-dark);
  font-weight: 600
}

.agenda-item small {
  display: block;
  font-size: 8px;
  color: var(--sub);
  font-weight: 400
}

.agenda-item>div {
  border-left: 2px solid var(--primary);
  padding-left: 10px
}

.tag {
  font-size: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  color: #966009;
  background: #ffF4df;
  margin-left: auto;
  white-space: nowrap
}

.neutral {
  color: var(--sub);
  background: #f1f5f9
}

.purchase-feature {
  background: #eff6ff
}

.purchase-feature .feature-icon {
  background: white
}

.purchase-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #dbe7f7;
  border-radius: 10px;
  margin: 33px 27px 30px;
  padding: 18px 14px;
  box-shadow: 0 8px 25px #1e3a8a08;
  transform: rotate(-3deg)
}

.purchase-row strong {
  font-size: 11px
}

.purchase-row>div>span {
  display: block;
  font-size: 9px;
  color: var(--sub)
}

.ordered {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: var(--primary-dark);
  white-space: nowrap
}

.ordered svg {
  width: 13px;
  height: 13px
}

.widget-feature,
.sharing-feature {
  min-height: 365px
}

.widget-feature {
  display: grid;
  grid-template-columns: 1fr 210px;
  background: #eef2f9;
  position: relative
}

.widget-feature .feature-copy {
  padding-right: 0;
  z-index: 1
}

.widget-feature .feature-copy p {
  max-width: 230px
}

.widget-feature .feature-copy h3 {
  max-width: 215px
}

.lock-screen {
  align-self: end;
  background: linear-gradient(155deg, #bdd7ff, #e2ecff 48%, #abc6f2);
  border: 5px solid #fff;
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  margin-top: 85px;
  margin-right: 20px;
  transform: rotate(8deg) translateY(14px);
  height: 250px;
  text-align: center;
  padding: 22px 10px;
  box-shadow: 0 5px 30px #0f172a0d
}

.lock-date {
  font-size: 9px;
  color: #435d8c
}

.lock-time {
  display: block;
  font-size: 49px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.2;
  color: #324f83
}

.widget {
  background: #ffffffbf;
  border: 1px solid #ffffff90;
  border-radius: 12px;
  padding: 12px 9px;
  margin-top: 15px;
  text-align: left
}

.widget>div {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px
}

.widget svg {
  width: 13px;
  height: 13px;
  color: var(--primary-dark)
}

.widget>div>span {
  margin-left: auto;
  font-size: 7px;
  color: #4b6288
}

.widget p {
  font-size: 7px;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #344866
}

.widget b {
  font-size: 6px;
  font-weight: 500
}

.sharing-options {
  margin: 27px 32px 30px
}

.sharing-options>div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  font-size: 10px
}

.sharing-options>div:last-child {
  border: 0
}

.sharing-symbol {
  background: #eff6ff;
  color: var(--primary-dark);
  border-radius: 9px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  font-size: 11px
}

.sharing-symbol.personal {
  background: #f1f5f9;
  color: var(--sub)
}

.visibility {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  margin-left: auto;
  background: #f1f5f9;
  color: var(--sub);
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap
}

.visibility.shared {
  color: var(--primary-dark);
  background: var(--light)
}

.visibility svg {
  width: 12px;
  height: 12px
}

.steps-section {
  background: white;
  border-block: 1px solid var(--border)
}

.steps-section .section {
  padding-block: 77px
}

.steps-section h2 {
  font-size: 33px
}

.section-description {
  margin-top: 14px
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 42px
}

.steps article {
  position: relative
}

.steps article:not(:last-child):after {
  content: "";
  position: absolute;
  left: 55px;
  right: 0;
  top: 20px;
  border-top: 1px dashed #cbd5e1
}

.steps article>span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600
}

.steps h3 {
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: -.02em
}

.steps p {
  font-size: 11px;
  color: var(--sub);
  margin-top: 10px;
  line-height: 2
}

.vision {
  text-align: center;
  padding-block: 100px
}

.vision-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--light);
  color: var(--primary);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  margin: 0 auto 24px;
  transform: rotate(-8deg)
}

.vision-icon svg {
  width: 30px;
  height: 30px
}

.vision h2 {
  font-size: 43px
}

.vision>p:last-child {
  font-size: 13px;
  line-height: 2.3;
  color: var(--sub);
  margin-top: 23px
}

.vision strong {
  font-weight: 500;
  color: var(--text)
}

.join-card {
  background: var(--primary);
  border-radius: 20px;
  text-align: center;
  padding: 58px 25px;
  position: relative;
  overflow: hidden;
  color: white;
  isolation: isolate
}

.join-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 100%, #1d4ed833, transparent 65%)
}

.join-orbit:before,
.join-orbit:after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid #ffffff21;
  border-radius: 50%;
  left: -390px;
  top: -130px
}

.join-orbit:after {
  left: auto;
  right: -390px;
  top: -100px;
  width: 720px;
  height: 720px
}

.join-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 1.6px;
  background: #ffffff17;
  border: 1px solid #ffffff3d;
  border-radius: 20px;
  padding: 5px 11px;
  margin-bottom: 18px
}

.join-pill>span {
  width: 5px;
  height: 5px;
  background: #ffd180;
  border-radius: 50%
}

.join-card h2 {
  font-size: 43px;
  line-height: 1.45
}

.join-card>p {
  font-size: 12px;
  line-height: 2;
  margin-top: 18px;
  color: #eff6ff
}

.button-white {
  background: white;
  color: #1d4ed8;
  margin-top: 27px
}

.button-white:hover {
  background: #eff6ff
}

.join-card .registration-status {
  font-size: 10px;
  margin-top: 13px
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 65px
}

.faq h2 {
  font-size: 29px
}

.faq-list {
  border-top: 1px solid var(--border)
}

.faq details {
  border-bottom: 1px solid var(--border)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
  padding: 21px 0
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary>span {
  font-size: 20px;
  color: var(--sub);
  font-weight: 400;
  line-height: 1
}

.faq details[open] summary>span {
  transform: rotate(45deg)
}

.faq details p {
  font-size: 12px;
  color: var(--sub);
  line-height: 2;
  padding: 0 28px 22px 0
}

.footer {
  border-top: 1px solid var(--border);
  padding-block: 30px 40px;
  display: flex;
  align-items: center;
  gap: 24px
}

.footer .brand {
  font-size: 20px
}

.footer .brand-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px
}

.footer .brand-icon svg {
  width: 19px;
  height: 19px
}

.footer p {
  font-size: 11px;
  color: var(--sub)
}

.footer-operator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  white-space: nowrap;
  transition: border-color .2s, background .2s
}

.footer-operator:hover,
.footer-operator:focus-visible {
  border-color: var(--primary);
  background: var(--light)
}

.footer-operator-label {
  font-size: 12px;
  color: var(--sub)
}

.footer-operator strong {
  font-size: 16px;
  font-weight: 700
}

.footer-operator-arrow {
  font-size: 16px;
  color: var(--primary-dark)
}

.footer small {
  font-size: 10px;
  color: var(--sub);
  margin-left: auto
}

.footer>a:last-child {
  font-size: 10px
}

.mobile-cta {
  display: none
}

@media(min-width:1440px) {
  .hero {
    padding-top: 65px
  }

  .hero h1 {
    font-size: 80px
  }

  .product-stage {
    margin-top: 58px
  }
}

@media(max-width:1050px) {
  .container {
    width: calc(100% - 48px)
  }

  .product-stage {
    padding: 48px 30px 0
  }

  .dashboard {
    grid-template-columns: 145px 1fr
  }

  .app-sidebar {
    padding-inline: 10px
  }

  .app-main {
    padding-inline: 17px
  }

  .delivery-notice {
    right: -10px;
    top: 100px
  }

  .received-card {
    left: -10px
  }

  .feature-copy {
    padding: 25px 24px 0
  }

  .feature-card h3 {
    font-size: 21px
  }

  .widget-feature {
    grid-template-columns: 1fr 175px
  }

  .lock-screen {
    margin-right: 10px
  }

  .widget-feature .feature-copy p {
    font-size: 11px
  }

  .agenda {
    margin-inline: 20px
  }

  .agenda-item {
    gap: 7px
  }

  .sharing-options {
    margin-inline: 24px
  }

  .section-heading>p {
    font-size: 11px
  }

  .faq {
    gap: 35px
  }
}

@media(max-width:760px) {
  .container {
    width: calc(100% - 40px)
  }

  .header {
    height: 78px
  }

  .header nav {
    display: none
  }

  .brand {
    font-size: 22px
  }

  .brand-icon {
    width: 31px;
    height: 31px
  }

  .button-small {
    padding: 10px 13px;
    font-size: 10px;
    gap: 12px
  }

  .hero {
    padding-top: 33px
  }

  .launch-pill {
    font-size: 9px;
    gap: 6px;
    padding-inline: 10px
  }

  .launch-pill b {
    font-size: 7px;
    letter-spacing: .6px;
    margin-left: 0
  }

  .hero h1 {
    font-size: clamp(39px, 8.8vw, 62px);
    margin-top: 24px;
    letter-spacing: -.065em
  }

  .hero-description {
    font-size: 12px;
    margin-top: 22px;
    line-height: 2
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 24px
  }

  .hero-actions .button {
    width: min(100%, 310px);
    font-size: 12px
  }

  .text-link {
    font-size: 11px
  }

  .sub-note {
    font-size: 9px;
    margin-top: 17px
  }

  .product-stage {
    padding: 40px 12px 0;
    margin-top: 32px;
    border-radius: 13px
  }

  .stage-label {
    font-size: 6px;
    top: 15px;
    left: 15px;
    letter-spacing: 1px
  }

  .dashboard {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 8px 8px 0 0
  }

  .app-sidebar {
    display: none
  }

  .app-main {
    padding: 0 12px 10px
  }

  .app-topbar {
    height: 38px;
    font-size: 7px
  }

  .avatar-group>span {
    display: none
  }

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

  .app-heading {
    margin-top: 14px
  }

  .app-heading h2 {
    font-size: 20px
  }

  .app-heading p {
    font-size: 5px
  }

  .mock-add {
    font-size: 7px;
    padding: 6px 8px
  }

  .app-stats {
    gap: 6px;
    margin-top: 12px
  }

  .app-stats>div {
    padding: 8px
  }

  .app-stats span {
    font-size: 7px
  }

  .app-stats strong {
    font-size: 22px
  }

  .calendar-heading {
    margin-top: 16px
  }

  .calendar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .calendar-grid .day:nth-child(1),
  .calendar-grid .day:nth-child(2),
  .calendar-grid .day:nth-child(7) {
    display: none
  }

  .calendar-body {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 70px 42px;
    background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), #edf1f6 calc(25% - 1px), #edf1f6 25%)
  }

  .event-past {
    display: none
  }

  .event-diapers {
    grid-column: 1
  }

  .event-books {
    grid-column: 2
  }

  .event-frozen {
    grid-column: 4
  }

  .event-soap {
    grid-column: 1
  }

  .event {
    padding: 5px 3px
  }

  .event b {
    font-size: 7px
  }

  .event small {
    font-size: 5px
  }

  .delivery-notice {
    top: 141px;
    right: -8px;
    padding: 9px;
    gap: 7px;
    border-radius: 9px;
    transform: rotate(5deg)
  }

  .delivery-notice .notice-icon {
    width: 28px;
    height: 28px
  }

  .delivery-notice strong {
    font-size: 9px
  }

  .delivery-notice p {
    font-size: 6px
  }

  .notification-label {
    font-size: 6px;
    margin-bottom: 2px
  }

  .notification-label i {
    font-size: 5px
  }

  .received-card {
    left: -8px;
    bottom: 20px;
    padding: 10px;
    gap: 7px;
    transform: rotate(-4deg)
  }

  .received-card .notice-icon {
    width: 28px;
    height: 28px
  }

  .received-card strong {
    font-size: 9px
  }

  .received-card p {
    font-size: 6px
  }

  .mockup-note {
    font-size: 8px;
    line-height: 1.8;
    margin-top: 17px;
    padding-inline: 7px
  }

  .audience {
    padding-block: 39px
  }

  .audience>p {
    font-size: 7px;
    letter-spacing: 1.5px
  }

  .audience h2 {
    font-size: 15px;
    margin: 12px 0
  }

  .audience h2 span {
    font-size: 22px
  }

  .audience>div {
    gap: 10px;
    font-size: 12px
  }

  .section {
    padding-block: 64px
  }

  .section-heading {
    display: block;
    margin-bottom: 26px
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
    margin-bottom: 12px
  }

  h2 {
    font-size: 30px
  }

  .section-heading>p {
    font-size: 12px;
    margin-top: 17px
  }

  .section-heading>p br:nth-child(2) {
    display: none
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px
  }

  .feature-copy {
    padding: 26px 24px 0
  }

  .feature-card h3 {
    font-size: 21px
  }

  .feature-card p {
    font-size: 14px
  }

  .feature-icon {
    margin-bottom: 15px
  }

  .agenda {
    margin: 22px 18px 23px;
    padding: 13px
  }

  .agenda-item {
    gap: 10px
  }

  .agenda-item strong {
    font-size: 10px
  }

  .tag {
    font-size: 7px;
    padding: 3px 5px
  }

  .purchase-row {
    margin: 26px 22px 30px
  }

  .widget-feature {
    grid-template-columns: 1fr 155px;
    min-height: 315px
  }

  .widget-feature .feature-copy {
    padding-right: 0
  }

  .widget-feature .feature-copy h3 {
    font-size: 22px;
    max-width: 160px
  }

  .widget-feature .feature-copy p {
    font-size: 12px
  }

  .widget-feature .eyebrow {
    font-size: 7px
  }

  .lock-screen {
    margin-top: 73px;
    margin-right: 11px;
    padding: 22px 6px;
    height: 235px;
    border-width: 4px;
    border-radius: 27px 27px 0 0
  }

  .lock-time {
    font-size: 44px
  }

  .widget {
    padding: 10px 6px
  }

  .widget>div {
    font-size: 8px
  }

  .widget>div>span {
    font-size: 6px
  }

  .widget p {
    font-size: 6px
  }

  .widget b {
    font-size: 5px
  }

  .sharing-feature {
    min-height: 0
  }

  .sharing-options {
    margin: 18px 24px 19px
  }

  .sharing-options>div {
    gap: 9px
  }

  .steps-section .section {
    padding-block: 55px
  }

  .steps-section h2 {
    font-size: 26px
  }

  .section-description {
    font-size: 11px
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px
  }

  .steps article {
    padding-left: 58px
  }

  .steps article>span {
    position: absolute;
    left: 0;
    top: 0
  }

  .steps h3 {
    margin-top: 0;
    font-size: 16px
  }

  .steps p {
    margin-top: 7px
  }

  .steps article:not(:last-child):after {
    left: 20px;
    top: 48px;
    bottom: -20px;
    right: auto;
    border-top: 0;
    border-left: 1px dashed #cbd5e1
  }

  .vision h2 {
    font-size: 34px
  }

  .vision>p:last-child {
    font-size: 11px;
    line-height: 2.2
  }

  .vision strong {
    display: inline-block;
    max-width: 285px
  }

  .vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px
  }

  .join-section.container {
    width: calc(100% - 28px)
  }

  .join-card {
    padding: 40px 18px;
    border-radius: 15px
  }

  .join-card h2 {
    font-size: 30px
  }

  .join-card>p {
    font-size: 11px
  }

  .join-card .button {
    font-size: 12px;
    gap: 16px;
    width: min(100%, 290px);
    padding-inline: 14px
  }

  .join-card .registration-status {
    font-size: 9px
  }

  .join-pill {
    font-size: 8px
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 27px
  }

  .faq h2 {
    font-size: 26px
  }

  .faq summary {
    font-size: 11px;
    padding: 20px 0
  }

  .faq details p {
    font-size: 11px
  }

  .footer {
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 110px
  }

  .footer p {
    font-size: 10px
  }

  .footer small {
    margin-left: 0;
    width: calc(100% - 75px)
  }

  .footer>a:last-child {
    margin-left: auto
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 10px 20px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: #f8fafcf5;
    backdrop-filter: blur(12px)
  }

  .mobile-cta .button {
    width: 100%;
    padding: 13px;
    font-size: 12px
  }

  .mobile-cta.is-hidden {
    visibility: hidden;
    pointer-events: none
  }
}

@media(max-width:360px) {
  .container {
    width: calc(100% - 28px)
  }

  .launch-pill {
    font-size: 8px
  }

  .hero h1 {
    font-size: 37px
  }

  .audience>div {
    font-size: 8px;
    gap: 8px
  }

  .widget-feature {
    grid-template-columns: 1fr 140px
  }

  .feature-copy {
    padding-inline: 19px
  }

  .sharing-options {
    margin-inline: 19px
  }

  .visibility {
    font-size: 8px;
    padding: 4px
  }

  .agenda-item {
    gap: 6px
  }

  .agenda-time {
    width: 34px
  }

  .agenda-item>div {
    padding-left: 7px
  }

  .tag {
    font-size: 6px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    transition: none !important
  }
}
