:root {
  color-scheme: light;
  --ink: #11110f;
  --muted: #6d6b63;
  --paper: #f6f4ed;
  --white: #ffffff;
  --acid: #d9ff67;
  --lavender: #d9d1ff;
  --line: rgba(17, 17, 15, 0.12);
  --shadow: 0 28px 90px rgba(20, 19, 15, 0.12);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--paper); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(217, 255, 103, 0.6), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(217, 209, 255, 0.62), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.76fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 54px 0;
}

.profile { padding: clamp(8px, 3vw, 36px); }

.profile-topline {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(217, 255, 103, 0.46);
}

.brand-logo {
  display: block;
  width: clamp(116px, 12vw, 158px);
  height: clamp(116px, 12vw, 158px);
  border: 1px solid var(--line);
  border-radius: 29%;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(17, 17, 15, 0.08);
  object-fit: cover;
}

.handle {
  margin: 20px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

h1 span { position: relative; z-index: 0; }

h1 span::after {
  position: absolute;
  z-index: -1;
  right: -6px;
  bottom: 5px;
  left: -4px;
  height: 0.25em;
  border-radius: 999px;
  background: var(--acid);
  content: "";
  transform: rotate(-1.5deg);
}

.intro {
  max-width: 600px;
  margin: 24px 0 27px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
}

.maker-tags { display: flex; flex-wrap: wrap; gap: 9px; }

.maker-tags span {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-showcase {
  width: min(100%, 640px);
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: left;
}

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

.product-kicker {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-heading h2 {
  font-size: 22px;
  letter-spacing: -0.035em;
}

.carousel-controls {
  display: flex;
  gap: 7px;
  align-items: center;
}

.carousel-button {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.carousel-button:hover:not(:disabled),
.carousel-button:focus-visible:not(:disabled) {
  background: var(--acid);
  outline: none;
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.32;
}

.product-count {
  min-width: 35px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-align: center;
}

.product-carousel {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  background: var(--white);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  min-height: 195px;
  animation: product-in 220ms ease both;
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 195px;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.product-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.product-description {
  margin: 9px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-link {
  align-self: flex-start;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  min-height: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.22);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  width: 22px;
  background: var(--ink);
}

@keyframes product-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.link-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.link-panel::before {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(217, 209, 255, 0.23);
  border-radius: 50%;
  content: "";
  top: -118px;
  right: -72px;
}

.panel-heading {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 23px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 { margin: 0; font-size: clamp(25px, 3vw, 34px); letter-spacing: -0.045em; }

.spark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 19px;
}

.link-list { display: grid; gap: 12px; }

.link-button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 12px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 19px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  box-shadow: 5px 6px 0 var(--ink);
  outline: none;
  transform: translate(-2px, -2px);
}

.link-button--primary { background: var(--ink); color: var(--white); }

.link-button--primary:hover,
.link-button--primary:focus-visible { box-shadow: 5px 6px 0 var(--acid); }

.link-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 850;
}

.link-copy { display: grid; gap: 4px; min-width: 0; }
.link-copy strong { font-size: 15px; line-height: 1.2; }

.link-copy small {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  opacity: 0.66;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow { font-size: 21px; transition: transform 160ms ease; }

.link-button:hover .arrow,
.link-button:focus-visible .arrow { transform: translateX(3px); }

.link-button.is-disabled { cursor: not-allowed; opacity: 0.55; }
.link-status { min-height: 18px; margin: 10px 0 0; color: var(--muted); font-size: 12px; }

footer {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

@media (max-width: 820px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(620px, calc(100% - 30px));
    padding: 30px 0;
  }
  .profile { display: grid; width: 100%; justify-items: center; padding: 6px 12px 0; text-align: center; }
  .profile-topline { margin-bottom: 19px; }
  .handle { margin-top: 14px; }
  h1 { font-size: clamp(44px, 12.7vw, 68px); }
  .intro { margin: 18px auto 22px; font-size: 16px; }
  .maker-tags { justify-content: center; }
  .product-showcase { width: 100%; min-width: 0; margin-top: 28px; justify-self: stretch; }
}

@media (max-width: 440px) {
  .page-shell { width: min(100% - 20px, 430px); gap: 21px; padding: 18px 0 24px; }
  .brand-logo { width: 108px; height: 108px; }
  .profile-topline { font-size: 10px; }
  .maker-tags { gap: 6px; }
  .maker-tags span { padding: 7px 9px; font-size: 9px; }
  .product-heading { align-items: center; }
  .product-heading h2 { font-size: 20px; }
  .product-card { grid-template-columns: 43% minmax(0, 57%); min-height: 178px; }
  .product-image { min-height: 178px; }
  .product-content { padding: 15px 13px; }
  .product-content h3 { font-size: 21px; }
  .product-description { margin: 7px 0 11px; font-size: 11px; }
  .link-panel { padding: 20px 16px 17px; border-radius: 25px; }
  .link-button { min-height: 72px; padding: 10px 13px; }
  .link-copy small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
