/* ============================================
   3dprintkings ??? Clean, Bold & Flat
   ============================================ */

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #111827;
  --text-soft: #6b7280;
  --accent: #ffcd02;
  --accent-dark: #ffcd02;
  --accent-dim: rgba(255, 205, 2, 0.10);
  --accent-glow: rgba(255, 205, 2, 0.30);
  --dark: #1f2329;
  --line: #e8ebef;
  --shadow-sm: 0 4px 20px rgba(17, 24, 39, 0.06);
  --shadow: 0 12px 40px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 24px 80px rgba(17, 24, 39, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1000px;
  --footerSpace: 0px;
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
}

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

[hidden] {
  display: none !important;
}


/* ---------- Wrapper ---------- */

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 0 0;
}


/* ---------- Header / Brand ---------- */

.site-header {
  display: flex;
  justify-content: center;
  padding: 18px 0 8px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform var(--transition);
}

.brand:hover {
  transform: translateY(-2px);
}

.brand:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 8px;
  border-radius: 12px;
}

.brand-icon {
  display: block;
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.brand-wordmark {
  display: block;
  width: 145px;
  height: auto;
  object-fit: contain;
}


/* ---------- Navigation ---------- */

.site-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 18px auto 22px;
}

.site-nav a {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.site-nav a:hover {
  color: var(--text);
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.site-nav a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}


/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 0 42px;
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.accent {
  position: relative;
  z-index: 0;
  color: var(--accent-dark);
}

.accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -2px;
  bottom: 3px;
  left: -2px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.35;
}

.hero-desc {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

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

.hero-social-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-social-link {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.hero-social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.hero-social-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0);
}

/* Hero follower count in running text */
#followerText {
  font-weight: 800;
  color: #343b46;
}


/* Social follower badge */
.follower-badge {
  font-weight: 700;
  font-size: 14px;
  color: #343b46;
}


/* Only the follower number is slightly stronger */
#followerBadgeCount {
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
}

.photo-card {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}

.photo-card picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eceff2;
  box-shadow: var(--shadow);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}


/* ---------- Hero people hotspots ---------- */

.hero-people {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.person-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.person-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 5px 20px rgba(17, 24, 39, 0.16);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.person-trigger::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 205, 2, 0.2);
}

.person-popover {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  left: 50%;
  width: min(250px, 70vw);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.person-hotspot:hover .person-popover,
.person-hotspot:focus-within .person-popover,
.person-hotspot.open .person-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.person-popover-name {
  font-size: 14px;
  font-weight: 900;
}

.person-popover-role {
  margin-top: 2px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
}

.person-popover-text,
.person-popover-personal {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.5;
}

.person-popover-personal {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}


/* ---------- Mobile person detail card ---------- */

.hero-person-mobile-card {
  display: none;
}


/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  padding: 12px 25px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 6px 22px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}


/* ---------- Sections ---------- */

.section {
  margin: 96px 0 0;
  scroll-margin-top: 22px;
}

