/* ==========================================================================
   Lote — Marketing site component styles
   Depends on: tokens.css
   ========================================================================== */

body {
  background-image: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.lote-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 var(--content-pad);
  background: color-mix(in srgb, var(--c-butter) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lote-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 56px;
}

.lote-header__logo,
.lote-footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--c-ink-900);
  line-height: 1;
}
.lote-footer__logo {
  color: var(--c-butter-pure);
}
.lote-header__logo svg {
  display: block;
}

.lote-header__nav {
  display: flex;
  gap: 24px;
}

.lote-header__navlink {
  font: 500 14px/1 var(--font-sans);
  color: var(--c-ink-900);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.lote-header__navlink:hover {
  color: var(--c-ink-900);
  opacity: 0.7;
}
.lote-header__navlink.is-active {
  color: var(--c-ink-900);
  font-weight: 600;
}
.lote-header__navlink.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--c-ink-900);
}

.lote-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.lote-header__support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lote-header__support-label {
  opacity: 0.7;
  font: 400 14px/1 var(--font-sans);
}
.lote-header__support-email {
  color: var(--c-ink-900);
  font: 500 14px/1 var(--font-sans);
  text-decoration: none;
}
.lote-header__support-email:hover {
  opacity: 0.7;
}

.lote-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--c-ink-900);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}
.lote-header__lang:hover {
  background: var(--c-paper-deep);
}

.lote-header__burger {
  display: none;
}
.lote-header__mobile {
  display: none;
}
.lote-header__overlay {
  display: none;
}

/* ==========================================================================
   Page wrapper
   ========================================================================== */

.lote-page {
  min-width: 0;
  background: var(--c-butter);
  color: var(--fg-default);
}

/* ==========================================================================
   Section
   ========================================================================== */

.lote-section {
  padding: 96px var(--content-pad);
  background: var(--c-butter);
}
/* .lote-section.is-sky, */
.lote-section.is-deep {
  /* .lote-section.is-sand { */
  background: var(--c-sky);
}
.lote-section.is-ink {
  background: var(--c-ink-900);
  color: var(--c-cream-pure);
}
.lote-section.is-butter,
.lote-section.is-cream {
  background: var(--c-butter);
}
.lote-section.is-bleed {
  padding-left: 0;
  padding-right: 0;
}

.lote-section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.lote-section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1080px;
}
.lote-section-head.is-center {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.lote-section-head .eyebrow {
  font: 500 12px/1.2 var(--font-mono);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-ink-900);
  opacity: 0.7;
}
.lote-section-head h2 {
  font: var(--t-h2);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
  font-size: 44px;
  line-height: 1.1;
  max-width: 36ch;
  text-wrap: balance;
}
.lote-section-head p {
  font: var(--t-body-lg);
  color: var(--c-ink-700);
  max-width: 72ch;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.lote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: 80px;
  padding: 96px var(--content-pad) 64px;
  max-width: calc(var(--content-max) + var(--content-pad) * 2);
  margin: 0 auto;
  box-sizing: border-box;
  align-items: center;
  background: var(--c-butter);
}

.lote-hero__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lote-hero__eyebrow {
  font: 600 12px/1.4 var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lote-hero__title {
  font: var(--t-display);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
  max-width: 22ch;
  text-wrap: balance;
}
.lote-hero__title em {
  font-style: normal;
}

.lote-hero__lede {
  font: var(--t-body-lg);
  color: var(--c-ink-700);
  max-width: 52ch;
}
.lote-hero__lede-note {
  display: block;
  margin-top: 12px;
  font: var(--t-body-sm);
  font-weight: 500;
  color: var(--c-ink-900);
  letter-spacing: 0.04em;
}

.lote-hero__ctas {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.lote-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 11px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-900);
  opacity: 0.6;
  margin-top: 8px;
}

