body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  all: unset;
}

h1, h2, h3, h4, h5 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-style: normal;
  white-space: normal;
  word-break: break-word;
  all: unset;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 590;
  line-height: 100%;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2.25rem;
  line-height: 100%;
}

h5 {
  font-size: 2rem;
}
h5.h6 {
  font-size: 1.25rem;
}

body, p, button {
  all: unset;
  font-family: "SF Pro Text", -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  font-style: normal;
  line-height: 120%; /* 1.4rem */
}
body .expanded, p .expanded, button .expanded {
  line-height: 140%; /* 1.4rem */
}

ul {
  margin: 0;
  padding: 0;
  margin-left: 1.5rem;
}

li {
  color: var(--black, #181818);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.4rem */
}

.icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.link-button {
  all: unset;
  font-family: "SF Pro Text", -apple-system, sans-serif;
  color: var(--red, #CB3521);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.link-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  transform: translate(0, -1px);
}
.link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.link-button:hover::after {
  transform: scaleX(1);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #fff;
  height: 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow 0.25s ease;
}
.nav-bar.scrolled {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.nav-bar .nav-bar-name {
  font-size: 2rem;
  font-weight: 700;
  color: #171717;
}
.nav-bar .nav-toggle {
  all: unset;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-bar .nav-toggle .icon {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  color: #181818;
}
.nav-bar .nav-bar-buttons {
  display: flex;
  gap: 2rem;
}
.nav-bar .nav-bar-buttons .nav-button {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  all: unset;
  display: block;
  background: transparent;
  box-shadow: none;
  margin: 12;
  font-weight: 590;
  font-size: 1.25rem;
  cursor: pointer;
}
.nav-bar .nav-bar-buttons .nav-button.selected {
  text-decoration: underline;
}
.nav-bar .nav-bar-buttons .nav-button:hover {
  color: var(--red, #CB3521);
}

.main-content {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 300px;
  padding: 250px 0;
  align-items: center;
}

.content {
  margin: 0 3rem;
  max-width: 1250px;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.content .header {
  max-width: 400px;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
}

.projects {
  width: 100%;
  box-sizing: border-box;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 0 3rem;
}
.projects .project-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.projects .project-container .project-image {
  width: 100%;
  height: 40vw;
  max-height: 400px;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease;
}
.projects .project-container .project-image .project-cover-image {
  display: block;
  width: 100%;
  height: auto;
}
.projects .project-container .project-image .project-cover-image.gw {
  width: 130%;
  height: auto;
  display: block;
  transform: translateZ(0) translate(2%, 5%);
}
.projects .project-container .project-image .project-cover-image.ms {
  width: 110%;
  height: auto;
  display: block;
  transform: translateZ(0) translate(0%, 3%);
}
.projects .project-container .project-image .project-cover-image.sm {
  position: relative;
  right: -50%;
  height: 100%;
  width: auto;
  transform: translateX(-45%);
}
.projects .project-container .project-image.gigawatt-cover {
  background-color: #FFC367;
}
.projects .project-container .project-image.midsummer-cover {
  background-color: #77C4ED;
}
.projects .project-container .project-image.marketplace-cover {
  background-color: #F2F2F2;
}
.projects .project-container .project-image.locked-image {
  position: relative;
}
.projects .project-container .project-image.locked-image .project-cover-image {
  filter: blur(1.5px) brightness(0.85);
}
.projects .project-container .project-image.locked-image .locked-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.projects .project-container .project-image.locked-image .locked-image-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #181818;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.projects .project-container .project-image.locked-image .locked-image-status,
.projects .project-container .project-image.locked-image .locked-image-action {
  transition: opacity 180ms ease, visibility 180ms ease, display 180ms ease;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(24, 24, 24, 0.75);
  text-transform: none;
}
.projects .project-container .project-image.locked-image .locked-image-status {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}
.projects .project-container .project-image.locked-image .locked-image-action {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.projects .project-container:hover {
  cursor: pointer;
}
.projects .project-container:hover .project-image {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13), 0 8px 16px rgba(0, 0, 0, 0.13);
}
.projects .project-container:hover .project-name {
  color: var(--red, #CB3521);
}
.projects .project-container:hover .locked-image-overlay .locked-image-label .locked-image-status {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.projects .project-container:hover .locked-image-overlay .locked-image-label .locked-image-action {
  display: inline-block;
  visibility: visible;
  opacity: 1;
}
.projects .project-container .project-details {
  display: flex;
  padding: 0 3rem;
  gap: 1.5rem;
}
.projects .project-container .project-details .project-name {
  width: 300px;
  transition: color 0.2s ease;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 0;
  width: 100%;
  background-color: #F2F2F2;
}
.footer .footer-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 1250px;
  box-sizing: border-box;
  padding: 0 3rem;
}

.grouped-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* ============================
   CASE STUDY PAGE (gigawatt.html etc)
   Append this to your main style.scss
   ============================ */
.case-study {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
  box-sizing: border-box;
}

.case-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  padding: 6rem 0;
}
.case-hero .case-hero-text {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-hero .case-hero-text .case-title {
  all: unset;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 590;
  letter-spacing: -0.02em;
  line-height: 110%;
}
.case-hero .case-hero-text .case-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 140%;
  color: rgba(24, 24, 24, 0.75);
}
.case-hero .case-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
}
.case-hero .case-meta .meta-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.case-hero .case-meta .meta-group .meta-label {
  font-size: 0.75rem;
  font-weight: 590;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.5);
}
.case-hero .case-meta .meta-group .meta-value {
  font-size: 1rem;
  font-weight: 400;
  color: #181818;
}

.logos-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.logos-row .logos-label {
  font-size: 0.875rem;
  color: rgba(24, 24, 24, 0.5);
}
.logos-row .logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logos-row .logos .logo-item {
  font-size: 1rem;
  font-weight: 590;
  letter-spacing: -0.01em;
  color: rgba(24, 24, 24, 0.6);
}

.before-after {
  position: relative;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13), 0 8px 16px rgba(0, 0, 0, 0.13);
  cursor: ew-resize;
  user-select: none;
}
.before-after img {
  -webkit-user-drag: none;
  user-select: none;
}
.before-after .ba-before, .before-after .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.before-after .ba-before img, .before-after .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.before-after .ba-after {
  z-index: 1;
}
.before-after .ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.before-after .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.before-after .ba-handle .ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.before-after .ba-handle .ba-handle-grip .icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #181818;
}
.before-after .ba-label {
  position: absolute;
  top: 1rem;
  z-index: 4;
  font-size: 0.75rem;
  font-weight: 590;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.before-after .ba-label.ba-label-before {
  left: 1rem;
}
.before-after .ba-label.ba-label-after {
  right: 1rem;
}

.outcomes-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem;
  border-radius: 8px;
}
.outcomes-row .outcome-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.outcomes-row .outcome-item .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
}
.outcomes-row .outcome-item p {
  font-size: 1.25rem;
  font-weight: 590;
}

.case-section {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 4rem 0;
}
.case-section .section-heading {
  all: unset;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 590;
  letter-spacing: -0.02em;
  flex: 0 0 200px;
}
.case-section .section-body {
  flex: 1;
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  color: rgba(24, 24, 24, 0.85);
}

.media-block {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13), 0 8px 16px rgba(0, 0, 0, 0.13);
}
.media-block img, .media-block video {
  display: block;
  width: 100%;
}
.media-block.process-image {
  width: 70%;
}
.media-block.no-shadow {
  box-shadow: none;
}
.media-block.cropped {
  height: 40vw;
  max-height: 450px;
  min-height: 260px;
}
.media-block.cropped img, .media-block.cropped video {
  height: 100%;
  object-fit: cover;
}
.media-block.natural img, .media-block.natural video {
  height: auto;
}

