:root {
  color-scheme: light;
  --bf-navy-950: #05152d;
  --bf-navy-900: #083465;
  --bf-violet-500: #8570e6;
  --bf-violet-400: #9b7af2;
  --bf-teal-500: #4bcdda;
  --bf-teal-400: #2ec7cf;
  --bf-yellow-400: #f5c033;
  --bf-slate-600: #4b5873;
  --bf-slate-200: #dde4f2;
  --bf-lavender-100: #eef0ff;
  --bf-white: #ffffff;
  --bf-soft: #fbfcff;
  --bf-shadow: 0 24px 60px rgba(5, 21, 45, 0.14);
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bf-white);
  color: var(--bf-navy-950);
}

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

a {
  color: inherit;
}

.site-header,
.hero,
.steps-section,
.why-section,
.contact-section,
.site-footer {
  width: min(1440px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 5vw, 72px);
  position: relative;
  z-index: 5;
}

.brand {
  width: clamp(210px, 18vw, 285px);
  height: clamp(50px, 4.7vw, 68px);
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 38px);
  color: var(--bf-navy-950);
  font-size: 16px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

nav a:not(.nav-button):hover {
  color: var(--bf-violet-500);
}

.nav-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 18px;
  background: var(--bf-navy-950);
  color: var(--bf-white);
  box-shadow: 0 14px 28px rgba(5, 21, 45, 0.16);
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(600px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 8px 0 88px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

h1,
h2,
h3,
p,
li,
label,
button,
input,
textarea {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--bf-navy-950);
  font-size: clamp(4rem, 5.2vw, 5.75rem);
  line-height: 0.93;
  letter-spacing: 0;
  font-weight: 800;
  overflow-wrap: normal;
}

.headline-line {
  display: block;
  white-space: nowrap;
  word-break: keep-all;
}

.headline-accent {
  position: relative;
  display: inline-block;
  color: var(--bf-violet-500);
}

.headline-accent::after {
  content: "";
  position: absolute;
  left: 4%;
  right: -4%;
  bottom: -0.08em;
  height: 0.08em;
  border-radius: 999px;
  background: var(--bf-yellow-400);
  transform: rotate(-1.5deg);
}

h2 {
  margin: 0;
  color: var(--bf-navy-950);
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--bf-navy-950);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p,
li {
  color: var(--bf-slate-600);
  font-size: 1.05rem;
  line-height: 1.65;
}

.script-line {
  margin: 24px 0 0;
  color: var(--bf-navy-950);
  font-family: "Kalam", "Caveat", "Patrick Hand", cursive;
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  line-height: 1.05;
  font-weight: 400;
  white-space: nowrap;
}

.script-line span,
.script-line strong {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.script-line span::after,
.script-line strong::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 6px;
  border-radius: 999px;
  background: var(--bf-violet-400);
  transform: rotate(-2deg);
  opacity: 0.72;
  z-index: -1;
}

.script-line strong {
  color: var(--bf-navy-950);
}

.script-line strong::after {
  background: var(--bf-teal-500);
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--bf-slate-600);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  line-height: 1.42;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.proof-row article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(221, 228, 242, 0.95);
  text-align: center;
}

.proof-row article:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.proof-row p {
  margin: 0;
  color: var(--bf-navy-950);
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.button,
button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary,
button {
  background: var(--bf-navy-950);
  color: var(--bf-white);
  box-shadow: 0 16px 28px rgba(5, 21, 45, 0.18);
}

.button-primary span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bf-white);
  color: var(--bf-navy-950);
}

.button-secondary {
  background: var(--bf-white);
  color: #3f28da;
  border-color: var(--bf-violet-400);
}

.button-secondary span {
  font-size: 0.9rem;
}

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

.hero-visual {
  min-height: 740px;
  position: relative;
  z-index: 1;
  transform: translateX(-44px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -11%;
  top: 51%;
  width: 32%;
  height: 25%;
  border-radius: 49% 51% 44% 56%;
  background: rgba(155, 122, 242, 0.2);
  transform: rotate(18deg);
  z-index: 0;
}

.teal-shape {
  position: absolute;
  right: -4%;
  top: 5%;
  width: 82%;
  height: 78%;
  border-radius: 47% 53% 39% 61%;
  background: linear-gradient(135deg, rgba(75, 205, 218, 0.95), rgba(46, 199, 207, 0.82));
  transform: rotate(-8deg);
}

.teal-shape::before,
.teal-shape::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transform-origin: center;
}

.teal-shape::before {
  right: -17%;
  bottom: -7%;
  width: 58%;
  height: 54%;
  background: rgba(75, 205, 218, 0.72);
  transform: rotate(17deg);
}

.teal-shape::after {
  left: -24%;
  bottom: 5%;
  width: 54%;
  height: 46%;
  background: rgba(238, 240, 255, 0.78);
  transform: rotate(23deg);
}

