:root {
  --vx-bg: #f6f8ff;
  --vx-bg-alt: #ffffff;
  --vx-ink: #0b1220;
  --vx-muted: rgba(15, 23, 42, 0.72);
  --vx-border: rgba(15, 23, 42, 0.1);
  --vx-card: rgba(255, 255, 255, 0.78);
  --vx-accent: #2563eb;
  --vx-accent-strong: #1d4ed8;
  --vx-shadow-sm: 0 2px 10px rgba(2, 6, 23, 0.08);
  --vx-shadow-md: 0 18px 46px rgba(2, 6, 23, 0.1);
  --vx-radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--vx-ink);
  background:
    radial-gradient(1050px 380px at 8% -20%, #dce8ff 0%, transparent 70%),
    radial-gradient(900px 340px at 92% -12%, #dbfff1 0%, transparent 68%),
    var(--vx-bg);
  font-family: "Google Sans", "Inter", ui-sans-serif, system-ui;
  line-height: 1.66;
}

a {
  color: var(--vx-accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.vx-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vx-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 16px;
}

.vx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0 10px;
}

.vx-header-row {
  min-height: 62px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  box-shadow: var(--vx-shadow-sm);
}

.vx-glass {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--vx-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vx-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f4fd6;
}

.vx-brand:hover {
  text-decoration: none;
}

.vx-brand img {
  width: 90px;
  max-width: 32vw;
  height: auto;
  display: block;
  margin-top: -5px;
  margin-left: 5px;
}

.vx-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vx-nav a {
  color: var(--vx-muted);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.vx-nav a:hover,
.vx-nav a:focus-visible {
  color: var(--vx-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--vx-border);
  text-decoration: none;
}

.vx-section {
  padding: 6rem 0;
}

.vx-section-white {
  background: var(--vx-bg-alt);
  border-top: 1px solid var(--vx-border);
  border-bottom: 1px solid var(--vx-border);
}

.vx-hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.vx-hero-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

.vx-hero-copy {
  min-width: 0;
}

.vx-hero-figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vx-hero-figure img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
}

.vx-eyebrow {
  margin: 0;
  color: var(--vx-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.vx-hero h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2.1rem, 6.4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.vx-lead {
  margin: 0.72rem 0 0;
  max-width: 760px;
  color: var(--vx-muted);
  font-size: clamp(1.03rem, 2.4vw, 1.24rem);
  line-height: 1.5;
}

.vx-hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--vx-border);
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vx-btn:hover,
.vx-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--vx-shadow-sm);
  text-decoration: none;
}

.vx-btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--vx-accent), var(--vx-accent-strong));
  gap: 0.48rem;
}

.vx-btn-primary::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M3 10a1 1 0 0 1 1-1h9.59L10.3 5.7a1 1 0 1 1 1.4-1.4l5 5a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4-1.4L13.59 11H4a1 1 0 0 1-1-1Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M3 10a1 1 0 0 1 1-1h9.59L10.3 5.7a1 1 0 1 1 1.4-1.4l5 5a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4-1.4L13.59 11H4a1 1 0 0 1-1-1Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.18s ease;
}

.vx-btn-primary:hover::after,
.vx-btn-primary:focus-visible::after {
  transform: translateX(2px);
}

.vx-btn-secondary {
  color: var(--vx-ink);
  background: rgba(255, 255, 255, 0.82);
  gap: 0.48rem;
}

.vx-btn-secondary::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M3 10a1 1 0 0 1 1-1h9.59L10.3 5.7a1 1 0 1 1 1.4-1.4l5 5a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4-1.4L13.59 11H4a1 1 0 0 1-1-1Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M3 10a1 1 0 0 1 1-1h9.59L10.3 5.7a1 1 0 1 1 1.4-1.4l5 5a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4-1.4L13.59 11H4a1 1 0 0 1-1-1Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.18s ease;
}

.vx-btn-secondary:hover::after,
.vx-btn-secondary:focus-visible::after {
  transform: translateX(2px);
}

.vx-trust-line {
  margin-top: 10px;
  max-width: 42rem;
  color: var(--vx-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.vx-split {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: clamp(0.9rem, 2.3vw, 1.35rem) 0;
}

.vx-content {
  min-width: 0;
}

.vx-illustration {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vx-illustration img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

.vx-section h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.vx-content h2 {
  margin-bottom: 0.2rem;
}

.vx-content h2 + p {
  margin-top: 0.44rem;
}

.vx-section p {
  margin: 0 0 0.74rem;
  color: var(--vx-muted);
}

.vx-content p {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.vx-section-head h2 {
  margin-bottom: 1rem;
}

.vx-muted {
  margin-top: 0.8rem;
  max-width: 42rem;
  color: var(--vx-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.04rem);
  line-height: 1.55;
}

.vx-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.72rem;
}

.vx-steps li {
  counter-increment: step;
  background: var(--vx-card);
  border: 1px solid var(--vx-border);
  border-radius: calc(var(--vx-radius) - 4px);
  padding: 0.86rem 0.96rem;
  font-weight: 500;
  color: #182235;
  box-shadow: var(--vx-shadow-sm);
}

.vx-steps li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  margin-right: 0.55rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--vx-accent), var(--vx-accent-strong));
  font-size: 0.78rem;
  font-weight: 700;
}

.vx-checklist,
.vx-pill-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.vx-checklist li {
  color: #1c2b41;
  padding-left: 1.2rem;
  position: relative;
}

.vx-checklist li::before {
  content: "\2713";
  color: #16a34a;
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 700;
}

.vx-checklist-blue li::before {
  color: var(--vx-accent);
}

.vx-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vx-pill-list li {
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.08);
  color: #1f4fd6;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.vx-highlight {
  border-radius: var(--vx-radius);
}

.vx-trust-anchor {
  text-align: left;
}

.vx-footer {
  margin-top: auto;
  border-top: 1px solid var(--vx-border);
  background: #fff;
  color: var(--vx-muted);
  font-size: 0.9rem;
  padding: clamp(1.8rem, 4vw, 2.7rem) 0 1.2rem;
}

.vx-footer-main {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
}

.vx-footer-column {
  min-width: 0;
}

.vx-footer-heading {
  margin: 0 0 0.74rem;
  color: var(--vx-ink);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vx-footer-links {
  display: grid;
  gap: 0.48rem;
}

.vx-footer-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.vx-footer-link-group-secondary {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--vx-border);
}

.vx-footer-link {
  color: var(--vx-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.vx-footer-link:hover,
.vx-footer-link:focus-visible {
  color: var(--vx-ink);
  text-decoration: underline;
  outline: none;
}

.vx-footer-meta {
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--vx-border);
  text-align: center;
}

.vx-footer-meta p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  font-size: 0.82rem;
}

.vx-footer-heart {
  width: 0.95rem;
  height: 0.95rem;
  color: #ef4444;
  display: inline-block;
  transform: translateY(1px);
}

@media (max-width: 760px) {
  .vx-header-row {
    border-radius: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
  }

  .vx-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .vx-nav a {
    font-size: 0.83rem;
    padding: 8px 10px;
  }

  .vx-lead {
    margin-top: 0.64rem;
    font-size: clamp(1rem, 4.8vw, 1.14rem);
  }

  .vx-trust-line {
    margin-top: 8px;
    font-size: 0.84rem;
  }
}

@media (min-width: 900px) {
  .vx-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 28px;
  }

  .vx-split {
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
    gap: 26px;
  }

  .vx-split-reverse .vx-illustration {
    order: 2;
  }

  .vx-split-reverse .vx-content {
    order: 1;
  }

  .vx-footer-main {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}
