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

html { scroll-behavior: smooth; overflow-x: hidden; }

.wt-page {
  --wt-brand: #6342d1;
  --wt-brand-dark: #5234b8;
  --wt-soft: #ede7ff;
  --wt-line: #e5e7eb;
  --wt-muted: #4b5563;
  --wt-dark: #111827;
  margin: 0;
  background: #fff;
  color: var(--wt-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wt-wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.wt-loading-wrap {
  min-height: 50vh;
  display: grid;
  place-items: center;
  color: var(--wt-muted);
}

.wt-btn {
  border: 0;
  border-radius: 10px;
  padding: 14px 24px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.wt-btn-primary {
  background: var(--wt-brand);
  color: #fff;
}

.wt-btn-primary:hover { background: var(--wt-brand-dark); }

.wt-btn-outline {
  background: #fff;
  color: var(--wt-brand);
  border: 1.5px solid #c4b5fd;
  font-weight: 700;
}

.wt-btn-outline:hover {
  border-color: #c9b8ff;
  background: #faf8ff;
}

/* header — full-width balk, inhoud zelfde container als hero */
.wt-header {
  width: 100%;
  border-bottom: 1px solid var(--wt-line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.wt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 96px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.wt-logo {
  text-decoration: none;
  color: var(--wt-brand);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wt-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ede7ff, #ddd6fe);
  color: var(--wt-brand);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wt-logo-text {
  color: var(--wt-brand);
  font-weight: 900;
}

.wt-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.wt-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  flex-shrink: 0;
}

.wt-nav a:not(.wt-btn) {
  color: var(--wt-dark);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
}

.wt-nav a:not(.wt-btn):hover { color: var(--wt-brand); }

.wt-nav .wt-btn-primary {
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 15px;
}

/* hero */
.wt-hero {
  padding: 72px 0 80px;
}

.wt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.wt-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 4.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--wt-dark);
}

.wt-hero-copy h1 em {
  font-style: normal;
  color: var(--wt-brand);
  font-weight: 900;
}

.wt-lead {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--wt-muted);
  font-weight: 500;
  max-width: 520px;
}

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

.wt-hero-visual,
.wt-browser {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.wt-hero-mockup-full {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--wt-line);
  box-shadow: 0 24px 64px rgba(23, 20, 17, 0.1);
  display: block;
}

.wt-browser {
  background: #fff;
  border: 1px solid var(--wt-line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(23, 20, 17, 0.1);
  overflow: hidden;
}

.wt-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f7f3ef;
  border-bottom: 1px solid var(--wt-line);
}

.wt-dots { display: flex; gap: 6px; }
.wt-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.wt-dots i:nth-child(1) { background: #ff6058; }
.wt-dots i:nth-child(2) { background: #ffbd2e; }
.wt-dots i:nth-child(3) { background: #28c840; }

.wt-browser-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #8a7f78;
}

.wt-browser-body { padding: 20px; }

.wt-browser-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 800;
}

.wt-browser-head span:last-child {
  color: var(--wt-muted);
  font-weight: 600;
}

.wt-logo-mini { color: var(--wt-brand); }

.wt-widget-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wt-widget-step {
  border: 1px solid var(--wt-line);
  border-radius: 12px;
  padding: 12px;
  background: #faf8f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.wt-widget-step-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.wt-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wt-soft);
  color: var(--wt-brand-dark);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wt-widget-step img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  background: #e8e0d8;
  display: block;
}

.wt-step-thumb { aspect-ratio: 1 !important; }

.wt-upload-box,
.wt-download-pill {
  border: 1px dashed #c9b8ff;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--wt-brand);
  line-height: 1.35;
  background: #fff;
}

.wt-download-pill {
  border-style: solid;
  border-color: var(--wt-soft);
}

/* features */
.wt-features {
  padding: 56px 0;
  background: #faf8ff;
  border-top: 1px solid var(--wt-line);
  border-bottom: 1px solid var(--wt-line);
}

.wt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.wt-feature-card {
  background: #fff;
  border: 1px solid var(--wt-line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(23, 20, 17, 0.04);
}

.wt-feature-icon,
.wt-fa-icon.wt-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wt-soft);
  color: var(--wt-brand);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  object-fit: cover;
}

.wt-feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.wt-feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--wt-muted);
  line-height: 1.55;
}

