/* ==========================================================================
   N26 case study — web mode (presentation-aligned scroll layout)
   ========================================================================== */

:root {
  --n26-section-pad: clamp(2.5rem, 5.5vw, 5rem);
  --n26-beat-gap: clamp(2.25rem, 4vw, 3.5rem);
  --deck-top: 3.5rem;
}

.n26-mt-md { margin-top: var(--sp-md); }

/* Breadcrumb */
.crumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}
.crumb .sep { color: var(--line-strong); }
.crumb .now {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Inline tooltip */
.tip {
  position: relative;
  cursor: help;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--muted);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  width: max-content;
  max-width: 20rem;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.tip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.tip:hover::after,
.tip:focus-visible::after,
.tip:hover::before,
.tip:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.n26-time-pill,
.n26-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--paper-dim);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Phone mock */
.phone-mock {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  padding: 5px;
  background: #1c1c1e;
  border-radius: 2rem;
  box-shadow: 0 16px 38px -22px rgba(0, 0, 0, 0.45);
}
.phone-mock--cover { max-width: 285px; }
.phone-mock video,
.phone-mock img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  background: #000;
}

/* Header — title sticks left */
body.summary-v2.has-shell .shell-bar {
  gap: var(--sp-sm);
  min-width: 0;
}
.deck-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  padding-inline: 0;
  margin-right: auto;
}
@media (max-width: 520px) {
  .deck-title {
    font-size: 0.78rem;
    white-space: normal;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.nav-btn:hover {
  border-color: var(--line-strong);
  background: var(--paper-dim);
}
.nav-btn--present {
  width: auto;
  padding: 0 0.85rem;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Journey nav — OLX-style pills */
body.summary-v2.has-shell .n26-journey-nav {
  gap: 0.45rem;
  padding-block: 0.75rem;
  justify-content: center;
  overflow-x: auto;
}
body.summary-v2.has-shell .n26-journey-nav .journey-nav__sep {
  display: none;
}
body.summary-v2.has-shell .n26-journey-nav .journey-nav__btn {
  flex: none;
  border-radius: var(--radius-pill, 9999px);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.5rem 1rem;
  min-height: 2.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
body.summary-v2.has-shell .n26-journey-nav .journey-nav__btn:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: var(--paper-dim);
}
body.summary-v2.has-shell .n26-journey-nav .journey-nav__btn.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 2px 8px -2px rgba(255, 218, 8, 0.55);
}
@media (max-width: 900px) {
  body.summary-v2.has-shell .n26-journey-nav {
    justify-content: flex-start;
  }
}

/* Split grid (OLX pattern) */
.n26-split {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
}
@media (min-width: 1024px) {
  .n26-split--50-50 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .n26-split--55-45 { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .n26-split--cover { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: end; }
  /* Visual moves to the left column; DOM order stays copy-first for reading order */
  .n26-split--flip > :first-child { grid-area: 1 / 2; }
  .n26-split--flip > :last-child { grid-area: 1 / 1; }
}

/* Hero — wide visual column, no transform (parent clips overflow) */
.n26-hero .hero-split--stage {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: var(--sp-xl);
  align-items: center;
}
.n26-hero .hero__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 26ch;
}
.n26-hero .hero__sub + .hero__sub { margin-top: var(--sp-sm); }
.n26-hero-visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.n26-hero-img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

/* Small section label — used where a title would over-weight the hierarchy */
.n26-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: var(--sp-md) 0 var(--sp-sm);
  max-width: none;
}
.n26-label:first-child { margin-top: 0; }

/* Plain figures — no fill, no frame */
.n26-figure-plain {
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.n26-figure-plain img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
  background: transparent;
}
.n26-role-figure {
  max-width: min(100%, 22rem);
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .n26-role-figure {
    max-width: 77%;
    margin-inline: auto;
  }
}
.n26-figure-plain--contain img {
  max-height: min(72vh, 36rem);
  width: 100%;
  object-fit: contain;
  cursor: zoom-in;
}
.n26-figure-plain--board img {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.n26-figure-caption {
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--muted);
}
/* Case intro */
.n26-case-intro {
  padding-bottom: 0;
}
.n26-case-intro .rule--thick {
  margin-top: var(--sp-2xl);
  margin-bottom: 0;
}
.n26-case-thesis {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-sm);
}
.n26-case-intro__copy .beat__text + .beat__text {
  margin-top: var(--sp-sm);
}
.n26-case-intro__copy .n26-time-pill {
  margin-top: var(--sp-md);
}
.n26-case-intro__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.n26-case-intro__media .phone-mock {
  max-width: 17rem;
  margin: 0;
}
.n26-journey-impact {
  margin-top: var(--sp-md);
}
.n26-shoutouts__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-sm);
}
.n26-shoutouts .beat__text { margin: 0; }

