:root {
  --bg: #fbfaf7;
  --fg: #0f1020;
  --card: #fff;
  --muted: #6b7280;
  --accent: #111;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 16px;
}

header {
  padding: 18px 0 12px 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  color: inherit;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

.brand .font-semibold {
  font-size: 23px;
  letter-spacing: 0.01em;
}

.brand .tagline {
  font-size: 14px;
}

.logo {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo.logo-bounce {
  animation: logoBounce 0.9s ease;
}

@keyframes logoBounce {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-6px) rotate(-4deg);
  }
  40% {
    transform: translateY(3px) rotate(3deg);
  }
  60% {
    transform: translateY(-2px) rotate(-2deg);
  }
  80% {
    transform: translateY(1px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

h1 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.96;
  margin: 0;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  color: #f4b400;
}

.lead {
  margin: 16px 0 0;
  color: #2d2a24;
  font-size: 17px;
  line-height: 1.65;
}

ul.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

ul.bullets li {
  margin-bottom: 6px;
}

ul.bullets li:last-child {
  margin-bottom: 0;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.consent-row input[type='checkbox'] {
  margin-top: 3px;
  min-width: 16px;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#waitlist {
  gap: 14px;
}

.waitlist-step {
  display: grid;
  gap: 14px;
}

.grid {
  display: grid;
  gap: 24px;
}


.grid.two {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid.two {
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: clamp(24px, 4vw, 36px);
  }
}

@media (min-width: 1024px) {
  .grid.two {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(38px, 11vw, 44px);
  }

  .lead {
    font-size: 16px;
  }
}

.products {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

@media (min-width: 600px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

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

.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 24px;
}

.input,
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.btn.outlined {
  background: var(--accent);
  color: #fff;
  border: 0;
}

.mt-0 {
  margin-top: 4px !important;
}

.input:focus-visible,
select:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(17, 16, 32, 0.16);
}


.muted {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #111;
}

.hero {
  position: relative;
  display: grid;
  max-width: 1200px;
  gap: 20px;
  padding-top: 8px;
  align-items: start;
}

.hero-copy {
  position: relative;
  min-width: 0;
}

.hero-media {
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-image,
.mascot-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-image {
  max-width: 470px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.08));
}

.waitlist-card {
  align-self: start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(27, 24, 18, 0.12);
  padding: 28px;
}

.waitlist-card h2 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  font-weight: 900;
}

.waitlist-intro {
  color: #4b5563;
  line-height: 1.55;
  margin: 8px 0 0;
}

.waitlist-contact-hint {
  margin: -2px 0 0;
  font-size: 12px;
}

.waitlist-step-title {
  margin: 2px 0 0;
  font-size: 12px;
}


.hero-trust {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 0;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px;
  box-shadow: 0 8px 26px rgba(16, 16, 16, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

.hero-trust div::before {
  content: none;
}

.hero-trust > div > span:first-child {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(15, 16, 32, 0.04);
}

.hero-trust svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-copy,
.trust-copy strong,
.trust-copy small {
  display: block;
}

.hero-trust strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-trust small {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.25;
}

.brick-accent {
  display: block;
  pointer-events: none;
  user-select: none;
}

.brick-accent--vertical {
  position: absolute;
  left: -34px;
  top: 38px;
  width: 58px;
  height: auto;
  opacity: 0.98;
  z-index: 0;
}

.brick-accent--horizontal {
  width: min(340px, 72vw);
  height: auto;
  margin: 0 auto -56px;
  opacity: 0.42;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.story-main h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.text-link {
  color: var(--fg);
  font-weight: 700;
  text-decoration: underline;
}

.mascot-image {
  max-width: 360px;
}

.light-trust {
  position: relative;
  margin-top: 36px;
}

.light-trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 1px 5px rgba(15, 16, 32, 0.04);
}

.light-trust article {
  padding: 24px;
  background: var(--bg);
  border-bottom: 1px solid #e5e7eb;
}

.light-trust article:last-child {
  border-bottom: 0;
}

.light-trust span,
.dark-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  font-weight: 900;
}

.light-trust svg,
.dark-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.light-trust h3,
.dark-grid h3 {
  margin: 16px 0 0;
  font-size: 16px;
}

.light-trust p,
.dark-grid p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.light-trust > .mascot-image {
  display: none;
}

.dark-trust {
  display: grid;
  overflow: hidden;
  margin-top: 36px;
  border-radius: 12px;
  background: #070707;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.dark-intro {
  padding: 28px;
}

.dark-intro .eyebrow {
  color: #f4b400;
}

.dark-intro h2 {
  margin: 16px 0 0;
  max-width: 320px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.05;
  font-weight: 900;
}

.dark-intro p:not(.eyebrow) {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.dark-bricks {
  display: none;
  position: relative;
  overflow: hidden;
  min-height: 190px;
}

.dark-bricks img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 80px;
  max-width: none;
  object-fit: cover;
  opacity: 0.95;
  transform: translate(-50%, -50%) rotate(90deg);
}

.dark-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-grid article {
  padding: 28px 24px;
  background: #070707;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-grid article:last-child {
  border-bottom: 0;
}

.dark-grid span {
  background: transparent;
  border: 0;
  color: #f4b400;
  justify-content: flex-start;
}

.dark-grid h3 {
  color: #fff;
}

.dark-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding-block: 24px 8px;
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-cta .btn,
.page-btn {
  width: auto;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 24px;
    padding-left: 64px;
    padding-right: 0;
  }

  .hero-media {
    grid-column: 1;
    margin: -4px -24px 0 -24px;
    justify-content: center;
    place-items: center;
  }

  .waitlist-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 410px;
    min-height: 0;
    justify-self: end;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 576px;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-trust div {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    white-space: normal;
  }

  .light-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-right: 180px;
  }

  .light-trust article {
    border-right: 1px solid #e5e7eb;
    border-bottom: 0;
  }

  .light-trust article:last-child {
    border-right: 0;
  }

  .light-trust > .mascot-image {
    display: block;
    position: absolute;
    right: -48px;
    bottom: -32px;
    width: 360px;
    max-width: 34vw;
    pointer-events: none;
  }

  .dark-trust {
    grid-template-columns: 1.05fr 0.55fr 2.4fr;
  }

  .dark-bricks {
    display: block;
  }

  .dark-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dark-grid article {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dark-grid article:last-child {
    border-right: 0;
  }

  .contact-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 640px) and (max-width: 859px) {
  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-media {
    height: 308px;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 36px;
    padding-left: 80px;
    padding-right: 0;
  }

  .waitlist-card {
    max-width: 440px;
  }

  .hero-image {
    max-width: 500px;
  }
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 470px;
  }

  .waitlist-card {
    max-width: 470px;
  }

  .hero-image {
    max-width: 540px;
  }
}

