:root {
  color-scheme: light;
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --ink: #0b1220;
  --muted: #667085;
  --line: #d9e2f2;
  --line-strong: #b8c7dd;
  --blue: #104cff;
  --blue-dark: #0630a8;
  --sky: #49b6ff;
  --navy: #07152b;
  --teal: #05a7b8;
  --green: #1f9d6a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(73, 182, 255, 0.16), transparent 30%),
    radial-gradient(circle at 14% 16%, rgba(16, 76, 255, 0.1), transparent 28%),
    linear-gradient(#f8fbff, var(--bg));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  outline-color: var(--sky);
  outline-offset: 3px;
}

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

section {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(217, 226, 242, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.brand-text,
.hero-logo {
  display: inline-block;
  color: transparent;
  background: linear-gradient(110deg, #07152b 0%, #104cff 32%, #48b7ff 62%, #0630a8 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-shadow: 0 14px 28px rgba(16, 76, 255, 0.13);
  animation: logo-gradient 7s ease-in-out infinite;
}

.brand-text {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.hero-logo {
  margin-bottom: clamp(18px, 3vw, 30px);
  font-size: clamp(2.65rem, 9vw, 5.8rem);
  filter: drop-shadow(0 22px 30px rgba(16, 76, 255, 0.13));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-bottom: 2px;
  color: #344054;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a {
  flex: 0 0 auto;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--blue);
}

.nav-cta,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.nav-cta,
.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 30px rgba(16, 76, 255, 0.2);
}

.secondary {
  border-color: var(--line-strong);
  background: white;
  color: var(--navy);
}

.nav-cta {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.68rem;
}

.primary:hover,
.primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.secondary:hover,
.secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.primary:disabled,
.primary[aria-disabled="true"] {
  background: var(--line-strong);
  border-color: var(--line-strong);
  color: var(--navy);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

.primary.inverse:disabled,
.primary.inverse[aria-disabled="true"] {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--navy);
}

.page-hero,
.hero,
.content-section,
.cta-section {
  padding: clamp(38px, 6vw, 72px) 16px;
}

.hero {
  padding-top: clamp(34px, 5vw, 62px);
}

.hero-copy,
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.05em;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 7.5vw, 5.25rem);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  max-width: 900px;
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 1.03;
  font-weight: 900;
}

h3 {
  font-size: clamp(1.08rem, 3.5vw, 1.42rem);
  line-height: 1.12;
  font-weight: 900;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.lede,
.subhead {
  max-width: 780px;
  margin: 16px 0 0;
  color: #344054;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.52;
}

.lede::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(18px, 3.2vw, 30px);
}

.section-kicker,
.eyebrow,
.card-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.body-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
  color: #344054;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.62;
}

.body-copy p {
  margin: 0;
}

.caption,
.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.band {
  background: linear-gradient(180deg, #ffffff, #f4f7fc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid,
.offer-grid,
.pricing-grid,
.feature-grid,
.persona-grid,
.category-grid,
.entry-grid {
  display: grid;
  gap: 14px;
}

.card,
.offer-card,
.pricing-card,
.feature-card,
.persona-card,
.category-card,
.entry-card,
.timeline-step,
.faq-item,
.form-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.06);
}

.offer-card,
.feature-card,
.persona-card,
.category-card,
.entry-card,
.timeline-step {
  padding: 18px;
}

.offer-card,
.entry-card {
  display: grid;
  gap: 14px;
}