/* Feed sections — beats stack vertically (components.css .beat is a 2-col grid) */
.n26-feed-section {
  padding-block: var(--n26-section-pad);
  scroll-margin-top: var(--journey-scroll-offset, 7rem);
}
.n26-feed-section .beat,
.n26-case-intro .beat {
  display: block;
  grid-template-columns: none;
  padding-block: 0;
  border-top: none;
}
.n26-feed-section .beat + .beat {
  margin-top: var(--n26-beat-gap);
  padding-top: var(--n26-beat-gap);
  border-top: 1px solid var(--line);
}
.n26-feed-section .beat + .rule + .beat,
.n26-feed-section .rule + .beat {
  margin-top: var(--n26-beat-gap);
  padding-top: 0;
  border-top: none;
}
.n26-feed-section .beat__title {
  max-width: 34ch;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}
.n26-feed-section .beat__text {
  max-width: 68ch;
}
.n26-feed-section .beat__text + .beat__text {
  margin-top: var(--sp-sm);
}
.n26-feed-section .beat__subtitle {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--ink);
  max-width: none;
  margin-bottom: var(--sp-sm);
}
.n26-feed-section .rule--thick {
  margin-top: var(--n26-beat-gap);
  margin-bottom: 0;
}


/* Hypothesis grid — 3-up like presentation */
.n26-hypo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-md);
}
@media (min-width: 900px) {
  .n26-hypo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.n26-hypo-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.n26-hypo-card__media {
  display: flex;
  justify-content: center;
}
.n26-hypo-card__media .phone-mock {
  max-width: 100%;
  margin: 0;
}
.n26-hypo-card__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}
.n26-hypo-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.n26-hypo-card__p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 var(--sp-md);
}

/* Bet badge — neutral, not yellow */
.n26-bet-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--paper-dim);
  border: 1px solid var(--line);
  margin-bottom: var(--sp-md);
}

/* Check list */
.n26-check-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-sm) 0 0;
  display: grid;
  gap: var(--sp-sm);
}
.n26-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.n26-check-list__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--paper-dim);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.n26-resp-heading { margin-top: var(--sp-md); }

/* Quote cards */
.n26-quote-stack {
  display: grid;
  gap: var(--sp-md);
}
.n26-quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}
.n26-quote-card blockquote {
  margin: 0;
  padding: var(--sp-md);
}
.n26-quote-card blockquote p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.n26-quote-card footer {
  margin-top: var(--sp-xs);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.n26-quote-card__learn {
  display: flex;
  gap: 0.5rem;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  line-height: 1.45;
}
.n26-quote-card__learn-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--muted);
}

/* Insight grid */
.n26-insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
@media (min-width: 640px) { .n26-insight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .n26-insight-grid { grid-template-columns: repeat(4, 1fr); } }
.n26-insight-card {
  padding: var(--sp-md);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}
.n26-insight-card__icon { font-size: 1.25rem; margin-bottom: 0.35rem; }
.n26-insight-card__title {
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.n26-insight-card__text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

/* Validation pairs */
.n26-pair-grid {
  display: grid;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
@media (min-width: 1024px) {
  .n26-pair-row {
    display: grid;
    grid-template-columns: 1fr 2.5rem 1fr;
    gap: var(--sp-md);
    align-items: stretch;
  }
}
.n26-pair-insight,
.n26-pair-takeaway {
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-lg);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.n26-pair-insight {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  color: var(--muted);
}
/* Validation pairs — insight neutral, takeaway light yellow */
.n26-pair-takeaway {
  background: var(--accent-soft, #fff3b0);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  color: var(--ink);
}
.n26-pair-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--ink) 30%, transparent);
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .n26-pair-arrow { display: flex; }
}

