html { scroll-behavior: smooth; }
body { font-family: 'Pretendard Variable', Pretendard, system-ui, sans-serif; }
.nav-link { white-space: nowrap; }
.site-header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.site-header-inner > a {
  position: relative;
  z-index: 2;
}
.site-header-inner .site-nav {
  width: 100%;
}
.site-header-spacer {
  display: none;
}
.site-nav {
  overflow: visible;
}
.site-nav-products {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-block: .25rem;
}
.site-nav-products::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 190px;
  height: 1.35rem;
  transform: translateX(-50%);
}
.site-product-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + .35rem);
  z-index: 80;
  display: grid;
  width: 170px;
  gap: .125rem;
  border: 1px solid rgb(226 232 240);
  border-radius: 14px;
  background: rgb(255 255 255 / .96);
  padding: .35rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  box-shadow: 0 22px 44px rgb(15 23 42 / .14);
  transition: opacity .16s ease, transform .16s ease;
}
.site-nav-products:hover .site-product-dropdown,
.site-nav-products.is-open .site-product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.site-product-dropdown a {
  display: block;
  border-radius: 10px;
  padding: .55rem .65rem;
  color: rgb(51 65 85);
}
.site-product-dropdown a:hover {
  background: rgb(248 250 252);
  color: rgb(15 23 42);
}
.site-product-dropdown span {
  font-size: 14px;
  font-weight: 800;
}
@media (min-width: 768px) {
  .site-header-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-height: 40px;
  }
  .site-header-inner .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: auto;
    justify-content: center;
    transform: translate(-50%, -50%);
  }
}
.work-card { transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.work-card:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgb(15 23 42 / .06); }
.calendar-popover { filter: drop-shadow(0 12px 24px rgb(15 23 42 / .10)); }
.work-item-modal-shell {
  max-width: 560px;
  border-radius: 14px;
}
.work-item-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  border-bottom: 1px solid rgb(226 232 240);
  padding: 1.25rem 1.35rem 1.1rem;
}
.work-item-modal-kicker {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: .45rem;
  color: rgb(100 116 139);
  font-size: 12px;
  font-weight: 750;
}
.work-item-modal-title {
  margin-top: .45rem;
  color: rgb(15 23 42);
  font-size: 26px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}
.work-item-modal-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(226 232 240);
  border-radius: 10px;
  color: rgb(100 116 139);
}
.work-item-modal-close:hover {
  border-color: rgb(148 163 184);
  color: rgb(15 23 42);
}
.work-item-modal-body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.35rem 1.35rem;
}
.work-item-modal-summary {
  margin: 0;
  color: rgb(51 65 85);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  white-space: pre-line;
}
.work-item-modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.work-item-modal-meta div {
  min-width: 0;
  border: 1px solid rgb(226 232 240);
  border-radius: 10px;
  background: rgb(248 250 252);
  padding: .85rem .9rem;
}
.work-item-modal-meta span {
  display: block;
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 800;
}
.work-item-modal-meta strong {
  display: block;
  margin-top: .35rem;
  color: rgb(15 23 42);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}
