/* ============================================================
   SHIFT — Landing page styles (marketing redesign, June 2026)
   Everything here is prefixed with `lp-` so it can never clash
   with the styles used by the other pages (styles.css).
   Uses the design tokens from colors_and_type.css.
   ============================================================ */

body.lp {
  background: var(--surface-white);
  margin: 0;
}

/* ------------------------------------------------------------
   1. Tubelight navbar
   A floating pill, fixed to the top. The "lamp" is a glowing
   bar that slides to whichever link is active — we move it with
   plain CSS transitions (left/width), measured in JS.
   ------------------------------------------------------------ */
.lp-nav-wrap {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 24px));
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ink-a05);
  border-radius: var(--r-chip);
  padding: 10px 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
}
.lp-nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding: 0 8px;
}
.lp-nav-logo img { height: 26px; display: block; }

.lp-nav-links {
  position: relative;            /* the lamp is positioned inside this */
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-link {
  position: relative;
  z-index: 1;
  font: 600 15px/1 var(--font-body);
  color: var(--ink-5);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--r-chip);
  transition: color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
}
.lp-nav-link:hover { color: var(--ink-0); }
.lp-nav-link.active { color: var(--ink-0); }

/* The sliding lamp. JS sets `left` and `width`; CSS animates them. */
.lp-lamp {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: var(--r-chip);
  background: var(--surface-app);
  transition: left 0.45s cubic-bezier(0.3, 1.1, 0.4, 1),
              width 0.45s cubic-bezier(0.3, 1.1, 0.4, 1);
  pointer-events: none;
}
/* The glowing tube on top of the lamp */
.lp-lamp::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: var(--shift-orange);
}
.lp-lamp::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 83, 33, 0.22);
  filter: blur(7px);
}

/* Right side buttons */
.lp-nav-btn {
  font: 600 15px/1 var(--font-body);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--r-chip);
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease;
}
.lp-nav-btn:active { transform: scale(0.97); }
.lp-nav-btn-dark { background: var(--ink-1); color: #fff; }
.lp-nav-btn-dark:hover { background: var(--ink-3); }
.lp-nav-btn-cta { background: var(--shift-orange-bright); color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.lp-nav-btn-cta:hover { background: var(--shift-orange); }

/* Tiny language switcher */
.lp-nav-lang {
  display: flex;
  gap: 2px;
  margin-left: 4px;
  font: 600 12px/1 var(--font-body);
}
.lp-nav-lang a {
  color: var(--ink-7);
  text-decoration: none;
  padding: 8px 7px;
  border-radius: 8px;
}
.lp-nav-lang a.active { color: var(--ink-0); background: var(--surface-app); }

/* ------------------------------------------------------------
   2. Animated hero (rotating word)
   ------------------------------------------------------------ */
.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 170px 24px 110px;
  max-width: 980px;
  margin: 0 auto;
}
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-app);
  border-radius: var(--r-chip);
  padding: 10px 18px;
  font: 500 14px/1 var(--font-body);
  color: var(--ink-4);
}
.lp-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-text);
}
.lp-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink-1);
}
/* The window the rotating words slide through */
.lp-rotator {
  position: relative;
  display: block;
  overflow: hidden;
  height: 1.18em;
  margin-top: 0.05em;
}
.lp-rotator span {
  position: absolute;
  left: 0; right: 0;
  font-weight: 600;
  font-size: 0.72em;       /* a bit smaller than the header; JS keeps every phrase at one uniform size */
  white-space: nowrap;
  color: var(--shift-orange);
  opacity: 0;
  transform: translateY(110%);
  /* springy ease, mimics framer-motion's spring */
  transition: transform 0.65s cubic-bezier(0.22, 1.1, 0.36, 1),
              opacity 0.45s ease;
}
.lp-rotator span.is-active { opacity: 1; transform: translateY(0); }
.lp-rotator span.is-above  { opacity: 0; transform: translateY(-110%); }