@media (min-width: 640px) {
  .logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-domain {
    font-size: 14px;
  }
}

@media (max-width: 859px) {
  .hero {
    padding-top: 0;
    gap: 16px;
  }

  .hero-media {
    order: 2;
    height: 248px;
    overflow: visible;
  }

  .waitlist-card {
    order: 3;
  }

  .hero-image {
    max-width: min(340px, 74vw);
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 520px) {
  .hero {
    gap: 12px;
  }

  .hero-media {
    height: 212px;
  }

  .hero-image {
    max-width: 292px;
  }

  .hero-trust {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-trust div {
    gap: 10px;
    padding: 6px 8px;
    border-radius: 14px;
  }

  .hero-trust > div > span:first-child {
    width: 34px;
    height: 34px;
  }

  .hero-trust svg {
    width: 20px;
    height: 20px;
  }

  .hero-trust strong {
    font-size: 13px;
  }

  .hero-trust small {
    font-size: 12px;
  }

  .brick-accent--vertical {
    display: none;
  }

  .mascot-image {
    max-width: 250px;
  }
}

.prod {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(15, 16, 32, 0.06);
  padding: 0;
}

.prod-title {
  margin: 0;
  min-height: 60px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}

.prod-sku {
  margin: 0;
  color: #4b5563;
  font-size: 12px;
}

.prod-age {
  margin: 0;
  border-radius: 6px;
  background: #e5e7eb;
  padding: 4px 8px;
  color: #111827;
  font-size: 12px;
  font-weight: 600;
}

.prod-badge--modal {
  margin-top: 0;
  justify-content: center;
  min-width: auto;
}

.prod-image-wrap {
  aspect-ratio: 1 / 1;
  background: var(--bg);
  display: grid;
  place-items: center;
}

.prod img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  padding: 16px;
}

.prod-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.prod-actions .btn {
  flex: 1;
  width: auto;
  min-height: 38px;
  padding: 9px 10px;
  font-size: 12px;
}

@media (max-width: 520px) {
  .prod img {
    padding: 10px;
  }

  .prod > .mt-3 {
    gap: 6px;
    padding: 10px;
  }

  .prod-title {
    min-height: 54px;
    font-size: 12px;
    line-height: 1.35;
  }

  .prod-meta-row {
    align-items: center;
  }

  .prod-sku,
  .prod-age {
    font-size: 11px;
  }

  .prod-age {
    padding: 3px 6px;
  }

  .prod-actions {
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
  }

  .prod-actions .btn {
    width: 100%;
    min-height: 34px;
    padding: 7px 8px;
    font-size: 11px;
  }
}

.btn.ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid #e5e7eb;
}

