:root {
  --ink: #123230;
  --deep: #103f3c;
  --deep-2: #0b302e;
  --mint: #dff1e9;
  --mint-2: #c8e8dd;
  --paper: #fffaf1;
  --paper-2: #f7efdf;
  --coral: #ee775f;
  --coral-dark: #c9503d;
  --white: #ffffff;
  --muted: #5d7471;
  --line: rgba(16, 63, 60, 0.16);
  --shadow: 0 24px 70px rgba(18, 50, 48, 0.13);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(223, 241, 233, 0.72), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--deep);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.4rem 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  place-items: center;
}

.brand-mark svg {
  width: 1.55rem;
  fill: currentColor;
}

.brand-mark .brand-spark {
  fill: var(--coral);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--deep);
}

.nav-cta {
  padding: 0.64rem 1rem;
  color: var(--white);
  background: var(--deep);
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  background: var(--deep-2);
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  min-height: 760px;
  margin: 0 auto;
  padding: 5.8rem 0 6.6rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--coral-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.047em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.7rem;
  font-size: clamp(3.75rem, 6.35vw, 6.25rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 4.5vw, 4.5rem);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.78rem 1.4rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(238, 119, 95, 0.45);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(201, 80, 61, 0.22);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-dark {
  color: var(--white);
  background: var(--deep);
}

.button-dark:hover {
  background: var(--deep-2);
}

.text-link {
  font-size: 0.87rem;
  font-weight: 800;
}

.trust-list {
  display: flex;
  margin: 0;
  padding: 0;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  font-size: 0.79rem;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.1rem;
}

.trust-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 0.44rem;
  height: 0.44rem;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  padding: 1.4rem;
}

.hero-visual::before {
  position: absolute;
  inset: -8% -6% 6% 8%;
  z-index: -1;
  content: "";
  background: var(--mint-2);
  border-radius: 47% 53% 59% 41% / 55% 38% 62% 45%;
  transform: rotate(-4deg);
}

.review-window {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 63, 60, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.window-bar {
  display: flex;
  height: 3.3rem;
  padding: 0 1.1rem;
  align-items: center;
  gap: 0.42rem;
  background: #f7f7f4;
  border-bottom: 1px solid #ecece6;
}

.window-bar span {
  width: 0.55rem;
  height: 0.55rem;
  background: #d4d6cf;
  border-radius: 50%;
}

.window-bar span:first-child {
  background: var(--coral);
}

.window-bar p {
  margin: 0 0 0 auto;
  color: #7b8886;
  font-size: 0.68rem;
  font-weight: 750;
}

.review-card {
  padding: clamp(1.7rem, 4vw, 2.7rem);
}

.review-heading {
  display: flex;
  margin-bottom: 1.4rem;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-weight: 850;
  place-items: center;
}

.review-heading strong {
  display: block;
  font-size: 0.8rem;
}

.stars {
  color: #e5a642;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.review-text {
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.32;
}

.reply-card {
  padding: 1.25rem 1.35rem;
  color: #244946;
  background: var(--mint);
  border-left: 3px solid var(--coral);
  border-radius: 0 16px 16px 0;
}

.reply-label,
.example-response span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--coral-dark);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reply-card p {
  margin: 0;
  font-size: 0.84rem;
}

.visual-note {
  position: absolute;
  display: inline-flex;
  padding: 0.58rem 0.85rem;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(18, 50, 48, 0.1);
  font-size: 0.7rem;
  font-weight: 800;
}

.note-one {
  top: 7%;
  right: -4%;
  transform: rotate(4deg);
}

.note-two {
  bottom: 3%;
  left: -6%;
  transform: rotate(-4deg);
}