.lp-hero p {
  font: 400 19px/1.55 var(--font-body);
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0;
}
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 16px/1 var(--font-body);
  text-decoration: none;
  padding: 17px 30px;
  border-radius: var(--r-chip);
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn-outline { border: 1px solid var(--ink-9); color: var(--ink-1); background: #fff; }
.lp-btn-outline:hover { border-color: var(--ink-7); }
.lp-btn-primary { background: var(--shift-orange-bright); color: #fff; }
.lp-btn-primary:hover { background: var(--shift-orange); }
.lp-btn-dark { background: var(--ink-1); color: #fff; }
.lp-btn-dark:hover { background: var(--ink-3); }

/* ------------------------------------------------------------
   3. Use cases — dark section with two marquee rows of videos
   ------------------------------------------------------------ */
.lp-usecases {
  background: #000;
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}
.lp-marquee {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 11px 0;
  animation: lp-scroll-left 60s linear infinite;
}
.lp-marquee.reverse { animation-name: lp-scroll-right; animation-duration: 70s; }
@keyframes lp-scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lp-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.lp-usecases:hover .lp-marquee { animation-play-state: paused; }

.lp-uc-tile {
  position: relative;
  width: 420px;
  height: 270px;
  border-radius: 22px;
  overflow: hidden;
  flex: none;
  background: var(--ink-2);
}
/* every second tile is tilted slightly, like the screenshot */
.lp-uc-tile:nth-child(odd)  { transform: rotate(-1.6deg); }
.lp-uc-tile:nth-child(even) { transform: rotate(1.4deg) translateY(10px); }
.lp-uc-tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lp-uc-label {
  position: absolute;
  left: 18px; bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.lp-uc-label strong {
  display: block;
  font: 600 19px/1.25 var(--font-body);
}
.lp-uc-label small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.95;
}
.lp-uc-label small::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--shift-orange);
}
.lp-usecases-head {
  text-align: center;
  max-width: 860px;
  margin: 70px auto 0;
  padding: 0 24px;
}
.lp-usecases-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.lp-usecases-head .lp-serif {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}
.lp-usecases-head p {
  font: 400 18px/1.55 var(--font-body);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 22px auto 0;
}

/* Trades grid — detailed daily-task cards inside the dark section */
.lp-trades {
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-trade {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 22px 24px;
}
.lp-trade h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 600 16px/1.3 var(--font-body);
  color: #fff;
  margin: 0 0 9px;
}
.lp-trade h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--shift-orange);
  flex: none;
}
.lp-trade p {
  font: 400 14px/1.65 var(--font-body);
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
@media (max-width: 980px) { .lp-trades { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .lp-trades { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   3b. Two ways to earn — on the job / at home
   ------------------------------------------------------------ */
.lp-ways { max-width: 1080px; margin: 0 auto; padding: 110px 24px 20px; }
.lp-ways-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink-1);
}
.lp-ways-head p { font: 400 18px/1.5 var(--font-body); color: var(--fg-muted); margin: 16px 0 0; }
.lp-ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 44px;
}
.lp-way {
  background: var(--surface-app);
  border: 1px solid var(--ink-a05);
  border-radius: var(--r-card-lg);
  overflow: hidden;
}
.lp-way img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.lp-way-body { padding: 28px 30px 34px; }
.lp-way-body h3 { font: 600 22px/1.3 var(--font-body); color: var(--ink-1); margin: 0 0 10px; }
.lp-way-body p { font: 400 16px/1.6 var(--font-body); color: var(--fg-muted); margin: 0; }
@media (max-width: 900px) {
  .lp-ways-grid { grid-template-columns: 1fr; }
  .lp-way img { height: 240px; }
}

/* ------------------------------------------------------------
   4. How to join — header + sticky stacked step cards
   ------------------------------------------------------------ */
.lp-join { padding: 110px 24px 80px; }
.lp-join-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.lp-join-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 26px 0 0;
  color: var(--ink-1);
}
.lp-join-head .lp-serif {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}
.lp-join-head p { font: 400 18px/1.5 var(--font-body); color: var(--fg-muted); margin: 20px 0 28px; }

/* The stacked cards: position sticky makes each card stop near the
   top of the viewport while the next one slides over it. */
.lp-cards { max-width: 1080px; margin: 0 auto; display: grid; gap: 26px; }
.lp-card {
  position: sticky;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: #fff;
  border: 1px solid var(--ink-a05);
  border-radius: var(--r-card-lg);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 340px;
}
/* each card sticks a little lower so you see the stack */
.lp-card:nth-child(1) { top: 96px; }
.lp-card:nth-child(2) { top: 110px; }
.lp-card:nth-child(3) { top: 124px; }
.lp-card:nth-child(4) { top: 138px; }
.lp-card:nth-child(5) { top: 152px; }