.section-header {
  margin-bottom: 32px;
  text-align: center;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-desc {
  max-width: 570px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}


/* ---------- Value cards ---------- */

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.value-card {
  padding: 27px 26px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.value-card:hover {
  border-color: rgba(255, 205, 2, 0.65);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.value-card-icon {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.value-card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 850;
}

.value-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.contact-cta {
  margin-top: 8px;
  text-align: center;
}


/* ---------- Filter bar ---------- */

.filter-bar {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 26px;
}

.filter-btn {
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.filter-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 14px var(--accent-glow);
}


/* ---------- Products ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 24px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.product-card:hover {
  border-color: rgba(255, 205, 2, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-badge {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 9px;
  border: 1px solid rgba(230, 184, 0, 0.30);
  border-radius: 999px;
  background: var(--accent-dim);
  color: #7a6200;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.6;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
}

.card-cta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  transition: transform var(--transition);
}

.product-card:hover .card-cta svg,
.partner-card:hover .card-cta svg {
  transform: translateX(2px);
}

.discount-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin: 2px 0 14px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 205, 2, 0.45);
  border-radius: 10px;
  background: rgba(255, 205, 2, 0.07);
}

.discount-label {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
}

.discount-code {
  margin-left: auto;
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.discount-copy {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--accent);
  cursor: pointer;
}

.discount-copy svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.discount-copy.copied {
  background: #dcfce7;
  color: #166534;
}

.affiliate-note {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}


/* ---------- Partners ---------- */

.partner-slider {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.partner-track {
  display: grid;
  grid-auto-columns: calc((100% - 18px) / 2);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 3px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
  scroll-snap-align: start;
}

.partner-logo-link {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  display: block;
  max-width: 190px;
  max-height: 54px;
  object-fit: contain;
}

.partner-card h3 {
  margin: 13px 0 7px;
  font-size: 17px;
  font-weight: 850;
}

.partner-description {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}

.partner-quote {
  width: 100%;
  margin: 15px 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8f9fa;
}

.partner-quote blockquote {
  margin: 0;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.5;
}

.partner-quote footer {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 9px;
}

.partner-card .card-cta {
  margin-top: auto;
}

.partner-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform: translateY(-50%);
}

.partner-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.partner-nav-prev {
  left: -18px;
}

.partner-nav-prev::after {
  left: 15px;
  transform: translateY(-50%) rotate(-135deg);
}

.partner-nav-next {
  right: -18px;
}

.partner-nav-next::after {
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.partner-nav:disabled {
  opacity: 0.3;
  cursor: default;
}


/* ---------- Instagram ---------- */

.instagram-section {
  scroll-margin-top: 22px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.instagram-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 2px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.instagram-card:hover {
  border-color: rgba(255, 205, 2, 0.65);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.instagram-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eceff2;
}

.instagram-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-rank,
.instagram-type {
  position: absolute;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.instagram-rank {
  left: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 10px;
}

.instagram-type {
  right: 9px;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.instagram-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 13px 14px;
}

.instagram-caption {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 9px;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.instagram-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 11px;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 650;
}

.instagram-stat strong {
  color: var(--text-soft);
  font-weight: 850;
}

.instagram-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--text);
  font-size: 10px;
  font-weight: 850;
}

.instagram-open svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition);
}

.instagram-card:hover .instagram-open svg {
  transform: translateX(2px);
}

.instagram-empty {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--text-soft);
  font-size: 12px;
  text-align: center;
}


/* Instagram summary */

.instagram-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, calc(100% - 32px));
  margin: 22px auto 0;
}

.instagram-summary[hidden] {
  display: none;
}

.instagram-summary-item {
  display: flex;
  min-width: 0;
  min-height: 84px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.03),
    0 7px 18px rgba(17, 24, 39, 0.045);
  text-align: center;
}

