.customer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 5vw;
  background: white;
  color: #101820;
  border-bottom: 1px solid #d7dadc;
}
.customer-header img {
  max-width: 45vw;
  object-fit: contain;
}
.customer-header button {
  color: #101820;
  border: 1px solid #7d8a98;
  background: transparent;
}
button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #1246d8;
  background: #1246d8;
  color: white;
  cursor: pointer;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  padding: 12px;
  background: white;
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
#main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 80px;
  outline: none;
}
#notice:not(:empty) {
  max-width: 1132px;
  margin: 20px auto 0;
  padding: 16px 24px;
  border: 1px solid #c97843;
  border-radius: 12px;
  background: #fff8f1;
}
#notice[data-error="true"] {
  color: #8b1f1f;
}
.customer-nav,
.customer-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.customer-nav button,
.customer-subnav button {
  background: white;
  color: #101820;
  border: 1px solid #bac4cc;
}
.customer-nav button[aria-current="page"],
.customer-subnav button[aria-current="page"] {
  background: #1246d8;
  color: white;
  border-color: #1246d8;
}
.signin {
  max-width: 550px;
  margin: 4vh auto;
}
.signin h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.06;
}
.signin .card {
  margin-top: 30px;
}
.signin p {
  color: #58636d;
}
.customer-intro {
  max-width: 720px;
}
.customer-intro h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.workspace-list {
  display: grid;
  gap: 16px;
}
.workspace-list button {
  text-align: left;
  padding: 24px;
  background: white;
  color: #101820;
  border: 1px solid #d7dadc;
}
.customer-docs {
  display: grid;
  gap: 12px;
}
.customer-docs a {
  display: block;
  padding: 18px;
  border: 1px solid #d7dadc;
  border-radius: 12px;
  background: white;
  overflow-wrap: anywhere;
}
.customer-support {
  max-width: 700px;
}
.customer-support textarea {
  min-height: 160px;
}
button:disabled {
  opacity: 0.65;
  cursor: wait;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #c97843;
  outline-offset: 4px;
}
@media (max-width: 600px) {
  #main {
    padding: 28px 16px 60px;
  }
  .customer-header {
    padding: 18px 16px;
  }
  .customer-nav button {
    flex: 1 1 40%;
  }
  .customer-subnav button {
    flex: 1 1 auto;
  }
  #notice:not(:empty) {
    margin: 16px;
  }
  select[multiple] {
    width: 100%;
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