/* install */
.wt-install {
  padding: 72px 0;
}

.wt-install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.wt-install h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.03em;
  font-weight: 900;
}

.wt-install-lead {
  margin: 0 0 24px;
  color: var(--wt-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 460px;
}

.wt-code-panel {
  position: relative;
  margin-bottom: 20px;
}

.wt-code-block {
  margin: 0;
  padding: 20px 16px;
  border-radius: 14px;
  background: #1e1b18;
  color: #e8e0ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

.wt-code-copy {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wt-code-copy:hover { background: rgba(255,255,255,0.2); }

.wt-install-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f0ec;
  color: var(--wt-muted);
  font-size: 13px;
  font-weight: 700;
}

.wt-install-badge i { color: var(--wt-brand); }

.wt-install-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wt-install-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--wt-line);
  border-radius: 16px;
  background: #fff;
}

.wt-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wt-brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.wt-step-icon,
.wt-fa-icon.wt-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--wt-soft);
  color: var(--wt-brand);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  object-fit: cover;
}

.wt-install-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.wt-install-step p {
  margin: 0;
  font-size: 14px;
  color: var(--wt-muted);
  line-height: 1.5;
}

/* pricing */
.wt-pricing {
  padding: 72px 0;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
}

.wt-section-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.03em;
  font-weight: 900;
}

.wt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.wt-price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--wt-line);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(23, 20, 17, 0.04);
}

.wt-price-card.featured {
  border-color: #c9b8ff;
  box-shadow: 0 20px 48px rgba(99, 54, 193, 0.15);
  transform: translateY(-4px);
}

.wt-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wt-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.wt-price-card h3 {
  margin: 8px 0 4px;
  font-size: 22px;
}

.wt-price-sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--wt-muted);
}

.wt-price-amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.wt-price-amount span {
  font-size: 16px;
  font-weight: 600;
  color: var(--wt-muted);
}

.wt-price-tryons {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wt-brand-dark);
}

.wt-price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.wt-price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--wt-muted);
  margin-bottom: 10px;
}

.wt-price-card li i {
  color: var(--wt-brand);
  margin-top: 3px;
  font-size: 12px;
}

.wt-price-card .wt-btn {
  width: 100%;
}

.wt-pricing-foot {
  margin: 28px 0 0;
  text-align: center;
  color: var(--wt-muted);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* footer */
.wt-footer {
  border-top: 1px solid var(--wt-line);
  padding: 40px 0 48px;
  background: #fff;
}

.wt-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.wt-footer p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--wt-muted);
  max-width: 280px;
  line-height: 1.55;
}

.wt-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wt-footer-links a {
  color: var(--wt-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.wt-footer-links a:hover { color: var(--wt-brand); }

.wt-footer-contact {
  text-align: right;
}

.wt-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.wt-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--wt-line);
  display: grid;
  place-items: center;
  color: var(--wt-muted);
  text-decoration: none;
}

.wt-social a:hover {
  border-color: #c9b8ff;
  color: var(--wt-brand);
}

.wt-footer-contact > a {
  color: var(--wt-brand);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* responsive */
@media (max-width: 960px) {
  .wt-hero-grid,
  .wt-features-grid,
  .wt-install-grid,
  .wt-pricing-grid,
  .wt-footer-grid {
    grid-template-columns: 1fr;
  }

  .wt-browser,
  .wt-hero-visual {
    margin: 0 auto;
    max-width: 100%;
  }

  .wt-footer-contact { text-align: left; }
  .wt-social { justify-content: flex-start; }

  .wt-nav a:not(.wt-btn):not(:last-of-type) { display: none; }

  .wt-price-card.featured { transform: none; }
}

@media (max-width: 600px) {
  .wt-wrap { padding: 0 16px; }
  .wt-header-inner {
    padding: 20px 20px;
    min-height: 80px;
  }
  .wt-logo { font-size: 24px; }
  .wt-nav { gap: 16px; }
  .wt-hero-actions { flex-direction: column; }
  .wt-hero-actions .wt-btn { width: 100%; }
  .wt-widget-steps { grid-template-columns: 1fr; }
  .wt-features-grid { grid-template-columns: 1fr; }
}