.lote-hero__slot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  position: relative;
}
.lote-hero__slot:has(.lote-hero__visual-frame) {
  /* min-height: 0; */
}
.lote-hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 2.5 / 2;
  margin-inline: auto;
  border-radius: 32px;
  overflow: hidden;
}
.lote-hero__visual {
  position: absolute;
  display: block;
  width: 118.72%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: 50% 50%;
  max-width: none;
}

/* ==========================================================================
   Phone mock
   ========================================================================== */

.lote-phone {
  width: 320px;
  height: 660px;
  border-radius: 28px;
  background: var(--c-ink-900);
  padding: 14px;
  box-sizing: border-box;
  box-shadow:
    0 40px 70px -24px rgba(26, 20, 16, 0.34),
    0 16px 28px -16px rgba(26, 20, 16, 0.2);
  position: relative;
}
.lote-phone::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: var(--c-ink-900);
  border-radius: 999px;
  z-index: 3;
}
.lote-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-cream-pure);
  position: relative;
}

/* ==========================================================================
   Calculator (Employer hero slot)
   ========================================================================== */

.lote-calc {
  width: 420px;
  background: var(--c-paper-raised);
  border: 1px solid var(--c-line-300);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 40px -24px rgba(26, 20, 16, 0.2);
}
.lote-calc__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lote-calc__title {
  font: 600 22px/1.25 var(--font-sans);
  letter-spacing: -0.01em;
  color: var(--c-ink-900);
}
.lote-calc__helper {
  font: var(--t-caption);
  color: var(--c-ink-500);
}

.lote-calc__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lote-calc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lote-calc__field > label {
  font: var(--t-body-sm);
  color: var(--c-ink-700);
  font-weight: 500;
}
.lote-calc__inputwrap {
  position: relative;
}
.lote-calc__inputwrap input {
  padding-right: 72px;
  -moz-appearance: textfield;
}
.lote-calc__inputwrap input::-webkit-outer-spin-button,
.lote-calc__inputwrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.lote-calc__unit {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font: var(--t-body-sm);
  color: var(--c-ink-400);
  white-space: nowrap;
}

.lote-calc__results {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 10px;
  background: var(--c-paper);
  border: 1px solid var(--c-line-300);
  margin-top: 8px;
  min-width: 0;
}
.lote-calc__option {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  overflow: visible;
  container-type: inline-size;
}
.lote-calc__option:first-child {
  border-radius: 10px 0 0 10px;
}
.lote-calc__option:last-child {
  border-radius: 0 10px 10px 0;
}
.lote-calc__option + .lote-calc__option {
  border-left: 1px solid var(--c-line-300);
}
.lote-calc__option .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: var(--t-micro);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-ink-500);
}
.lote-calc__option .total {
  display: block;
  width: 100%;
  font: 400 1.875rem / 1.1 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.lote-calc__option .sub {
  font: var(--t-caption);
  color: var(--c-ink-400);
}
.lote-calc__option.is-good {
  background: #c4dca4;
}
.lote-calc__option.is-good .eyebrow {
  color: #2f5d1f;
}

.lote-calc__savings {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 4px 2px;
  min-width: 0;
  container-type: inline-size;
}
.lote-calc__savings-label {
  font: var(--t-body-strong);
  color: var(--c-ink-900);
}
.lote-calc__savings-amount {
  display: block;
  flex: 1 1 0;
  font: 400 2.75rem / 1.1 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--accent-positive);
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.lote-calc__footnote {
  font: var(--t-caption);
  color: var(--c-ink-400);
}

/* ==========================================================================
   Merchant image collage
   ========================================================================== */

.lote-collage-bento {
  width: 560px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.lote-collage__tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background-color: var(--c-paper-sand);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.lote-collage__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lote-collage__tile:hover {
  transform: scale(1.015);
  transition: transform 280ms ease;
}
.lote-collage__video {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.lote-collage__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-ink-900);
  padding-left: 4px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

/* ==========================================================================
   Features
   ========================================================================== */

.lote-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
}
.lote-feature-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.lote-feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lote-feature__num {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-900);
  opacity: 0.55;
}
.lote-feature__title {
  font: 500 28px/1.1 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
}
.lote-feature__body {
  font: var(--t-body);
  color: var(--c-ink-700);
  /* max-width: 36ch; */
}
.lote-feature__body p {
  margin: 0;
}
.lote-feature__body p + p {
  margin-top: 12px;
}
.lote-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c-ink-900) 6%, transparent);
  color: var(--c-ink-900);
  flex-shrink: 0;
}
.lote-feature__icon svg {
  width: 22px;
  height: 22px;
}
.lote-feature__footnote {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ink-500);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--c-line-300);
  max-width: 54ch;
}