.problem-section,
.offer-section,
.sample-section {
  display: grid;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.problem-section {
  padding: 7rem 0;
  align-items: start;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.18fr 0.95fr 0.78fr;
  gap: 3rem;
}

.section-number {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.problem-copy {
  padding-top: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.problem-copy p:last-child {
  margin-bottom: 0;
}

.offer-section {
  padding: 7rem 0;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.offer-intro > p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
}

.price-card {
  padding: clamp(2rem, 4vw, 3.3rem);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-topline {
  display: flex;
  margin-bottom: 2.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.price-note {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.capacity-badge {
  padding: 0.48rem 0.75rem;
  color: var(--coral-dark);
  background: #fff0e9;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
}

.deliverables {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.deliverables li {
  display: grid;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 2.4rem 1fr;
  gap: 0.7rem;
}

.deliverables > li > span {
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.deliverables strong {
  display: block;
  margin-bottom: 0.25rem;
}

.deliverables p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-card .button {
  width: 100%;
}

.microcopy {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.examples-section {
  padding: 7rem max(1.5rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--deep);
}

.examples-section .eyebrow {
  color: #ffab98;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.example-card {
  display: flex;
  min-height: 430px;
  padding: 1.7rem;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.accent-card {
  color: var(--ink);
  background: var(--mint-2);
}

.example-type {
  margin-bottom: 2rem;
  color: #ffd0c4;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accent-card .example-type {
  color: var(--coral-dark);
}

blockquote {
  margin: 0 0 auto;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.22;
}

.example-response {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.accent-card .example-response {
  border-top-color: rgba(16, 63, 60, 0.16);
}

.example-response p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.8rem;
}

.accent-card .example-response p {
  color: #355c58;
}

.process-section,
.faq-section {
  padding: 7rem max(1.5rem, calc((100vw - 1180px) / 2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step {
  padding: 1.6rem 1.5rem 1.8rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.process-step > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 3rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
  place-items: center;
}

.process-step h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.sample-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  color: var(--white);
  background: var(--deep);
  border-radius: 32px;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.sample-section .eyebrow {
  color: #ffab98;
}

.sample-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-callout {
  margin-top: 2rem;
  padding: 1.15rem 1.2rem;
  color: var(--ink);
  background: var(--mint-2);
  border-radius: 15px;
}

.privacy-callout strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
}

.privacy-callout p {
  margin: 0;
  font-size: 0.73rem;
}

.sample-form {
  padding: 2rem;
  color: var(--ink);
  background: var(--paper);
  border-radius: 20px;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.field input {
  width: 100%;
  height: 3.05rem;
  padding: 0 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 63, 60, 0.22);
  border-radius: 10px;
}

.field input:focus {
  border-color: var(--coral);
}

.check-field {
  display: grid;
  margin: 1.2rem 0;
  align-items: start;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.6rem;
}

.check-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--coral);
}

.sample-form .button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 0.55rem;
  color: var(--deep);
  background: var(--mint);
  border-radius: 8px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
}

details p {
  margin: 0.8rem 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

footer {
  display: flex;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4rem 0;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  gap: 3rem;
}

.footer-brand > p {
  max-width: 400px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.footer-meta p {
  margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(620px, 100%);
    justify-self: center;
  }

  .problem-section {
    grid-template-columns: 0.15fr 1fr;
  }

  .problem-copy {
    grid-column: 2;
  }

  .offer-section,
  .sample-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .offer-intro {
    max-width: 700px;
  }

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

  .example-card {
    min-height: 340px;
  }
}

@media (max-width: 650px) {
  body::before {
    display: none;
  }

  .hero-visual::before {
    right: 0;
  }

  .site-header,
  .hero,
  .problem-section,
  .offer-section,
  .sample-section,
  footer {
    width: min(100% - 2rem, 1180px);
  }

  .site-header {
    padding: 1rem 0;
  }

  .brand {
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 0.58rem 0.78rem;
    font-size: 0.72rem;
  }

  .hero {
    padding: 3.8rem 0 5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    flex-direction: column;
  }

  .hero-visual {
    padding: 0.5rem;
  }

  .note-one {
    top: -2%;
    right: -1%;
  }

  .note-two {
    bottom: -4%;
    left: 1%;
  }

  .problem-section {
    padding: 5rem 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .problem-copy {
    padding-top: 0;
    grid-column: auto;
  }

  .offer-section,
  .process-section,
  .faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .offer-section {
    gap: 2rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .price-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .examples-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .process-step > span {
    margin-bottom: 1.4rem;
  }

  .sample-section {
    margin-top: 0;
    padding: 1.5rem;
    border-radius: 22px;
    gap: 2rem;
  }

  .sample-form {
    padding: 1.3rem;
  }

  .faq-section {
    gap: 1rem;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.legal-links {
  display: flex;
  margin: 0.55rem 0;
  justify-content: flex-end;
  gap: 0.8rem;
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(820px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0 7rem;
}

.legal-shell .brand {
  margin-bottom: 5rem;
}

.legal-shell h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.legal-lead {
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 2.6rem 0 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-notice {
  margin-top: 3rem;
  padding: 1.2rem 1.3rem;
  background: var(--mint);
  border-left: 3px solid var(--coral);
  border-radius: 0 14px 14px 0;
}

@media (max-width: 650px) {
  .legal-links {
    justify-content: flex-start;
  }

  .legal-shell {
    width: min(100% - 2rem, 820px);
    padding-top: 2rem;
  }

  .legal-shell .brand {
    margin-bottom: 3.5rem;
  }
}
