:root {
  --cream: #FAF6EC;
  --blue: #7F9BCB;
  --blue-dark: #4D6896;
  --ink: #2E3850;
  --green: #78B875;
  --yellow: #F0C95B;
  --coral: #E4756C;
  --white: #FFFDF8;
  --line: rgba(46, 56, 80, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 40px)); }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: ui-sans-serif, sans-serif;
  font-size: 13px;
  transform: rotate(90deg);
}
nav { display: flex; gap: 28px; font-size: 14px; color: #59647A; }
nav a:hover, .socials a:hover { color: var(--blue-dark); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding: 62px 0 92px;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow.light { color: rgba(255,255,255,.78); }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
h1 { font-size: clamp(54px, 6.5vw, 88px); margin-bottom: 26px; }
h1 em { color: var(--blue); font-style: normal; }
h2 { font-size: clamp(38px, 5vw, 62px); margin-bottom: 24px; }
h3 { font-size: 28px; margin-bottom: 12px; }
.hero-text { max-width: 600px; font-size: 19px; color: #59647A; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: white;
  padding: 10px 18px 11px;
  border-radius: 13px;
  min-width: 176px;
  transition: transform .2s ease;
}
.app-store-button:hover { transform: translateY(-2px); }
.app-store-button small { display: block; font-size: 10px; line-height: 1.1; }
.app-store-button strong { display: block; font-size: 20px; line-height: 1.05; letter-spacing: -.02em; }
.apple { font-size: 25px; line-height: 1; }
.text-link { color: var(--blue-dark); font-weight: 700; font-size: 14px; }
.launch-note { color: #8D94A2; font-size: 12px; margin-top: 12px; }

.hero-art { position: relative; min-height: 530px; display: grid; place-items: center; }
.phone-card {
  position: relative;
  z-index: 2;
  width: min(330px, 85vw);
  min-height: 510px;
  background: var(--white);
  border: 1px solid rgba(127, 155, 203, .24);
  border-radius: 42px;
  padding: 30px 24px;
  box-shadow: 0 30px 70px rgba(77, 104, 150, .16);
  transform: rotate(2.5deg);
}
.phone-top { display: flex; justify-content: space-between; color: var(--blue-dark); font-family: Georgia, serif; font-weight: 700; }
.tiny-smile { font-family: sans-serif; transform: rotate(90deg); }
.phone-kicker { margin: 72px 4px 18px; font-size: 13px; color: #7D879B; }
.mode { display: flex; justify-content: space-between; align-items: center; padding: 19px 18px; border-radius: 19px; margin: 11px 0; font-family: Georgia, serif; font-size: 22px; font-weight: 700; }
.mode-focus { background: rgba(120,184,117,.28); }
.mode-plan { background: rgba(240,201,91,.31); }
.mode-reset { background: rgba(228,117,108,.25); }
.phone-note { margin-top: 55px; text-align: center; color: var(--blue-dark); font-family: Georgia, serif; font-style: italic; }
.dot { position: absolute; border-radius: 50%; z-index: 1; }
.dot-one { width: 150px; height: 150px; background: rgba(120,184,117,.55); top: 36px; right: 18px; }
.dot-two { width: 90px; height: 90px; background: rgba(240,201,91,.68); bottom: 40px; left: 20px; }
.dot-three { width: 56px; height: 56px; background: rgba(228,117,108,.65); top: 165px; left: 0; }

.section-blue { background: var(--blue); color: white; padding: 110px 0; }
.section-blue h2 { max-width: 820px; }
.section-blue > .shell > p:not(.eyebrow) { max-width: 760px; font-size: 18px; color: rgba(255,255,255,.88); }
.three-up { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 62px; }
.three-up article { padding: 30px 28px 28px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 24px; }
.three-up article p { color: rgba(255,255,255,.82); }
.number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--ink); font-weight: 800; font-size: 12px; margin-bottom: 30px; }
.number.green { background: var(--green); }
.number.yellow { background: var(--yellow); }
.number.coral { background: var(--coral); }

.story { padding: 120px 0; }
.story-card { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 0; }
.story-card h2 { max-width: 800px; }
.story-card > p:not(.eyebrow):not(.signature) { max-width: 760px; font-size: 18px; color: #59647A; }
.signature { margin-top: 32px; color: var(--blue-dark); font-family: Georgia, serif; font-style: italic; font-size: 18px; }

.cta { background: #EEF1F7; padding: 82px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 0; }
.inverted { background: var(--blue-dark); flex: 0 0 auto; }

.site-footer { padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { color: #6F788A; max-width: 500px; }
.email { display: inline-block; color: var(--blue-dark); font-weight: 800; margin-top: 4px; border-bottom: 1px solid rgba(77,104,150,.35); }
.socials { display: flex; flex-direction: column; min-width: 130px; gap: 8px; }
.socials p { margin: 0 0 7px; text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800; }
.socials a { font-weight: 700; }
.legal { display: flex; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 56px; padding-top: 22px; font-size: 12px; color: #9399A6; }

@media (max-width: 820px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 44px; }
  .hero-art { min-height: 570px; }
  .three-up { grid-template-columns: 1fr; }
  .cta-inner, .footer-grid { display: grid; grid-template-columns: 1fr; }
  .cta-inner { justify-items: start; }
}

@media (max-width: 520px) {
  .shell, .narrow { width: min(100% - 28px, 1120px); }
  .site-header { width: calc(100% - 28px); height: 72px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { min-height: auto; padding-bottom: 64px; }
  h1 { font-size: 50px; }
  .hero-text { font-size: 17px; }
  .hero-art { min-height: 510px; }
  .phone-card { transform: none; min-height: 470px; }
  .phone-kicker { margin-top: 58px; }
  .section-blue { padding: 84px 0; }
  .story { padding: 76px 0; }
  .story-card { padding: 56px 0; }
  .cta { padding: 64px 0; }
  .legal { flex-direction: column; gap: 6px; }
}