/* ==========================================================================
   Bullet lists
   ========================================================================== */

.lote-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: start;
}
.lote-two-col--tight {
  grid-template-columns: 460px max-content;
  gap: 32px 48px;
  justify-content: start;
}
.lote-two-col--versus {
  grid-template-columns: 1fr auto 1fr;
  gap: 32px 56px;
  align-items: center;
}
.lote-two-col__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-900);
  opacity: 0.35;
}

.lote-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lote-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: var(--t-body);
  color: var(--c-ink-700);
}
.lote-bullet__slot {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lote-bullet__slot.is-check {
  background: #c4dca4;
  color: #2f5d1f;
}
.lote-bullet__slot.is-close {
  background: #ffc4bd;
  color: #c24a36;
}
.lote-bullet__slot img,
.lote-bullet__slot svg {
  width: 14px;
  height: 14px;
  display: block;
}
.lote-bullet__text {
  flex: 1;
  padding-top: 2px;
}

/* ==========================================================================
   Process steps (Personal page)
   ========================================================================== */

.lote-process {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 880px;
}
.lote-process__title {
  font: var(--t-h2);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-display);
  font-size: 36px;
  line-height: 1.1;
}
.lote-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lote-process__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--c-ink-900);
  padding-top: 24px;
}
.lote-process__num {
  font: 400 28px/1 var(--font-display);
  color: var(--c-ink-900);
  display: inline-flex;
}
.lote-process__title-sm {
  font: 400 24px/1.15 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
}
.lote-process__body {
  font: var(--t-body);
  color: var(--c-ink-700);
}

/* ==========================================================================
   Editorial steps (Employer page)
   ========================================================================== */

