:root {
  --ink: #191b18;
  --ink-soft: #4f554d;
  --paper: #f7f7f1;
  --white: #fffdfa;
  --line: #dfe3db;
  --copper: #d96d37;
  --copper-dark: #a84824;
  --teal: #147a6e;
  --mint: #e3f2ed;
  --charcoal: #111410;
  --shadow: 0 26px 70px rgba(18, 24, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 122, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #fcfcf8 0%, var(--paper) 54%, #eff4f1 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 27, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 27, 24, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(25, 27, 24, 0.12);
  background: rgba(255, 253, 250, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(17, 20, 16, 0.08);
}

.brand,
.nav-links,
.nav-cta {
  min-height: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--ink);
}

.nav-cta {
  border: 1px solid var(--ink);
  background: var(--charcoal);
  color: var(--white);
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 90px);
  padding: 68px 0 40px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

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

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 104px);
}

h2 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-text {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 20, 16, 0.13);
}

.button-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper-dark);
}

.button-secondary {
  background: transparent;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stats div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 253, 250, 0.78);
}

.hero-stats dt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  width: 56%;
  height: 52%;
  border: 1px solid rgba(25, 27, 24, 0.15);
  background: var(--mint);
  transform: translate(22px, -18px);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span {
  padding: 18px 10px;
  border-inline-end: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-inline-end: 0;
}

.split-section,
.pricing-section,
.process-section,
.proof-section {
  padding: 108px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 18px 45px rgba(17, 20, 16, 0.06);
}

.service-card {
  min-height: 300px;
  padding: 28px;
}

.card-index,
.plan-name {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.proof-copy p,
.plan-note,
.contact-copy p,
.process-list p {
  color: var(--ink-soft);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.proof-copy p {
  max-width: 620px;
  font-size: 17px;
}

.demo-board {
  border: 1px solid var(--ink);
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.demo-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1fr;
  gap: 22px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.demo-row:last-child {
  border-bottom: 0;
}

.demo-row span {
  color: rgba(255, 255, 255, 0.68);
}

.price-card {
  min-height: 500px;
  padding: 28px;
}

.price-card.featured {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-18px);
}

.price-card h3 {
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.price-card h3 span {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 20px;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: var(--copper);
}

.price-card.featured .plan-note,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.process-list li {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 253, 250, 0.75);
}

.process-list span {
  display: block;
  margin-bottom: 70px;
  color: var(--copper-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 54px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 74px;
  padding: 54px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(227, 242, 237, 0.96));
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 27, 24, 0.22);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 122, 110, 0.12);
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.form-alert {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.82);
  padding: 14px 15px;
  font-size: 14px;
  font-weight: 800;
}

.form-alert.success {
  border-color: rgba(20, 122, 110, 0.35);
  color: var(--teal);
}

.form-alert.error {
  border-color: rgba(217, 109, 55, 0.45);
  color: var(--copper-dark);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thanks-panel {
  width: min(760px, 100%);
  border: 1px solid var(--ink);
  background: rgba(255, 253, 250, 0.9);
  box-shadow: var(--shadow);
  padding: clamp(32px, 7vw, 74px);
}

.thanks-panel h1 {
  font-size: clamp(48px, 9vw, 92px);
  margin-bottom: 22px;
}

.thanks-panel p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 32px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    max-width: 720px;
  }

  .service-grid,
  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-band,
  .trust-strip,
  .contact-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    margin-top: 12px;
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    gap: 34px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

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

  .hero-stats,
  .trust-strip,
  .service-grid,
  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .split-section,
  .pricing-section,
  .process-section,
  .proof-section {
    padding: 76px 0;
  }

  .service-card,
  .price-card {
    min-height: auto;
  }

  .demo-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .contact-section {
    padding: 26px;
    margin-bottom: 44px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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