@charset "UTF-8";

:root {
  --about-bg: #fff;
  --about-ink: #151515;
  --about-copy: #4b4b4b;
  --about-muted: #c9c2b8;
  --about-soft: #f3f1ee;
  --about-dark: #101010;
  --about-panel: #1d1d1d;
  --about-line: rgba(21, 21, 21, 0.12);
  --about-line-dark: rgba(255, 255, 255, 0.13);
  --about-red: #e00012;
  --about-green: #a8ff00;
  --about-radius: 8px;
  --about-shell: var(--site-shell-width, 1280px);
}

/* Page-specific banner media variables. Layout and typography are defined in site-banner.css. */
.about-hero {
  --site-banner-bg: var(--about-dark);
  --site-banner-image:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.76) 48%, rgba(7, 7, 7, 0.22) 100%),
    url("../images/products-detail/od1-hero-stage-pedalboard.jpg") center right / cover no-repeat;
  --site-banner-shade: linear-gradient(180deg, transparent 62%, #090909 100%);
  --site-banner-lead-color: var(--about-muted);
  --site-banner-meta-color: var(--about-muted);
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--about-bg);
  color: var(--about-ink);
  font-family: var(--site-font-sans);
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.about-page {
  overflow: hidden;
  background: var(--about-bg);
}

.about-db-pending .about-hero,
.about-db-pending .about-manifesto,
.about-db-pending .about-manifesto-cta,
.about-db-pending .about-people,
.about-db-pending .about-cta {
  visibility: hidden;
}

.about-shell {
  width: min(var(--about-shell), calc(100% - 40px));
  margin: 0 auto;
}

.about-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: #24a65a;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.about-section-head {
  max-width: 780px;
  margin: 0 0 36px;
}

.about-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-section-head h2,
.about-cta h2 {
  margin: 0;
  color: var(--about-ink);
}

.about-section-head p:not(.about-section-kicker) {
  margin: 0;
  color: var(--about-copy);
  font-size: 16px;
  line-height: 1.7;
}

.about-people .about-section-head p:not(.about-section-kicker) {
  margin-top: 20px;
  line-height: 1.56;
  white-space: pre-line;
}

.site-breadcrumb-band--plain.about-breadcrumb {
  margin-bottom: -1px;
  border-bottom: 0;
  background: var(--about-dark);
  box-shadow: none;
  color: #d6d6d6;
}

.site-breadcrumb-band--plain.about-breadcrumb .site-breadcrumb {
  color: #d6d6d6;
}

.site-breadcrumb-band--plain.about-breadcrumb .site-breadcrumb a:hover {
  color: #fff;
}

.about-manifesto {
  padding: 0 0 52px;
  background: var(--about-dark);
  color: #fff;
}

@media (min-width: 1025px) {
  .about-manifesto {
    padding-bottom: 95px;
  }
}

.about-manifesto__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.about-manifesto__brand {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(38px, 4.8vw, 68px);
}

.about-manifesto__logo {
  display: block;
  width: auto;
  height: 50px;
}

.about-manifesto__content {
  position: relative;
  padding-left: clamp(38px, 4.8vw, 68px);
  text-align: left;
}

.about-manifesto__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: min(100%, 224px);
  background: linear-gradient(
    180deg,
    rgba(224, 0, 18, 0) 0%,
    rgba(224, 0, 18, 0.82) 24%,
    #e00012 50%,
    rgba(224, 0, 18, 0.82) 76%,
    rgba(224, 0, 18, 0) 100%
  );
  transform: translateY(-50%);
}

.about-manifesto__content h2 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.about-manifesto__title-break {
  display: none;
}

html:not([data-language="CN"]) .about-manifesto__title-break {
  display: initial;
}

.about-manifesto__content p {
  max-width: 900px;
  margin: 36px 0 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.46;
}

.about-manifesto__content p + p {
  margin-top: 15px;
}

.about-manifesto__copy p {
  margin: 0;
}

.about-manifesto-cta {
  padding: 0 0 96px;
  background: var(--about-dark);
  color: #fff;
}

.about-manifesto-cta__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-manifesto-cta__grid article {
  border-radius: var(--about-radius);
  background: #fff;
  color: var(--about-ink);
  overflow: hidden;
}

.about-manifesto-cta__grid article {
  position: relative;
  display: flex;
  min-height: 218px;
  flex-direction: column;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, #1c1c1c 0%, #171717 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.about-manifesto-cta__grid article:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-manifesto-cta__grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--about-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.about-manifesto-cta__grid span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--about-red), rgba(224, 0, 18, 0));
  transition: width 0.32s ease;
}

.about-manifesto-cta__grid article:hover span::after {
  width: 74px;
}

