/* SuperKool V1 — marketing design system */

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

.sk-body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  color: #404040;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.sk-v1-page {
  font-family: 'Inter', sans-serif;
  color: #404040;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  overflow-x: hidden;
}

.sk-v1-page a { text-decoration: none; }
.sk-v1-page button { font-family: inherit; cursor: pointer; }

@keyframes sk-floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes sk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sk-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .sk-v1-page *, .sk-v1-page *::before, .sk-v1-page *::after {
    animation: none !important;
    transition: none !important;
  }
  .sk-v1-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Sticky header ---- */
.sk-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
  font-family: 'Inter', sans-serif;
}

.sk-nav.sk-nav--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08), 0 1px 2px rgba(16, 24, 40, 0.04);
  border-bottom-color: #edeef1;
}

.sk-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sk-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  color: #2563eb;
}

.sk-logo-img {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(160px, 42vw);
}

.sk-footer-logo-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 160px;
}

.sk-nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sk-nav-link {
  text-decoration: none;
  font-size: 15px;
  color: #404040;
  font-weight: 500;
  transition: color 150ms ease-out;
}

.sk-nav-link:hover,
.sk-nav-link--active {
  color: #2563eb;
}

.sk-nav-link--active { font-weight: 600; }

.sk-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sk-btn-ghost {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #404040;
  padding: 9px 16px;
  border-radius: 10px;
  transition: background 150ms ease-out;
}

.sk-btn-ghost:hover { background: rgba(0, 0, 0, 0.05); }

.sk-btn-primary {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: #2563eb;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: background 150ms ease-out;
  border: none;
  display: inline-block;
}

.sk-btn-primary:hover { background: #3b82f6; }

.sk-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sk-nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #171717;
}

.sk-nav-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid #edeef1;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.14);
  padding: 14px clamp(16px, 4vw, 32px) 22px;
}

.sk-nav-mobile.sk-nav-mobile--open { display: block; }

.sk-nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sk-nav-mobile .sk-nav-link {
  font-weight: 500;
  font-size: 17px;
  padding: 13px 8px;
  border-radius: 10px;
}

.sk-nav-mobile-divider {
  height: 1px;
  background: #edeef1;
  margin: 10px 0;
}

.sk-nav-mobile .sk-btn-primary,
.sk-nav-mobile .sk-btn-ghost {
  text-align: center;
  display: block;
  font-size: 16px;
  padding: 13px;
}

.sk-nav-mobile .sk-btn-ghost {
  border: 1px solid #d4d4d4;
  margin-bottom: 10px;
}

@media (max-width: 879px) {
  .sk-nav-desktop { display: none; }
  .sk-nav-toggle { display: flex; }
}

@media (min-width: 880px) {
  .sk-nav-mobile { display: none !important; }
}

/* ---- Hover helpers (style-hover replacement) ---- */
.sk-card-hover {
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.sk-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.13), 0 2px 4px rgba(16, 24, 40, 0.06);
}

.sk-tool-card:hover {
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.13), 0 2px 4px rgba(16, 24, 40, 0.06);
  transform: translateY(-5px) rotate(-0.5deg);
  border-color: #bfdbfe !important;
}

.sk-category-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.14), 0 4px 8px rgba(16, 24, 40, 0.06);
}

.sk-btn-gradient:hover {
  transform: translateY(-2px);
}

.sk-btn-gradient:active {
  transform: translateY(0);
}

.sk-footer-social:hover {
  background: #2563eb !important;
  color: #fff !important;
}

.sk-footer-link:hover {
  color: #fff !important;
}

/* ---- Pricing toggle ---- */
.sk-billing-toggle {
  display: inline-flex;
  background: #f1f2f4;
  border: 1px solid #edeef1;
  border-radius: 12px;
  padding: 5px;
}

.sk-billing-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 22px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all 160ms ease-out;
  background: transparent;
  color: #737373;
}

.sk-billing-btn.is-active {
  background: #fff;
  color: #2563eb;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.12);
}

.sk-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  text-align: left;
}

.sk-faq-icon {
  flex-shrink: 0;
  display: inline-block;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: #2563eb;
  transition: transform 200ms ease-out;
}

.sk-faq-item.is-open .sk-faq-icon {
  transform: rotate(45deg);
}

