:root {
  --updates-ink: #0b3750;
  --updates-muted: #334770;
  --updates-blue: #71bfeb;
  --updates-blue-soft: #c1e9ff;
  --updates-blue-stroke: #e4f5ff;
}

* {
  box-sizing: border-box;
}

body.updates-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", serif;
  background: #f7fbff;
  color: var(--updates-ink);
}

.updates-home-button {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid #f0f0f0;
  background: #f4f4f4;
  color: #5e5e5e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 20;
}

.updates-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 120px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.updates-hero {
  display: grid;
  gap: 12px;
  text-align: center;
}

.updates-kicker,
.updates-card-kicker {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 55, 80, 0.78);
  text-align: center;
}

.updates-hero h1,
.updates-card h2
 {
  margin: 0;
  font-family: "Merriweather", serif;
  line-height: 1.02;
  text-align: center;
}

.updates-card p  {
  text-align: center;
}


.updates-hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3rem);
}

.updates-intro,
.updates-card p {
  margin: 0;
  color: var(--updates-muted);
  line-height: 1.5;
}

.updates-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 24px;
  border-radius: 24px;
  border: 2px solid #a2d9f8;
  background: var(--updates-blue);
}

.updates-visual {
  width: 100%;
  min-height: 180px;
  border-radius: 16px;
  display: grid;
  place-items: center;
}

.updates-visual-app img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.updates-visual-nav {
  background: var(--updates-blue-stroke);
  padding: 36px 0;
}

.updates-nav-mini {
  width: 80%;
  max-width: 360px;
  height: 64px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--updates-blue);
  border: 1px solid #a2d9f8;
  display: grid;
  grid-template-columns: repeat(3, 40px);
  justify-content: space-between;
  align-items: center;
}

.updates-nav-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--updates-ink);
}

.updates-nav-mini-icon-active {
  background: #a0dbfc;
}

.updates-nav-mini-icon svg {
  width: 24px;
  height: 24px;
}

.updates-app-link {
  display: inline-flex;
  align-self: center;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.updates-app-link img {
  width: 190px;
  height: auto;
  display: block;
  pointer-events: none;
}

.updates-callout {
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--updates-blue-soft);
  border: 2px solid var(--updates-blue-stroke);
  color: var(--updates-ink);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 640px) {
  .updates-home-button {
    top: 24px;
    left: 24px;
  }

  .updates-shell {
    padding-top: 104px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .updates-card {
    padding: 40px 16px;
  }
}