/* Photo strip */
.n26-photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
@media (min-width: 640px) { .n26-photo-strip { grid-template-columns: 1fr 1fr; } }
.n26-photo-strip__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.n26-photo-strip__item img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}
.n26-photo-strip__caption {
  margin-top: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* Outcome */
.n26-outcome-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-md) var(--sp-lg);
  padding-top: var(--sp-md);
  margin-top: var(--sp-md);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .n26-outcome-metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.n26-metric__value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.n26-metric__label {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: 22ch;
}
/* Launch band — outcome devices, equal height + matching frame */
.n26-launch-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--sp-lg);
  width: 100%;
  max-width: 36rem;
  margin: var(--n26-beat-gap) auto 0;
}
.n26-launch-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  margin: 0;
  min-width: 0;
  height: 100%;
}
.n26-launch-phones .phone-mock {
  width: 100%;
  max-width: none;
  margin: 0;
  height: clamp(22rem, 38vw, 31rem);
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  overflow: hidden;
  display: block;
}
.n26-launch-phones .phone-mock video,
.n26-launch-phones .phone-mock img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: var(--paper);
}
.n26-launch-phone__caption {
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
  max-width: 24ch;
}
.n26-outcome-wrap {
  margin-top: var(--n26-beat-gap);
  padding-top: var(--n26-beat-gap);
  border-top: 1px solid var(--line);
  text-align: left;
  max-width: 68ch;
}
.n26-outcome-wrap .beat__title {
  max-width: 34ch;
}
@media (max-width: 767px) {
  .n26-launch-phones {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
  .n26-launch-phones .phone-mock {
    height: clamp(20rem, 62vw, 28rem);
  }
}

/* Highlights */
.n26-chip-row { margin: 0 0 var(--sp-sm); }
.n26-dual-screens {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
@media (min-width: 640px) { .n26-dual-screens { grid-template-columns: 1fr 1fr; } }
.n26-dual-screens__item img {
  height: auto;
  cursor: zoom-in;
}
.n26-highlight-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

/* Metrics list */
.n26-metrics-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-sm) 0 0;
  display: grid;
  gap: var(--sp-sm);
}
.n26-metrics-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}
.n26-metrics-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--ink);
  margin-top: 0.45rem;
}

/* Replay button */
.n26-replay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.n26-replay-btn:hover {
  border-color: var(--line-strong);
  background: var(--paper-dim);
}

/* Context section */
#context .section-head { margin-bottom: var(--sp-sm); }
#context .n26-crumb { margin-bottom: var(--sp-lg); }

/* Tablet / mobile */
@media (max-width: 1023px) {
  .n26-hero .hero-split--stage {
    grid-template-columns: 1fr;
  }
  .n26-hero-img {
    max-width: 100%;
    margin-inline: auto;
  }
  .n26-case-intro__media .phone-mock {
    max-width: 14rem;
  }
}
@media (max-width: 560px) {
  .n26-case-intro__media .phone-mock {
    max-width: 12rem;
  }
}

/* --------------------------------------------------------------------------
   Password gate
   -------------------------------------------------------------------------- */
#n26Gate {
  display: none;
}
html.n26-locked {
  overflow: hidden;
}
html.n26-locked body > *:not(#n26Gate) {
  display: none !important;
}
html.n26-locked #n26Gate {
  display: flex;
}
#n26Gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: var(--paper, #fff);
}
#n26Gate .pw-card {
  position: relative;
  width: 100%;
  background: var(--paper, #fff);
  border: 1px solid var(--line, #e7e7e7);
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
}
#n26Gate .pw-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted, #6e6e6e);
  margin: 0 0 10px;
}
#n26Gate .pw-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink, #262626);
  margin: 0 0 8px;
}
#n26Gate .pw-desc {
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--muted, #6e6e6e);
  margin: 0 0 20px;
}
#n26Gate .pw-input {
  box-sizing: border-box;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line, #e7e7e7);
  border-radius: 14px;
  font-size: 1.05rem;
  color: var(--ink, #262626);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#n26Gate .pw-input:focus-visible {
  border-color: #ffda08;
  box-shadow: 0 0 0 3px rgba(255, 218, 8, 0.35);
}
#n26Gate .pw-error {
  color: #e0362f;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 10px 0 0;
}
#n26Gate .pw-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}
#n26Gate .pw-back {
  margin-right: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted, #6e6e6e);
  text-decoration: none;
}
#n26Gate .pw-back:hover {
  color: var(--ink, #262626);
}
#n26Gate .pw-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  background: #ffda08;
  color: var(--ink, #262626);
  transition: filter 0.15s, transform 0.15s;
}
#n26Gate .pw-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