.lp-card-copy {
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.lp-step-pill {
  align-self: flex-start;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  border: 1px solid var(--ink-9);
  border-radius: var(--r-chip);
  padding: 9px 16px;
}
.lp-card-copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink-1);
}
.lp-card-copy p { font: 400 17px/1.55 var(--font-body); color: var(--fg-muted); margin: 0; max-width: 420px; }
.lp-card-art {
  background: var(--surface-app);
  border-left: 1px solid var(--ink-a05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lp-card-art svg { width: min(240px, 80%); height: auto; }

/* ------------------------------------------------------------
   5. FAQ
   ------------------------------------------------------------ */
.lp-faq { max-width: 760px; margin: 0 auto; padding: 90px 24px 110px; }
.lp-faq-head { text-align: center; margin-bottom: 44px; }
.lp-faq-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
  margin: 24px 0 0;
  color: var(--ink-1);
}
.lp-faq-item {
  border-bottom: 1px solid var(--ink-a10);
  cursor: pointer;
  padding: 22px 4px;
}
.lp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font: 600 17px/1.4 var(--font-body);
  color: var(--ink-1);
}
.lp-faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.lp-faq-plus::before, .lp-faq-plus::after {
  content: "";
  position: absolute;
  background: var(--ink-6);
  transition: transform 0.3s ease;
}
.lp-faq-plus::before { left: 8px; top: 0; width: 2px; height: 18px; }
.lp-faq-plus::after  { left: 0; top: 8px; width: 18px; height: 2px; }
.lp-faq-item.open .lp-faq-plus::before { transform: rotate(90deg); }
.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  font: 400 16px/1.6 var(--font-body);
  color: var(--fg-muted);
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.lp-faq-item.open .lp-faq-a { max-height: 320px; padding-top: 12px; }

/* Data-processing explainer video (under the FAQ) */
.lp-dp { max-width: 760px; margin: 64px auto 0; }
.lp-dp-head { text-align: center; margin-bottom: 26px; }
.lp-dp-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.lp-dp-head p {
  font: 400 16px/1.6 var(--font-body);
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}
.lp-dp-video {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ink-a10);
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}
.lp-dp-video video { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------
   6. Final CTA + footer
   ------------------------------------------------------------ */
.lp-cta {
  background: var(--ink-1);
  color: #fff;
  text-align: center;
  border-radius: var(--r-card-lg);
  max-width: 1080px;
  margin: 0 auto;
  padding: 76px 32px;
}
.lp-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.lp-cta p { font: 400 17px/1.5 var(--font-body); color: rgba(255,255,255,0.65); margin: 0 0 32px; }

.lp-foot {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 24px 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  font: 400 13px/1.5 var(--font-body);
  color: var(--fg-subtle);
}
.lp-foot-links { display: flex; flex-wrap: wrap; gap: 6px 22px; }
.lp-foot-links a { color: var(--ink-6); text-decoration: none; }
.lp-foot-links a:hover { color: var(--ink-1); }

/* ------------------------------------------------------------
   7. Contact page bits
   ------------------------------------------------------------ */
.lp-contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 180px 24px 120px;
  text-align: center;
}
.lp-contact h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  margin: 26px 0 16px;
  color: var(--ink-1);
}
.lp-contact > p { font: 400 18px/1.6 var(--font-body); color: var(--fg-muted); margin: 0 0 40px; }
.lp-contact-cards { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; text-align: left; }
.lp-contact-card {
  background: var(--surface-app);
  border-radius: var(--r-card-lg);
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
  display: block;
}
.lp-contact-card:hover { transform: translateY(-2px); }
.lp-contact-card h3 { font: 600 18px/1.3 var(--font-body); margin: 0 0 8px; color: var(--ink-1); }
/* full-width highlighted card ("book a call") */
.lp-contact-card.wide {
  grid-column: 1 / -1;
  background: var(--shift-orange-soft);
}
/* full-width but without the orange highlight */
.lp-contact-card.wide.plain { background: var(--surface-app); }
/* phone line under the contact intro */
.lp-contact-phone { font: 500 16px/1.5 var(--font-body); color: var(--ink-4); margin: -24px 0 40px !important; }
.lp-contact-phone a { color: var(--shift-orange); text-decoration: none; font-weight: 600; }
.lp-contact-phone a:hover { text-decoration: underline; }
.lp-contact-card p { font: 400 15px/1.55 var(--font-body); color: var(--fg-muted); margin: 0 0 14px; }
.lp-contact-card span { font: 600 15px/1 var(--font-body); color: var(--shift-orange); }

/* ------------------------------------------------------------
   7b. Sign-up wizard (multi-step, like the joinshift.com flow)
   ------------------------------------------------------------ */
