@charset "UTF-8";
/* VARIABLES */
/* RESET */
* {
  box-sizing: border-box; }

body {
  margin: 0;
  font-family: "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, ui-sans-serif, Helvetica, Arial, sans-serif;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.6;
  background: #fff; }

/* LAYOUT */
.container {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto; }

.accent {
  color: #511cc5; }

.section {
  padding: 6rem 0;
  border-top: 1px solid #e5e7eb; }

.section-muted {
  background-color: #f9fafb; }

.section-title {
  text-align: center;
  font-family: "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, ui-sans-serif, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 4rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(12px); }

.header-inner {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.brand-wordmark {
  height: 32px;
  width: auto;
  display: block; }

.brand:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background-color: #511cc5;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(81, 28, 197, 0.2); }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 28, 197, 0.3); }

/* HERO */
.hero {
  padding: 8rem 0; }

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center; }
  @media (min-width: 768px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr; } }
.hero-copy h1 {
  font-family: "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, ui-sans-serif, Helvetica, Arial, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.5rem; }

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 32ch; }

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 24px; }

/* STEPS */
.steps {
  display: grid;
  gap: 2rem; }
  @media (min-width: 768px) {
    .steps {
      grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 2.5rem;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.step-image {
  margin-bottom: 1.5rem; }
  .step-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; }

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem; }

.step p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.5; }

/* FEATURE */
.feature-grid {
  display: grid;
  gap: 4rem; }
  @media (min-width: 768px) {
    .feature-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center; } }
.feature-media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
  @media (min-width: 768px) {
    .feature-media img {
      max-width: 520px; } }
.feature-copy h2 {
  font-family: "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, ui-sans-serif, Helvetica, Arial, sans-serif;
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem; }

.feature-copy .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1.25rem; }

.feature-copy p {
  color: #64748b;
  margin-bottom: 1.5rem; }

/* Benefit List Utility */
.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem; }
  .benefit-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 16px; }
    .benefit-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #511cc5;
      font-weight: bold; }

/* CTA */
.cta {
  padding: 8rem 0;
  text-align: center; }

.cta h2 {
  font-family: "SF Pro Text", -apple-system, system-ui, BlinkMacSystemFont, ui-sans-serif, Helvetica, Arial, sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem; }

.cta p {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 2.5rem; }

/* FOOTER */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid #e5e7eb;
  color: #64748b;
  font-size: 20x;
  text-align: center; }