.person-stage {
  position: absolute;
  right: 2%;
  bottom: 6%;
  width: 78%;
}

.hero-flair {
  position: absolute;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.hero-gold-flair {
  top: 11%;
  right: 2.5%;
  width: 13.5%;
  z-index: 4;
  transform: rotate(-4deg);
}

.hero-teal-flair {
  left: -6%;
  bottom: 20%;
  width: 13%;
  z-index: 4;
  transform: rotate(2deg);
}

.person-image {
  position: relative;
  width: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  z-index: 2;
}

.laptop-logo {
  position: absolute;
  left: 33%;
  bottom: 23%;
  width: 10%;
  z-index: 3;
  opacity: 0.94;
  pointer-events: none;
  transform: translate(-50%, 50%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 24px;
  filter: drop-shadow(0 24px 46px rgba(5, 21, 45, 0.16));
}

.benefits-card {
  left: -3%;
  top: 10%;
  width: min(35vw, 390px);
}

.time-card {
  left: -8%;
  top: 39%;
  width: min(33vw, 370px);
}

.mug-note {
  position: absolute;
  right: calc(2.6% + 5px);
  bottom: calc(10.2% + 20px);
  width: 11%;
  z-index: 5;
  pointer-events: none;
  transform: rotate(3deg);
}

.soft-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(75, 205, 218, 0.22), transparent 34%),
    var(--bf-soft);
}

.steps-section,
.why-section,
.contact-section {
  padding: 96px clamp(18px, 3vw, 56px);
  border-top: 1px solid rgba(221, 228, 242, 0.7);
}

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

.section-heading > p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bf-violet-500);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step-grid article,
.why-grid article,
.lead-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(221, 228, 242, 0.94);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(5, 21, 45, 0.1);
}

.steps-section {
  display: grid;
  gap: 34px;
}

.workflow-flow {
  margin-top: 10px;
  padding: clamp(18px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(221, 228, 242, 0.94);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 16%, rgba(75, 205, 218, 0.16), transparent 30%),
    radial-gradient(circle at 10% 88%, rgba(133, 112, 230, 0.12), transparent 28%),
    var(--bf-white);
  box-shadow: 0 18px 44px rgba(5, 21, 45, 0.08);
}

.workflow-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 42px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-timeline > li {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.workflow-timeline > li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.workflow-timeline > li:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.workflow-timeline > li:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.workflow-timeline > li:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.workflow-timeline > li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.workflow-timeline > li:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.workflow-timeline > li:not(:last-child)::after {
  content: "\2192";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 34px;
  right: -33px;
  z-index: 3;
  border-radius: 50%;
  background: var(--bf-white);
  color: var(--bf-violet-500);
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(5, 21, 45, 0.12);
}

.workflow-timeline > li:nth-child(3)::after {
  content: "\2193";
  top: auto;
  right: 50%;
  bottom: -31px;
  transform: translateX(50%);
}

.workflow-timeline > li:nth-child(4)::after,
.workflow-timeline > li:nth-child(5)::after {
  content: "\2190";
  right: auto;
  left: -33px;
}

.workflow-card,
.workflow-ready-item {
  min-height: 100%;
}

.workflow-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: visible;
  border: 1px solid rgba(221, 228, 242, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(5, 21, 45, 0.08);
}

.workflow-card::before {
  content: "";
  height: 4px;
  position: absolute;
  inset: 0 0 auto;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, var(--bf-teal-500), var(--bf-violet-500), var(--bf-yellow-400));
}

.workflow-card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.workflow-number {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--bf-navy-950);
  color: var(--bf-white);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(221, 228, 242, 0.88);
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 20%, rgba(245, 192, 51, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(75, 205, 218, 0.18), rgba(133, 112, 230, 0.16)),
    var(--bf-white);
}

.workflow-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.workflow-card h3 {
  font-size: 1.02rem;
  line-height: 1.2;
}

.workflow-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.workflow-ready-item {
  display: grid;
  place-items: center;
  padding: 16px;
  border: 2px dashed rgba(133, 112, 230, 0.52);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(75, 205, 218, 0.28), transparent 34%),
    radial-gradient(circle at 15% 88%, rgba(245, 192, 51, 0.26), transparent 30%),
    var(--bf-lavender-100);
  text-align: center;
  box-shadow: 0 18px 42px rgba(5, 21, 45, 0.08);
  transform: rotate(-1.2deg);
}

.workflow-ready-item p {
  margin: 0;
  color: var(--bf-navy-950);
  font-family: "Kalam", "Caveat", "Patrick Hand", cursive;
  font-size: 1.08rem;
  line-height: 1.2;
}

.workflow-ready-item strong {
  display: block;
  color: var(--bf-violet-500);
  font-size: 1.18em;
  font-weight: 700;
}

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

.step-grid article,
.why-grid article {
  padding: 28px;
}

