:root {
  color-scheme: light;
  --white: #ffffff;
  --warm-50: #fffaf6;
  --warm-100: #fff4eb;
  --warm-200: #ffe6d5;
  --orange-700: #d9480f;
  --orange-600: #f05a1a;
  --orange-500: #ff7a2f;
  --orange-300: #ffb287;
  --charcoal: #1f1713;
  --muted: #756963;
  --soft-muted: #9b8d85;
  --line: rgba(217, 72, 15, 0.3);
  --line-strong: rgba(217, 72, 15, 0.46);
  --glass: rgba(255, 255, 255, 0.94);
  --glass-warm: rgba(255, 250, 246, 0.88);
  --shadow-soft: 0 26px 76px rgba(217, 72, 15, 0.14);
  --shadow-card: 0 18px 48px rgba(217, 72, 15, 0.13), 0 2px 8px rgba(31, 23, 19, 0.04);
  --font-main: "Avenir Next", "Helvetica Neue", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --page-max-width: 1200px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-main);
  background-color: var(--warm-50);
  background-image:
    linear-gradient(90deg, rgba(240, 90, 26, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(240, 90, 26, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 22% 8%, rgba(255, 122, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff4eb 46%, #ffffff 100%);
  background-size: 86px 86px, 86px 86px, auto, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(18deg, transparent 0 30px, rgba(255, 122, 47, 0.12) 31px, transparent 32px),
    repeating-linear-gradient(124deg, transparent 0 52px, rgba(240, 90, 26, 0.08) 53px, transparent 54px);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--page-max-width));
  min-height: 62px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(217, 72, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.nav a {
  border-radius: var(--radius-pill);
  padding: 12px 14px;
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--orange-700);
  background: rgba(255, 178, 135, 0.22);
}

.hero {
  padding: 24px 24px 0;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: 26px;
  width: min(100%, var(--page-max-width));
  min-height: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 26, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 244, 235, 0.96) 54%, rgba(255, 230, 213, 0.9) 100%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 122, 47, 0.2), transparent 30%),
    repeating-linear-gradient(16deg, transparent 0 40px, rgba(240, 90, 26, 0.07) 41px, transparent 42px);
}

.hero-content,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 56px 56px;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 520px;
  margin: 22px 22px 22px 0;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 26, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 178, 135, 0.12)),
    var(--white);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.pathway-trace {
  position: absolute;
  inset: 8% 6%;
  z-index: 2;
  width: 88%;
  height: 84%;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

.pathway-trace path {
  fill: none;
  stroke: var(--orange-600);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 24 520;
  filter: drop-shadow(0 0 12px rgba(255, 122, 47, 0.25));
  animation: path-flow 7.5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(240, 90, 26, 0.2);
  border-radius: var(--radius-pill);
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--font-main);
  font-weight: 300;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 88px;
  line-height: 0.96;
}

h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  border-color: var(--orange-600);
  background: var(--orange-600);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--orange-700);
  background: var(--white);
}

.button.secondary {
  color: var(--orange-700);
  border-color: rgba(240, 90, 26, 0.22);
  background: rgba(255, 255, 255, 0.68);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--orange-500);
  background: var(--warm-100);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin-top: 34px;
}

.hero-metrics article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.hero-metrics span,
.hero-metrics small {
  display: block;
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin: 14px 0 2px;
  color: var(--orange-700);
  font-size: 42px;
  font-weight: 300;
  line-height: 0.95;
}

.section {
  padding: 104px 24px 0;
}

.section-heading,
.feature-grid,
.timeline,
.price-panel,
.contact-layout,
.signal-board {
  width: min(100%, var(--page-max-width));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 32px;
}

.section-heading > p:not(.eyebrow),
.signal-intro > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.signal-section {
  margin-top: 24px;
  padding-top: 98px;
  padding-bottom: 98px;
  color: var(--charcoal);
  background:
    linear-gradient(135deg, rgba(255, 122, 47, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
  border-top: 1px solid rgba(240, 90, 26, 0.12);
  border-bottom: 1px solid rgba(240, 90, 26, 0.12);
}

.signal-board {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: stretch;
}

.signal-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signal-intro p:not(.eyebrow) {
  color: var(--muted);
}

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

.signal-card,
.feature,
.timeline-step,
.price-panel,
.contact-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.signal-card:hover,
.feature:hover,
.timeline-step:hover,
.price-panel:hover,
.contact-form:focus-within,
.contact-note:hover,
.success-card article:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 72, 15, 0.58);
  box-shadow: 0 24px 60px rgba(217, 72, 15, 0.17), 0 4px 14px rgba(31, 23, 19, 0.05);
}

