:root {
  --navy: #102f46;
  --ink: #17364d;
  --muted: #6b899d;
  --brand: #3badd1;
  --brand-deep: #248fb4;
  --brand-light: #72d8e9;
  --blue-pale: #eaf8fd;
  --blue-soft: #f4fbfe;
  --warm: #eef9fd;
  --warm-deep: #dff2f9;
  --line: #c7e8f3;
  --white: #ffffff;
  --coral: #ee6252;
  --mint: #2fbf9f;
  --violet: #8657eb;
  --orange: #f5a21b;
  --display: "Baloo 2", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shadow-sm: 0 10px 28px rgba(16, 47, 70, 0.08);
  --shadow-md: 0 20px 55px rgba(16, 47, 70, 0.14);
  --shadow-lg: 0 34px 84px rgba(16, 47, 70, 0.2);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: -0.025em;
}

.shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(199, 232, 243, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 166px;
  height: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links > a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.18s ease;
}

.nav-links > a:hover {
  color: var(--navy);
}

.language {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--blue-pale);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-button {
  min-width: 34px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-button.active {
  background: var(--brand);
  color: var(--white);
}

.signin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.signin-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button svg,
.text-link svg,
.arrow-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: 0 16px 32px rgba(36, 143, 180, 0.25);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 15%, rgba(114, 216, 233, 0.42), transparent 34%),
    linear-gradient(135deg, #f5fcff 0%, var(--blue-pale) 58%, #ffffff 100%);
}

.hero:before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -260px;
  border: 1px solid rgba(59, 173, 209, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-layout {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  gap: 44px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(46px, 5.3vw, 70px);
  font-weight: 600;
  line-height: 0.98;
}

.hero-lead {
  max-width: 570px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link svg {
  color: var(--brand-deep);
  width: 17px;
  height: 17px;
}

.browser-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
}

.hero-product {
  position: relative;
  min-height: 610px;
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 100px;
  right: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  filter: blur(5px);
}

.desktop-device {
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.desktop-toolbar {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: #f6fafc;
  color: #8ba2b1;
  font-size: 8px;
}

.desktop-toolbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9dce8;
}

.desktop-toolbar i:nth-child(2) {
  background: #f3cf8d;
}

.desktop-toolbar i:nth-child(3) {
  background: #9bdccf;
}

.desktop-toolbar span {
  margin-left: auto;
  margin-right: auto;
}

.desktop-device > img {
  width: 100%;
  border-top: 1px solid var(--line);
}

.phone-device {
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 5px;
  top: 12px;
  left: 50%;
  border-radius: 999px;
  background: rgba(16, 47, 70, 0.75);
  transform: translateX(-50%);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  width: 225px;
  top: 150px;
  right: 46px;
  padding-top: 18px;
  transform: rotate(-1.5deg);
}

.hero-phone img {
  width: 100%;
  border-radius: 23px 23px 27px 27px;
}

.section {
  padding: 94px 0;
}

.section-warm {
  background: var(--warm);
}

.section-blue {
  background: var(--blue-pale);
}

.feature-grid,
.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 80px;
  align-items: center;
}

.feature-grid-reverse {
  grid-template-columns: minmax(500px, 1.1fr) minmax(0, 0.9fr);
}

.feature-copy h2,
.section-heading h2,
.privacy-copy h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.04;
}

.feature-copy > p,
.section-heading > p,
.privacy-copy > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.process-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.process-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(199, 232, 243, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.process-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-deep);
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.process-item b,
.process-item small {
  display: block;
}

.process-item b {
  color: var(--navy);
  font-size: 14.5px;
}

.process-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
}

.screen-stage {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.screen-stage:before {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  content: "";
}

.stage-card {
  position: absolute;
  width: 250px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.stage-card-a {
  transform: translate(-80px, 16px) rotate(-7deg);
}

.stage-card-b {
  transform: translate(76px, -2px) rotate(7deg);
}

.feature-phone {
  position: relative;
  z-index: 2;
  width: 300px;
  padding-top: 18px;
}

.phone-viewport {
  overflow: hidden;
  border-radius: 24px 24px 27px 27px;
}

.phone-viewport img {
  width: 100%;
}

.import-viewport {
  height: 570px;
}

.customize-stage:before {
  background: rgba(255, 255, 255, 0.58);
}

.stage-orbit {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(59, 173, 209, 0.25);
  border-radius: 50%;
}

.stage-orbit:before,
.stage-orbit:after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-light);
  content: "";
}

