:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  --bg: #ffffff;
  --text: #1d1f2f;
  --muted: #5c6070;
  --accent: #5a5df0;
  --accent-dark: #3d40c2;
  --accent-soft: rgba(90, 93, 240, 0.1);
  --surface: #f5f6ff;
  --border: #e2e4f3;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 228, 243, 0.6);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav .cta {
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-nav .cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero {
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at top right, rgba(90, 93, 240, 0.14), rgba(90, 93, 240, 0)) 0 0 / 110% 110%,
    linear-gradient(180deg, rgba(245, 246, 255, 0.8), rgba(255, 255, 255, 0));
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.trial-badge {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hero-text p {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-highlights {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--text);
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-highlights li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(90, 93, 240, 0.15);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trial-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(90, 93, 240, 0.8);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(90, 93, 240, 0.8);
}

.secondary-cta {
  border: 1px solid var(--border);
  color: var(--text);
}

.secondary-cta:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
}

.hero-caption {
  margin-top: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 0.6rem;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.section-lead {
  color: var(--muted);
  margin: 0 auto 3rem;
  max-width: 560px;
}

.product-tour {
  background: linear-gradient(180deg, rgba(90, 93, 240, 0.08), rgba(255, 255, 255, 0));
}

.product-tour-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 640px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  background: #fff;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 36px -28px rgba(25, 26, 70, 0.55);
}

.tour-shot {
  border-radius: 12px;
  overflow: hidden;
  background: #1d1f2f;
  border: 1px solid rgba(29, 31, 47, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tour-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.tour-card p {
  margin: 0;
  color: var(--muted);
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  background: #fff;
  box-shadow: 0 20px 35px -32px rgba(25, 26, 70, 0.6);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(90, 93, 240, 0.9), rgba(90, 93, 240, 0.6));
  color: #fff;
  box-shadow: 0 12px 24px -16px rgba(90, 93, 240, 0.9);
  margin-bottom: 1.4rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  margin-top: 2rem;
}

.contact-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--surface);
  display: grid;
  gap: 0.8rem;
}

.contact-cta h2 {
  margin: 0;
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  background: linear-gradient(90deg, rgba(90, 93, 240, 0.08), rgba(255, 255, 255, 0));
}

.contact-form-wrapper {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 26px 52px -40px rgba(25, 26, 70, 0.6);
  display: grid;
  gap: 1.5rem;
}

.contact-form-wrapper h2 {
  margin: 0;
}

.contact-form-wrapper p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: var(--bg);
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90, 93, 240, 0.18);
}

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

.form-field select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .form-field[data-width="wide"],
.contact-form .form-status,
.contact-form .form-submit {
  grid-column: 1 / -1;
}

.captcha-input {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.captcha-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 600;
  min-width: 110px;
}

.captcha-field input {
  flex: 1;
  min-width: 140px;
}

.refresh-captcha {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--accent-dark);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 1.1rem;
}

.refresh-captcha:hover {
  background: rgba(90, 93, 240, 0.16);
  transform: rotate(-12deg);
}

.refresh-captcha:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid rgba(226, 228, 243, 0.6);
}

.form-status.is-visible {
  display: flex;
}

.form-status.success {
  background: rgba(27, 138, 91, 0.12);
  color: #146b48;
  border-color: rgba(27, 138, 91, 0.25);
}

.form-status.error {
  background: rgba(211, 79, 106, 0.1);
  color: #a1384f;
  border-color: rgba(211, 79, 106, 0.25);
}

.form-status p {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
}

.form-status strong {
  font-weight: 600;
  display: block;
}

.form-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
}

.form-status-icon svg {
  width: 100%;
  height: 100%;
}

.form-submit {
  justify-self: start;
  padding-inline: 2rem;
}

.form-submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form.is-loading {
  opacity: 0.96;
}

.highlight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.workflow {
  background: #fff;
}

.workflow-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.workflow-copy {
  max-width: 520px;
}

.workflow-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.workflow-steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
}

.workflow-visual {
  display: flex;
  justify-content: center;
}

.pricing-trial-callout {
  margin: 1.5rem 0 2.5rem;
  padding: 1rem 1.5rem;
  border: 1px dashed var(--accent);
  border-radius: 14px;
  background: rgba(90, 93, 240, 0.06);
  color: var(--text);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  background: #fff;
  display: grid;
  gap: 1rem;
  box-shadow: 0 22px 38px -32px rgba(25, 26, 70, 0.58);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.pricing-card li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-card li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(90, 93, 240, 0.15);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pricing-card .price {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
}

.pricing-card .price-note {
  margin: -0.8rem 0 0;
  color: var(--muted);
}

.pricing-card .tag {
  position: absolute;
  top: -14px;
  right: 1.8rem;
  background: #ffd166;
  color: #4f4308;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.testimonials {
  background: linear-gradient(180deg, rgba(90, 93, 240, 0.08), rgba(245, 246, 255, 0.6));
}

.testimonials-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.testimonials-copy {
  display: grid;
  gap: 2rem;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  margin: 0;
  border-radius: 18px;
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(226, 228, 243, 0.8);
  box-shadow: 0 22px 40px -36px rgba(25, 26, 70, 0.65);
  color: var(--muted);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.testimonials-visual {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.testimonial-shot {
  border-radius: 22px;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(226, 228, 243, 0.9);
  box-shadow: 0 24px 44px -32px rgba(25, 26, 70, 0.6);
}

.testimonial-shot img {
  display: block;
  width: min(320px, 100%);
  border-radius: 14px;
}

.testimonial-caption {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(226, 228, 243, 0.7);
  padding: 2rem 0;
  background: #fff;
}

.footer-cta {
  background: linear-gradient(90deg, rgba(90, 93, 240, 0.12), rgba(90, 93, 240, 0.03));
  border-bottom: 1px solid rgba(226, 228, 243, 0.7);
  padding: 3rem 0;
}

.footer-cta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-form button {
  flex: none;
}

.footer-form input {
  flex: 1 1 220px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font: inherit;
  background: #fff;
}

.footer-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90, 93, 240, 0.18);
}

.footer-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.device-frame {
  position: relative;
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f101b, #2a2c43);
  box-shadow: 0 30px 60px -24px rgba(25, 26, 70, 0.55);
  display: inline-block;
}

.device-frame img {
  display: block;
  width: min(520px, 100%);
  height: auto;
  border-radius: 18px;
}

.device-frame--tablet {
  border-radius: 34px;
  padding: 1.4rem 1.6rem;
}

.device-frame--laptop {
  border-radius: 24px;
  padding: 1rem 1.3rem;
}

.device-camera {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}