.instagram-summary-value {
  display: block;
  color: var(--text);
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.instagram-summary-label {
  display: block;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.instagram-footer {
  margin-top: 22px;
  text-align: center;
}

.instagram-profile-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 850;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.instagram-profile-link:hover {
  background: #000;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}


/* ---------- Designs ---------- */

.design-stat {
  display: none;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--text-soft);
  font-size: 11px;
}

.design-stat.visible {
  display: flex;
}

.design-stat strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.design-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.design-card:hover {
  border-color: rgba(255, 205, 2, 0.65);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.design-preview {
  width: 88px;
  min-width: 88px;
  min-height: 92px;
  overflow: hidden;
  background: #f1f3f5;
}

.design-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-preview-fallback::after {
  content: "3D";
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 900;
}

.design-card-content {
  min-width: 0;
  padding: 13px 12px;
}

.design-platform {
  margin-bottom: 4px;
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.design-card h3 {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
}

.design-downloads {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 700;
}

.design-platforms {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 22px auto 0;
}

.design-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.design-platform-link:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.design-platform-downloads {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
}


/* ---------- Footer ---------- */

footer {
  margin-top: 0px;
  padding: 20px 24px;
  background: #fff;
}

.footer-inner {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}

.footer-copy {
  color: var(--text-soft);
  font-size: 11px;
}

.link {
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.link:hover {
  background: var(--accent-dim);
  color: var(--text);
}


/* ---------- Legal modal ---------- */

.modal-backdrop {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.45);
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(760px, 100%);
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.modal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.close:hover {
  background: #f3f4f6;
}

.close svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 24px 0;
}

.tab {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text);
}

.modal-body {
  max-height: min(65vh, 520px);
  overflow: auto;
  padding: 16px 24px 26px;
}

.modal-body h3 {
  margin: 18px 0 7px;
  font-size: 14px;
  font-weight: 900;
}

.modal-body h3:first-child {
  margin-top: 2px;
}

.modal-body p,
.modal-body li {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.65;
}

.modal-body ul {
  padding-left: 20px;
}

.generated-email {
  color: var(--text);
  font-weight: 750;
}


/* ---------- Scroll to top ---------- */

.scroll-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}


/* ---------- Misc ---------- */

.noscript-message {
  padding: 10px 15px;
  background: #fff4c0;
  color: var(--text);
  font-size: 12px;
  text-align: center;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .hero-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-social-wrap {
    justify-content: center;
  }

  .hero-visual {
    min-height: 0;
  }

  .partner-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .section {
    margin-top: 70px;
  }

  .product-grid,
  .value-cards {
    grid-template-columns: 1fr;
  }

  .partner-track {
    grid-auto-columns: 100%;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .instagram-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .instagram-media {
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }

  .instagram-content {
    min-height: 132px;
  }

  .design-grid {
    grid-template-columns: 1fr;
    max-width: 470px;
  }
}

@media (max-width: 640px) {
  .brand-icon {
    width: 82px;
    height: 82px;
  }

  .brand-wordmark {
    width: 132px;
  }

  .site-nav {
    gap: 5px 10px;
    margin-top: 14px;
  }

  .site-nav a {
    padding: 6px 8px;
    font-size: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-buttons {
    justify-content: center;
  }

  .photo-card {
    width: min(330px, 92vw);
  }

  .person-trigger {
    padding: 8px 12px;
    font-size: 15px;
  }

  .hero-people {
    overflow: visible;
  }

  .person-hotspot {
    z-index: 6;
  }

  .person-trigger {
    box-shadow: 0 5px 18px rgba(17, 24, 39, 0.20);
  }

  .person-popover {
    display: none !important;
  }

  .hero-visual {
    flex-direction: column;
  }

  .hero-person-mobile-card {
    width: min(330px, 92vw);
    margin-top: 12px;
    padding: 16px 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-align: left;
  }

  .hero-person-mobile-card:not([hidden]) {
    display: block;
  }

  .hero-person-mobile-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .hero-person-mobile-name {
    display: block;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
  }

  .hero-person-mobile-role {
    display: block;
    margin-top: 3px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.35;
  }

  .hero-person-mobile-close {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: var(--text);
    cursor: pointer;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
  }

  .hero-person-mobile-text,
  .hero-person-mobile-personal {
    margin: 11px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-person-mobile-personal {
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .instagram-summary {
    gap: 7px;
    width: min(100%, 430px);
  }

  .instagram-summary-item {
    min-height: 76px;
    padding: 12px 6px;
    border-radius: 12px;
  }

  .instagram-summary-value {
    font-size: 20px;
  }

  .instagram-summary-label {
    font-size: 8px;
    letter-spacing: 0.035em;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-social-wrap {
    flex-direction: column;
  }

  .follower-badge {
    text-align: center;
  }

  .instagram-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .instagram-media,
  .instagram-content {
    min-height: 112px;
  }

  .instagram-content {
    padding: 10px;
  }

  .instagram-caption {
    font-size: 10px;
  }

  .instagram-stats {
    gap: 7px;
    font-size: 8px;
  }

}

@media (max-width: 420px) {
  .instagram-summary {
    grid-template-columns: 1fr;
    width: min(280px, calc(100% - 32px));
  }

  .instagram-summary-item {
    min-height: 68px;
  }
}


/* Final brand safeguards */
.hero-title .accent,
.section-title .accent,
.accent {
  color: #ffcd02;
}

.btn-primary,
.hero-social-link,
.instagram-rank,
.filter-btn.active,
.person-trigger::before {
  background: #ffcd02;
}

.scroll-top {
  background: #ffcd02;
  color: #111827;
}


/* ============================================
   Hero flip card
   ============================================ */

.hero-visual {
  perspective: 1400px;
}

.photo-card {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}

.hero-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(.2,.72,.2,1);
}

.photo-card.is-flipped .hero-flip-inner {
  transform: rotateY(180deg);
}

.hero-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-flip-front {
  transform: rotateY(0deg);
}

.hero-flip-front picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-flip-front .hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.hero-flip-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 2, 0.16), transparent 38%),
    #ffffff;
}

.hero-flip-back-content {
  width: 100%;
  text-align: left;
}

.hero-flip-back-name {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-flip-back-role {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-flip-back-text,
.hero-flip-back-personal {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.hero-flip-back-personal {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 650;
}

.hero-flip-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: all var(--transition);
}

.hero-flip-back-button:hover {
  transform: translateY(-2px);
  background: #000000;
}

.person-popover,
.hero-person-mobile-card {
  display: none !important;
}


/* ============================================
   Designs: image above, text below
   ============================================ */

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.design-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.design-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.design-preview {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #eef0f3;
}

.design-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-card-content {
  min-width: 0;
  padding: 14px 15px 16px;
}

.design-card h3 {
  overflow: visible;
  margin: 0 0 5px;
  text-overflow: clip;
  white-space: normal;
}

@media (max-width: 760px) {
  .design-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  .photo-card {
    width: min(330px, 92vw);
  }

  .hero-flip-back {
    padding: 26px;
  }

  .hero-flip-back-name {
    font-size: 26px;
  }

  .hero-flip-back-text,
  .hero-flip-back-personal {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-flip-inner {
    transition: none;
  }
}


/* ============================================
   Refinements 2026-08-07
   ============================================ */

/* Product cards: disclosure without a loud yellow hover frame */
.product-card::before {
  display: none;
}

.product-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-badge {
  min-height: 24px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1px solid #e5e7eb;
  background: #f8f9fa;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Small affordance that makes the person interaction discoverable */
.hero-person-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.72);
  color: #ffffff;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
  pointer-events: none;
  backdrop-filter: blur(7px);
}

/* Give partner shadows enough room inside the horizontal scroller */
.partner-slider {
  overflow: visible;
}

.partner-track {
  padding: 20px 10px 34px;
  margin: -20px -10px -34px;
}

.partner-card {
  box-shadow:
    0 8px 26px rgba(17, 24, 39, 0.07),
    0 2px 8px rgba(17, 24, 39, 0.035);
}

.partner-card:hover {
  box-shadow:
    0 14px 34px rgba(17, 24, 39, 0.10),
    0 3px 10px rgba(17, 24, 39, 0.04);
}

.partner-card-more {
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 2, 0.13), transparent 42%),
    #ffffff;
}

.partner-more-kicker {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-card-more h3 {
  margin-top: 0;
}

.partner-more-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.partner-more-logo {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #ffffff;
}

.partner-more-logo img {
  display: block;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.partner-more-empty {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
}

@media (max-width: 640px) {
  .hero-person-hint {
    right: 10px;
    bottom: 10px;
    font-size: 8px;
  }

  .partner-track {
    padding: 16px 4px 28px;
    margin: -16px -4px -28px;
  }
}


/* ============================================
   Partners ??? compact clean layout v2
   ============================================ */

.partner-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 46px;
  overflow: visible;
}

.partner-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 22px 8px 34px;
  margin: -22px -8px -34px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  display: flex;
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 8px 26px rgba(17, 24, 39, 0.07),
    0 2px 8px rgba(17, 24, 39, 0.03);
  text-align: left;
  scroll-snap-align: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.partner-card:hover {
  border-color: rgba(255, 205, 2, 0.65);
  box-shadow:
    0 16px 38px rgba(17, 24, 39, 0.11),
    0 4px 12px rgba(17, 24, 39, 0.04);
  transform: translateY(-4px);
}

.partner-card-visual {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  padding: 26px 28px 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.partner-logo-link {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  width: auto;
  max-width: min(230px, 82%);
  max-height: 68px;
  object-fit: contain;
}

.partner-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.partner-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 6px 28px 26px;
}

.partner-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.partner-description {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.55;
  text-align: center;
}

.partner-quote {
  width: 100%;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 12px;
  background: #f7f8fa;
  text-align: left;
}

.partner-quote blockquote {
  margin: 0;
  color: var(--text);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.partner-quote footer {
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 10.5px;
  line-height: 1.4;
  text-align: center;
}

.partner-card .card-cta {
  align-self: center;
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
}

.partner-nav {
  z-index: 6;
}

/* Final "More partners" card */
.partner-card-more {
  justify-content: center;
  padding: 30px 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 2, 0.16), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.partner-more-intro {
  text-align: center;
}

.partner-more-kicker {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.partner-card-more h3 {
  font-size: 24px;
}

.partner-card-more .partner-description {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
}

.partner-more-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 26px;
}

.partner-more-logo {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.partner-more-logo:hover {
  border-color: rgba(255, 205, 2, 0.8);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-more-logo img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.partner-more-placeholder {
  margin-top: 24px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

@media (max-width: 760px) {
  .partner-slider {
    padding: 0;
  }

  .partner-track {
    grid-auto-columns: 100%;
    padding: 18px 4px 28px;
    margin: -18px -4px -28px;
  }

  .partner-card {
    min-height: 360px;
  }

  .partner-card-visual {
    min-height: 128px;
  }
}


/* ============================================
   Affiliate badge refinement
   ============================================ */

/*
  Keep every product card aligned the same way:
  the disclosure badge sits independently in the bottom-right corner
  and no longer consumes vertical content space.
*/
.product-card {
  position: relative;
  padding-bottom: 42px;
}

.product-badge {
  position: absolute;
  right: 7px;
  bottom: 7px;
  z-index: 2;
  min-height: 0;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.96);
  color: var(--text-soft);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/*
  On narrower cards, keep the badge equally close to the edge.
*/
@media (max-width: 640px) {
  .product-card {
    padding-bottom: 40px;
  }

  .product-badge {
    right: 6px;
    bottom: 6px;
    padding: 3px 6px;
    font-size: 7.5px;
  }
}


/* ============================================
   Partner card shadow refinement
   ============================================ */

/*
  Horizontal scroll containers clip external box-shadows in some browsers.
  The partner cards therefore use a clean border instead of an outer shadow.
  This keeps every card edge visually consistent, including beside the slider arrows.
*/
.partner-card,
.partner-card:hover {
  box-shadow: none;
}

.partner-card {
  border: 1px solid #e7eaf0;
}

.partner-card:hover {
  border-color: rgba(255, 205, 2, 0.72);
  transform: translateY(-2px);
}

/* The logo area itself stays completely flat. */
.partner-card-visual,
.partner-logo-link,
.partner-logo,
.partner-logo-fallback {
  box-shadow: none !important;
  filter: none !important;
}

/* Keep the navigation arrows visually separate from the cards. */
.partner-nav {
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.08);
}


/* ============================================
   Partner logo area: fully flat
   ============================================ */

.partner-card-visual {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: center;
  padding: 26px 28px 18px;
  background: none;
}


/* ============================================
   Partner slider: mobile peek + calm autoplay
   ============================================ */

/*
  Desktop keeps the established two-card layout.
  On mobile the card is deliberately narrower than the viewport,
  revealing part of the next card as a natural swipe affordance.
*/
@media (max-width: 760px) {
  .partner-slider {
    padding: 0;
  }

  .partner-track {
    grid-auto-columns: 92%;
    gap: 12px;
    padding: 18px 26px 28px 4px;
    margin: -18px -4px -28px;
    scroll-padding-inline: 4px;
  }

  .partner-card {
    scroll-snap-align: start;
  }

  /*
    Keep navigation available, but make it secondary.
    The visible next-card edge is the main mobile swipe cue.
  */
  .partner-nav {
    width: 34px;
    height: 34px;
  }

  .partner-nav-prev {
    left: -8px;
  }

  .partner-nav-next {
    right: -8px;
  }
}

@media (max-width: 430px) {
  .partner-track {
    grid-auto-columns: 93%;
    gap: 10px;
    padding-right: 24px;
  }
}

/*
  Autoplay is disabled in JavaScript when reduced motion is requested.
  This also removes smooth scrolling for the same preference.
*/
@media (prefers-reduced-motion: reduce) {
  .partner-track {
    scroll-behavior: auto;
  }
}


/* ============================================
   Partners: all logos + selected collaborations
   ============================================ */

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.partner-logo-tile {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.partner-logo-tile:hover {
  border-color: rgba(255, 205, 2, 0.75);
  transform: translateY(-2px);
}

.partner-logo-tile img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition:
    opacity var(--transition),
    filter var(--transition);
}

.partner-logo-tile:hover img {
  filter: grayscale(0);
  opacity: 0.95;
}

.partner-featured-header {
  max-width: 620px;
  margin: 52px auto 16px;
  text-align: center;
}

.partner-featured-header h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.partner-featured-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

/*
  Selected collaboration cards stay visually calm.
  Their own logo remains full-strength inside the story card;
  only the overview logo grid is grayscale.
*/
.partner-card-visual {
  background: none;
}

/* Retire the old "More partners" presentation completely. */
.partner-card-more,
.partner-more-intro,
.partner-more-kicker,
.partner-more-logos,
.partner-more-logo,
.partner-more-placeholder {
  display: none !important;
}

@media (max-width: 760px) {
  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 430px;
  }

  .partner-logo-tile {
    min-height: 78px;
    padding: 15px 18px;
  }

  .partner-logo-tile img {
    max-height: 38px;
  }

  .partner-featured-header {
    margin-top: 40px;
    padding: 0 12px;
  }

  .partner-featured-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .partner-logo-tile {
    min-height: 72px;
    padding: 13px 14px;
  }

  .partner-logo-tile img {
    max-height: 34px;
  }
}


/* ============================================
   Partners: unified data structure
   ============================================ */

/*
  There is no special "More partners" card anymore.
  All partners are rendered from the same object structure.
*/
.partner-card-more,
.partner-more-intro,
.partner-more-kicker,
.partner-more-logos,
.partner-more-logo,
.partner-more-placeholder {
  display: none !important;
}


/* ============================================
   Partners: denser logo grid + compact stories
   ============================================ */

/* Six logos per row on desktop. */
.partner-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
}

.partner-logo-tile {
  min-height: 74px;
  padding: 12px 14px;
  border-radius: 12px;
}

.partner-logo-tile img {
  max-height: 34px;
}

/* Selected collaboration cards: text only, deliberately compact. */
.partner-card.partner-card-compact {
  min-height: 0;
  padding: 0;
}

.partner-card-compact .partner-card-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 24px 22px;
}

.partner-card-compact h3 {
  margin: 0;
  font-size: 18px;
}

.partner-card-compact .partner-description {
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 1.5;
}

.partner-card-compact .partner-quote {
  margin-top: 16px;
  padding: 12px 13px;
}

.partner-card-compact .partner-quote blockquote {
  font-size: 11.5px;
  line-height: 1.45;
}

.partner-card-compact .partner-quote footer {
  margin-top: 7px;
  font-size: 9.5px;
}

/* No logo block and no CTA inside selected cards. */
.partner-card-compact .partner-card-visual,
.partner-card-compact .card-cta {
  display: none !important;
}

.partner-featured-header {
  max-width: 680px;
}

.partner-featured-header p {
  font-size: 12px;
}

/* Three logos per row on mobile. */
@media (max-width: 760px) {
  .partner-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 430px;
  }

  .partner-logo-tile {
    min-height: 64px;
    padding: 10px 11px;
  }

  .partner-logo-tile img {
    max-height: 29px;
  }

  .partner-card-compact .partner-card-body {
    min-height: 230px;
    padding: 22px 20px 20px;
  }

  .partner-card-compact h3 {
    font-size: 17px;
  }

  .partner-card-compact .partner-description {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .partner-logo-tile {
    min-height: 58px;
    padding: 9px;
  }

  .partner-logo-tile img {
    max-height: 26px;
  }
}


/* ============================================
   Final section background fix
   ============================================ */

html,
body {
  background: #ffffff;
}

.wrap {
  background: transparent;
}

.section {
  position: relative;
  isolation: isolate;
  background: transparent;
}

/* Every section is white by default. */
.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #ffffff;
  transform: translateX(-50%);
}

/* Only these two sections are subtly separated. */
#instagram::before,
#designs::before {
  background: #f8f9fa;
}


/* ============================================
   Final layout refinement:
   denser Gear + cleaner section spacing
   ============================================ */

/* Give every content section a clearer visual chapter. */
.section {
  margin: 24px 0 0;
  padding: 84px 0;
  scroll-margin-top: 22px;
}

.section-header {
  margin-bottom: 34px;
}

/* Slightly reduce headline/body scale inside dense content areas. */
#products .section-title {
  font-size: clamp(29px, 3.8vw, 40px);
}

#products .section-desc {
  font-size: 15px;
}