.offer-card h2,
.form-card h2 {
  font-size: clamp(1.16rem, 3.2vw, 1.42rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.offer-card-primary {
  border-color: rgba(16, 76, 255, 0.46);
  background: linear-gradient(180deg, #eef4ff, #ffffff 52%);
  box-shadow: 0 24px 60px rgba(16, 76, 255, 0.12);
}

.offer-card p,
.feature-card p,
.persona-card p,
.category-card li,
.entry-card p,
.timeline-step p {
  margin: 0;
  color: #475467;
  line-height: 1.55;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.text-link {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
}

.proof-band {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 18px 45px rgba(10, 37, 64, 0.1);
}

.proof-band div {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.proof-band div:last-child {
  border-bottom: 0;
}

.proof-band p {
  margin: 0;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-band strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1.45rem, 6vw, 2.15rem);
  line-height: 1.05;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
}

.pricing-card.is-featured {
  border-color: rgba(16, 76, 255, 0.46);
  background: linear-gradient(180deg, #eef4ff, #ffffff 42%);
  box-shadow: 0 24px 60px rgba(16, 76, 255, 0.14);
}

.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--blue);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 2.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.pricing-card ul,
.category-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #475467;
  line-height: 1.5;
}

.pricing-card li::before,
.category-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 900;
}

.category-card-compact {
  display: grid;
  place-items: center;
  min-height: 92px;
  text-align: center;
}

.category-card-compact h3 {
  margin: 0;
  font-size: clamp(1.15rem, 3.3vw, 1.45rem);
}

.pricing-grid.single-price {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
  margin-inline: auto;
}

.pricing-grid.single-price .pricing-card {
  padding: clamp(28px, 5vw, 40px);
  gap: 18px;
}

.pricing-grid.single-price .price {
  font-size: clamp(2.4rem, 6vw, 3rem);
}

.pricing-grid.single-price .primary {
  width: fit-content;
  max-width: 100%;
  min-width: min(100%, 250px);
  white-space: normal;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline-step {
  position: relative;
  padding: 18px 18px 18px 60px;
  counter-increment: step;
}

.timeline-step::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.contact-flow .timeline {
  grid-template-columns: 1fr;
}

.contact-flow .timeline-step {
  padding: 18px 18px 18px 60px;
}

.contact-flow .timeline-step::before {
  left: 18px;
  top: 18px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 18px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  font-weight: 900;
}

.faq-item.is-open .faq-icon {
  background: var(--blue);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 18px 20px;
  color: #475467;
  line-height: 1.58;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.form-card {
  padding: 20px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.entry-media {
  min-height: 118px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(16, 76, 255, 0.12), rgba(73, 182, 255, 0.22)),
    #f8fbff;
  border: 1px solid var(--line);
}

.tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--surface-2);
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  gap: 22px;
  align-content: center;
  min-height: 34vh;
  background:
    radial-gradient(circle at 82% 22%, rgba(73, 182, 255, 0.25), transparent 34%),
    linear-gradient(135deg, #07152b, #0f2c68);
  color: white;
}

.cta-section h2,
.cta-section h2 em {
  color: white;
}

.cta-section p {
  max-width: 780px;
  margin: 0;
  color: #d3def0;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
}

.inverse {
  background: white;
  color: var(--blue-dark);
  border-color: white;
}

.inverse:hover,
.inverse:focus-visible {
  background: #eef4ff;
  color: var(--blue-dark);
  border-color: #eef4ff;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 30px 16px;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.footer-col {
  display: grid;
  gap: 9px;
}

.footer-col h2 {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--blue);
}

.legal {
  margin: 0;
}

.demo-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.13);
}

.demo-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  background: linear-gradient(90deg, #ffffff, #f2f6ff);
}

.demo-toolbar span,
.demo-toolbar strong {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-toolbar > span {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}

.window-dots span:nth-child(2) {
  background: var(--sky);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.demo-frame {
  overflow: auto;
  background: #fafaf7;
}

.demo-frame iframe {
  display: block;
  width: 100%;
  min-width: 760px;
  height: 920px;
  border: 0;
  background: #fafaf7;
}

.workflow-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 18px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.workflow-tabs::-webkit-scrollbar {
  display: none;
}

.workflow-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: #344054;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow-tabs .is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.new-tab-row {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.new-tab-row a {
  color: var(--blue);
}

@keyframes logo-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (min-width: 640px) {
  .site-header {
    grid-template-columns: auto 1fr;
    padding-inline: clamp(18px, 4vw, 64px);
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .offer-grid,
  .pricing-grid,
  .feature-grid,
  .persona-grid,
  .category-grid,
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-band div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

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

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 76px;
  }

  .site-nav {
    flex-wrap: nowrap;
  }

  .offer-grid,
  .pricing-grid,
  .feature-grid,
  .persona-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid.four-up,
  .offer-grid.four-up,
  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid,
  .entry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .pricing-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .proof-band {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-band div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .proof-band div:last-child {
    border-right: 0;
  }

  .timeline-step {
    padding: 58px 18px 18px;
  }

  .timeline-step::before {
    left: 18px;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr) auto;
    align-items: start;
    padding-inline: clamp(18px, 4vw, 64px);
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding-inline: 12px;
  }

  .primary,
  .secondary {
    width: 100%;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .offer-card,
  .feature-card,
  .persona-card,
  .category-card,
  .entry-card,
  .pricing-card,
  .form-card {
    padding: 16px;
  }

  .demo-toolbar {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px;
  }

  .demo-toolbar strong {
    display: none;
  }
}