.btn.ghost:hover {
  border-color: #d1d5db;
}

.prod--placeholder {
  padding: 24px;
}

.prod-placeholder {
  display: grid;
  gap: 12px;
}

.prod-skeleton {
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  animation: prodShimmer 1.2s ease-in-out infinite;
  border-radius: 14px;
}

.prod-skeleton.image {
  aspect-ratio: 1 / 1;
}

.prod-skeleton.title {
  height: 18px;
  width: 70%;
  border-radius: 10px;
}

.prod-skeleton.price {
  height: 14px;
  width: 40%;
  border-radius: 10px;
}

@keyframes prodShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.testpanel {
  display: none;
}

.testpanel.active {
  display: block;
}

.brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brandmark {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  color: #111;
  line-height: 1;
}

.brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-domain {
  padding-bottom: 2px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.header-shell {
  justify-content: flex-start;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 5px rgba(16, 16, 16, 0.08);
  padding: 12px;
  width: calc(100% - 32px);
  max-width: 1200px;
}

.split-two {
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 380px) {
  .split-two {
    grid-template-columns: 1fr 1fr;
  }
}

.navlinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fff;
}

.navlinks a:hover {
  background: #f3f4f6;
}

.navlinks a.icon-link {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.navlinks a.icon-link svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

footer {
  border-top: 1px solid #e5e7eb;
  padding: 0;
  color: #374151;
  background: var(--bg);
  margin-top: 32px;
}

footer a {
  color: #374151;
  text-decoration: none;
}

footer a:hover {
  color: #000;
}

.footer-inner {
  display: grid;
  max-width: 1200px;
  gap: 24px;
  margin: 0 auto;
  padding: 36px 20px;
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand p {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-socials {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 1px 5px rgba(15, 16, 32, 0.06);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:nth-child(2) svg,
.footer-socials a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
}

.footer-brand .kitt-link {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  margin-inline: 2px;
  border-radius: 999px;
  border: 1px solid rgba(0, 127, 255, 0.32);
  background: rgba(0, 127, 255, 0.1);
  color: #007fff;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.footer-brand .kitt-link:hover {
  border-color: rgba(0, 102, 204, 0.4);
  background: rgba(0, 102, 204, 0.14);
  color: #0066cc;
}

@media (max-width: 520px) {
  .footer-brand .kitt-link {
    margin-inline: 0;
    margin-top: 2px;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    padding-inline: 32px;
  }

  .footer-links {
    align-items: flex-end;
    justify-content: end;
    text-align: right;
  }

  .footer-socials,
  .footer-links nav {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    padding-inline: 40px;
  }
}

@media (max-width: 767px) {
  .hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .hero > * {
    position: relative;
    z-index: 1;
  }

  #popular-sets {
    margin-top: 32px;
  }

  .section-heading {
    padding-top: 8px;
  }

  .light-trust-grid {
    position: relative;
  }

  .light-trust-grid::after {
    content: '';
    position: absolute;
    right: -92px;
    bottom: -8px;
    width: min(120vw, 560px);
    height: min(80vw, 380px);
    background: url('../assets/images/waitlist/mascot.png') right bottom / contain no-repeat;
    opacity: 0.14;
    pointer-events: none;
    z-index: 1;
  }

  .light-trust article {
    padding: 16px;
  }

  .light-trust span {
    width: 38px;
    height: 38px;
  }

  .light-trust svg {
    width: 20px;
    height: 20px;
  }

  .light-trust h3 {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.3;
  }

  .light-trust p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .dark-trust {
    position: relative;
    isolation: isolate;
  }

  .dark-bricks {
    display: block;
    position: absolute;
    top: 150px;
    right: -104px;
    width: 390px;
    height: 560px;
    min-height: 0;
    opacity: 0.24;
    pointer-events: none;
    z-index: 1;
  }

  .dark-bricks img {
    width: 430px;
    height: 150px;
    opacity: 1;
  }

  .dark-grid article {
    background: transparent;
  }

  .dark-intro {
    padding: 20px 20px 16px;
  }

  .dark-intro h2 {
    margin-top: 10px;
    font-size: clamp(34px, 9vw, 48px);
  }

  .dark-intro p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .dark-grid article {
    padding: 18px 20px;
  }

  .dark-grid span {
    width: 36px;
    height: 36px;
  }

  .dark-grid svg {
    width: 20px;
    height: 20px;
  }

  .dark-grid h3 {
    margin-top: 10px;
    font-size: 16px;
  }

  .dark-grid p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .dark-trust > :not(.dark-bricks) {
    position: relative;
    z-index: 2;
  }

  .footer-links nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 10px;
  }

  .footer-brand .kitt-link {
    min-height: 44px;
    padding: 6px 10px;
  }
}

@media (max-width: 520px) {
  .navlinks span:not(.sr-only) {
    display: none;
  }

  .row {
    align-items: flex-start;
    gap: 12px;
  }

  .navlinks {
    gap: 8px;
  }

  .navlinks a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .navlinks a.icon-link {
    width: 40px;
    height: 40px;
  }
}

.page-main,
.privacy-main {
  flex: 1 0 auto;
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  line-height: 1.6;
  color: #333;
}

.page-main > * {
  margin: 0;
}

.page-main h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.page-main > * + * {
  margin-top: 1.75rem;
}

.contact-card {
  margin-top: 1.5rem;
}

.contact-card form {
  display: grid;
  gap: 0.75rem;
}

.contact-card textarea.input {
  min-height: 160px;
  resize: vertical;
}

.contact-card .btn {
  justify-self: start;
}

.values-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  min-height: 200px;
}