.lote-steps {
  margin: 56px 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-ink-900);
}
.lote-steps__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--c-ink-900);
  align-items: start;
}
.lote-steps__num {
  font: 500 88px/0.9 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
}
.lote-steps__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lote-steps__title {
  font: 500 28px/1.15 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
  margin: 0;
  white-space: nowrap;
}
.lote-steps__body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--c-ink-700);
  margin: 0;
  max-width: 72ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lote-steps__body p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.lote-steps__crosslink {
  margin: 24px 0 0;
  font: var(--t-body-sm);
  color: var(--c-ink-700);
}
.lote-steps__crosslink a {
  color: var(--c-ink-900);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.lote-steps__crosslink a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.lote-faq {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 40px auto 0;
  width: 100%;
  border-top: 1px solid var(--c-ink-900);
}
.lote-faq__row {
  border-bottom: 1px solid var(--c-ink-900);
}
.lote-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 4px;
  font: 500 28px/1.2 var(--font-display);
  letter-spacing: var(--tracking-display);
  color: var(--c-ink-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.lote-faq__q:hover {
  opacity: 0.7;
}
.lote-faq__sign {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid var(--c-ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-900);
}
.lote-faq__a {
  padding: 0 4px 24px;
  font: var(--t-body);
  color: var(--c-ink-700);
  max-width: 64ch;
}

/* ==========================================================================
   Trust strip (Merchant page)
   ========================================================================== */

.lote-trust {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 28px var(--content-pad);
  border-top: 1px solid var(--c-line-300);
  border-bottom: 1px solid var(--c-line-300);
  background: var(--c-paper-raised);
}
.lote-trust__label {
  font: var(--t-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-ink-400);
  flex: none;
}
.lote-trust__items {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.lote-trust__item {
  font: var(--t-body-sm);
  font-weight: 500;
  color: var(--c-ink-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lote-trust__item img,
.lote-trust__item svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* ==========================================================================
   Waitlist band
   ========================================================================== */

.lote-waitlist {
  background: var(--c-butter);
  padding: 112px var(--content-pad) 128px;
}
.lote-waitlist__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.lote-waitlist__eyebrow {
  font: 500 12px/1.2 var(--font-mono);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-ink-900);
  opacity: 0.7;
}
.lote-waitlist__title {
  font: var(--t-h2);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-display);
  font-size: 44px;
  line-height: 1.1;
}
.lote-waitlist__lede {
  font: var(--t-body-lg);
  color: var(--c-ink-900);
  opacity: 0.78;
  max-width: 540px;
}

.lote-waitlist__interest {
  border: 0;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lote-waitlist__interest-title {
  font: 500 13px/1 var(--font-sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-900);
  opacity: 0.7;
  padding: 0;
  margin-bottom: 8px;
}
.lote-waitlist__interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.lote-waitlist__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font: var(--t-body);
  color: var(--c-ink-900);
}
.lote-waitlist__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lote-waitlist__check-box {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--c-ink-900);
  background: var(--c-cream-pure);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition:
    background 140ms ease,
    color 140ms ease;
  flex-shrink: 0;
}
.lote-waitlist__check.is-active .lote-waitlist__check-box {
  background: var(--c-ink-900);
  color: var(--c-butter);
}
.lote-waitlist__check input:focus-visible + .lote-waitlist__check-box {
  box-shadow: 0 0 0 3px rgba(26, 20, 16, 0.16);
}

.lote-waitlist__form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 440px;
  background: var(--c-cream-pure);
  border: 1px solid var(--c-ink-900);
  border-radius: 10px;
  padding: 6px;
  transition:
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.lote-waitlist__form:focus-within {
  box-shadow: 0 0 0 3px rgba(26, 20, 16, 0.1);
}
.lote-waitlist__form input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  height: 38px;
  padding: 0 8px;
  font: var(--t-body);
  color: var(--c-ink-900);
  border-radius: 8px;
  cursor: text;
}
.lote-waitlist__form input[type="email"]:focus {
  outline: none;
}
.lote-waitlist__form input[type="email"]::placeholder {
  color: var(--c-ink-400);
}
.lote-waitlist__form input[type="email"]:disabled {
  cursor: not-allowed;
}
.lote-waitlist__form .lote-btn {
  height: 42px;
  padding: 0 22px;
  cursor: pointer;
}
.lote-waitlist__form .lote-btn:disabled {
  cursor: not-allowed;
}

.lote-waitlist__thanks {
  font: var(--t-body);
  color: var(--c-ink-700);
  padding: 12px 16px;
  background: #c4dca4;
  border-radius: var(--radius-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Perks list — revealed when Tööandjana or Kaupmehena checkbox is active */
.lote-waitlist__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
}
.lote-waitlist__perks.is-visible {
  display: flex;
}
.lote-waitlist__perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: var(--t-body);
  color: var(--c-ink-900);
}
.lote-waitlist__perk-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-ink-900);
  opacity: 0.6;
  min-width: 24px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.lote-footer {
  background: var(--c-ink-900);
  color: var(--c-paper-raised);
  padding: 64px var(--content-pad) 40px;
}
.lote-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto 48px;
}
.lote-footer__brand h3 {
  margin: 0 0 12px;
  line-height: 1;
}
.lote-footer__brand h3 svg {
  display: block;
}
.lote-footer__brand p {
  font: var(--t-body-sm);
  color: rgba(245, 245, 243, 0.62);
  max-width: 320px;
}
.lote-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.lote-footer__contact-link {
  font: var(--t-body-sm);
  color: rgba(245, 245, 243, 0.78);
  text-decoration: none;
}
.lote-footer__contact-link:hover {
  color: var(--c-cream-pure);
}
.lote-footer__contact-cta {
  font: var(--t-body-sm);
  font-weight: 500;
  color: var(--c-cream-pure);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.lote-footer__contact-cta:hover {
  opacity: 0.7;
}
.lote-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lote-footer__heading {
  font: var(--t-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(245, 245, 243, 0.5);
  font-family: var(--font-mono);
}
.lote-footer__col a {
  font: var(--t-body-sm);
  color: rgba(245, 245, 243, 0.85);
  text-decoration: none;
}
.lote-footer__col a:hover {
  opacity: 1;
  color: var(--c-accent-soft);
}
.lote-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 245, 243, 0.1);
  font: var(--t-caption);
  color: rgba(245, 245, 243, 0.5);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .lote-reveal {
    opacity: 0;
    transform: translateY(72px) scale(0.965);
    transition:
      opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
      transform 0.9s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: opacity, transform;
  }
  .lote-reveal.is-inview {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive — ≤ 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --content-pad: 40px;
  }

  html,
  body {
    overflow-x: clip;
  }
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  /* Header */
  .lote-header {
    height: 60px;
  }
  .lote-header__inner {
    gap: 0;
    justify-content: space-between;
  }
  .lote-header__nav,
  .lote-header__right {
    display: none;
  }
  .lote-header__logo {
    font-size: 22px;
  }
  .lote-header__burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0 10px;
  }
  .lote-header__burger span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--c-ink-900);
    border-radius: 2px;
    transition:
      transform 200ms ease,
      opacity 150ms ease;
  }
  .lote-header.is-menu-open .lote-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .lote-header.is-menu-open .lote-header__burger span:nth-child(2) {
    opacity: 0;
  }
  .lote-header.is-menu-open .lote-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .lote-header__mobile {
    display: none;
    overflow: hidden;
    margin-left: calc(-1 * var(--content-pad));
    margin-right: calc(-1 * var(--content-pad));
    background: var(--c-paper);
    border-top: 1px solid var(--c-line-300);
    animation: lote-menu-in 220ms ease;
  }
  .lote-header__mobile.is-open {
    display: block;
    position: relative;
    z-index: 45;
  }
  @keyframes lote-menu-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .lote-header.is-menu-open .lote-header__overlay {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }
  .lote-header__mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 20px 4px;
  }
  .lote-header__mobile-link {
    font: 500 17px/1 var(--font-sans);
    color: var(--c-ink-900);
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line-300);
    text-decoration: none;
  }
  .lote-header__mobile-link.is-active {
    font-weight: 600;
  }
  .lote-header__mobile-foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px 22px;
  }
  .lote-header__mobile-support {
    font: var(--t-body-sm);
    color: var(--c-ink-700);
  }
  .lote-header__mobile-foot .lote-btn {
    width: 100%;
  }
  .lote-header__mobile-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--c-line-300);
  }
  .lote-header__mobile-lang-label {
    font: var(--t-body-sm);
    color: var(--c-ink-500);
  }
  .lote-header__mobile-lang-opts {
    display: flex;
    gap: 6px;
  }
  .lote-header__mobile-lang-opts button {
    font: 500 13px/1 var(--font-sans);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--c-line-500);
    background: transparent;
    color: var(--c-ink-900);
    cursor: pointer;
  }
  .lote-header__mobile-lang-opts button.is-active {
    background: var(--c-ink-900);
    color: var(--c-paper);
    border-color: var(--c-ink-900);
  }

  /* Hero */
  .lote-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 48px var(--content-pad) 40px;
  }
  .lote-hero__col {
    gap: 24px;
    min-width: 0;
  }
  .lote-hero__title {
    font-size: 38px;
    max-width: none;
  }
  .lote-hero__lede {
    max-width: none;
  }
  .lote-hero__slot {
    min-height: 0;
    width: 100%;
    min-width: 0;
  }
  .lote-hero__visual-frame {
    max-width: 100%;
  }
  .lote-hero__ctas {
    gap: 8px;
  }
  .lote-collage-bento {
    width: 100%;
  }
  .lote-calc {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 20px;
    gap: 14px;
  }
  .lote-calc__option {
    padding: 12px;
  }
  .lote-calc__option .total {
    font-size: 24px;
  }
  .lote-calc__title {
    font-size: 19px;
  }
  .lote-calc__savings-amount {
    font-size: 32px;
  }
  .lote-calc__savings {
    flex-wrap: wrap;
    gap: 4px;
  }

  /* Sections */
  .lote-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .lote-section-head {
    max-width: none;
    gap: 16px;
  }
  .lote-section-head h2 {
    font-size: 42px;
    line-height: 1.08;
    max-width: none;
  }
  .lote-section-head p {
    max-width: none;
    font-size: 16px;
  }

  /* Feature grids */
  .lote-feature-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lote-feature__title {
    font-size: 24px;
  }

  /* Two-column */
  .lote-two-col,
  .lote-two-col--tight,
  .lote-two-col--versus {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }
  .lote-two-col {
    margin-top: 28px;
  }
  .lote-two-col__arrow {
    display: none;
  }

  /* Process / Steps */
  .lote-process__steps {
    grid-template-columns: 1fr;
  }
  .lote-steps__row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .lote-steps__num {
    font-size: 40px;
  }
  .lote-steps__title {
    font-size: 22px;
    white-space: normal;
  }
  .lote-steps__body {
    font-size: 16px;
    max-width: none;
  }
  .lote-steps__crosslink a {
    display: block;
    margin-top: 6px;
  }

  /* FAQ */
  .lote-faq__q {
    font-size: 19px;
    line-height: 1.3;
    padding: 22px 4px;
  }
  .lote-faq__a {
    font-size: 15px;
  }

  /* Trust */
  .lote-trust {
    gap: 24px;
    flex-wrap: wrap;
  }
  .lote-trust__items {
    gap: 20px;
  }

  /* Waitlist */
  .lote-waitlist {
    padding: 64px var(--content-pad) 80px;
  }
  .lote-waitlist__inner {
    max-width: none;
  }
  .lote-waitlist__title {
    font-size: 34px;
  }
  .lote-waitlist__interest-options {
    gap: 12px 18px;
  }

  /* Footer */
  .lote-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .lote-footer__brand {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   ≤ 600px
   ========================================================================== */

@media (max-width: 600px) {
  :root {
    --content-pad: 20px;
  }

  .lote-hero {
    gap: 32px;
    padding-top: 64px;
  }
  .lote-hero__col {
    gap: 8px;
  }
  .lote-hero__title {
    font-size: 38px;
  }
  .lote-hero__ctas {
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
  }
  .lote-hero__ctas .lote-btn {
    padding: 0 18px;
    flex: 0 0 auto;
  }
  .lote-hero__ctas .lote-btn--ghost {
    white-space: nowrap;
    padding: 0 18px;
    font-size: 14px;
  }
  .lote-hero__lede {
    font-size: 16px;
  }

  .lote-section-head h2 {
    font-size: 36px;
  }

  .lote-footer__grid {
    grid-template-columns: 1fr;
  }
  .lote-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ==========================================================================
   Video lightbox dialog
   ========================================================================== */

.lote-collage__play-btn {
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.lote-collage__play-btn:focus-visible {
    outline: 3px solid var(--lote-green, #2ecc71);
    outline-offset: 2px;
}

.lote-collage__play-btn:hover .lote-collage__play {
    transform: translate(-50%, -50%) scale(1.12);
}

.lote-video-dialog {
    background: #000;
    border: none;
    border-radius: 16px;
    padding: 0;
    max-width: min(900px, 92vw);
    width: 100%;
    overflow: visible;
}

.lote-video-dialog::backdrop {
    background: rgba(0, 0, 0, 0.82);
}

.lote-video-dialog__wrap {
    position: relative;
}

.lote-video-dialog__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    padding: 6px 10px;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.15s;
}

.lote-video-dialog__close:hover {
    opacity: 1;
}

.lote-video-dialog__video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #000;
}