.work-item-modal-actions {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
  border-top: 1px solid rgb(226 232 240);
  padding-top: 1rem;
}
.work-item-edit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(15 23 42);
  border-radius: 9px;
  background: rgb(15 23 42);
  color: white;
  padding: .7rem 1rem;
  font-size: 13px;
  font-weight: 750;
}
.work-item-edit-button:hover {
  background: rgb(30 41 59);
}
.work-item-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(254 205 211);
  border-radius: 9px;
  background: white;
  padding: .55rem .85rem;
  color: rgb(190 18 60);
  font-size: 13px;
  font-weight: 750;
}
.work-item-delete-button:hover {
  background: rgb(255 241 242);
}
.owner-select-menu {
  position: fixed;
  z-index: 180;
  overflow-y: auto;
  border: 1px solid rgb(226 232 240);
  border-radius: 10px;
  background: white;
  padding: .45rem;
  box-shadow: 0 18px 36px rgb(15 23 42 / .16);
}
.owner-select-menu label {
  min-height: 34px;
}
.owner-select-menu[data-placement="top"] {
  box-shadow: 0 -18px 36px rgb(15 23 42 / .14);
}
.owner-validity-proxy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  opacity: 0;
  outline: 0;
  pointer-events: none;
}
.owner-select-trigger {
  position: relative;
  z-index: 1;
}
.calendar-page { overflow: hidden; }
.calendar-page main {
  height: calc(100svh - var(--site-header-height, 64px));
  display: flex;
  flex-direction: column;
}
.calendar-titlebar {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: .75rem;
  align-items: center;
}
.calendar-titlebar-main {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
#monthPickerButton {
  width: 174px;
  flex: 0 0 174px;
}
.calendar-titlebar-rail {
  width: 168px;
}
.month-picker-menu {
  position: absolute;
  left: 2.5rem;
  top: calc(100% + .5rem);
  z-index: 90;
  width: 230px;
  border: 1px solid rgb(226 232 240);
  border-radius: .75rem;
  background: white;
  padding: .75rem;
  box-shadow: 0 18px 36px rgb(15 23 42 / .14);
}
.calendar-page #calendarSection {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.calendar-workspace {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: .75rem;
}
.calendar-canvas {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.calendar-side-rail {
  width: 168px;
  flex: 0 0 168px;
  border: 1px solid rgb(226 232 240);
  border-radius: .75rem;
  background: rgb(248 250 252);
  padding: .5rem;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: .5rem;
}
.rail-create-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 100%;
  min-height: 34px;
  border-radius: .5rem;
  background: rgb(15 23 42);
  color: white;
  font-size: 13px;
  font-weight: 700;
}
.rail-create-button:hover { background: rgb(30 41 59); }
.rail-group {
  display: grid;
  gap: .25rem;
}
.rail-label {
  padding: .125rem .25rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgb(100 116 139);
}
.rail-check-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  width: 100%;
  min-height: 30px;
  border: 1px solid rgb(226 232 240);
  border-radius: .5rem;
  background: white;
  padding: .35rem .4rem .35rem .5rem;
  color: rgb(51 65 85);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
  overflow: hidden;
}
.rail-check-row:hover {
  border-color: rgb(148 163 184);
  color: rgb(15 23 42);
}
.rail-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 1px solid rgb(203 213 225);
  border-radius: .25rem;
  background: white;
  color: white;
}
.rail-checkbox.is-on {
  background: rgb(15 23 42);
  border-color: rgb(15 23 42);
}
.rail-checkbox.tone-blue.is-on {
  background: rgb(96 165 250);
  border-color: rgb(96 165 250);
}
.rail-checkbox.tone-violet.is-on {
  background: rgb(167 139 250);
  border-color: rgb(167 139 250);
}
.rail-checkbox.tone-amber.is-on {
  background: rgb(251 191 36);
  border-color: rgb(251 191 36);
}
.rail-filter-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  width: 100%;
  min-height: 30px;
  border-width: 1px;
  border-radius: .5rem;
  padding: .35rem .45rem;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}
