:root {
  --ink: #0d1b35;
  --muted: #526174;
  --paper: #f8fafc;
  --line: #dbe3e9;
  --accent: #c9a84c;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
}
.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}
.mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}
.nav a {
  text-decoration: none;
}
.nav a:hover {
  text-decoration: underline;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
  padding: 68px 0 60px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #77632f;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0 0 22px;
  text-wrap: balance;
}
.lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 13px 23px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background 0.15s;
}
.btn:hover {
  background: #28456d;
}
.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.secondary:hover {
  background: #edf1f5;
}
.subtle {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.gift {
  margin-top: 18px;
}
.photo {
  margin: 0;
  position: relative;
}
.photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 26px;
}
.caption {
  position: relative;
  margin: -24px 20px 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: 0 12px 30px #0d1b3508;
}
.caption strong {
  display: block;
}
.caption span {
  color: var(--muted);
}
.strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.strip span:before {
  content: "✓";
  margin-right: 10px;
  color: #48775f;
}
.section {
  padding: 76px 0;
}
.section h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.17;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-intro {
  max-width: 630px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 34px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 26px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}
.num {
  font-size: 12px;
  color: #77632f;
  font-weight: 800;
}
.card h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  letter-spacing: -0.02em;
}
.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.scenario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.scenario h2 {
  font-size: 32px;
}
.example {
  padding: 26px;
  background: #f2f5f8;
  border-radius: 18px;
}
.example-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 18px;
}
.bubble {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 15px;
  padding: 18px;
  border-radius: 15px;
  background: white;
}
.bubble:last-child {
  margin-bottom: 0;
  background: #e8eee9;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step h3 {
  font-size: 16px;
}
.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.faq {
  max-width: 760px;
  margin: auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  padding: 20px 0;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.faq details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 22px;
}
.final {
  padding: 50px 24px;
  text-align: center;
  background: #edf2ee;
  border-radius: 24px;
}
.final p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 530px;
  margin: 16px auto 25px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
}
.footer p {
  margin: 0;
  max-width: 640px;
  line-height: 1.8;
}
.footer nav {
  display: flex;
  gap: 18px;
}
.skip {
  position: absolute;
  top: -80px;
  left: 16px;
  background: white;
  padding: 14px;
  z-index: 10;
}
.skip:focus {
  top: 12px;
}
@media (max-width: 780px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header {
    height: 68px;
  }
  .nav {
    gap: 12px;
  }
  .nav .section-link {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .hero h1 {
    font-size: 42px;
    max-width: 560px;
  }
  .lead {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .photo img {
    aspect-ratio: 1.5;
  }
  .hero .btn {
    width: 100%;
  }
  .strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
    font-size: 12px;
  }
  .section {
    padding: 48px 0;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card {
    padding: 22px;
  }
  .card h3 {
    margin-top: 10px;
  }
  .scenario {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .scenario h2 {
    font-size: 29px;
  }
  .example {
    padding: 16px;
  }
  .footer {
    flex-direction: column;
  }
  .caption {
    margin: -18px 14px 0;
    padding: 13px 16px;
  }
  .eyebrow {
    margin-bottom: 16px;
  }
  .final .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}

/* SmartApps family: distinct app colours and a shared, accessible hierarchy. */
:root {
  --paper: #fafbf9;
  --muted: #435167;
  --line: #d6dfe5;
  --app-tint: #e7e1f5;
  --app-deep: #604483;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.headline-accent {
  display: block;
  color: var(--app-deep);
}
.eyebrow {
  color: var(--app-deep);
  letter-spacing: 0.12em;
}
.hero .eyebrow {
  display: inline-block;
  background: var(--app-tint);
  padding: 9px 13px;
  border-radius: 999px;
}
.mark {
  background: var(--app-tint);
  color: var(--app-deep);
  border: 1px solid var(--line);
}
.nav a:last-child {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.photo {
  background: var(--app-tint);
  border-radius: 30px;
  padding: 12px 12px 0;
}
.photo img {
  border-radius: 22px;
}
.caption {
  background: var(--ink);
  color: #fff;
  border: 0;
  margin: -24px 12px 0;
  padding: 20px;
}
.caption span {
  color: #dce5f1;
}
.strip {
  background: var(--app-tint);
  border: 0;
  border-radius: 18px;
  padding: 22px 26px;
  color: var(--ink);
}
.strip span:before {
  color: var(--app-deep);
}
.section h2,
.scenario h2 {
  max-width: 820px;
  font-size: clamp(29px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.card {
  background: var(--app-tint);
  border: 0;
  border-radius: 22px;
  padding: 28px;
}
.card:nth-child(2) {
  background: #e7e1f5;
}
.card:nth-child(3) {
  background: #f9e6d8;
}
.card h3,
.step h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.num {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
}
.card p,
.step p {
  color: #34455a;
  line-height: 1.65;
}
.scenario {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
}
.example {
  background: var(--app-tint);
}
.bubble:last-child {
  background: var(--ink);
  color: #fff;
}
.step {
  border-top: 3px solid var(--app-deep);
  padding-top: 24px;
}
.final {
  background: var(--ink);
  color: #fff;
  padding: 56px 32px;
  border-radius: 28px;
}
.final h2 {
  margin-left: auto;
  margin-right: auto;
}
.final p {
  color: #dce5f1;
}
.final .btn {
  background: var(--app-tint);
  color: var(--ink);
}
.final .btn:hover {
  background: #fff;
}
.mobile-copy {
  display: none;
}
@media (max-width: 780px) {
  .desktop-copy {
    display: none;
  }
  .mobile-copy {
    display: inline;
  }
  .hero {
    padding-top: 32px;
    gap: 26px;
  }
  .hero h1 {
    font-size: clamp(36px, 9.8vw, 48px);
    line-height: 1.1;
  }
  .lead {
    line-height: 1.65;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .photo {
    padding: 8px 8px 0;
    border-radius: 24px;
  }
  .caption {
    margin: -18px 8px 0;
    padding: 14px 16px;
  }
  .strip {
    padding: 18px;
    gap: 12px 18px;
  }
  .section h2,
  .scenario h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .section-intro {
    margin-bottom: 24px;
    line-height: 1.65;
  }
  .card {
    padding: 22px;
  }
  .card h3,
  .step h3 {
    font-size: 19px;
  }
  .scenario {
    padding: 24px;
  }
  .scenario .btn {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .final {
    padding: 36px 22px;
  }
}

.card:nth-child(2) {
  background: #d9f0e5;
}