.values-card h2 {
  margin: 0 0 0.75rem;
}

.values-card p:not(.eyebrow) {
  margin: 0;
}

.values-card p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 1rem;
}

.values-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.values-card li + li {
  margin-top: 0.15rem;
}

.values-card .page-btn {
  margin-top: 16px;
}

.privacy-main h1,
.privacy-main h2 {
  color: #000;
}

.privacy-main a {
  color: #000;
  text-decoration: underline;
}

.bridge-main {
  min-height: 60vh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.story-panel {
  display: grid;
  gap: 20px;
  align-items: start;
  padding: 28px;
  min-height: 200px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.story-panel h2,
.story-panel p {
  margin: 0;
}

.story-panel h2 + p {
  margin-top: 12px;
}

.story-panel img {
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
  justify-self: center;
}

@media (min-width: 720px) {
  .story-panel {
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
  }
}

@media (min-width: 820px) {
  .story-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    max-width: 1200px;
    align-items: stretch;
  }

  .story-main > section {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .story-main > section:nth-of-type(3) {
    grid-column: 1;
  }

  .story-main > section:nth-of-type(4) {
    grid-column: 2;
  }

  .story-main > section:nth-of-type(5) {
    grid-column: 1 / -1;
  }
}

body.modal-open {
  overflow: hidden;
}

.product-modal.hidden {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 28px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.product-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 30, 0.58);
  backdrop-filter: blur(6px);
}

.product-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 22px;
  width: min(1040px, 100%);
  padding: clamp(22px, 6vw, 36px);
  max-height: calc(100vh - clamp(24px, 6vw, 60px));
  overflow: auto;
  box-shadow: 0 30px 80px rgba(15, 16, 32, 0.35);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
  outline: none;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.product-modal--open .product-modal__panel {
  transform: translateY(0);
  opacity: 1;
}

.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 16, 32, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--fg);
}