.goals-list {
  margin: 0;
  padding: 0;
  margin-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.goals-list li {
  font-family: "SF Pro Text", -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 150%;
  color: rgba(24, 24, 24, 0.85);
}

.persona-cards {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.persona-cards .persona-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: #F2F2F2;
}
.persona-cards .persona-card h4 {
  all: unset;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 1.125rem;
  font-weight: 590;
}
.persona-cards .persona-card .persona-role {
  font-size: 0.875rem;
  font-weight: 590;
  color: var(--red, #CB3521);
}
.persona-cards .persona-card .persona-desc {
  font-size: 0.9375rem;
  line-height: 140%;
  color: rgba(24, 24, 24, 0.75);
}
.persona-cards .persona-card .persona-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.persona-cards .persona-card .persona-stats .stat-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.persona-cards .persona-card .persona-stats .stat-row .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  color: var(--red, #CB3521);
  flex-shrink: 0;
}
.persona-cards .persona-card .persona-stats .stat-row p {
  font-size: 0.875rem;
  color: rgba(24, 24, 24, 0.75);
}

.process-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: start;
}
.process-step .process-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.process-step .process-text h4 {
  all: unset;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 1.25rem;
  font-weight: 590;
}
.process-step .process-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 150%;
  color: rgba(24, 24, 24, 0.85);
}
.process-step .process-text .process-text-stacked {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
}
.process-step .process-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}
.process-step .process-step .media-block {
  flex: 1;
}
.process-step .process-step .process-text, .process-step .process-step .process-text-double {
  flex: 1;
}

