:root {
  color-scheme: light;
  --ink: #17272c;
  --paper: #fbf7ef;
  --white: #fffdf8;
  --teal: #0d7774;
  --coral: #e86f56;
  --gold: #d6a84a;
  --sage: #8fa68f;
  --line: #dfd6c5;
  --muted: #64706e;
  --shadow: 0 18px 48px rgba(23, 39, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(23, 39, 44, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(82vh, 760px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.97) 0%, rgba(251, 247, 239, 0.88) 34%, rgba(251, 247, 239, 0.22) 68%),
    linear-gradient(180deg, rgba(23, 39, 44, 0.06), rgba(23, 39, 44, 0.02));
}

.hero-content {
  position: relative;
  width: min(680px, 92vw);
  padding: clamp(72px, 11vw, 130px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero p {
  max-width: 560px;
  color: #314144;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.hero-actions,
.proof-band,
.launch-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
}

.proof-band {
  justify-content: center;
  padding: 20px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--muted);
  font-weight: 700;
}

.proof-item img {
  width: 28px;
  height: 28px;
}

.section,
.split-section,
.launch-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
}

.intro,
.split-section,
.launch-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro > p,
.split-section p,
.launch-band p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.template-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.template-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.template-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #ecf4ef;
  color: var(--teal);
  font-weight: 900;
}

.split-section {
  border-top: 1px solid var(--line);
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-list a {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.launch-band {
  margin-bottom: 54px;
  padding-inline: clamp(20px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.launch-band .eyebrow {
  color: #f0bd62;
}

.launch-band p {
  color: rgba(255, 253, 248, 0.74);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 760px;
  margin-bottom: 0;
}

footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 78vh;
  }

  .hero-image {
    object-position: center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.64));
  }

  .intro,
  .split-section,
  .launch-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero-content {
    padding-top: 58px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* Pricing section */
.pricing-section .price-line {
  font-size: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}

.pricing-section .price-line strong {
  font-size: 2rem;
}

.pricing-section .button[aria-disabled="true"] {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}
