:root {
  --ink: #0d2035;
  --ink-70: rgba(13, 32, 53, 0.7);
  --ink-64: rgba(13, 32, 53, 0.64);
  --ink-55: rgba(13, 32, 53, 0.55);
  --sky: #eaf5fd;
  --sky-2: #e2f2fd;
  --paper: #ffffff;
  --blue: #1478d4;
  --blue-deep: #0f5ea8;
  --gold: #f39a1c;
  --navy: #0a1a2f;
  --deep: #04122b;
  --line: #d5ecfb;
  --shadow: #c3e2f8;
  --radius-xl: 40px;
  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sky);
  color: var(--ink);
  font-family: Nunito, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
h1, h2, h3 { font-family: "Baloo 2", cursive; letter-spacing: -0.02em; font-weight: 800; }
p { text-wrap: pretty; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { left: 8px; }

.ms {
  font-family: "Material Symbols Rounded";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

.drop {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 5px;
  transform: rotate(-45deg);
  background: linear-gradient(150deg, #8fd6f8, #2b9cf0);
  box-shadow: 0 4px 0 rgba(16, 101, 177, 0.22);
}
.drop.gold {
  background: linear-gradient(150deg, #ffd98f, #f39a1c);
  box-shadow: 0 3px 0 rgba(200, 120, 10, 0.25);
}
.drop.white {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 0 rgba(4, 45, 85, 0.25);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(165deg, #4fb4f7, #1163c9);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 11px 22px;
  font: 800 14.5px Nunito, sans-serif;
  color: #fff !important;
  box-shadow: 0 5px 0 #0c4d92, 0 12px 22px rgba(17, 99, 201, 0.36), inset 0 -3px 0 rgba(0, 30, 70, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.btn-pill:hover { filter: brightness(1.06); color: #fff !important; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(180deg, #17334f, #0d2035);
  border: 2.5px solid #24425f;
  border-radius: 18px;
  padding: 14px 26px 14px 20px;
  box-shadow: 0 7px 0 #050d17, 0 18px 28px rgba(13, 32, 53, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.12);
  color: #fff !important;
}
.store-btn:hover { filter: brightness(1.18); color: #fff !important; }
.store-btn .ms { font-size: 30px; color: #fff; }
.store-btn small {
  display: block;
  font: 600 11px Nunito, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}
.store-btn b {
  display: block;
  font: 800 19px/1.2 Nunito, sans-serif;
  color: #fff;
}
.store-btn.light {
  background: #fff;
  border: 0;
  box-shadow: 0 7px 0 #b9d9f0, 0 18px 30px rgba(4, 45, 85, 0.3);
}
.store-btn.light .ms,
.store-btn.light b { color: var(--ink); }
.store-btn.light small { color: rgba(13, 32, 53, 0.6); }
.store-btn.ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 2.5px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 7px 0 rgba(4, 45, 85, 0.3);
}
.store-btn.ghost:hover { background: rgba(255, 255, 255, 0.26); filter: none; }
.store-btn.is-pending,
.store-btn.is-pending:hover {
  opacity: 0.55;
  filter: none;
}

.kicker {
  font: 800 12.5px Nunito, sans-serif;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.kicker.light { color: #6fc4f7; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */
.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px var(--pad);
  max-width: var(--wrap);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink) !important;
  font: 800 27px/1 "Baloo 2", cursive;
  letter-spacing: -0.01em;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav.simple {
  display: flex;
}
.nav a {
  font: 700 14.5px Nunito, sans-serif;
  color: var(--ink-70);
}
.nav a:hover { color: var(--ink); }
.menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #d5ecfb;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--ink);
}

/* Hero */
.hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e2f2fd 0%, #f2fbff 34%, #ffffff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: min(1180px, 140vw);
  width: 100%;
  object-fit: cover;
  opacity: 0.85;
  pointer-events: none;
}
.hero-veil {
  position: absolute;
  inset: 0 0 auto 0;
  height: min(1180px, 140vw);
  background: linear-gradient(180deg, rgba(226, 242, 253, 0.55) 0%, rgba(240, 250, 255, 0.3) 45%, #ffffff 100%);
  pointer-events: none;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr min(460px, 38vw);
  gap: 40px;
  align-items: center;
  padding: 54px var(--pad) 0;
  max-width: var(--wrap);
  margin: 0 auto;
}
.hero .drop { position: absolute; }
.hero .drop.d1 { left: 44px; top: 38px; width: 20px; height: 20px; }
.hero .drop.d2 { left: 46%; top: 66px; width: 13px; height: 13px; opacity: 0.85; }
.hero .drop.d3 { left: 30px; top: 72%; width: 14px; height: 14px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.9);
  border: 2.5px solid #fff;
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  box-shadow: 0 5px 0 #c9e6f9, 0 12px 18px rgba(12, 74, 110, 0.14);
  font: 800 13.5px Nunito, sans-serif;
}
.chip .ms { color: var(--gold); font-size: 19px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  margin: 22px 0 0;
}
.lede {
  font: 400 20px/1.6 Nunito, sans-serif;
  color: var(--ink-70);
  margin: 20px 0 0;
  max-width: 520px;
}
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 26px;
  font: 700 14px Nunito, sans-serif;
  color: var(--ink-70);
}
.proof .stars { display: flex; align-items: center; gap: 4px; }
.proof .ms { color: var(--gold); font-size: 19px; }
.proof .rule { width: 1px; height: 20px; background: rgba(13, 32, 53, 0.15); }

.hero-art {
  position: relative;
  height: 820px;
}
.mascot-float {
  position: absolute;
  right: -46px;
  bottom: 112px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(8, 60, 100, 0.22));
  animation: bob 4.8s ease-in-out infinite;
  z-index: 2;
}

.phone {
  position: absolute;
  left: 0;
  top: 26px;
  width: 375px;
  height: 720px;
  border-radius: 46px;
  overflow: hidden;
  background: #dcf1fd;
  box-shadow: 0 34px 70px rgba(12, 74, 110, 0.3), 0 0 0 10px #0d151d, 0 0 0 11px #2b3944, 0 22px 0 11px rgba(12, 74, 110, 0.18);
  display: flex;
  flex-direction: column;
}
.phone-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230, 246, 255, 0.72) 0%, rgba(230, 246, 255, 0.2) 30%, rgba(255, 255, 255, 0.1) 100%);
}
.phone-status {
  position: relative;
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 26px 4px;
  font: 800 15px Nunito, sans-serif;
}
.phone-status span { display: flex; gap: 5px; }
.phone-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 20px 0;
}
.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 6px 14px 6px 11px;
  box-shadow: 0 4px 12px rgba(12, 74, 110, 0.12);
  margin-bottom: 9px;
  font: 800 13px Nunito, sans-serif;
}
.date-chip .ms { color: var(--blue); font-size: 17px; }
.hello { font: 800 27px/1.06 "Baloo 2", cursive; letter-spacing: -0.01em; }
.hello b { color: var(--blue); }
.streak {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(155deg, #ffc76a, #f39a1c);
  border: 2.5px solid rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(233, 150, 20, 0.42), inset 0 -3px 0 rgba(160, 90, 0, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.4);
  color: #fff;
  font: 800 21px/1 "Baloo 2", cursive;
  text-shadow: 0 1px 2px rgba(140, 80, 0, 0.35);
}
.streak small { display: flex; align-items: center; gap: 2px; font: 800 9.5px Nunito, sans-serif; letter-spacing: 0.03em; }

.vessel-row {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 8px 26px 0;
}
.vessel-row .mascot {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 126px;
  height: 126px;
  object-fit: contain;
  transform: scaleX(-1);
  filter: drop-shadow(0 10px 16px rgba(8, 60, 100, 0.2));
}
.vessel {
  position: relative;
  width: 168px;
  height: 100%;
  max-height: 290px;
  border-radius: 44px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.55), rgba(226, 245, 255, 0.3));
  border: 2.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(12, 74, 110, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}