.stage-orbit:before {
  top: 48px;
  left: 56px;
}

.stage-orbit:after {
  right: 30px;
  bottom: 98px;
  background: var(--violet);
}

.feature-phone-wide {
  width: 318px;
}

.customize-viewport {
  height: 575px;
}

.tracker-chips {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tracker-chips span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey-card {
  min-height: 272px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.journey-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--blue-pale);
  color: var(--brand-deep);
}

.journey-icon svg,
.people-icon svg,
.privacy-symbol svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.journey-card h3,
.people-card h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.journey-card p,
.people-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.report-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
}

.benefit-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
}

.benefit-list li > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(59, 173, 209, 0.13);
}

.report-stage {
  position: relative;
  min-height: 555px;
}

.report-paper {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.report-paper-back {
  width: 76%;
  height: 470px;
  top: 36px;
  right: 6px;
  background: linear-gradient(#ffffff, #f4fbfe);
  transform: rotate(4deg);
}

.report-paper-main {
  width: 82%;
  height: 500px;
  top: 0;
  left: 20px;
  transform: rotate(-1.5deg);
}

.report-paper-main img {
  width: 100%;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.people-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.people-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 17px;
}

.people-icon.coral {
  background: #fff0ed;
  color: var(--coral);
}

.people-icon.violet {
  background: #f2edff;
  color: var(--violet);
}

.people-icon.mint {
  background: #eaf9f5;
  color: var(--mint);
}

.story-section {
  padding-top: 24px;
}

.story-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 60px 68px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(59, 173, 209, 0.24), transparent 34%),
    linear-gradient(135deg, #0d3147, #134c65);
  box-shadow: var(--shadow-md);
}

.story-card:after {
  position: absolute;
  width: 310px;
  height: 310px;
  right: -140px;
  bottom: -180px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.story-mark {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.story-mark img {
  width: 82px;
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.story-content .eyebrow {
  color: var(--brand-light);
}

.story-content blockquote {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(27px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
}

.story-content > p {
  margin-top: 22px;
  color: #c3e4f0;
  font-size: 16px;
  line-height: 1.75;
}

.founder-signature {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.founder-signature > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
}

.founder-signature b,
.founder-signature small {
  display: block;
}

.founder-signature b {
  color: var(--white);
  font-size: 13.5px;
}

.founder-signature small {
  margin-top: 2px;
  color: #8fc8df;
  font-size: 12px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1010px;
}

.privacy-symbol {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(59, 173, 209, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  color: var(--brand-deep);
}

.privacy-symbol svg {
  width: 72px;
  height: 72px;
}

.arrow-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.faq-shell {
  max-width: 900px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-list summary i:before,
.faq-list summary i:after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary i:after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i:after {
  transform: rotate(0);
}

.faq-list details p {
  padding: 0 22px 21px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.closing-section {
  padding: 30px 0 94px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 20px;
  align-items: center;
  padding: 48px 54px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brand-deep), #2aa4c7 58%, var(--brand-light));
  color: var(--white);
}

.closing-card:after {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -190px;
  right: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.closing-card > img {
  position: relative;
  z-index: 1;
  width: 82px;
  padding: 11px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.closing-card > div,
.closing-card .button {
  position: relative;
  z-index: 1;
}

.closing-card > div {
  grid-column: 2;
}

.closing-card .button {
  grid-column: 2;
  width: fit-content;
}

.closing-card .eyebrow {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.82);
}

.closing-card h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.04;
}

footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px minmax(280px, 1fr) auto;
  gap: 38px;
  align-items: center;
}

.footer-grid > img {
  width: 154px;
}

.footer-grid > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 18px;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    z-index: 110;
    display: grid;
    gap: 0;
    padding: 10px 28px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(199, 232, 243, 0.65);
    font-size: 14px;
  }

  .language {
    width: fit-content;
    margin-top: 14px;
  }

  .signin-link {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    padding-top: 70px;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: 700px;
    padding-bottom: 0;
  }

  .hero-product {
    min-height: 620px;
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .feature-grid,
  .feature-grid-reverse,
  .report-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-grid-reverse .screen-stage {
    order: 2;
  }

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

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

  .report-copy {
    max-width: 700px;
  }

  .report-stage {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 160px 1fr;
  }

  .footer-grid nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 70px;
  }

  .shell {
    width: calc(100% - 36px);
  }

  .nav-shell {
    min-height: 68px;
    gap: 14px;
  }

  .brand img {
    width: 142px;
  }

  .nav-links {
    top: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .signin-link {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12.5px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .hero-layout {
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 570px;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.66;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 26px;
  }

  .button {
    min-height: 52px;
  }

  .browser-note {
    max-width: 330px;
    line-height: 1.55;
  }

  .hero-product {
    min-height: 500px;
    margin-top: 8px;
  }

  .hero-glow {
    width: 340px;
    height: 340px;
    top: 88px;
    right: -35px;
  }

  .desktop-device {
    top: 50px;
    left: -42px;
    width: 116%;
    border-width: 6px;
    border-radius: 14px;
    transform: rotate(1deg);
  }

  .desktop-toolbar {
    height: 21px;
  }

  .hero-phone {
    width: min(54vw, 205px);
    top: 108px;
    right: 6px;
    border-width: 7px;
    border-radius: 29px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-copy h2,
  .section-heading h2,
  .privacy-copy h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .feature-copy > p,
  .section-heading > p,
  .privacy-copy > p {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.67;
  }

  .process-item {
    padding: 13px;
  }

  .process-item > span {
    width: 40px;
    height: 40px;
  }

  .screen-stage {
    min-height: 590px;
  }

  .screen-stage:before,
  .stage-orbit {
    width: 340px;
    height: 340px;
  }

  .stage-card {
    width: 190px;
    height: 360px;
  }

  .stage-card-a {
    transform: translate(-57px, 4px) rotate(-7deg);
  }

  .stage-card-b {
    transform: translate(57px, -5px) rotate(7deg);
  }

  .feature-phone,
  .feature-phone-wide {
    width: min(72vw, 285px);
  }

  .import-viewport,
  .customize-viewport {
    height: 520px;
  }

  .tracker-chips {
    gap: 7px;
  }

  .tracker-chips span {
    padding: 8px 11px;
    font-size: 11.5px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .journey-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 16px;
    padding: 20px;
  }

  .journey-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .journey-card h3 {
    margin-top: 2px;
    font-size: 20px;
  }

  .journey-card p {
    margin-top: 5px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .report-stage {
    min-height: 470px;
  }

  .report-paper-back {
    height: 400px;
  }

  .report-paper-main {
    width: 87%;
    height: 420px;
    left: 8px;
  }

  .people-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .people-card {
    min-height: 0;
    padding: 24px;
  }

  .story-section {
    padding-top: 16px;
  }

  .story-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 26px;
    border-radius: 24px;
  }

  .story-mark {
    width: 82px;
    height: 82px;
    border-radius: 21px;
  }

  .story-mark img {
    width: 58px;
  }

  .story-content blockquote {
    font-size: 28px;
  }

  .story-content > p {
    font-size: 15px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-symbol {
    width: 145px;
    height: 145px;
  }

  .privacy-symbol svg {
    width: 52px;
    height: 52px;
  }

  .faq-list summary {
    padding: 17px;
    font-size: 14.5px;
  }

  .faq-list details p {
    padding: 0 17px 18px;
    font-size: 13.5px;
  }

  .closing-section {
    padding: 10px 0 68px;
  }

  .closing-card {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 34px 24px;
  }

  .closing-card > div {
    grid-column: 2;
  }

  .closing-card > img {
    width: 62px;
    padding: 8px;
    border-radius: 16px;
  }

  .closing-card h2 {
    font-size: 31px;
  }

  .closing-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid nav {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 128px;
  }

  .signin-link {
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .desktop-device {
    left: -52px;
    width: 124%;
  }

  .hero-phone {
    width: 190px;
    right: -2px;
  }

}

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

  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}