/* Gear: 3 columns on desktop. */
#products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
}

/* More compact product cards for larger inventories. */
#products .product-card {
  min-height: 172px;
  padding: 20px 18px;
}

#products .product-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.25;
}

#products .product-card p {
  margin-bottom: 10px;
  font-size: 12.25px;
  line-height: 1.52;
}

#products .card-cta {
  font-size: 11.25px;
}

#products .discount-row {
  gap: 6px;
  margin-bottom: 11px;
  padding: 7px 8px;
}

#products .product-badge {
  font-size: 9px;
}

/* Tablet: two Gear cards per row. */
@media (max-width: 900px) {
  #products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

/* Mobile: one Gear card per row and slightly tighter sections. */
@media (max-width: 620px) {
  .section {
    margin-top: 16px;
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  #products .product-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  #products .product-card {
    min-height: 0;
    padding: 19px 18px;
  }

  #products .product-card h3 {
    font-size: 16px;
  }

  #products .product-card p {
    font-size: 12.5px;
  }
}

/* ============================================
   SlicerLauncher teaser + modal
   ============================================ */

.slicerlauncher-teaser {
  max-width: var(--max);
  margin: 30px auto 10px;
}

.slicerlauncher-teaser-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 205, 2, 0.18), transparent 38%),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.slicerlauncher-teaser-copy {
  min-width: 0;
}