.about-manifesto-cta__grid h3 {
  margin: 0;
  color: var(--about-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.about-manifesto-cta__grid h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.16;
}

.about-manifesto-cta__grid p {
  margin: 16px 0 0;
  color: var(--about-copy);
  font-size: 15px;
  line-height: 1.68;
}

.about-manifesto-cta__grid p {
  color: var(--about-muted);
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.56;
}

.about-manifesto-cta__grid article::after {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.about-manifesto-cta__grid article:nth-child(1)::after {
  content: "FEEL";
}

.about-manifesto-cta__grid article:nth-child(2)::after {
  content: "SIGNAL";
}

.about-manifesto-cta__grid article:nth-child(3)::after {
  content: "RELIABILITY";
}

.about-manifesto-cta__grid article:nth-child(4)::after {
  content: "MUSIC";
}

.about-people {
  padding: 94px 0 96px;
  background: #fff;
}

.about-method__panel {
  display: block;
}

.about-method__gallery {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-method__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--about-radius);
  background: #111;
  touch-action: pan-y;
}

.about-method__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.about-method__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-method__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.about-method__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: clamp(120px, 22%, 188px);
  padding: clamp(18px, 2.6vw, 32px) clamp(18px, 2.8vw, 34px);
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.about-method__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.about-method__overlay p {
  max-width: min(100%, 760px);
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.62;
  white-space: pre-line;
}

.about-method__thumbs {
  display: flex;
  padding: 0 8px;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-method__thumb {
  position: relative;
  width: clamp(72px, 8vw, 112px);
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  appearance: none;
  background: #222;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  line-height: 0;
  opacity: 0.78;
  transition: border-color 0.28s ease, opacity 0.28s ease;
}

.about-method__thumb.is-active {
  border-color: var(--about-red);
  opacity: 1;
}

.about-method__thumb:hover {
  border-color: rgba(255, 255, 255, 0.36);
  opacity: 0.78;
  transform: none;
}

.about-method__thumb.is-active:hover {
  border-color: var(--about-red);
  opacity: 1;
}

.about-method__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-cta {
  padding: 58px 0 60px;
  background: var(--about-soft);
  color: var(--about-ink);
}

.about-page + site-footer .Footer_content {
  margin-top: 0;
}

.about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.about-cta h2 {
  max-width: 760px;
  color: var(--about-ink);
}

.about-cta a {
  display: inline-flex;
  min-height: 46px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #151515;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.about-cta a:hover {
  border-color: var(--about-red);
  background: var(--about-red);
  color: #fff;
}

@media (max-width: 1100px) {
  .about-manifesto__grid {
    gap: 42px;
  }

  .about-manifesto__grid {
    gap: 0;
  }

  .about-manifesto-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .about-method__gallery {
    gap: 20px;
  }

  .about-method__overlay {
    min-height: clamp(128px, 24%, 180px);
  }

  .about-method__thumb {
    width: clamp(78px, 12vw, 108px);
  }
}

@media (max-width: 640px) {
.about-shell {
    width: min(100% - 30px, var(--about-shell));
  }

  .about-section-head {
    margin-bottom: 28px;
  }

  .about-section-head--center {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .about-manifesto {
    padding-bottom: 64px;
  }

  .about-cta__inner {
    grid-template-columns: 1fr;
  }

  .about-manifesto__grid {
    grid-template-columns: minmax(112px, 0.36fr) minmax(190px, 0.64fr);
    gap: 0;
    width: min(100%, 420px);
    margin-right: auto;
    margin-left: auto;
  }

  .about-manifesto__brand {
    min-height: 150px;
    justify-content: flex-end;
    padding-right: clamp(16px, 4vw, 24px);
  }

  .about-manifesto__logo {
    height: 34px;
  }

  .about-manifesto__content {
    padding-left: clamp(16px, 4vw, 24px);
  }

  .about-manifesto__content::before {
    display: block;
  }

  .about-manifesto__content h2 {
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.22;
  }

  .about-manifesto__content p {
    font-size: 15px;
    line-height: 1.46;
  }

  .about-manifesto-cta,
  .about-people {
    min-height: 0;
    padding: 64px 0;
  }

  .about-manifesto-cta {
    padding-top: 0;
  }

  .about-method__panel {
    display: block;
  }

  .about-method__gallery {
    gap: 18px;
  }

  .about-method__viewport {
    aspect-ratio: 16 / 9;
  }

  .about-method__overlay {
    min-height: 0;
    padding: 12px 14px 14px;
    gap: 6px;
  }

  .about-method__overlay h3 {
    font-size: clamp(16px, 4.8vw, 21px);
    line-height: 1.08;
  }

  .about-method__overlay p {
    font-size: 13px;
    line-height: 1.42;
  }

  .about-method__thumbs {
    gap: 10px;
    padding: 0 2px;
  }

  .about-method__thumb {
    width: clamp(70px, 20vw, 96px);
    border-radius: 10px;
  }

  .about-people .about-section-head p:not(.about-section-kicker) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.48;
  }

  .about-cta {
    padding: 44px 0;
  }

}

@media (max-width: 520px) {
.about-manifesto-cta__grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto-cta__grid article {
    min-height: 0;
  }

  .about-manifesto-cta__grid span {
    margin-bottom: 34px;
  }

  .about-cta a {
    width: fit-content;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
.about-eyebrow {
    font-size: 14px;
  }
}
