:root {
  --bg: #ffffff;
  --bg-soft: #fff6f1;
  --bg-muted: #f6f8f7;
  --ink: #172033;
  --muted: #667085;
  --line: #e7e9ee;
  --peach: #ff6f5e;
  --peach-dark: #db4f40;
  --peach-soft: #ffe2da;
  --green: #118579;
  --green-soft: #e5f5f1;
  --blue-soft: #eef4ff;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.13);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p,
ul {
  margin: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-footer a:hover {
  color: var(--peach-dark);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 780;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.nav-action {
  padding: 0 16px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.14);
}

.button {
  padding: 0 18px;
}

.button-primary {
  background: var(--peach);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 111, 94, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-1px);
}

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

.button-secondary:hover {
  border-color: #cdd4df;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.25fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 62px) 24px clamp(38px, 5vw, 58px);
  overflow: hidden;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-weight: 860;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(2.8rem, 5.3vw, 4.75rem);
  line-height: 1;
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  display: block;
  height: 34px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18px 17px, #ff7a6c 0 5px, transparent 6px),
    radial-gradient(circle at 38px 17px, #ffc45f 0 5px, transparent 6px),
    radial-gradient(circle at 58px 17px, #58c690 0 5px, transparent 6px),
    #ffffff;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: top left;
}

.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 104px) 24px clamp(32px, 5vw, 60px);
}

.page-hero-center {
  text-align: center;
}

.page-hero-center .page-hero-copy,
.page-hero-center p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.section {
  padding: clamp(56px, 7vw, 92px) 24px;
}

.section-tight {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid #ffe3d8;
  border-bottom: 1px solid #ffe3d8;
}

.section-muted {
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-proof {
  background: var(--green-soft);
  border-top: 1px solid #cce7df;
  border-bottom: 1px solid #cce7df;
}

.section-split,
.proof-layout,
.feature-band,
.pricing-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.feature-band-reverse > div {
  order: 2;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 830;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.section p,
.access p,
.price-card p,
.pricing-notes p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
}

.outcome-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 111, 94, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
}

.panel-label {
  color: var(--peach-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outcome-panel article {
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(231, 233, 238, 0.86);
  border-radius: 8px;
  background: #ffffff;
}

.outcome-panel h3 {
  font-size: 1.1rem;
}

.outcome-panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-list article {
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 111, 94, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.signal-list strong,
.metric-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.signal-list span,
.metric-panel span {
  color: var(--muted);
}

.steps-grid,
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.steps-grid article,
.compact-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps-grid article,
.compact-grid article {
  padding: 24px;
}

.steps-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--peach-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.steps-grid p,
.compact-grid p {
  margin-top: 12px;
  color: var(--muted);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.workflow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 111, 94, 0.28);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--peach-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.workflow-list p {
  margin-top: 12px;
  color: var(--muted);
}

.metric-panel {
  display: grid;
  gap: 12px;
}

.metric-panel div {
  padding: 19px 20px;
  border: 1px solid #cce7df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

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

.feature-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 5px rgba(255, 111, 94, 0.14);
}

.feature-proof-column {
  display: grid;
  gap: 18px;
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.1);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-shot-wide img {
  object-position: top left;
}

.product-shot figcaption {
  padding: 13px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

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

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

.price-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  min-height: 485px;
  padding: 26px;
}

.price-card h2 {
  font-size: 1.6rem;
}

.price {
  margin-top: 16px;
  color: var(--ink);
  font-size: 2.7rem;
  font-weight: 860;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 740;
}

.price-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.featured-price {
  border-color: rgba(255, 111, 94, 0.46);
  box-shadow: 0 20px 48px rgba(255, 111, 94, 0.16);
}

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

.pricing-notes h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.access {
  padding: 0 24px 72px;
}

.access-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 56px);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.access h2 {
  max-width: 740px;
}

.access p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.access .button-primary {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--peach-dark);
  box-shadow: none;
}

.access .button-primary:hover {
  background: var(--peach-soft);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  font-weight: 750;
}

@media (max-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero,
  .section-split,
  .proof-layout,
  .feature-band,
  .pricing-notes,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .feature-band-reverse > div {
    order: initial;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-visual img {
    max-height: 360px;
  }

  .product-shot img {
    max-height: 340px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px 10px;
    gap: 14px;
  }

  .brand img {
    width: 120px;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .site-nav {
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.65rem);
  }

  .hero p,
  .page-hero p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-visual::before {
    height: 28px;
  }

  .hero-visual img {
    max-height: 220px;
  }

  .product-shot img {
    max-height: 220px;
  }

  .page-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .outcome-panel {
    padding: 14px;
  }

  .workflow-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 20px;
  }

  .workflow-list span {
    justify-self: start;
  }

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

  .access {
    padding: 0 18px 52px;
  }

  .access-inner {
    display: grid;
    padding: 28px;
  }

  .site-footer {
    display: grid;
    padding: 22px 18px;
  }
}