.rail-divider {
  height: 1px;
  background: rgb(226 232 240);
}
.calendar-page #monthCalendarView,
.calendar-page #unitCalendarView {
  flex: 1;
  min-height: 0;
}
.calendar-page #monthCalendarView .week-row {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#calendarWeeks { height: var(--calendar-grid-height, 624px); }
.calendar-page #calendarWeeks {
  flex: 1;
  min-height: 0;
  height: auto;
}
.calendar-week {
  height: calc(var(--calendar-grid-height, 624px) / var(--calendar-week-count, 6));
  isolation: isolate;
}
.calendar-page .calendar-week { height: calc(100% / var(--calendar-week-count, 6)); }
.calendar-week-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  pointer-events: none;
}
.calendar-week-grid-lines > span {
  border-right: 1px solid rgb(226 232 240);
}
.calendar-week-grid-lines > span:last-child {
  border-right: 0;
}
.calendar-week-date-row,
.calendar-week-content,
.week-lanes {
  position: relative;
  z-index: 2;
}
.calendar-week-today-column {
  position: absolute;
  inset-block: 0;
  width: calc(100% / 7);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(15 23 42 / .085), rgb(15 23 42 / .045));
  box-shadow: inset 0 0 0 1px rgb(15 23 42 / .055);
}
.today-cell {
  background: transparent;
}
.calendar-week-date-row .day-cell {
  height: 30px;
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.holiday-date-name {
  min-width: 0;
  max-width: calc(100% - 52px);
  overflow: hidden;
  color: rgb(225 29 72);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.holiday-date-name.is-muted {
  color: rgb(253 164 175);
}
.today-cell::after {
  content: none;
}
.today-date-mark {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-width: 36px;
  height: 20px;
  border: 1px solid rgb(203 213 225);
  border-radius: .45rem;
  background: white;
  padding: 0 .45rem;
  color: rgb(2 6 23);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 3px rgb(15 23 42 / .08);
}
.today-date-mark::before {
  content: "";
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: rgb(15 23 42);
}
.today-date-sunday {
  color: rgb(225 29 72);
}
.today-date-saturday {
  color: rgb(37 99 235);
}
.today-date-holiday {
  color: rgb(225 29 72);
}
.calendar-week-content {
  height: calc(100% - 30px);
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 1px;
  padding-block: 3px 4px;
}
.week-event-lanes {
  flex: 0 0 16px;
}
.week-lanes {
  flex: 1 1 auto;
  min-height: 0;
  grid-template-rows: repeat(var(--calendar-lane-count, 3), minmax(16px, 1fr));
}
.calendar-week-content .calendar-bar {
  position: relative;
  z-index: 3;
  isolation: isolate;
  margin-inline: 4px;
  background-color: var(--calendar-bar-surface);
  background-clip: padding-box;
}
.calendar-week-content .calendar-bar > span {
  position: relative;
  z-index: 1;
}
.calendar-bar-work {
  --calendar-bar-surface: rgb(255 255 255);
}
.calendar-bar-centient {
  --calendar-bar-surface: rgb(191 219 254);
  color: rgb(30 58 138);
}
.calendar-bar-supernova {
  --calendar-bar-surface: rgb(221 214 254);
  color: rgb(76 29 149);
}
.calendar-bar-animation {
  --calendar-bar-surface: rgb(254 226 138);
  color: rgb(120 53 15);
}
.calendar-bar-event {
  display: flex;
  align-items: center;
  min-height: 24px;
  color: rgb(15 23 42);
}
.calendar-bar-event.calendar-bar-centient {
  --calendar-bar-surface: rgb(191 219 254 / .4);
}
.calendar-bar-event.calendar-bar-supernova {
  --calendar-bar-surface: rgb(221 214 254 / .4);
}
.calendar-bar-event.calendar-bar-animation {
  --calendar-bar-surface: rgb(254 226 138 / .4);
}
.week-event-lanes .calendar-event-item {
  align-self: center;
  margin-inline: 6px;
}
.calendar-event-content {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  gap: .4rem;
  line-height: 1;
}
.week-row { min-width: 0; }
.bar-link { min-width: 0; transition: background-color .16s ease, border-color .16s ease, transform .16s ease; }
.bar-link:hover { transform: translateY(-1px); }
#unitTimeline {
  height: 100%;
  min-height: 0;
}
.unit-board {
  --unit-left-width: clamp(210px, 27%, 292px);
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
}
.unit-board-header {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: var(--unit-left-width) minmax(0, 1fr);
  border-bottom: 1px solid rgb(226 232 240);
  background: rgb(248 250 252);
}
.unit-left-head {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: .15rem;
  border-right: 1px solid rgb(226 232 240);
  padding: .65rem .8rem;
}
.unit-left-head span {
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 800;
}
.unit-left-head strong {
  color: rgb(15 23 42);
  font-size: 14px;
  font-weight: 850;
}
.unit-scale {
  min-width: 0;
}
.unit-week-scale,
.unit-date-scale,
.unit-work-lane {
  display: grid;
  grid-template-columns: repeat(var(--timeline-days), minmax(0, 1fr));
}
.unit-week-scale {
  grid-template-rows: 24px 26px;
  min-height: 50px;
  border-bottom: 1px solid rgb(226 232 240);
}
.unit-week-scale span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-right: 1px solid rgb(226 232 240);
  padding-inline: .25rem;
  color: rgb(71 85 105);
  font-size: 11px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.unit-week-scale span.is-week-shaded {
  background: rgb(241 245 249 / .82);
}
.unit-week-scale .unit-month-band {
  grid-row: 1;
  border-bottom: 1px solid rgb(226 232 240);
  background: rgb(248 250 252);
  color: rgb(71 85 105);
  font-size: 11px;
  font-weight: 850;
}
.unit-week-scale .unit-week-band {
  grid-row: 2;
  color: rgb(51 65 85);
  font-size: 11px;
  font-weight: 800;
}
.unit-date-scale {
  min-height: 28px;
  overflow: visible;
}
.unit-date-scale > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-right: 1px solid rgb(218 225 235);
  color: rgb(100 116 139);
  font-size: 10px;
  font-weight: 800;
}
.unit-date-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 4px;
  padding-inline: .2rem;
  line-height: 1;
}
.unit-date-scale > span.is-sunday .unit-date-number {
  color: rgb(225 29 72);
}
.unit-date-scale > span.is-saturday .unit-date-number {
  color: rgb(37 99 235);
}
.unit-date-scale > span.is-today {
  background: transparent;
}
.unit-date-scale > span.is-today .unit-date-number {
  background: rgb(15 23 42);
  color: white;
  box-shadow: 0 1px 4px rgb(15 23 42 / .18);
}
.unit-date-scale > span:last-child {
  border-right: 0;
}
.unit-date-scale > span.is-week-shaded {
  background: rgb(241 245 249 / .82);
}
.unit-date-scale > span.is-holiday .unit-date-number {
  color: rgb(225 29 72);
}
.unit-date-scale > span.is-today.is-holiday .unit-date-number {
  color: white;
}
.unit-board-body {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgb(203 213 225) transparent;
}
.unit-board-body::before {
  content: "";
  position: absolute;
  inset: 0 0 0 var(--unit-left-width);
  background-image: linear-gradient(to right, rgb(218 225 235) 1px, transparent 1px);
  background-size: calc(100% / var(--timeline-days)) 100%;
  background-position: -1px 0;
  pointer-events: none;
}
.unit-board-body::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: var(--unit-left-width);
  width: 1px;
  background: rgb(226 232 240);
  pointer-events: none;
  z-index: 2;
}
.unit-project-block {
  position: relative;
  z-index: 1;
  background: white;
  border-bottom: 1px solid rgb(226 232 240);
}
.unit-project-header {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-height: 34px;
  border-bottom: 1px solid rgb(226 232 240);
  background: rgb(241 245 249);
  padding: .35rem .6rem;
}
.unit-project-title {
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  color: rgb(15 23 42);
  font-size: 12px;
  font-weight: 850;
}
.unit-project-title > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.unit-project-header button {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  border: 1px solid rgb(203 213 225);
  border-radius: 999px;
  background: white;
  padding: .2rem .45rem;
  color: rgb(71 85 105);
  font-size: 11px;
  font-weight: 800;
}
.unit-project-header .unit-project-toggle {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  justify-content: center;
  padding: 0;
}
.unit-project-header button:hover {
  border-color: rgb(15 23 42);
  color: rgb(15 23 42);
}
.unit-work-row {
  position: relative;
  display: grid;
  grid-template-columns: var(--unit-left-width) minmax(0, 1fr);
  min-height: 38px;
  border-bottom: 0;
}
.unit-work-row::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: rgb(218 225 235);
  pointer-events: none;
  z-index: 4;
}
.unit-work-meta {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: .18rem;
  border-right: 1px solid rgb(226 232 240);
  background: white;
  padding: .3rem .75rem;
  text-align: left;
}
.unit-work-meta:hover {
  background: rgb(248 250 252);
}
.unit-work-meta strong,
.unit-work-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.unit-work-meta strong {
  color: rgb(15 23 42);
  font-size: 12px;
  font-weight: 700;
}
.unit-work-meta span {
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 650;
}
.unit-work-lane {
  position: relative;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
}
.unit-day-bg {
  position: relative;
  z-index: 1;
  grid-row: 1;
  height: 100%;
  border-right: 1px solid rgb(218 225 235);
  pointer-events: none;
}
.unit-day-bg:last-of-type {
  border-right: 0;
}
.unit-day-bg.is-week-shaded {
  background: rgb(241 245 249 / .82);
}
.unit-day-bg.is-today {
  background: transparent;
  box-shadow: none;
}
.unit-today-line {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: var(--unit-left-width) repeat(var(--timeline-days), minmax(0, 1fr));
  pointer-events: none;
  z-index: 6;
}
.unit-today-line::before {
  content: "";
  grid-column: var(--unit-today-column);
  justify-self: center;
  width: 2px;
  background: rgb(15 23 42);
}
.unit-work-bar {
  position: relative;
  z-index: 5;
  grid-row: 1;
  display: flex;
  align-items: center;
  align-self: center;
  min-width: 0;
  height: 20px;
  margin-inline: 2px;
  border-radius: 6px;
  background: var(--calendar-bar-surface);
  padding-inline: .45rem;
  color: inherit;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  overflow: hidden;
  transition: transform .16s ease, filter .16s ease;
}
.unit-work-bar:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}
.unit-work-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.milestone-track { grid-template-columns: repeat(var(--milestone-count), minmax(140px, 1fr)); }
.product-page {
  overflow: hidden;
}
.product-scroll {
  height: calc(100svh - var(--site-header-height, 64px));
  overflow-y: auto;
  scroll-behavior: auto;
}
.product-scroll.is-animating {
  scroll-behavior: auto;
}
.product-story-section {
  min-height: calc(100svh - var(--site-header-height, 64px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(2rem, 6vw, 5rem);
  padding-inline: max(1rem, calc((100vw - 1440px) / 2 + 1.5rem));
  border-bottom: 1px solid rgb(226 232 240);
  color: rgb(15 23 42);
}
.product-tone-centient {
  background: rgb(248 251 255);
  --product-accent: rgb(0 122 204);
  --product-accent-soft: rgb(219 234 254);
  --product-panel: rgb(255 255 255);
  --product-panel-border: rgb(219 234 254);
}
.product-tone-supernova-app {
  position: relative;
  overflow: hidden;
  border-bottom-color: rgb(255 255 255 / .08);
  background:
    radial-gradient(circle at 73% 38%, rgb(88 28 135 / .52), transparent 31%),
    radial-gradient(circle at 57% 24%, rgb(217 70 239 / .16), transparent 24%),
    linear-gradient(135deg, rgb(10 8 17), rgb(23 14 33) 52%, rgb(12 8 20));
  color: rgb(248 250 252);
  --product-accent: rgb(244 114 182);
  --product-accent-soft: rgb(88 28 135 / .36);
  --product-panel: rgb(255 255 255 / .08);
  --product-panel-border: rgb(216 180 254 / .48);
}
.product-tone-supernova-app::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(255 255 255 / .05), transparent 28%, transparent 72%, rgb(255 255 255 / .04)),
    radial-gradient(circle at 28% 78%, rgb(168 85 247 / .13), transparent 28%);
}
.product-tone-supernova-app > * {
  position: relative;
  z-index: 1;
}
.product-tone-animation-ip {
  background: rgb(255 251 235);
  --product-accent: rgb(180 83 9);
  --product-accent-soft: rgb(254 243 199);
  --product-panel: rgb(255 255 255 / .88);
  --product-panel-border: rgb(252 211 77);
}
.product-story-copy {
  max-width: 680px;
}
.product-tone-centient .product-story-copy,
.product-tone-centient .product-detail-copy {
  max-width: 860px;
}
.product-kicker {
  margin-bottom: 1rem;
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.product-story-copy h2 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 850;
  line-height: .95;
  letter-spacing: 0;
}
.product-logo-heading {
  display: block;
  width: min(390px, 100%);
  height: auto;
}
.product-logo-heading-centient {
  width: min(640px, 100%);
  margin-bottom: clamp(1.1rem, 2.4vw, 1.9rem);
  margin-left: -12px;
}
.product-headline {
  margin-top: 1.35rem;
  max-width: 620px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
  color: rgb(30 41 59);
}
.product-tone-centient .product-headline,
.product-tone-centient .product-detail-headline {
  max-width: 760px;
  color: rgb(15 23 42);
  font-size: clamp(1.45rem, 2.65vw, 2.25rem);
  font-style: normal;
  font-weight: 780;
  line-height: 1.24;
  white-space: nowrap;
}
.product-tone-centient .product-detail-summary {
  color: rgb(100 116 139);
}
.product-body-copy {
  margin-top: 1.25rem;
  display: grid;
  gap: .5rem;
  max-width: 560px;
  color: rgb(71 85 105);
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  font-weight: 550;
  line-height: 1.8;
}
.product-channel-row {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.product-story-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.product-channel-row span {
  border: 1px solid var(--product-panel-border);
  border-radius: 999px;
  background: rgb(255 255 255 / .74);
  padding: .45rem .75rem;
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 800;
}
.product-tone-supernova-app .product-headline,
.product-tone-supernova-app .product-detail-headline {
  color: rgb(255 255 255 / .94);
}
.product-tone-supernova-app .product-body-copy,
.product-tone-supernova-app .product-detail-summary {
  color: rgb(226 232 240 / .82);
}
.product-tone-supernova-app .product-channel-row span,
.product-tone-supernova-app .product-detail-chip-row span {
  border-color: rgb(216 180 254 / .42);
  background: rgb(255 255 255 / .08);
  color: rgb(244 114 182);
}
.product-tone-supernova-app .product-detail-copy h1 {
  color: white;
}
.product-story-media {
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.product-visual {
  width: min(470px, 100%);
  min-height: min(54vh, 460px);
  border: 1px solid var(--product-panel-border);
  border-radius: 28px;
  background: var(--product-panel);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 0 24px 50px rgb(15 23 42 / .08);
}
.product-visual-centient {
  display: grid;
  align-content: center;
  gap: 1rem;
}
.centient-principle-board {
  width: min(560px, 100%);
  min-height: auto;
  border: 1px solid rgb(219 234 254);
  border-radius: 22px;
  background: rgb(255 255 255 / .9);
  padding: clamp(.9rem, 2.2vw, 1.25rem);
  box-shadow: 0 18px 40px rgb(15 23 42 / .06);
}
.centient-principle-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .25rem .85rem;
  align-items: center;
  border: 1px solid rgb(226 232 240);
  border-radius: 14px;
  background: white;
  padding: 1rem 1.05rem;
}
.centient-card-index {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgb(232 247 255);
  color: rgb(0 122 204);
  font-size: 12px;
  font-weight: 850;
}
.centient-principle-card strong {
  min-width: 0;
  color: rgb(15 23 42);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 850;
  line-height: 1.2;
}
.centient-card-copy {
  min-width: 0;
  color: rgb(71 85 105);
  font-size: clamp(.92rem, 1vw, .98rem);
  font-weight: 600;
  line-height: 1.6;
}
.product-visual-panel {
  display: grid;
  gap: .65rem;
  border: 1px solid var(--product-panel-border);
  border-radius: 18px;
  background: white;
  padding: 1.1rem;
}
.product-visual-panel span,
.media-strip span {
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-visual-panel strong,
.media-strip strong {
  color: rgb(15 23 42);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.25;
}
.visual-panel-wide {
  min-height: 140px;
}
.product-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.visual-meter {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: rgb(226 232 240);
}
.visual-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--product-accent);
}
.product-visual-supernova {
  display: flex;
  align-items: center;
  justify-content: center;
}
.supernova-official-art {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: stretch;
  width: min(580px, 100%);
  height: min(64vh, 560px);
  min-height: 430px;
  max-height: 560px;
  border-color: rgb(216 180 254 / .52);
  background: rgb(10 8 17);
  padding: 0;
  box-shadow:
    0 30px 70px rgb(0 0 0 / .38),
    0 0 70px rgb(168 85 247 / .2);
}
.supernova-official-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.18);
}
.supernova-art-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 18px;
  background: rgb(7 5 12 / .62);
  padding: .85rem 1rem;
  backdrop-filter: blur(12px);
}
.supernova-art-caption span {
  color: rgb(244 114 182);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.supernova-art-caption strong {
  color: white;
  font-size: 14px;
  font-weight: 850;
}
.phone-frame {
  width: min(280px, 86%);
  min-height: 390px;
  border: 1px solid rgb(203 213 225);
  border-radius: 34px;
  background: rgb(255 255 255);
  padding: 1.2rem;
  box-shadow: inset 0 0 0 7px rgb(15 23 42);
}
.supernova-phone-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: .75rem;
  border-color: rgb(216 180 254);
  background:
    linear-gradient(180deg, rgb(13 9 24), rgb(25 15 41) 52%, rgb(50 25 78));
  color: white;
  box-shadow:
    inset 0 0 0 7px rgb(15 23 42),
    0 0 34px rgb(168 85 247 / .22);
}
.phone-topbar {
  margin: .3rem auto 1.7rem;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgb(15 23 42);
}
.supernova-phone-frame .phone-topbar {
  margin-bottom: .35rem;
  background: rgb(255 255 255 / .45);
}
.supernova-logo-mark {
  justify-self: center;
  color: rgb(251 207 232);
  font-size: 23px;
  font-weight: 850;
  line-height: .78;
  text-align: center;
  text-shadow: 0 0 18px rgb(217 70 239 / .72);
}
.miho-stage {
  position: relative;
  display: grid;
  min-height: 138px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgb(4 3 10), rgb(17 13 29));
}
.miho-avatar {
  position: relative;
  display: grid;
  width: 92px;
  height: 112px;
  place-items: end center;
  border-radius: 44px 44px 36px 36px;
  background:
    linear-gradient(180deg, rgb(254 240 138), rgb(251 113 133) 48%, rgb(167 139 250));
  box-shadow: 0 0 22px rgb(244 114 182 / .42);
}
.miho-avatar::before,
.miho-avatar::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 20px;
  height: 28px;
  border-radius: 70% 70% 30% 30%;
  background: rgb(254 240 138);
}
.miho-avatar::before {
  left: 11px;
  transform: rotate(-22deg);
}
.miho-avatar::after {
  right: 11px;
  transform: rotate(22deg);
}
.miho-avatar span {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgb(255 255 255 / .78);
  padding: .32rem .55rem;
  color: rgb(88 28 135);
  font-size: 12px;
  font-weight: 850;
}
.miho-star {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
}
.star-a {
  left: 22%;
  top: 36%;
  background: rgb(250 204 21);
}
.star-b {
  left: 28%;
  top: 56%;
  background: rgb(244 114 182);
}
.star-c {
  right: 24%;
  top: 24%;
  background: rgb(125 211 252);
}
.supernova-chat {
  display: grid;
  gap: .35rem;
  border: 1px solid rgb(255 255 255 / .13);
  border-radius: 16px;
  background: rgb(255 255 255 / .08);
  padding: .72rem .8rem;
}
.supernova-chat span {
  color: rgb(233 213 255);
  font-size: 12px;
  font-weight: 800;
}
.supernova-chat strong {
  color: white;
  font-size: 13px;
  line-height: 1.35;
}
.supernova-mode-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
}
.supernova-mode-row span {
  border: 1px solid rgb(255 255 255 / .14);
  border-radius: 999px;
  background: rgb(255 255 255 / .09);
  padding: .42rem .2rem;
  color: rgb(233 213 255);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}