.signal-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--charcoal);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
}

.signal-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.status-pill {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(240, 90, 26, 0.22);
  border-radius: var(--radius-pill);
  color: var(--orange-700);
  background: var(--white);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(240, 90, 26, 0.12);
}

.meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-300), var(--orange-600));
  transition: width 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.meter.is-visible span {
  width: var(--meter-width, 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.feature {
  min-height: 246px;
  padding: 20px;
  border-color: var(--line-strong);
}

.feature-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 54px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--orange-500);
  font-size: 12px;
  font-weight: 500;
}

.feature p,
.timeline p,
.price-panel p,
.included-list,
.contact-note p,
.form-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

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

.timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-height: 190px;
  padding: 20px;
  border-color: var(--line-strong);
}

.timeline-step strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--orange-600);
  font-weight: 500;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 235, 0.92)),
    var(--white);
}

.price-panel h2 {
  color: var(--orange-700);
  font-size: 84px;
  font-weight: 300;
  line-height: 0.98;
}

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

.included-list li {
  position: relative;
  padding-left: 28px;
}

.included-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-pill);
  background: var(--orange-500);
  content: "";
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.7fr);
  gap: 16px;
  align-items: start;
}

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

.contact-note {
  padding: 24px;
  border-color: var(--line-strong);
  background: rgba(255, 244, 235, 0.92);
}

.contact-form {
  border-color: var(--line-strong);
}

.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.92);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(117, 105, 99, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 178, 135, 0.45);
  border-color: var(--orange-500);
}

.form-note {
  margin: 0;
}

.form-note.warning {
  color: var(--orange-700);
}

.contact-note a {
  color: var(--orange-700);
  font-weight: 500;
  overflow-wrap: anywhere;
  text-decoration-color: var(--orange-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(calc(100% - 48px), var(--page-max-width));
  margin: 104px auto 24px;
  padding: 18px 20px;
  color: var(--muted);
  border: 1px solid rgba(240, 90, 26, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 300;
}

.footer a {
  color: var(--orange-700);
  text-decoration-color: var(--orange-300);
  text-underline-offset: 4px;
}

.success-hero {
  min-height: calc(100svh - 92px);
}

.success-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  min-height: 640px;
}

.success-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-self: center;
  margin-right: 22px;
}

.success-card article {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.success-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--orange-500);
  font-size: 12px;
  font-weight: 500;
}

.success-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.legal-section {
  padding-top: 52px;
}

.legal-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.legal-card h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 64px;
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 28px;
}

.legal-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.58;
}

.legal-card .button {
  margin-top: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes path-flow {
  0% {
    stroke-dashoffset: 560;
    opacity: 0;
  }

  18% {
    opacity: 0.7;
  }

  64% {
    opacity: 0.55;
  }

  100% {
    stroke-dashoffset: -560;
    opacity: 0;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .meter span {
    width: var(--meter-width, 100%);
  }

  .pathway-trace {
    display: none;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-shell,
  .signal-board,
  .price-panel,
  .contact-layout,
  .success-shell {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 48px 48px 0;
  }

  .hero-art {
    min-height: 440px;
    margin: 0 22px 22px;
  }

  .success-card {
    margin: 0 22px 22px;
  }

  .hero-image {
    min-height: 440px;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    width: calc(100% - 24px);
    min-height: 58px;
    margin-top: 8px;
    padding: 8px 10px;
  }

  .brand {
    font-size: 14px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 16px 12px 0;
  }

  .hero-shell {
    min-height: auto;
    border-radius: 26px;
  }

  .hero-content {
    padding: 32px 20px 0;
  }

  .hero-art {
    min-height: 280px;
    margin: 0 12px 12px;
    border-radius: 22px;
  }

  .success-card {
    margin: 0 12px 12px;
  }

  .hero-image {
    min-height: 280px;
  }

  h1 {
    font-size: 50px;
    line-height: 1;
  }

  h2,
  .price-panel h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .hero-metrics,
  .feature-grid,
  .timeline,
  .signal-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .section,
  .signal-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding-top: 78px;
  }

  .signal-section {
    margin-top: 16px;
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .feature,
  .timeline-step,
  .price-panel,
  .contact-form,
  .contact-note {
    padding: 20px;
  }

  .feature {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 30px;
  }

  .signal-card,
  .timeline-step {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 32px);
    margin-top: 78px;
    border-radius: 24px;
  }

  .legal-card {
    padding: 28px 20px;
  }

  .legal-card h1 {
    font-size: 42px;
  }
}