.su-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 24px 90px;
  min-height: 100vh;
  box-sizing: border-box;
}
.su-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.su-top img { height: 26px; display: block; }
.su-top .su-count { font: 700 16px/1 var(--font-body); color: var(--ink-1); }

/* Progress bar: one segment per step, filled segments are orange */
.su-progress { display: flex; gap: 10px; margin-bottom: 52px; }
.su-progress span {
  flex: 1;
  height: 5px;
  border-radius: 4px;
  background: var(--ink-9);
  transition: background 0.3s ease;
}
.su-progress span.done { background: var(--shift-orange-bright); }

.su-eyebrow {
  font: 600 13px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-6);
  margin: 0 0 14px;
}
.su-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.su-sub { font: 400 18px/1.5 var(--font-body); color: var(--fg-muted); margin: 0 0 38px; }

.su-label { display: block; font: 600 16px/1.3 var(--font-body); color: var(--ink-2); margin: 0 0 9px; }
.su-label small { font-weight: 400; color: var(--fg-muted); }
.su-field { margin-bottom: 26px; }
.su-input, .su-select, .su-textarea {
  width: 100%;
  box-sizing: border-box;
  font: 400 17px/1.4 var(--font-body);
  color: var(--ink-1);
  background: #fff;
  border: 1.5px solid var(--ink-9);
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease;
}
.su-input:focus, .su-select:focus, .su-textarea:focus { border-color: var(--ink-4); }
.su-input::placeholder, .su-textarea::placeholder { color: var(--ink-8); }
.su-textarea { min-height: 110px; resize: vertical; }
.su-select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236a6a6a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }

/* Consent checkbox */
.su-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font: 400 14px/1.55 var(--font-body);
  color: var(--ink-5);
  margin-bottom: 26px;
  cursor: pointer;
}
.su-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--shift-orange-bright); flex: none; }
.su-check a { color: var(--ink-1); }

/* Big choice cards (step 0) and option cards (radio-style) */
.su-choice, .su-option {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--ink-9);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.su-choice:hover, .su-option:hover { border-color: var(--ink-6); }
.su-option.selected, .su-choice.selected {
  border-color: var(--shift-orange-bright);
  background: var(--shift-orange-soft);
}
.su-choice strong, .su-option strong { display: block; font-size: 18px; font-weight: 600; color: var(--ink-1); margin-bottom: 4px; }
.su-choice span, .su-option span { font-size: 15px; color: var(--fg-muted); }
.su-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.su-option-grid .su-option { margin-bottom: 0; padding: 16px 18px; }
.su-option-grid .su-option strong { font-size: 16px; margin: 0; }

/* CTA buttons */
.su-cta {
  display: block;
  width: 100%;
  font: 600 17px/1 var(--font-body);
  color: #fff;
  background: var(--shift-orange-bright);
  border: none;
  border-radius: var(--r-chip);
  padding: 19px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.su-cta:hover { background: var(--shift-orange); }
.su-cta:disabled { background: rgb(245, 169, 140); cursor: not-allowed; }
.su-back {
  display: block;
  width: 100%;
  text-align: center;
  font: 500 16px/1 var(--font-body);
  color: var(--ink-5);
  background: none;
  border: none;
  padding: 18px;
  cursor: pointer;
}
.su-back:hover { color: var(--ink-1); }
.su-error {
  background: var(--danger-soft);
  color: var(--danger);
  font: 500 14px/1.5 var(--font-body);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

/* Success screen + Luma embed */
.su-approved { font: 700 13px/1 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--success-text); margin: 0 0 14px; }
.su-luma {
  width: 100%;
  height: 560px;
  border: 1.5px solid var(--ink-9);
  border-radius: 16px;
  margin-top: 26px;
  background: #fff;
}

/* ------------------------------------------------------------
   8. Mobile
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .lp-card { grid-template-columns: 1fr; min-height: 0; }
  .lp-card-art { border-left: none; border-top: 1px solid var(--ink-a05); min-height: 200px; }
  .lp-card-copy { padding: 34px 28px; }
  .lp-uc-tile { width: 300px; height: 195px; }
  .lp-contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  /* the navbar collapses: section links hide, buttons stay */
  .lp-nav-links { display: none; }
  .lp-nav { padding: 8px 10px; }
  .lp-nav-btn { padding: 12px 16px; font-size: 14px; }
  .lp-hero { padding-top: 130px; gap: 24px; }
}