.chat-line {
  max-width: 82%;
  margin-top: .8rem;
  border-radius: 14px;
  padding: .75rem .85rem;
  font-size: 13px;
  font-weight: 800;
}
.chat-line-left {
  background: rgb(237 233 254);
  color: rgb(91 33 182);
}
.chat-line-right {
  margin-left: auto;
  background: rgb(15 23 42);
  color: white;
}
.phone-action {
  margin-top: 2.3rem;
  border-radius: 16px;
  background: var(--product-accent);
  padding: .9rem 1rem;
  color: white;
  text-align: center;
  font-weight: 850;
}
.product-visual-animation {
  display: grid;
  align-content: center;
  gap: 1rem;
}
.youtube-preview-shell {
  position: relative;
  align-content: center;
  overflow: hidden;
  padding: clamp(.8rem, 2vw, 1.15rem);
}
.youtube-preview-viewport {
  overflow: hidden;
  border: 1px solid var(--product-panel-border);
  border-radius: 22px;
  background: rgb(255 255 255 / .74);
}
.youtube-preview-track {
  display: flex;
  transition: transform .34s ease;
  will-change: transform;
}
.youtube-preview-card {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  min-height: min(45vh, 380px);
  grid-template-rows: minmax(230px, 1fr) auto;
  overflow: hidden;
  color: rgb(15 23 42);
}
.youtube-preview-card:hover .youtube-preview-media img {
  transform: scale(1.04);
}
.youtube-preview-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 88px auto;
  width: 54px;
  height: 38px;
  border-radius: 12px;
  background: rgb(239 68 68);
  box-shadow: 0 12px 24px rgb(15 23 42 / .16);
}
.youtube-preview-card::before {
  content: "";
  position: absolute;
  right: calc(1.2rem + 18px);
  bottom: 101px;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid white;
}
.youtube-preview-media {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
}
.youtube-preview-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .82;
}
.youtube-preview-media img {
  position: relative;
  z-index: 1;
  width: min(190px, 58%);
  aspect-ratio: 1;
  border: 5px solid rgb(255 255 255 / .78);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 22px 45px rgb(15 23 42 / .24);
  transition: transform .34s ease;
}
.youtube-preview-inferno .youtube-preview-media::before {
  background:
    radial-gradient(circle at 30% 35%, rgb(251 146 60 / .9), transparent 28%),
    linear-gradient(135deg, rgb(127 29 29), rgb(251 191 36));
}
.youtube-preview-odie .youtube-preview-media::before {
  background:
    radial-gradient(circle at 70% 25%, rgb(125 211 252 / .95), transparent 30%),
    linear-gradient(135deg, rgb(30 64 175), rgb(16 185 129));
}
.youtube-preview-supernova .youtube-preview-media::before {
  background:
    radial-gradient(circle at 50% 30%, rgb(244 114 182 / .95), transparent 32%),
    linear-gradient(135deg, rgb(49 46 129), rgb(126 34 206));
}
.youtube-preview-copy {
  display: flex;
  min-height: 76px;
  align-items: center;
  background: white;
  padding: 1rem 1.1rem;
}
.youtube-preview-copy strong {
  color: rgb(15 23 42);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.18;
}
.youtube-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(226 232 240);
  border-radius: 999px;
  background: rgb(255 255 255 / .9);
  color: rgb(15 23 42);
  box-shadow: 0 12px 22px rgb(15 23 42 / .12);
  transform: translateY(-50%);
}
.youtube-carousel-button:hover {
  border-color: rgb(251 191 36);
  color: rgb(180 83 9);
}
.youtube-carousel-prev {
  left: .48rem;
}
.youtube-carousel-next {
  right: .48rem;
}
.youtube-preview-dots {
  display: flex;
  justify-content: center;
  gap: .35rem;
  padding-top: .75rem;
}
.youtube-preview-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgb(203 213 225);
  transition: width .2s ease, background-color .2s ease;
}
.youtube-preview-dots button.is-active {
  width: 20px;
  background: rgb(245 158 11);
}
.media-strip {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--product-panel-border);
  border-radius: 18px;
  background: white;
  padding: 1rem 1.1rem;
}
.media-strip-main {
  min-height: 150px;
  align-items: flex-end;
  background: rgb(255 247 237);
}
.product-progress {
  position: fixed;
  right: clamp(1rem, 2.7vw, 2rem);
  top: 50%;
  z-index: 45;
  display: grid;
  gap: .72rem;
  transform: translateY(-50%);
}
.product-progress button {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: rgb(15 23 42 / .18);
  transition: width .22s ease, background-color .22s ease, transform .22s ease;
}
.product-progress button:hover {
  background: rgb(15 23 42 / .44);
}
.product-progress button.is-active {
  width: 26px;
  background: rgb(15 23 42);
  transform: translateX(-4px);
}
.product-down-hint {
  position: fixed;
  left: 50%;
  bottom: clamp(1.25rem, 4vh, 2.75rem);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 36px;
  border-radius: 999px;
  color: rgb(15 23 42 / .48);
  transform: translateX(-50%);
  animation: productDownHintFloat 1.8s ease-in-out infinite;
  transition: opacity .2s ease, color .2s ease;
}
.product-down-hint:hover {
  color: rgb(15 23 42 / .78);
}
.product-down-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes productDownHintFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.product-detail-page {
  min-height: 100vh;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100svh - var(--site-header-height, 64px));
  padding-block: clamp(3rem, 8vw, 6rem);
  padding-inline: max(1rem, calc((100vw - 1440px) / 2 + 1.5rem));
}
.product-detail-copy {
  max-width: 720px;
}
.product-detail-copy h1 {
  color: rgb(15 23 42);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 850;
  line-height: .96;
  letter-spacing: 0;
}
.product-detail-headline {
  margin-top: 1.4rem;
  max-width: 680px;
  color: rgb(30 41 59);
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}
.product-detail-summary {
  margin-top: 1.2rem;
  max-width: 620px;
  color: rgb(71 85 105);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 550;
  line-height: 1.8;
}
.product-detail-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.product-primary-link,
.product-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: .65rem 1rem;
  font-size: 14px;
  font-weight: 800;
}
.product-primary-link {
  background: rgb(15 23 42);
  color: white;
}
.product-secondary-link {
  border: 1px solid var(--product-panel-border);
  background: rgb(255 255 255 / .7);
  color: var(--product-accent);
}
.product-detail-media {
  display: grid;
  justify-items: center;
}
.product-detail-section {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 1440px) / 2 + 1.5rem));
  border-top: 1px solid rgb(226 232 240);
  background: white;
}
.product-detail-root > .product-detail-section:first-child {
  border-top: 0;
}
.product-detail-section h2 {
  color: rgb(15 23 42);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}