.step-grid span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bf-teal-500), var(--bf-violet-500));
  color: var(--bf-white);
  font-weight: 800;
}

.step-grid p,
.why-grid p {
  margin: 12px 0 0;
}

.why-section {
  display: grid;
  gap: 34px;
  border-radius: 40px;
}

.why-grid img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-bottom: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.contact-copy p {
  font-size: 1.14rem;
}

.contact-section {
  align-items: start;
  border-radius: 40px 40px 0 0;
}

.contact-copy {
  position: sticky;
  top: 24px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--bf-navy-950);
  font-size: 0.9rem;
  font-weight: 800;
}

small {
  color: var(--bf-slate-600);
  font-size: 0.76rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9c3d3;
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--bf-white);
  color: var(--bf-navy-950);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(75, 205, 218, 0.45);
  outline-offset: 3px;
  border-color: var(--bf-teal-500);
}

.privacy-note {
  margin: 0;
  padding: 13px 15px;
  border-left: 5px solid var(--bf-yellow-400);
  border-radius: 14px;
  background: #fff8e7;
  color: #5b4310;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.form-status {
  padding: 12px 14px;
  border: 1px solid #f0bac4;
  border-radius: 14px;
  background: #fff1f3;
  color: #9f1d35;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 44px;
  color: var(--bf-slate-600);
  font-size: 0.95rem;
  font-weight: 800;
}

.simple-page {
  background:
    radial-gradient(circle at 82% 18%, rgba(75, 205, 218, 0.2), transparent 32%),
    radial-gradient(circle at 10% 88%, rgba(133, 112, 230, 0.14), transparent 30%),
    var(--bf-white);
}

.message-page {
  width: min(820px, calc(100% - 32px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 42px;
  margin: 0 auto;
  padding: 48px 0;
}

.message-page .brand {
  width: min(320px, 80vw);
  height: 76px;
}

.message-page section {
  padding-top: 36px;
  border-top: 1px solid var(--bf-slate-200);
}

.message-page h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
}

.message-page .button {
  margin-top: 16px;
}

.legal-copy p {
  font-size: 1.06rem;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 4px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    min-height: 680px;
    width: min(900px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .person-stage {
    right: 4%;
    width: 56%;
  }

  .benefits-card {
    left: 9%;
  }

  .time-card {
    left: 4%;
  }

}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .nav-button {
    min-height: 48px;
    border-radius: 999px;
  }

  .proof-row,
  .step-grid,
  .why-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .workflow-timeline {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    gap: 34px;
  }

  .workflow-timeline > li:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .workflow-timeline > li:not(:last-child)::after,
  .workflow-timeline > li:nth-child(3)::after,
  .workflow-timeline > li:nth-child(4)::after,
  .workflow-timeline > li:nth-child(5)::after {
    content: "\2193";
    top: auto;
    right: 50%;
    bottom: -31px;
    left: auto;
    transform: translateX(50%);
  }

  .workflow-ready-item {
    transform: none;
  }

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

  .proof-row article:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .why-section,
  .contact-section {
    border-radius: 28px;
  }

  .contact-copy {
    position: static;
  }

  .hero-visual {
    min-height: 570px;
  }

  .person-stage {
    right: -3%;
    width: 62%;
  }

  .benefits-card {
    left: 0;
    top: 4%;
    width: min(68vw, 340px);
  }

  .time-card {
    top: 36%;
    width: min(62vw, 330px);
  }

}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .steps-section,
  .why-section,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, 1440px);
  }

  .brand {
    width: min(260px, 78vw);
    height: 62px;
  }

  nav {
    font-size: 0.92rem;
  }

  .hero {
    gap: 22px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .script-line {
    font-size: clamp(2rem, 11vw, 3rem);
    white-space: normal;
  }

  .proof-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .proof-row article {
    grid-template-columns: 1fr;
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(221, 228, 242, 0.95);
    padding-bottom: 18px;
  }

  .proof-row article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  .button,
  button {
    width: 100%;
  }

  .hero-visual {
    min-height: 620px;
  }

  .teal-shape {
    right: -8%;
    width: 86%;
    height: 68%;
  }

  .person-stage {
    right: -18%;
    width: 82%;
  }

  .benefits-card {
    top: 7%;
    width: 68%;
  }

  .time-card {
    left: 0;
    top: 42%;
    width: 64%;
  }

  .steps-section,
  .why-section,
  .contact-section {
    padding: 62px 18px;
  }

  .workflow-flow {
    padding: 14px;
    border-radius: 24px;
  }

  .workflow-card {
    padding: 14px;
  }

  .workflow-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .workflow-icon svg {
    width: 34px;
    height: 34px;
  }

  .workflow-ready-item {
    padding: 14px;
  }

  .workflow-ready-item p {
    font-size: 1.04rem;
  }

  .lead-form {
    padding: 20px;
  }
}