.product-modal__body {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  min-height: unset;
}

.product-modal__media {
  background: #f3f4f6;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(10px, 2vw, 18px);
  min-height: 0;
}

.product-modal__slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.product-modal__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 16, 32, 0.06);
}

.product-modal__track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 0.72, 0.35, 1);
}

.product-modal__track--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-modal__video-wrap {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  display: none;
  pointer-events: none;
}

.product-modal__viewport.is-showing-video .product-modal__video-wrap {
  display: block;
}

.product-modal__video {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: none;
  background: #000;
  object-fit: contain;
  pointer-events: auto;
}

.product-modal__video.is-active {
  display: block;
}

.product-modal__video-wrap.is-active {
  display: block;
}

.product-modal__video.is-active {
  display: block;
}

.product-modal__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 3vw, 20px);
  min-height: 0;
}

.product-modal__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 16, 32, 0.16);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #111827;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.product-modal__nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 24px rgba(15, 16, 32, 0.18);
}

.product-modal__nav:disabled,
.product-modal__nav.is-hidden {
  display: none;
}

.product-modal__nav--prev {
  left: 12px;
}

.product-modal__nav--next {
  right: 12px;
}

.product-modal__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 4px;
}

.product-modal__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(31, 41, 55, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.product-modal__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  opacity: 0;
  border: 1px solid rgba(17, 24, 39, 0.25);
  transition: opacity 0.2s ease;
}

.product-modal__dot:hover::after {
  opacity: 1;
}

.product-modal__dot.is-active {
  background: #111827;
  transform: scale(1.15);
}

.product-modal__dot.is-active::after {
  opacity: 0.7;
}

.product-modal__dots.is-hidden {
  display: none;
}

.product-modal__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  justify-content: flex-start;
  min-height: 100%;
}

.product-modal__theme {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.product-modal__title {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
}

.product-modal__tagline {
  margin: 0;
  font-weight: 600;
  color: #111827;
  font-size: 15px;
}

.product-modal__meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-modal__price {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.product-modal__description {
  margin: 0 0 8px;
  color: #1f2937;
  line-height: 1.45;
  font-size: 15px;
}

.product-modal__details {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #374151;
  font-size: 14px;
}

.product-modal__features {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: #1f2937;
  font-size: 14px;
  list-style: disc;
}

.product-modal__actions {
  display: flex;
  margin-top: auto;
}

.product-modal__notify {
  width: 100%;
}

@media (min-width: 720px) {
  .product-modal__body {
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    align-items: start;
    min-height: clamp(460px, 66vh, 760px);
    gap: 20px;
  }

  .product-modal__media {
    min-height: clamp(340px, 56vh, 620px);
  }

  .product-modal__slider {
    height: min(58vh, 540px);
  }

  .product-modal__content {
    position: sticky;
    top: 0;
  }
}

@media (max-width: 520px) {
  .product-modal__panel {
    padding: 22px 18px 24px;
  }

  .product-modal__close {
    top: 6px;
    right: 6px;
  }

  .product-modal__slider {
    height: min(48vh, 320px);
  }
}

@media (max-width: 640px) {
  .product-modal__panel {
    width: calc(100% - 24px);
    padding: 20px 18px 22px;
  }

  .product-modal__media {
    padding: 16px;
  }

}

.prod {
  display: flex;
  flex-direction: column;
}

.prod > .mt-3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
  padding: 12px;
}

.prod > .mt-3 .btn {
  width: 100%;
}

.prod-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 375px) {
  .prod > .mt-3 {
    gap: 5px;
    padding: 9px;
  }

  .prod img {
    padding: 8px;
  }

  .prod-title {
    min-height: 50px;
    font-size: 12px;
    line-height: 1.3;
  }

  .prod-actions {
    margin-top: 8px;
    gap: 5px;
  }

  .prod-actions .btn {
    min-height: 32px;
    padding: 6px 7px;
    font-size: 11px;
  }
}
