/* Standalone component. Uses the site's data-theme="light|dark" convention. */
.vsk-hero {
  --vsk-text: var(--text, #f5f9fc);
  --vsk-muted: #a4bbc9;
  --vsk-accent: #29ded0;
  --vsk-heading: #01b6c9;
  --vsk-surface: #111f2c;
  --vsk-line: #2d4151;
  --vsk-ui: #0c1723;
  display: grid;
  grid-template-columns: minmax(0, 630fr) minmax(0, 650fr);
  align-items: center;
  gap: 32px;
  min-width: 0;
  color: var(--vsk-text);
  font-family: var(--font-body, 'Onest', sans-serif);
}
[data-theme="light"] .vsk-hero {
  --vsk-text: var(--text, #0e1422);
  --vsk-muted: #56617a;
  --vsk-accent: #007f91;
  --vsk-heading: #008ba6;
  --vsk-surface: #fff;
  --vsk-line: #ccd7e4;
  --vsk-ui: #f2f4f8;
}
.vsk-hero *, .vsk-hero *::before, .vsk-hero *::after { box-sizing: border-box; }
.vsk-hero button, .vsk-hero input { font: inherit; }
.vsk-hero button { cursor: pointer; }
.vsk-hero :focus-visible { outline: 2px solid var(--vsk-accent); outline-offset: 5px; }
.vsk-hero__copy { min-width: 0; }
.vsk-hero__eyebrow { margin: 0 0 32px; font-size: 12px; line-height: 1.5; text-transform: uppercase; color: var(--vsk-accent); }
.vsk-hero h1 { margin: 0 0 28px; font-family: var(--font-head, 'Unbounded', sans-serif); font-size: clamp(28px, 3.2vw, 46px); font-weight: 600; line-height: 1.22; letter-spacing: -.035em; }
.vsk-hero h1 span { display: block; color: var(--vsk-heading); }
.vsk-hero__intro { max-width: 575px; margin: 0 0 32px; color: var(--vsk-muted); font-size: clamp(16px, 1.32vw, 19px); line-height: 1.5; }
.vsk-hero__form { max-width: 480px; }
.vsk-hero__form-row { display: flex; gap: 12px; }
.vsk-hero__form-row input { min-width: 0; width: 51%; border: 1px solid var(--vsk-line); background: var(--vsk-surface); color: var(--vsk-text); border-radius: 32px; padding: 19px 22px; }
.vsk-hero__form-row input::placeholder { color: var(--vsk-muted); opacity: 1; }
.vsk-hero__form-row button { flex: 1; border: 0; border-radius: 32px; background: var(--cyan, #01afe9); color: #071723; padding: 19px 22px; white-space: nowrap; }
.vsk-hero__form-row button:hover { filter: brightness(1.1); }
.vsk-hero__consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 22px; color: var(--vsk-muted); font-size: 12px; line-height: 1.5; cursor: pointer; }
.vsk-hero__consent input { accent-color: var(--vsk-accent); margin: 2px 0 0; flex-shrink: 0; }
.vsk-slider { position: relative; min-width: 0; padding: 0 18px; container-type: inline-size; touch-action: pan-y; }
.vsk-slider::before { content: ''; pointer-events: none; position: absolute; inset: 5% -2%; background: radial-gradient(ellipse, #00c8cc18, transparent 67%); }
.vsk-slider__controls { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 6px; min-height: 44px; margin: 0 10px 66px; }
.vsk-slider__tabs { display: flex; align-items: center; gap: clamp(6px, 1.5vw, 28px); }
.vsk-slider__tabs button { border: 0; background: none; color: var(--vsk-muted); padding: 12px 0; font-size: 15px; min-height: 44px; }
.vsk-slider__tabs button::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: currentColor; opacity: 0; }
.vsk-slider__tabs button[aria-selected="true"] { color: var(--vsk-accent); }
.vsk-slider__tabs button[aria-selected="true"]::before { opacity: 1; }
.vsk-slider__pause { flex: 0 0 44px; min-height: 44px; padding: 0; border: 1px solid var(--vsk-line); border-radius: 50%; color: var(--vsk-muted); background: transparent; }
.vsk-slider__pause[hidden] { display: none; }
.vsk-slider__panels { display: grid; position: relative; }
.vsk-slider__panel { grid-area: 1 / 1; width: 100%; min-width: 0; margin: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .6s ease, visibility .6s; }
.vsk-slider__panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.vsk-slider__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-height: 52px; font-size: clamp(11px, 2.3cqi, 14px); line-height: 1.45; text-transform: uppercase; color: var(--vsk-muted); }
.vsk-slider__steps span:last-child { color: var(--vsk-accent); }
.vsk-slider__art { position: relative; width: 100%; aspect-ratio: 610 / 330; }
.vsk-slider__art img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; }
.vsk-slider__art--development { padding-top: 1.64%; }
.vsk-slider__art--development > img { top: 3.03%; height: 93.94%; }
.vsk-slider__ui { position: absolute; left: 47.54%; top: 3.03%; width: 52.46%; height: 93.94%; border-radius: 0 4cqi 4cqi 0; background: var(--vsk-ui); overflow: hidden; }
.vsk-slider__ui span { position: absolute; left: 9.375%; top: 12.58%; font-size: clamp(9px, 2.62cqi, 16px); color: var(--vsk-muted); }
.vsk-slider__divider { position: absolute; top: -3.03%; left: 47.38%; width: 3px; height: 106.06%; background: #29e5d3; }
.vsk-slider__status { position: absolute; top: 66%; left: 58.85%; font-size: clamp(10px, 2.95cqi, 18px); color: var(--vsk-muted); }
.vsk-slider__panel figcaption { margin: 32px 16px 0; min-height: 44px; font-size: 14px; line-height: 1.5; color: var(--vsk-muted); }
.vsk-slider .vsk-light { display: none; }
[data-theme="light"] .vsk-slider .vsk-dark { display: none; }
[data-theme="light"] .vsk-slider .vsk-light { display: block; }
@media (max-width: 1199px) {
  .vsk-hero { gap: 16px; }
  .vsk-hero__form-row { flex-wrap: wrap; }
  .vsk-hero__form-row input { flex: 1 1 180px; }
  .vsk-hero__form-row button { flex: 1 1 180px; }
  .vsk-slider { padding: 0 4px; }
  .vsk-slider__controls { margin-inline: 0; margin-bottom: 44px; }
  .vsk-slider__tabs { gap: 6px; }
  .vsk-slider__tabs button { font-size: 13px; }
}
@media (max-width: 959px) {
  .vsk-hero { grid-template-columns: 1fr; gap: 40px; }
  .vsk-hero__copy { max-width: 660px; }
  .vsk-hero h1 { font-size: clamp(27px, 5vw, 44px); }
  .vsk-slider { width: 100%; max-width: 650px; justify-self: center; }
  .vsk-slider__controls { margin-bottom: 32px; }
  .vsk-slider__tabs { gap: 20px; }
  .vsk-slider__tabs button { font-size: 15px; }
}
@media (max-width: 479px) {
  .vsk-hero { gap: 32px; }
  .vsk-hero h1 { font-size: clamp(23px, 6vw, 28px); letter-spacing: -.045em; }
  .vsk-hero__eyebrow { font-size: 10px; margin-bottom: 22px; }
  .vsk-hero__intro { margin-bottom: 24px; }
  .vsk-hero__form-row { flex-direction: column; }
  .vsk-hero__form-row input, .vsk-hero__form-row button { flex: auto; width: 100%; min-height: 54px; padding: 16px 20px; }
  .vsk-slider { padding: 0; }
  .vsk-slider__tabs { flex: 1; justify-content: space-between; gap: 2px; }
  .vsk-slider__tabs button { font-size: 11px; }
  .vsk-slider__tabs button::before { width: 5px; height: 5px; margin-right: 3px; }
  .vsk-slider__pause { flex-basis: 36px; border: 0; }
  .vsk-slider__steps { gap: 12px; min-height: 52px; }
  .vsk-slider__divider { width: 2px; }
  .vsk-slider__panel figcaption { margin: 24px 0 0; font-size: 13px; min-height: 40px; }
}
@media (prefers-reduced-motion: reduce) { .vsk-slider__panel { transition: none; } }