.slicerlauncher-teaser-label,
.slicerlauncher-modal-kicker,
.sl-content-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.065em;
}

.slicerlauncher-teaser h2 {
  margin: 12px 0 2px;
  color: var(--text);
  font-size: clamp(27px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.slicerlauncher-teaser-claim {
  margin: 7px 0 9px;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
}

.slicerlauncher-teaser-text {
  max-width: 510px;
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.slicerlauncher-teaser-preview {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f8fa;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.10);
  cursor: pointer;
  transform: rotate(1deg);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.slicerlauncher-teaser-preview:hover {
  border-color: rgba(255, 205, 2, 0.78);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.13);
  transform: rotate(0deg) translateY(-2px);
}

.slicerlauncher-teaser-preview:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.slicerlauncher-teaser-preview img {
  display: block;
  width: 100%;
  height: auto;
}

/* Modal shell */

.slicerlauncher-modal-backdrop {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(5px);
}

.slicerlauncher-modal-backdrop.open {
  display: flex;
}

.slicerlauncher-modal {
  display: flex;
  width: min(980px, 100%);
  max-height: min(90vh, 900px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.slicerlauncher-modal-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.slicerlauncher-modal-header h2 {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.slicerlauncher-modal-close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.slicerlauncher-modal-close:hover {
  background: #f3f4f6;
}

.slicerlauncher-modal-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.slicerlauncher-modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.slicerlauncher-modal-body {
  min-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.slicerlauncher-modal-loading,
.slicerlauncher-modal-error {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-soft);
  font-size: 13px;
  text-align: center;
}

/* Loaded PHP content */

.sl-content {
  padding: 30px 32px 34px;
}

.sl-content-intro {
  max-width: 690px;
  margin: 0 auto 28px;
  text-align: center;
}

.sl-content-claim {
  margin: 10px 0 8px;
  color: var(--text);
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.sl-content-intro p {
  max-width: 650px;
  margin: 10px auto 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.sl-problem {
  max-width: 720px;
  margin: 26px auto 30px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: #f8f9fa;
}

.sl-problem h3 {
  margin: 0 0 9px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.sl-problem p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12.5px;
  line-height: 1.6;
}

.sl-problem p + p {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.sl-problem strong {
  color: var(--text);
  font-weight: 850;
}

.sl-content-version {
  display: inline-block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
}

.sl-screenshot-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 13px;
}

.sl-screenshot-tab {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: all var(--transition);
}

.sl-screenshot-tab:hover {
  border-color: var(--accent);
  color: var(--text);
}

.sl-screenshot-tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text);
}

.sl-screenshot-frame {
  max-width: 780px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7f8fa;
}

.sl-screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}

.sl-content-section {
  margin-top: 34px;
}

.sl-content-section h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.sl-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfbfc;
}

.sl-feature-item {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.sl-feature-item::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 205, 2, 0.16);
}

.sl-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.sl-download-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.sl-download-card.recommended {
  border: 2px solid var(--accent);
}

.sl-download-badge {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.055em;
}

.sl-download-card h4 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.sl-download-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}

.sl-download-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.sl-download-button:hover {
  box-shadow: 0 7px 22px var(--accent-glow);
  transform: translateY(-2px);
}

.sl-security-note {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 13px 15px;
  border-radius: 12px;
  background: #f7f8fa;
  color: var(--text-soft);
  font-size: 10.5px;
  line-height: 1.55;
}

.sl-security-note strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .slicerlauncher-teaser-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 26px;
  }

  .slicerlauncher-teaser-preview {
    max-width: 520px;
    margin: 0 auto;
    transform: none;
  }

  .slicerlauncher-modal-backdrop {
    align-items: flex-end;
    padding: 10px;
  }

  .slicerlauncher-modal {
    width: 100%;
    max-height: 94vh;
    border-radius: 20px 20px 12px 12px;
  }

  .sl-content {
    padding: 25px 18px 28px;
  }

  .sl-feature-grid,
  .sl-download-grid {
    grid-template-columns: 1fr;
  }

  .sl-feature-grid {
    padding: 19px 18px;
  }

  .sl-content-intro p {
    max-width: 100%;
    font-size: 12.5px;
  }

  .sl-problem {
    padding: 17px 16px;
  }

  .sl-problem p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .slicerlauncher-teaser {
    margin-top: 18px;
  }

  .slicerlauncher-teaser-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .slicerlauncher-teaser-preview {
    display: none;
  }

  .slicerlauncher-modal-header {
    padding: 15px 16px;
  }

  .sl-screenshot-frame {
    padding: 7px;
  }
}

