@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap");
/**
 * * modified version of eric meyer's reset 2.0
 * * http://meyerweb.com/eric/tools/css/reset/ */
/**
 * * basic reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/**
 * * HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --cf-bg: #fbf8f3;
  --cf-surface: #ffffff;
  --cf-surface-2: #fffdf9;
  --cf-border: rgb(28 24 20 / 0.08);
  --cf-text: #1c1814;
  --cf-muted: #6e665d;
  --cf-accent: #813efb;
  --cf-accent-2: #ff7a45;
  --cf-accent-soft: rgb(129 62 251 / 0.1);
  --cf-shadow: 0 1px 2px rgb(28 24 20 / 0.04), 0 12px 32px -12px rgb(28 24 20 / 0.12);
  --cf-gradient: linear-gradient(120deg, var(--cf-accent) 0%, var(--cf-accent-2) 100%);
  --cf-radius: 16px;
  --cf-radius-lg: 24px;
  --cf-font: "Inter", system-ui, -apple-system, sans-serif;
  --cf-font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --cf-container: 1180px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--cf-bg);
  color: var(--cf-text);
  font-family: var(--cf-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--cf-font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

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

strong {
  font-weight: 600;
}

.cf-container {
  width: 100%;
  max-width: var(--cf-container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) {
  .cf-container {
    padding-inline: 32px;
  }
}

.cf-container--narrow {
  max-width: 780px;
}

.cf-section {
  padding-block: clamp(40px, 4.5vw, 64px);
}

.cf-section__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.cf-section__head h2 {
  margin-top: 12px;
}

.cf-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cf-accent);
}

.cf-gradient-text {
  background: var(--cf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .cf-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 640px) {
  .cf-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .cf-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cf-btn, .order-resend button, .order-container .line.download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cf-gradient);
  color: #fff;
  font-family: var(--cf-font-display);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(129, 62, 251, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.cf-btn:hover, .order-resend button:hover, .order-container .line.download a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(129, 62, 251, 0.6);
}
.cf-btn:focus-visible, .order-resend button:focus-visible, .order-container .line.download a:focus-visible {
  outline: 2px solid var(--cf-accent-2);
  outline-offset: 3px;
}

.cf-btn--small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cf-btn--large, .order-container .line.download a {
  padding: 16px 28px;
  font-size: 1.1rem;
}

.cf-btn--ghost {
  background: var(--cf-surface);
  color: var(--cf-text);
  border-color: var(--cf-border);
  box-shadow: none;
}
.cf-btn--ghost:hover {
  background: rgba(28, 24, 20, 0.04);
  box-shadow: none;
}

.cf-btn__price {
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.9em;
}

.cf-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cf-border);
}

.cf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.cf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cf-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.cf-logo__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--cf-gradient);
}

.cf-nav__links {
  display: none;
  gap: 32px;
  color: var(--cf-muted);
  font-size: 0.95rem;
}
.cf-nav__links a:hover {
  color: var(--cf-text);
}
@media screen and (min-width: 768px) {
  .cf-nav__links {
    display: flex;
  }
}

.cf-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 8vw, 104px);
}
.cf-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 80%;
  background: radial-gradient(ellipse at 50% 0%, rgba(129, 62, 251, 0.14), transparent 60%), radial-gradient(ellipse at 85% 30%, rgba(255, 122, 69, 0.16), transparent 55%);
  pointer-events: none;
}
.cf-hero .cf-container {
  position: relative;
}

.cf-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.cf-hero__title {
  margin-top: 16px;
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);
  font-weight: 700;
}

.cf-hero__lead {
  margin-top: 24px;
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--cf-muted);
}

.cf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.cf-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 32px;
  color: var(--cf-muted);
  font-size: 0.9rem;
}
.cf-hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cf-hero__meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cf-accent-2);
}

.cf-reel {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  border-block: 1px solid var(--cf-border);
  background: #e9e3da;
}

.cf-reel__video {
  display: block;
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .cf-reel__video {
    aspect-ratio: 1280/334;
  }
}

.cf-reel__overlay {
  position: absolute;
  inset: auto 0 16px;
  pointer-events: none;
}

.cf-reel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.8rem;
  color: var(--cf-text);
}
.cf-reel__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cf-accent-2);
}

.cf-card {
  padding: 28px;
  box-shadow: var(--cf-shadow);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius);
  background: linear-gradient(180deg, var(--cf-surface-2), var(--cf-surface));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cf-card:hover {
  border-color: rgba(129, 62, 251, 0.4);
}
.cf-card h3 {
  margin-bottom: 10px;
}
.cf-card p {
  color: var(--cf-muted);
}

.cf-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--cf-accent-soft);
  color: var(--cf-accent);
}
.cf-card__icon svg {
  width: 22px;
  height: 22px;
}

.cf-card--list h3 {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--cf-border);
  font-size: 1rem;
}
.cf-card--list li {
  padding-block: 4px;
  color: var(--cf-muted);
}

.cf-steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}
@media screen and (min-width: 768px) {
  .cf-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cf-step {
  position: relative;
  box-shadow: var(--cf-shadow);
  padding: 28px;
  border-radius: var(--cf-radius);
  border: 1px solid var(--cf-border);
  background: var(--cf-surface);
}
.cf-step h3 {
  margin-block: 16px 8px;
}
.cf-step p {
  color: var(--cf-muted);
}

.cf-step__num {
  font-family: var(--cf-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--cf-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.cf-chips__label {
  margin-right: 6px;
  color: var(--cf-muted);
  font-size: 0.9rem;
}

.cf-chip {
  padding: 6px 14px;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  background: var(--cf-surface);
  font-size: 0.9rem;
}

.cf-faq {
  display: grid;
  gap: 12px;
}

.cf-faq__item {
  border: 1px solid var(--cf-border);
  box-shadow: var(--cf-shadow);
  border-radius: var(--cf-radius);
  background: var(--cf-surface);
  transition: border-color 0.2s ease;
}
.cf-faq__item[open] {
  border-color: rgba(129, 62, 251, 0.4);
}
.cf-faq__item[open] summary::after {
  transform: rotate(45deg);
}
.cf-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}
.cf-faq__item summary::-webkit-details-marker {
  display: none;
}
.cf-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cf-muted);
  transition: transform 0.2s ease;
}
.cf-faq__item p {
  padding: 0 24px 22px;
  color: var(--cf-muted);
}
.cf-faq__item p a {
  color: var(--cf-text);
  text-decoration: underline;
  text-decoration-color: var(--cf-accent);
  text-underline-offset: 3px;
}

.cf-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 32px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(129, 62, 251, 0.18);
  border-radius: var(--cf-radius-lg);
  background: radial-gradient(ellipse at 0% 0%, rgba(129, 62, 251, 0.12), transparent 60%), radial-gradient(ellipse at 100% 100%, rgba(255, 122, 69, 0.16), transparent 55%), var(--cf-surface);
}
@media screen and (min-width: 1024px) {
  .cf-cta {
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
  }
}
.cf-cta p {
  margin-top: 16px;
  color: var(--cf-muted);
  font-size: 1.05rem;
}

.cf-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .cf-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.cf-footer {
  padding-block: 32px;
  border-top: 1px solid var(--cf-border);
  color: var(--cf-muted);
  font-size: 0.9rem;
}

.cf-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cf-footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cf-footer__inner a:hover {
  color: var(--cf-text);
}

.indeterminate-progress-bar {
  position: relative;
  overflow: hidden;
  height: 6px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--cf-accent-soft);
}

.indeterminate-progress-bar__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border-radius: 999px;
  background: var(--cf-gradient);
  animation: cf-indeterminate 1.6s ease-in-out infinite;
}

@keyframes cf-indeterminate {
  from {
    left: -50%;
  }
  to {
    left: 100%;
  }
}
.order-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 16px 64px;
  background: radial-gradient(ellipse at 50% 0%, rgba(129, 62, 251, 0.1), transparent 55%), radial-gradient(ellipse at 90% 10%, rgba(255, 122, 69, 0.1), transparent 50%), var(--cf-bg);
}
.order-container .order-header {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-top: 32px;
}
.order-container .order-header h1 {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.order-container .video-container {
  overflow: hidden;
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
}
.order-container .video-container video {
  display: block;
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  opacity: 0.7;
}
.order-container .order-content {
  width: 100%;
  box-shadow: var(--cf-shadow);
  max-width: 720px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  background: var(--cf-surface);
}
.order-container .headline {
  margin-bottom: 16px;
  text-align: center;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
}
.order-container .order-information {
  margin-bottom: 8px;
}
.order-container .info-text {
  margin-bottom: 8px;
  color: var(--cf-muted);
}
.order-container .info-text a {
  color: var(--cf-text);
  text-decoration: underline;
  text-decoration-color: var(--cf-accent);
  text-underline-offset: 3px;
}
.order-container .order-state-container {
  margin-top: 24px;
}
.order-container .order-state-container h2 {
  font-size: 1.25rem;
  text-align: center;
}
.order-container .line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-bottom: 1px solid var(--cf-border);
}
.order-container .line .property {
  color: var(--cf-muted);
}
.order-container .line .value {
  font-weight: 500;
  text-align: right;
}
.order-container .line.download {
  justify-content: center;
  border-bottom: 0;
  padding-top: 24px;
}
.order-container .order-summary {
  padding-block: 12px;
  border-bottom: 1px solid var(--cf-border);
}
.order-container .order-summary .summary-line {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.order-container .back {
  margin-top: 12px;
  text-align: center;
}
.order-container .back a {
  color: var(--cf-muted);
}
.order-container .back a:hover {
  color: var(--cf-text);
}

.order-resend {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 16px;
  background: radial-gradient(ellipse at 50% 0%, rgba(129, 62, 251, 0.1), transparent 55%), radial-gradient(ellipse at 90% 10%, rgba(255, 122, 69, 0.1), transparent 50%), var(--cf-bg);
}
.order-resend .header h1 {
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.order-resend .order-resend-container {
  width: 100%;
  box-shadow: var(--cf-shadow);
  max-width: 440px;
  padding: 32px;
  border: 1px solid var(--cf-border);
  border-radius: var(--cf-radius-lg);
  background: var(--cf-surface);
}
.order-resend .order-resend-container h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.order-resend .order-resend-container p {
  margin-bottom: 20px;
  color: var(--cf-muted);
}
.order-resend input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cf-border);
  border-radius: 12px;
  background: var(--cf-bg);
  color: var(--cf-text);
  font: inherit;
}
.order-resend input:focus {
  outline: none;
  border-color: var(--cf-accent);
  box-shadow: 0 0 0 3px var(--cf-accent-soft);
}
.order-resend .submit-control {
  margin-top: 12px;
}
.order-resend button {
  width: 100%;
}
.order-resend button[disabled] {
  background: var(--cf-surface-2);
  color: var(--cf-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.order-resend .order-resend-info {
  margin-top: 16px;
}
.order-resend .order-resend-info .resend-message {
  text-align: center;
  color: var(--cf-muted);
}

.failed-payment {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 16px;
  text-align: center;
}
.failed-payment h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.failed-payment h2 {
  font-size: 1.25rem;
  color: var(--cf-muted);
}