.product-detail-band {
  background: rgb(248 250 252);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.product-detail-grid article {
  display: grid;
  gap: .7rem;
  border: 1px solid rgb(226 232 240);
  border-radius: 18px;
  background: white;
  padding: 1.25rem;
}
.product-detail-grid span {
  color: rgb(100 116 139);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-detail-grid p {
  color: rgb(51 65 85);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
.product-detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: .6rem;
}
.product-detail-chip-row span {
  border: 1px solid var(--product-panel-border);
  border-radius: 999px;
  background: white;
  padding: .6rem .9rem;
  color: var(--product-accent);
  font-size: 13px;
  font-weight: 850;
}
@media (max-width: 767px) {
  .bar-link { font-size: 12px; }
  .product-logo-heading {
    width: min(370px, 100%);
  }
  .product-logo-heading-centient {
    width: min(460px, 100%);
  }
  .product-tone-centient .product-headline,
  .product-tone-centient .product-detail-headline {
    font-size: clamp(1.25rem, 4.8vw, 1.6rem);
  }
  .calendar-week { height: calc(var(--calendar-grid-height, 624px) / var(--calendar-week-count, 6)); }
  .calendar-page .calendar-week { height: calc(100% / var(--calendar-week-count, 6)); }
  .week-lanes { grid-template-rows: repeat(var(--calendar-lane-count, 3), minmax(15px, 1fr)); }
  .unit-board { --unit-left-width: 150px; }
  .unit-left-head { padding-inline: .55rem; }
  .unit-work-meta { padding-inline: .55rem; }
  .unit-week-scale span { font-size: 10px; }
  .unit-work-meta span { display: none; }
  .calendar-titlebar { grid-template-columns: minmax(0, 1fr) 136px; gap: .5rem; }
  .calendar-titlebar-rail { width: 136px; }
  .calendar-workspace { gap: .5rem; }
  .calendar-side-rail { width: 136px; flex-basis: 136px; padding: .375rem; }
  .rail-create-button { font-size: 12px; }
  .rail-check-row { font-size: 11px; padding-left: .35rem; padding-right: .35rem; }
  .rail-filter-button { font-size: 11px; padding-left: .35rem; padding-right: .35rem; }
  .product-story-section {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.4rem;
    padding: 1.5rem 1rem;
  }
  .product-story-copy h2 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }
  .product-headline {
    margin-top: 1rem;
  }
  .product-body-copy {
    margin-top: .9rem;
    line-height: 1.65;
  }
  .product-visual {
    min-height: 300px;
    border-radius: 22px;
  }
  .phone-frame {
    min-height: 300px;
  }
  .product-progress {
    right: .7rem;
    gap: .55rem;
  }
  .product-progress button {
    width: 14px;
  }
  .product-progress button.is-active {
    width: 21px;
  }
  .site-product-dropdown {
    left: 0;
    width: min(180px, calc(100vw - 2rem));
    transform: translate(0, 8px);
  }
  .site-nav-products:hover .site-product-dropdown,
  .site-nav-products.is-open .site-product-dropdown {
    transform: translate(0, 0);
  }
  .product-detail-hero,
  .product-detail-section {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .calendar-page main {
    padding-bottom: 1.5rem !important;
  }
}
