:root {
  --ink: #243235;
  --muted: #647174;
  --soft: #fff4ef;
  --soft-2: #edf8f5;
  --paper: #fffdf9;
  --line: #eaded5;
  --coral: #ff8063;
  --coral-dark: #da6047;
  --teal: #4b9b93;
  --gold: #dba95b;
  --shadow: 0 24px 60px rgba(58, 44, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(234, 222, 213, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
nav a.active {
  color: var(--ink);
  background: var(--soft);
}

.header-cta {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 32px));
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fdf1ec;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), var(--paper));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 244, 239, 0.97) 0%, rgba(255, 244, 239, 0.88) 34%, rgba(255, 244, 239, 0.38) 64%, rgba(255, 244, 239, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(52px, 10vw, 116px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #485557;
  font-size: 22px;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  box-shadow: none;
}

.button.primary {
  color: #fff;
  background: var(--coral-dark);
}

.button.primary:hover {
  background: #c9553f;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(36, 50, 53, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(36, 50, 53, 0.12);
  border-radius: 999px;
  color: #445153;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 750;
}

.page-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, var(--soft), var(--paper));
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 78px);
}

.content-section {
  padding: 72px 0;
}

.content-section.band {
  background: var(--soft-2);
  border-block: 1px solid rgba(75, 155, 147, 0.18);
}

.content-section p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.steps,
.feature-grid,
.related-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.steps article,
.feature-grid article,
.related-grid a,
.gallery figure {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(36, 50, 53, 0.07);
}

.steps article,
.feature-grid article,
.related-grid a {
  padding: 22px;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
}

.steps p,
.feature-grid p,
.related-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery figure {
  overflow: hidden;
  margin: 0;
}

.example-art {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 37%, #ffd7c6 0 13%, transparent 14%),
    radial-gradient(circle at 45% 34%, #243235 0 1.5%, transparent 1.7%),
    radial-gradient(circle at 55% 34%, #243235 0 1.5%, transparent 1.7%),
    radial-gradient(circle at 50% 60%, #fffaf5 0 22%, transparent 23%),
    linear-gradient(135deg, #fff3ed, #dff4ee);
}

.example-2 {
  background:
    radial-gradient(circle at 50% 36%, #ffd7c6 0 13%, transparent 14%),
    radial-gradient(circle at 46% 34%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 54% 34%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 50% 62%, #f8eee8 0 23%, transparent 24%),
    linear-gradient(135deg, #edf8f5, #fff9ea);
}

.example-3 {
  background:
    radial-gradient(circle at 50% 34%, #ffd7c6 0 13%, transparent 14%),
    radial-gradient(circle at 45% 32%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 55% 32%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 50% 60%, #fff 0 22%, transparent 23%),
    linear-gradient(135deg, #fff4ef, #ffe4ae);
}

.example-4 {
  background:
    radial-gradient(circle at 50% 35%, #ffd7c6 0 13%, transparent 14%),
    radial-gradient(circle at 45% 33%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 55% 33%, #243235 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 50% 61%, #fbfff9 0 22%, transparent 23%),
    linear-gradient(135deg, #e5f6f0, #ffd6c6);
}

.gallery figcaption {
  padding: 16px;
  color: var(--ink);
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #425053;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.comparison-table {
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(75, 155, 147, 0.25);
  border-radius: 8px;
  background: #fff;
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.15fr;
}

.table-row > div {
  min-width: 0;
  padding: 18px;
  border-top: 1px solid rgba(75, 155, 147, 0.16);
  color: #4d5a5d;
}

.table-row > div:first-child {
  color: var(--ink);
  font-weight: 850;
}

.table-row.heading {
  background: #dff4ee;
}

.table-row.heading > div {
  border-top: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid a {
  display: grid;
  gap: 8px;
}

.cta-band {
  padding: 58px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band .section-label {
  color: #9dd6ce;
}

.cta-band h2 {
  margin-bottom: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer {
  padding: 38px 0;
  background: #1d292b;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

footer strong {
  color: #fff;
}

footer p {
  max-width: 460px;
  margin: 8px 0 0;
}

footer a {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-weight: 750;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(255, 244, 239, 0.98) 0%, rgba(255, 244, 239, 0.9) 45%, rgba(255, 244, 239, 0.36) 100%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-content {
    padding: 72px 0 220px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 76px);
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 19px;
  }

  .steps,
  .feature-grid,
  .gallery,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row.heading {
    display: none;
  }

  .table-row > div {
    border-top: 1px solid rgba(75, 155, 147, 0.16);
  }

  .cta-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .page-hero {
    padding-top: 62px;
  }

  .content-section {
    padding: 54px 0;
  }

  .button {
    width: 100%;
  }
}