.water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(180deg, #61c8f4 0%, #309be2 40%, #1065b1 100%);
  overflow: hidden;
}
.surface {
  position: absolute;
  top: 0;
  left: -6%;
  width: 112%;
  height: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 50%;
  animation: surface 5.5s ease-in-out infinite;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0.12) 70%);
  animation: rise 7.5s linear infinite;
}
.ml {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  text-align: center;
  font: 800 33px/1 "Baloo 2", cursive;
  color: #fff;
  text-shadow: 0 1px 4px rgba(4, 45, 85, 0.55);
}
.ml span { font: 800 14px Nunito, sans-serif; }
.pct {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  text-align: center;
  font: 800 11px Nunito, sans-serif;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(4, 45, 85, 0.5);
}
.shine {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 15px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.25));
}

.stats {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 12px 20px 0;
}
.stat {
  flex: 1;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 8px 6px 9px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(12, 74, 110, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.stat .ico {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(160deg, #e8f5ff, #d3ebfd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat .ico .ms { font-size: 17px; color: var(--blue); }
.stat strong { display: block; font: 800 19px/1 "Baloo 2", cursive; margin-top: 6px; }
.stat strong span { font: 800 10.5px Nunito, sans-serif; color: var(--ink-70); }
.stat em { display: block; font: 700 10.5px Nunito, sans-serif; color: var(--ink-70); margin-top: 2px; font-style: normal; }

.log-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px 92px;
}
.log-sm, .log-lg {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.log-sm {
  width: 60px;
  height: 60px;
  background: linear-gradient(160deg, #fff, rgba(240, 250, 255, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(12, 74, 110, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font: 800 18px/1 "Baloo 2", cursive;
  color: #0f63b0;
}
.log-sm span { font: 800 9px Nunito, sans-serif; letter-spacing: 0.09em; color: rgba(13, 32, 53, 0.6); margin-top: 2px; }
.log-lg {
  width: 88px;
  height: 88px;
  background: linear-gradient(165deg, #4fb4f7, #1163c9);
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(17, 99, 201, 0.45), inset 0 -4px 0 rgba(0, 30, 70, 0.2), inset 0 3px 0 rgba(255, 255, 255, 0.35);
  color: #fff;
}
.log-lg .ms { font-size: 34px; text-shadow: 0 2px 4px rgba(0, 40, 90, 0.3); }
.log-lg span { font: 800 10.5px Nunito, sans-serif; letter-spacing: 0.06em; margin-top: -3px; }

.tabbar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 20px;
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  box-shadow: 0 10px 28px rgba(12, 74, 110, 0.24);
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font: 700 10px Nunito, sans-serif;
  color: var(--ink-70);
}
.tab .ms { font-size: 22px; color: rgba(13, 32, 53, 0.5); }
.tab.on { color: #0f63b0; font-weight: 800; }
.tab.on .ms { color: #0f63b0; }

/* How */
.how {
  position: relative;
  margin-top: 120px;
  scroll-margin-top: 20px;
}
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  display: block;
}
.wave.top { top: -128px; height: 130px; }
.how-body {
  position: relative;
  background: #fff;
  padding: 24px 0 104px;
}
.how-mascot {
  position: absolute;
  right: 34px;
  top: -26px;
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(8, 60, 100, 0.16));
  animation: bobs 5.4s ease-in-out infinite;
}
.center { text-align: center; }
.center h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 0;
}
.center p {
  font: 400 18px/1.6 Nunito, sans-serif;
  color: var(--ink-64);
  margin: 16px auto 0;
  max-width: 640px;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 64px;
}
.steps-line {
  position: absolute;
  left: 60px;
  top: 54px;
  width: calc(100% - 120px);
  height: 200px;
}
.card {
  background: linear-gradient(165deg, #f7fcff, #e9f5fe);
  border: 3px solid #fff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 10px 0 var(--shadow), 0 26px 42px rgba(12, 74, 110, 0.16), inset 0 2px 0 rgba(255, 255, 255, 0.95);
}
.card.gold {
  background: linear-gradient(165deg, #fffaf1, #fdf0dc);
  box-shadow: 0 10px 0 #f0dcb8, 0 26px 42px rgba(12, 74, 110, 0.16), inset 0 2px 0 rgba(255, 255, 255, 0.95);
}
.card.n2 { margin-top: 54px; }
.card.n3 { margin-top: 16px; }
.card-top {
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  gap: 12px;
  background: linear-gradient(180deg, #e9f5ff, #f7fcff);
}
.card.gold .card-top { background: linear-gradient(180deg, #fff3e0, #fffaf1); }
.num {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 5px;
  transform: rotate(-45deg);
  background: linear-gradient(150deg, #61c8f4, #1f8ede);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(20, 120, 212, 0.32);
}
.card.gold .num { background: linear-gradient(150deg, #ffc76a, #f39a1c); box-shadow: 0 5px 12px rgba(233, 150, 20, 0.34); }
.num span { transform: rotate(45deg); font: 800 14px Nunito, sans-serif; color: #fff; }
.card-top em {
  font: 800 12px Nunito, sans-serif;
  letter-spacing: 0.13em;
  color: rgba(13, 32, 53, 0.42);
  font-style: normal;
}
.card-body { padding: 24px 30px 30px; }
.ico-box {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
  border: 2.5px solid #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 0 #d3e9f9;
}
.ico-box .ms { font-size: 27px; color: var(--blue); }
.ico-box .ms.gold { color: #e08c0d; }
.card h3 { font-size: 26px; line-height: 1.2; margin: 18px 0 0; }
.card p { font: 400 16px/1.6 Nunito, sans-serif; color: var(--ink-64); margin: 10px 0 0; }

/* Reminders */
.reminders {
  position: relative;
  background: var(--deep);
  padding: 170px 0 176px;
  overflow: hidden;
  scroll-margin-top: 20px;
}
.reminders .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.reminders .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 43, 0.86), rgba(4, 18, 43, 0.72));
}
.reminders .wave { height: 150px; z-index: 2; }
.reminders .wave.top { top: 0; }
.reminders .wave.bot { bottom: 0; top: auto; }
.reminders .inner { position: relative; }
.reminders h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 0;
}
.reminders .intro {
  font: 400 18px/1.6 Nunito, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 0;
  max-width: 660px;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.tier {
  background: rgba(255, 255, 255, 0.08);
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 30px 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.32);
}
.tier.alarm {
  background: rgba(243, 154, 28, 0.15);
  border-color: rgba(243, 154, 28, 0.55);
}
.tier-h { display: flex; align-items: center; gap: 12px; }
.tier-h .box {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(111, 196, 247, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tier.alarm .tier-h .box { background: rgba(243, 154, 28, 0.22); }
.tier-h .ms { font-size: 24px; color: #8ed2f9; }
.tier.alarm .tier-h .ms { color: #ffbe63; }
.tier-h span { font: 800 21px "Baloo 2", cursive; color: #fff; }
.tier p { font: 400 15.5px/1.6 Nunito, sans-serif; color: rgba(255, 255, 255, 0.68); margin: 16px 0 0; }
.mock {
  margin-top: 20px;
  background: rgba(9, 26, 52, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}
.tier.alarm .mock { border-color: rgba(243, 154, 28, 0.45); text-align: center; padding: 16px; }
.note { display: flex; gap: 11px; align-items: flex-start; }
.note img { width: 30px; height: 30px; object-fit: contain; }
.note b { display: block; font: 800 13px Nunito, sans-serif; color: #fff; }
.note span { display: block; font: 400 12.5px/1.45 Nunito, sans-serif; color: rgba(255, 255, 255, 0.72); margin-top: 2px; }
.bar {
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
  margin-top: 10px;
  overflow: hidden;
}
.bar i { display: block; width: 62%; height: 100%; border-radius: 5px; background: linear-gradient(90deg, #61c8f4, #1f8ede); }
.live-actions { margin-top: 12px; display: flex; gap: 8px; }
.live-actions span {
  flex: 1;
  text-align: center;
  font: 800 12px Nunito, sans-serif;
  border-radius: 10px;
  padding: 7px 0;
}
.live-actions .go { color: #04122b; background: #8ed2f9; }
.live-actions .later { color: rgba(255, 255, 255, 0.75); background: rgba(255, 255, 255, 0.12); }
.alarm-cta {
  margin-top: 12px;
  font: 800 12px Nunito, sans-serif;
  color: #04122b;
  background: #ffbe63;
  border-radius: 11px;
  padding: 9px 0;
}
.sleep-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 2.5px solid rgba(255, 255, 255, 0.26);
  border-radius: 26px;
  padding: 14px 26px 14px 16px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.3);
}
.sleep-note img { width: 76px; height: 76px; object-fit: contain; }
.sleep-note p { font: 700 15px/1.6 Nunito, sans-serif; color: rgba(255, 255, 255, 0.72); margin: 0; max-width: 520px; }

/* Progress */
.progress {
  position: relative;
  padding: 96px 0 0;
}
.progress .blob {
  position: absolute;
  right: 0;
  top: 40px;
  width: min(520px, 46vw);
  height: 520px;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.progress h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.12; margin: 12px 0 0; }
.progress .lede { font-size: 18px; color: var(--ink-64); max-width: none; }
.checks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.check { display: flex; gap: 11px; align-items: flex-start; font: 400 16.5px/1.55 Nunito, sans-serif; color: var(--ink-70); }
.check .ms { font-size: 22px; color: var(--blue); margin-top: 1px; }
.week {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 250, 255, 0.8));
  border: 3px solid #fff;
  border-radius: 36px;
  padding: 34px;
  box-shadow: 0 10px 0 var(--shadow), 0 28px 48px rgba(12, 74, 110, 0.18), inset 0 2px 0 rgba(255, 255, 255, 0.95);
}
.week-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.week-h b { font: 800 22px "Baloo 2", cursive; }
.week-h span { font: 800 13.5px Nunito, sans-serif; color: var(--blue); }
.rings { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; margin-top: 22px; }
.ring { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ring i {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring i b {
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring i b .ms { font-size: 15px; color: var(--blue); }
.ring span { font: 800 11.5px Nunito, sans-serif; color: var(--ink-55); }
.insight {
  margin-top: 24px;
  background: rgba(20, 120, 212, 0.07);
  border: 2px solid rgba(20, 120, 212, 0.22);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 5px 0 rgba(20, 120, 212, 0.14);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.insight .ms { font-size: 22px; color: var(--blue); }
.insight b { display: block; font: 800 14.5px Nunito, sans-serif; }
.insight span { display: block; font: 400 14px/1.5 Nunito, sans-serif; color: var(--ink-64); margin-top: 3px; }
.week-mascot {
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 152px;
  height: 152px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(8, 60, 100, 0.18));
  animation: bob 5.6s ease-in-out infinite;
}

/* Privacy */
.privacy-band { position: relative; padding: 112px var(--pad) 0; max-width: var(--wrap); margin: 0 auto; scroll-margin-top: 20px; }
.privacy-card {
  position: relative;
  background: linear-gradient(160deg, #f4fbff, #e6f4fe);
  border: 3px solid #fff;
  border-radius: var(--radius-xl);
  padding: 70px 60px 56px;
  box-shadow: 0 12px 0 var(--shadow), 0 30px 52px rgba(12, 74, 110, 0.16);
  overflow: hidden;
}
.privacy-card h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; margin: 12px 0 0; }
.privacy-card .lede { font-size: 17.5px; }
.legal-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: 14px;
  padding: 11px 18px;
  font: 800 14px Nunito, sans-serif;
  color: var(--ink) !important;
  box-shadow: 0 5px 0 #cbe5f7;
}
.ghost-btn:hover { color: var(--blue) !important; }
.priv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.priv-item {
  background: #fff;
  border: 2.5px solid #e3f2fd;
  border-radius: 24px;
  padding: 22px 22px 24px;
  box-shadow: 0 6px 0 #d3e9f9, 0 14px 24px rgba(12, 74, 110, 0.1);
}
.priv-item .ms { font-size: 26px; color: var(--blue); }
.priv-item b { display: block; font: 800 16.5px Nunito, sans-serif; margin-top: 12px; }
.priv-item p { font: 400 14.5px/1.55 Nunito, sans-serif; color: var(--ink-64); margin: 6px 0 0; }
.privacy-mascot {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 12px 18px rgba(8, 60, 100, 0.14));
}

/* FAQ */
.faq { position: relative; padding: 112px var(--pad) 0; max-width: var(--wrap); margin: 0 auto; scroll-margin-top: 20px; }
.faq h2 { font-size: clamp(32px, 4vw, 46px); margin: 0; text-align: center; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.faq-item {
  background: #fff;
  border: 3px solid var(--line);
  border-radius: 26px;
  padding: 26px 28px;
  display: flex;
  gap: 14px;
  box-shadow: 0 8px 0 #cbe5f7, 0 20px 34px rgba(12, 74, 110, 0.12);
}
.faq-item h3 { font-size: 19px; margin: 0; }
.faq-item p { font: 400 15.5px/1.6 Nunito, sans-serif; color: var(--ink-64); margin: 8px 0 0; }

/* Get */
.get { position: relative; margin-top: 112px; padding: 0 var(--pad); scroll-margin-top: 20px; }
.get-card {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(165deg, #3fa9f2, #0f5cb8);
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 48px;
  padding: 72px 64px 76px;
  overflow: hidden;
  box-shadow: 0 14px 0 #0a3e7d, 0 34px 62px rgba(15, 92, 184, 0.4), inset 0 -10px 0 rgba(0, 30, 70, 0.16), inset 0 3px 0 rgba(255, 255, 255, 0.28);
}
.get-card .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.get-mascot {
  position: absolute;
  right: 52px;
  bottom: -14px;
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(4, 45, 85, 0.3));
  animation: bob 5.2s ease-in-out infinite;
}
.get-copy { position: relative; max-width: 640px; }
.get-copy h2 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; color: #fff; margin: 0; }
.get-copy p { font: 400 19px/1.6 Nunito, sans-serif; color: rgba(255, 255, 255, 0.85); margin: 18px 0 0; }

/* Legal cards */
.legal { padding: 104px var(--pad) 0; max-width: var(--wrap); margin: 0 auto; scroll-margin-top: 20px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.legal-card {
  background: #fff;
  border: 3px solid var(--line);
  border-radius: 32px;
  padding: 38px 36px;
  box-shadow: 0 8px 0 #cbe5f7, 0 18px 30px rgba(12, 74, 110, 0.1);
}
.legal-card h3 { display: flex; align-items: center; gap: 11px; font-size: 24px; margin: 0; }
.legal-card h3 .ms { font-size: 24px; color: var(--blue); }
.legal-card p { font: 400 15.5px/1.65 Nunito, sans-serif; color: var(--ink-64); margin: 14px 0 0; }
.legal-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 800 14.5px Nunito, sans-serif;
  margin-top: 16px;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 110px;
  background: var(--navy);
  padding: 120px var(--pad) 40px;
  overflow: hidden;
  color: #fff;
}
.site-footer .wave { top: 0; height: 130px; }
.foot-mascot {
  position: absolute;
  left: 47%;
  bottom: 104px;
  width: 98px;
  height: 98px;
  object-fit: contain;
  transform: rotate(-6deg);
  opacity: 0.92;
}
.foot-row {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.foot-brand { max-width: 320px; }
.foot-brand .brand { color: #fff !important; }
.foot-brand p { font: 400 14.5px/1.6 Nunito, sans-serif; color: rgba(255, 255, 255, 0.55); margin: 14px 0 0; }
.foot-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.foot-cols a { font: 700 14.5px Nunito, sans-serif; color: rgba(255, 255, 255, 0.8); }
.foot-cols a:hover { color: #fff; }
.foot-bot {
  max-width: var(--wrap);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font: 600 13.5px Nunito, sans-serif;
  color: rgba(255, 255, 255, 0.45);
}

/* Legal pages */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px var(--pad) 80px;
  line-height: 1.65;
}
.doc h1 { font-size: 42px; margin: 12px 0 8px; }
.doc .meta { color: var(--ink-64); font-weight: 700; }
.doc a.back { font-weight: 800; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes bobs {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-7px) rotate(-3deg); }
}
@keyframes rise {
  0% { transform: translate(0, 0) scale(0.85); opacity: 0; }
  12% { opacity: 0.85; }
  70% { opacity: 0.7; }
  100% { transform: translate(var(--dx, 6px), calc(-1 * var(--h, 150px))) scale(1.12); opacity: 0; }
}
@keyframes surface {
  0%, 100% { transform: translateX(-3px) scaleY(1); }
  50% { transform: translateX(3px) scaleY(1.35); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-art { height: 780px; margin: 0 auto; width: min(460px, 100%); }
  .phone { left: 50%; transform: translateX(-50%); }
  .mascot-float { right: -10px; }
  .steps, .tiers, .split, .faq-grid, .legal-grid, .priv-grid { grid-template-columns: 1fr; }
  .card.n2, .card.n3 { margin-top: 0; }
  .steps-line, .how-mascot, .week-mascot, .privacy-mascot, .foot-mascot, .get-mascot { display: none; }
  .privacy-card { padding: 48px 24px 40px; }
  .get-card { padding: 48px 28px 52px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav:not(.simple) {
    display: none;
    position: absolute;
    top: 84px;
    right: var(--pad);
    left: var(--pad);
    background: #fff;
    border: 3px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    box-shadow: 0 16px 32px rgba(12, 74, 110, 0.16);
  }
  .nav.open { display: flex; }
  .nav .btn-pill { justify-content: center; }
  .hero-art { height: 700px; }
  .phone { transform: translateX(-50%) scale(0.82); transform-origin: top center; }
  .hero-art { height: 640px; }
  .foot-row { flex-direction: column; }
  .store-btn { width: 100%; }
}

.consent-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 2.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(13, 32, 53, 0.16);
}
.consent-bar p {
  margin: 0;
  flex: 1;
  font: 600 14px/1.4 Nunito, sans-serif;
  color: var(--ink-70);
}
.consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
.consent-ok,
.consent-no {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font: 800 14px Nunito, sans-serif;
  cursor: pointer;
}
.consent-ok {
  background: var(--blue);
  color: #fff;
}
.consent-ok:hover { background: var(--blue-deep); }
.consent-no {
  background: transparent;
  color: var(--ink-70);
  box-shadow: inset 0 0 0 1.5px var(--ink-70);
}
.consent-no:hover { background: rgba(0, 0, 0, 0.05); }
