:root {
  --bg: #fefcf3;
  --cream: #fdf4d8;
  --line: rgba(51, 51, 51, 0.18);
  --text: #333333;
  --muted: rgba(51, 51, 51, 0.6);
  --accent: #facc39;
  --serif: 'Times New Roman', Times, serif;
  --sans: Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 400;
}
.page {
  min-height: 100vh;
  background: radial-gradient(
      circle at 83% 8%,
      rgba(255, 223, 92, 0.62),
      rgba(255, 223, 92, 0.08) 21%,
      transparent 42%
    ),
    var(--bg);
}
.container {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  height: 58px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  background: var(--bg);
  position: relative;
  z-index: 3;
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #111;
}
.brand-face {
  width: 18px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  font-size: 11px;
}
.nav a,
.back-link {
  color: #111;
  text-decoration: none;
}
.header-cta {
  border: 1px solid #111;
  padding: 8px 15px;
  font-size: 11px;
  text-decoration: none;
  color: #111;
}
.back-link {
  font-size: 12px;
  color: #555;
}
.hero {
  padding: 95px 0 80px;
}
.kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #5d5d5d;
  margin: 0 0 27px;
}
.display {
  font-size: clamp(58px, 8vw, 106px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin: 0;
  font-weight: 400;
}
.display .muted {
  color: #545454;
}
.display em {
  font-style: italic;
  letter-spacing: -0.06em;
}
.mark {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.mark:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.03em;
  right: -0.04em;
  bottom: 0.08em;
  height: 0.25em;
  background: var(--accent);
}
.lead {
  font-size: 20px;
  line-height: 1.45;
  max-width: 760px;
  margin: 56px 0 36px;
}
.btn-row {
  display: flex;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #fff;
  border: 1px solid #050505;
  min-height: 42px;
  padding: 0 26px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.btn.secondary {
  background: transparent;
  color: #111;
  border-color: var(--line);
  font-weight: 400;
}
.hero-meta {
  margin-top: 94px;
  border-top: 1px solid #999;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: var(--sans);
  font-size: 9px;
  color: #555;
  padding-top: 16px;
}
.section {
  border-top: 1px solid var(--line);
  padding: 115px 0;
}
.section.split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.section.center .container {
  text-align: center;
}
.medium-title {
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
  font-weight: 400;
}
.text-block {
  max-width: 520px;
}
.text-block p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.muted-p {
  color: #666;
}
.list-lines {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
}
.list-lines div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 17px;
}
.list-lines span {
  font-family: var(--sans);
  font-size: 10px;
  color: #777;
}
.warm {
  background: #fff4d8;
}
.steps-grid {
  margin-top: 76px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.step {
  min-height: 160px;
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--bg);
}
.step:nth-child(2n) {
  border-right: 0;
}
.step:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.num {
  font-style: italic;
  font-size: 16px;
  color: #555;
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
}
.num small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.step h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 12px;
}
.step p {
  font-family: var(--sans);
  font-size: 11px;
  color: #555;
  margin: 0;
  line-height: 1.45;
}
.final-cta {
  padding: 130px 0 130px;
  text-align: center;
}
.final-cta .kicker {
  margin-bottom: 28px;
}
.final-cta .display {
  font-size: clamp(54px, 7vw, 91px);
  max-width: 830px;
  margin-inline: auto;
}
.final-cta .btn {
  margin-top: 38px;
}
.site-footer {
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10px;
  color: #555;
  padding: 46px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 60px;
}
.install-grid h3 {
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 21px;
}
.install-grid p,
.cards p,
.app-lead {
  font-family: var(--sans);
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}
.app-hero {
  padding: 105px 0 88px;
}
.app-hero .display {
  max-width: 940px;
}
.app-hero .lead {
  max-width: 800px;
  margin-top: 48px;
}
.feature-cards {
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.cards {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  padding: 45px 36px 40px;
  border-right: 1px solid var(--line);
  min-height: 180px;
}
.card:last-child {
  border-right: 0;
}
.card .num {
  margin-bottom: 34px;
}
.card h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 16px;
}
.moment {
  background: #fff4d8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 105px 0;
  text-align: center;
}
.moment h2 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin: 0 0 28px;
}
.moment p {
  line-height: 1.35;
  color: #555;
  margin: 0 auto 40px;
  max-width: 520px;
}
.edit-badge {
  position: fixed;
  right: 12px;
  bottom: 10px;
  background: #111;
  color: #fff;
  border-radius: 7px;
  padding: 6px 10px;
  font: 10px var(--sans);
  opacity: 0.95;
}
.edit-badge span {
  color: #ff6a5f;
}
@media (max-width: 800px) {
  .container {
    width: min(100% - 32px, 1220px);
  }
  .site-header {
    height: 56px;
  }
  .nav {
    display: none;
  }
  .brand-face {
    width: 16px;
    height: 22px;
  }
  .brand-name {
    font-size: 17px;
  }
  .hero,
  .app-hero {
    padding: 70px 0;
  }
  .display {
    font-size: 56px;
    letter-spacing: -0.055em;
  }
  .lead {
    font-size: 18px;
    margin-top: 36px;
  }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 60px;
  }
  .section {
    padding: 75px 0;
  }
  .section.split .container,
  .install-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .medium-title {
    font-size: 46px;
  }
  .steps-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .step,
  .card,
  .step:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .step:last-child,
  .card:last-child {
    border-bottom: 0;
  }
  .final-cta {
    padding: 90px 0;
  }
  .site-footer .container {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .btn-row {
    flex-wrap: wrap;
  }
  .header-cta {
    display: none;
  }
}
