:root {
  --ink: #201b1b;
  --wine: #70273a;
  --rose: #d88b91;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --muted: #706867;
  --line: #e7ddd4;
  --gold: #b9863b;
  --max: 1120px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a {
  color: var(--wine);
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.nav {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.brand span {
  color: var(--wine);
}
.links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}
.links a {
  text-decoration: none;
  color: var(--ink);
}
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 80% 15%, #efc7bf, transparent 30%), var(--cream);
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--wine);
  font:
    bold 0.76rem Arial,
    sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero h1,
.article h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 850px;
  margin: 0;
}
.hero .lede {
  max-width: 650px;
  font-size: 1.2rem;
  color: var(--muted);
  margin: 26px 0;
}
.button {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  padding: 14px 19px;
  font:
    bold 0.9rem Arial,
    sans-serif;
}
.note {
  font:
    0.82rem Arial,
    sans-serif;
  color: var(--muted);
  margin-top: 12px;
}
.section {
  padding: 68px 0;
}
.section h2,
.article h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.card h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.dark {
  background: var(--ink);
  color: #fff;
}
.dark p {
  color: #e9dfd8;
}
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step:before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  color: var(--rose);
  font:
    bold 1.1rem Arial,
    sans-serif;
  margin-bottom: 13px;
}
.article {
  max-width: 760px;
  padding: 64px 0 88px;
}
.article header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 35px;
  margin-bottom: 42px;
}
.article h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
}
.article .intro {
  font-size: 1.18rem;
  color: var(--muted);
}
.article h2 {
  margin-top: 42px;
  font-size: 2rem;
}
.article li {
  margin: 0.55rem 0;
}
.related {
  margin-top: 48px;
  padding: 26px;
  background: #f4ece4;
}
.related a {
  display: block;
  margin: 8px 0;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font:
    0.82rem Arial,
    sans-serif;
}
.footer a {
  margin-right: 14px;
}
@media (max-width: 700px) {
  .hero {
    padding: 58px 0;
  }
  .grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .links {
    gap: 12px;
  }
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .section {
    padding: 48px 0;
  }
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: end;
  margin-top: 36px;
}
.phone-shot {
  display: block;
  width: 100%;
  max-width: 255px;
  margin: auto;
  border: 7px solid #211c1d;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(32, 27, 27, 0.2);
}
.screenshot-card {
  text-align: center;
}
.screenshot-card h3 {
  margin: 16px 0 0;
  font-size: 1.18rem;
}
.screenshot-card p {
  margin: 4px 0 0;
  color: var(--muted);
}
.contact-card {
  max-width: 680px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
}
.contact-card a {
  font-size: 1.1rem;
  font-weight: bold;
}
@media (max-width: 700px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .phone-shot {
    max-width: 230px;
  }
}