@media (max-width: 840px) {
  .case-hero {
    flex-direction: column;
    gap: 2rem;
  }
  .case-hero .case-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
  .persona-cards {
    flex-direction: column;
  }
  .case-study {
    padding: 3rem 1.5rem 4rem;
    gap: 3rem;
  }
  .outcomes-row .outcome-item .icon {
    width: 15px;
    height: 15px;
    stroke-width: 1.75;
  }
  .outcomes-row .outcome-item p {
    font-size: 1rem;
    font-weight: 400;
  }
  .case-section {
    flex-direction: column;
    gap: 1rem;
  }
  .case-section .section-heading {
    flex: none;
  }
  .process-step {
    flex-direction: column;
    gap: 1.5rem;
  }
  .process-step .process-text, .process-step .process-text-double {
    width: 100%;
  }
  .media-block.process-image {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 680px) {
  .nav-bar {
    padding: 1rem 1.5rem;
    position: relative;
  }
  .nav-bar .nav-toggle {
    display: flex;
  }
  .nav-bar .nav-bar-buttons {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  .nav-bar .nav-bar-buttons.open {
    display: flex;
  }
  .projects {
    padding: 0 1.5rem;
  }
  .projects .project-container .project-image .project-cover-image.gw {
    width: auto;
    height: 300%;
  }
  .projects .project-container .project-image .project-cover-image.ms {
    width: 150%;
  }
  .projects .project-container .project-image .project-cover-image.sm {
    left: 40%;
    height: 90%;
    transform: translate(-25%, 6%);
  }
  .projects .project-container .project-image.locked-image .locked-image-label .locked-image-status::after {
    content: "Password required";
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: rgba(24, 24, 24, 0.65);
    text-transform: uppercase;
  }
  .projects .project-container .project-details {
    flex-direction: column;
    padding: 0 1rem;
  }
  .projects .project-container .project-details .project-name {
    width: auto;
  }
  .footer {
    padding: 3rem 0;
  }
  .footer .footer-contents {
    padding: 0 1.5rem;
  }
}
@media (max-width: 500px) {
  .outcomes-row {
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
/* Modal Backdrop */
#modalBackdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.25s ease;
}
#modalBackdrop.hidden {
  display: none;
}

#modalOverlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#modalBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 40rem;
  max-width: 80vw;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13), 0 8px 16px rgba(0, 0, 0, 0.13);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #181818;
}
#modalBox .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
}
#modalBox .contact-box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  align-self: stretch;
  padding: 1rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #F2F2F2;
}
#modalBox .contact-box h4 {
  font-size: 1rem;
  font-weight: 590;
}
@media (max-width: 680px) {
  #modalBox {
    max-width: 90vw;
    padding: 1.25rem;
  }
  #modalBox .contact-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #modalBox .grouped-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

#passwordBackdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

#passwordOverlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#passwordBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 36rem;
  max-width: 90vw;
  padding: 1.25rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13), 0 8px 16px rgba(0, 0, 0, 0.13);
}

#passwordBox .text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.password-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.password-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

#passwordSubmit {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  background: #CB3521;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  min-height: 22px;
}

#passwordSubmit:hover {
  background: #d43c20;
}

#passwordSubmit svg {
  stroke: #fff;
}

.password-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}
.password-info:hover {
  background: rgba(24, 24, 24, 0.06);
}

.password-info .icon {
  width: 16px;
  height: 16px;
  color: #181818;
}

.password-tooltip-text {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(22rem, 100vw - 3rem);
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(24, 24, 24, 0.95);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 20;
}

.password-tooltip-text::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(24, 24, 24, 0.95);
}

.password-info:hover .password-tooltip-text,
.password-info:focus-within .password-tooltip-text,
.password-info:focus .password-tooltip-text {
  opacity: 1;
  visibility: visible;
}

.password-box input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-family: "SF Pro Text", -apple-system, sans-serif;
  font-size: 1rem;
  color: #181818;
}

.password-box input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(203, 53, 33, 0.12);
}

.password-error {
  color: #CB3521;
  font-size: 0.95rem;
}

#passwordBackdrop.hidden {
  display: none;
}

/* Hide utility */
.hidden {
  display: none !important;
}

#toast {
  visibility: hidden;
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#toast.show {
  visibility: visible;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