.sk-faq-answer {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #525252;
  margin: 0;
  padding: 0 4px 24px;
  max-width: 660px;
}

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

/* ---- Reveal ---- */
[data-reveal].sk-reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
}

[data-reveal].sk-reveal-visible {
  opacity: 1;
  transform: none;
}

/* ---- Contact form (CF7) ---- */
.sk-contact-form .wpcf7-form input[type="text"],
.sk-contact-form .wpcf7-form input[type="email"],
.sk-contact-form .wpcf7-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #171717;
  width: 100%;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: all 150ms ease-out;
}

.sk-contact-form .wpcf7-form input:focus,
.sk-contact-form .wpcf7-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #bfdbfe;
}

.sk-contact-form .wpcf7-form input[type="submit"] {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(120deg, #2563eb, #1d4ed8);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}

.sk-contact-form .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  margin-bottom: 8px;
}

.sk-contact-form .wpcf7-form p {
  margin-bottom: 18px;
}

/* ===== Responsive foundation (mobile / tablet / desktop) ===== */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.sk-body {
  overflow-x: clip;
}

.sk-v1-page {
  width: 100%;
  min-width: 0;
}

.sk-v1-page main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.sk-v1-page main section,
.sk-v1-page footer {
  max-width: 100%;
  min-width: 0;
}

.sk-v1-page main img {
  max-width: 100%;
  height: auto;
}

.sk-v1-page main .sk-tool-card__thumb,
.sk-v1-page main .sk-tool-section-media img {
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.sk-v1-page main .sk-media-video-preview video,
.sk-v1-page main .sk-media-video-preview iframe,
.sk-v1-page main .sk-tool-card video,
.sk-v1-page main #heroCollage video {
  max-width: none;
  height: 100%;
}

.sk-v1-page main video:not(.sk-media-video-preview video):not(.sk-tool-card__thumb):not(.sk-hero-main-video):not(.sk-showcase-video),
.sk-v1-page main iframe:not(.sk-media-video-preview iframe) {
  max-width: 100%;
  height: auto;
}

.sk-v1-page main article {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.sk-v1-page main section[id] {
  scroll-margin-top: clamp(72px, 14vw, 88px);
}

/* FAQ question text wraps beside the + icon */
.sk-faq-toggle > span:first-child {
  flex: 1;
  min-width: 0;
}

/* Marquee — clip on small screens */
.sk-marquee-wrap {
  overflow: hidden;
  max-width: 100%;
}

/* Hero collage scales within narrow viewports */
#heroCollage {
  max-width: min(520px, 100%);
}

/* ---- Tablet (≤879px) ---- */
@media (max-width: 879px) {
  .sk-nav-inner {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .sk-nav-mobile {
    padding-left: max(clamp(16px, 4vw, 32px), env(safe-area-inset-left));
    padding-right: max(clamp(16px, 4vw, 32px), env(safe-area-inset-right));
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .sk-nav-mobile.sk-nav-mobile--open {
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---- Mobile (≤767px) ---- */
@media (max-width: 767px) {
  /* Inline min-widths must not force horizontal scroll */
  .sk-v1-page main [style*="min-width"] {
    min-width: 0 !important;
  }

  /* Stack split columns full width */
  .sk-v1-page main [style*="flex:1 1 3"],
  .sk-v1-page main [style*="flex:1 1 4"] {
    flex-basis: 100% !important;
    max-width: 100%;
  }

  /* Reset alternating column order — use natural DOM flow on mobile */
  .sk-v1-page main [style*="order:1"],
  .sk-v1-page main [style*="order:2"] {
    order: initial !important;
  }

  /* Single-column grids when minmax would overflow */
  .sk-v1-page main div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero CTAs stack and fill width */
  .sk-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sk-hero-actions a {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Featured tool card — stack image above copy */
  .sk-v1-page main a[style*="flex-wrap:wrap"][style*="border-radius:20px"] > div[style*="aspect-ratio:16/10"] {
    min-height: 200px;
  }

  /* Pricing tier price */
  .sk-v1-page [data-tier-price] {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  /* Footer copyright row */
  .sk-v1-page footer > div > div:last-child {
    justify-content: center !important;
    text-align: center;
  }
}

/* ---- Small mobile (≤479px) ---- */
@media (max-width: 479px) {
  .sk-logo-text {
    font-size: 18px;
  }

  .sk-billing-btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .sk-billing-toggle {
    width: 100%;
    justify-content: center;
  }

  .sk-btn-primary,
  .sk-btn-gradient {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .sk-v1-page main a[style*="padding:14px 28px"]:not(.sk-tool-card):not([style*="display:inline-flex"]),
  .sk-v1-page main a.sk-btn-gradient {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* Legal / long-form pages */
  .sk-v1-page main article {
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
  }

  /* Contact form card */
  .sk-contact-form {
    padding: 20px !important;
  }
}

/* ---- Desktop hover effects off on touch ---- */
@media (hover: none) {
  .sk-card-hover:hover,
  .sk-tool-card:hover,
  .sk-category-card:hover {
    transform: none;
    box-shadow: inherit;
  }

  .sk-btn-gradient:hover {
    transform: none;
  }
}

/* ---- Homepage showcase grid (revid-style) ---- */
.sk-showcase-carousel {
  position: relative;
  width: 100%;
}

.sk-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 2.5vw, 20px);
  padding-top: clamp(32px, 5vw, 56px);
  width: 100%;
  align-items: stretch;
}

.sk-showcase-nav,
.sk-showcase-dots {
  display: none;
}

@media (max-width: 479px) {
  .sk-showcase-grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: clamp(32px, 5vw, 56px) 0 4px;
  }

  .sk-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .sk-showcase-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .sk-showcase-card--wide {
    grid-column: auto;
  }

  .sk-showcase-media {
    aspect-ratio: auto;
    height: clamp(220px, 58vw, 300px);
    min-height: 0;
  }

  .sk-showcase-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(clamp(32px, 5vw, 56px) + clamp(110px, 29vw, 150px));
    z-index: 4;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #EDEEF1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #171717;
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 150ms ease-out, border-color 150ms ease-out;
  }

  .sk-showcase-nav:hover {
    background: #fff;
    border-color: #2563EB;
    color: #2563EB;
  }

  .sk-showcase-prev {
    left: -6px;
  }

  .sk-showcase-next {
    right: -6px;
  }

  .sk-showcase-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0 0;
  }

  .sk-showcase-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #D4D4D4;
    cursor: pointer;
    transition: background 150ms ease-out, transform 150ms ease-out;
  }

  .sk-showcase-dot.is-active {
    background: #2563EB;
    transform: scale(1.15);
  }
}

@media (min-width: 480px) {
  .sk-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sk-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sk-showcase-card--wide {
    grid-column: span 2;
  }
}

.sk-showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  height: 100%;
}

.sk-showcase-media {
  display: grid;
  grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
  isolation: isolate;
}

@media (min-width: 480px) {
  .sk-showcase-media {
    aspect-ratio: auto;
    height: clamp(280px, 28vw, 400px);
    min-height: clamp(280px, 28vw, 400px);
  }
}

/* Stack video wrap + overlays in one grid cell */
.sk-showcase-video-wrap,
.sk-showcase-badge,
.sk-showcase-cta {
  grid-area: 1 / 1;
}

.sk-showcase-video-wrap {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
  border-radius: inherit;
}

.sk-v1-page main .sk-showcase-media .sk-showcase-video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  background: #000;
  border: 0;
  margin: 0;
  padding: 0;
}

.sk-showcase-badge {
  place-self: start end;
  align-self: start;
  justify-self: end;
  z-index: 3;
  margin: 10px;
  opacity: 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(23, 23, 23, 0.88);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 2.5vw, 11px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  max-width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  transition: opacity 200ms ease-out;
}

.sk-showcase-cta {
  place-self: end center;
  align-self: end;
  justify-self: center;
  z-index: 3;
  margin: 0 0 clamp(10px, 2.5vw, 16px);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  max-width: calc(100% - 16px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.24);
  transition: opacity 200ms ease-out, background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
}

.sk-showcase-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sk-showcase-media:hover .sk-showcase-badge,
.sk-showcase-media:hover .sk-showcase-cta,
.sk-showcase-media:focus-within .sk-showcase-badge,
.sk-showcase-media:focus-within .sk-showcase-cta {
  opacity: 1;
}

.sk-showcase-cta:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

@media (hover: none) {
  .sk-showcase-badge,
  .sk-showcase-cta {
    opacity: 1;
  }
}

