/* Vistorio Front Desk & Reservations page */

/* ─── Hero ─── */
.fd-hero-title {
  margin: 0 0 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.fd-hero-title span {
  display: block;
  font-weight: 800;
  color: var(--ink);
}

.fd-hero-title span:nth-child(1) {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.fd-hero-title span:nth-child(2) {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  color: var(--red);
  font-weight: 700;
  margin-top: 0.35rem;
}

.fd-hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 28rem;
  line-height: 1.5;
}

.fd-hero-tagline em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

.fd-hero-scene {
  position: relative;
  min-height: 420px;
}

.fd-reception {
  background: var(--ink);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 540px;
  margin: 0 auto;
}

.fd-reception__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fd-reception__head strong {
  font-size: 0.82rem;
  color: #fff;
}

.fd-reception__live {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.fd-reception__live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--success);
  animation: hp-pulse 1.5s ease infinite;
}

.fd-reception__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.fd-reception__kpi {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.55rem;
  text-align: center;
}

.fd-reception__kpi label {
  display: block;
  font-size: 0.48rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}

.fd-reception__kpi b {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}

.fd-reception__kpi b.accent { color: var(--warn); }

.fd-arrivals {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.fd-arrivals h4 {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.fd-arrival-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fd-arrival-row:last-child { border-bottom: none; }

.fd-arrival-row span:last-child {
  font-weight: 700;
  color: var(--success);
  font-size: 0.6rem;
}

.fd-mini-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
}

.fd-mini-room {
  aspect-ratio: 1;
  border-radius: 4px;
  font-size: 0.45rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  color: #fff;
}

.fd-mini-room--vac { background: #64748b; }
.fd-mini-room--occ { background: var(--success); }
.fd-mini-room--res { background: #2563eb; }
.fd-mini-room--dirty { background: #b45309; }
.fd-mini-room--ready { background: #059669; }

.fd-float {
  position: absolute;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 12px 40px rgba(15,20,25,0.12);
  min-width: 125px;
  animation: hp-float-card 6s ease-in-out infinite;
}

.fd-float label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.fd-float strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.fd-float--1 { top: 2%; left: -2%; }
.fd-float--2 { top: 15%; right: -3%; animation-delay: -1.5s; }
.fd-float--3 { bottom: 30%; left: -5%; animation-delay: -3s; }
.fd-float--4 { bottom: 5%; right: -2%; animation-delay: -2s; }

@media (max-width: 1023px) {
  .fd-float { display: none; }
  .fd-reception__kpis { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Challenge cards ─── */
.fd-challenges {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.fd-challenge {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.fd-challenge:hover {
  transform: translateY(-3px);
  border-color: rgba(177,18,38,0.2);
}

.fd-challenge__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(177,18,38,0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.fd-challenge h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.fd-resolve {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--ink);
  border-radius: 18px;
  text-align: center;
  color: #fff;
}

.fd-resolve p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fd-resolve strong { color: var(--success); }

/* ─── Reservation calendar ─── */
.fd-calendar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fd-calendar__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--page);
  border-bottom: 1px solid var(--line);
}

.fd-calendar__head strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.fd-calendar__nav {
  display: flex;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.fd-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.fd-cal-day {
  background: var(--surface);
  min-height: 72px;
  padding: 0.4rem;
  font-size: 0.65rem;
}

.fd-cal-day--head {
  min-height: auto;
  background: var(--page);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  padding: 0.5rem;
}

.fd-cal-day b {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.fd-cal-event {
  display: block;
  padding: 0.15rem 0.3rem;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fd-cal-event--in { background: rgba(37,99,235,0.12); color: #2563eb; }
.fd-cal-event--out { background: rgba(180,83,9,0.12); color: #b45309; }
.fd-cal-event--grp { background: rgba(177,18,38,0.1); color: var(--red); }

.fd-res-features {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  margin-top: 2rem;
}

.fd-res-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

.fd-res-feat::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
  font-size: 0.7rem;
}

/* ─── Check-in workflow ─── */
.fd-checkin-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .fd-checkin-layout { grid-template-columns: 1fr 1.1fr; }
}

.fd-checkin-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fd-checkin-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  position: relative;
}

.fd-checkin-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  height: calc(100% - 0.25rem);
  width: 2px;
  background: var(--line);
}

.fd-checkin-step__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}

.fd-checkin-step strong {
  font-size: 0.85rem;
  font-weight: 700;
}

.fd-checkin-ui {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.fd-checkin-ui__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.fd-checkin-ui__head strong { font-size: 0.85rem; }

.fd-checkin-ui__badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(13,122,78,0.1);
  color: var(--success);
}

.fd-checkin-field {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.fd-checkin-field:last-of-type { border-bottom: none; }

.fd-checkin-field span:first-child { color: var(--muted); font-weight: 600; }
.fd-checkin-field span:last-child { font-weight: 700; }

.fd-checkin-cta {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

/* ─── Occupancy dashboard ─── */
.fd-occ-dash {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}

.fd-occ-dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fd-occ-dash__head h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

.fd-occ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (min-width: 700px) {
  .fd-occ-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .fd-occ-grid { grid-template-columns: repeat(3, 1fr); }
}

.fd-occ-kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.85rem;
}

.fd-occ-kpi label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.3rem;
}

.fd-occ-kpi strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.fd-occ-kpi.accent strong { color: var(--warn); }
.fd-occ-kpi.pos strong { color: var(--success); }
.fd-occ-kpi.warn strong { color: var(--danger); }

.fd-occ-ring {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
}

.fd-occ-ring__chart {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 87%, rgba(255,255,255,0.1) 87%);
  display: grid;
  place-items: center;
}

.fd-occ-ring__chart span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.fd-occ-ring__legend {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.fd-occ-ring__legend b { color: #fff; }

/* ─── Room grid with filters ─── */
.fd-room-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.fd-room-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.fd-filter {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--page);
  color: var(--muted);
  cursor: default;
}

.fd-filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.fd-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.fd-legend span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.fd-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: block;
}

.fd-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3.5rem, 1fr));
  gap: 0.45rem;
}

.fd-room {
  aspect-ratio: 1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  transition: transform 0.2s var(--ease);
  cursor: default;
}

.fd-room:hover { transform: scale(1.08); }

.fd-room--avail { background: #64748b; }
.fd-room--occ { background: var(--success); }
.fd-room--res { background: #2563eb; }
.fd-room--dirty { background: #b45309; }
.fd-room--clean { background: #0891b2; }
.fd-room--maint { background: #9333ea; }
.fd-room--insp { background: #ea580c; }
.fd-room--oos { background: var(--red); }

/* ─── Guest profile ─── */
.fd-guest-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .fd-guest-layout { grid-template-columns: 1fr 1.2fr; }
}

.fd-guest-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fd-guest-card__banner {
  height: 80px;
  background: var(--ink);
}

.fd-guest-card__body {
  padding: 0 1.25rem 1.25rem;
  margin-top: -2rem;
}

.fd-guest-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  border: 3px solid var(--surface);
  margin-bottom: 0.75rem;
}

.fd-guest-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.fd-vip {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(251,191,36,0.15);
  color: #b45309;
  margin-bottom: 1rem;
}

.fd-guest-meta {
  display: grid;
  gap: 0.5rem;
}

.fd-guest-meta div {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.fd-guest-meta span:first-child { color: var(--muted); font-weight: 600; }
.fd-guest-meta span:last-child { font-weight: 700; }

.fd-guest-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 1rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.fd-guest-tab {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  cursor: default;
}

.fd-guest-tab.active {
  background: var(--page);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-color: var(--page);
  margin-bottom: -1px;
}

.fd-guest-detail {
  padding: 1.25rem;
}

.fd-guest-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fd-guest-detail li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── Billing ─── */
.fd-billing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
}

.fd-billing__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.fd-billing__head strong { font-size: 0.9rem; }

.fd-billing__total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
}

.fd-bill-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}

.fd-bill-row span:first-child { color: var(--muted); font-weight: 600; }
.fd-bill-row span:last-child { font-weight: 700; }

.fd-bill-row--total {
  border-bottom: none;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--ink);
  font-size: 0.95rem;
}

.fd-pay-methods {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.fd-pay-methods span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: var(--page);
  border: 1px solid var(--line);
}

/* ─── HK sync workflow ─── */
.fd-hk-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.fd-hk-step {
  padding: 0.7rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.fd-hk-arrow {
  color: var(--red);
  font-weight: 800;
}

/* ─── Executive FD dashboard ─── */
.fd-exec-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
}

.fd-exec-kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.fd-exec-kpi label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.fd-exec-kpi strong {
  font-size: 1.25rem;
  font-weight: 800;
}

/* ─── Mobile ─── */
.fd-mobile-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .fd-mobile-layout { grid-template-columns: 1fr 1fr; }
}

.fd-phones {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.fd-phone {
  width: 190px;
  background: var(--ink);
  border-radius: 26px;
  padding: 0.6rem;
  box-shadow: 0 24px 48px rgba(15,20,25,0.2);
}

.fd-phone--2 {
  width: 210px;
  transform: translateY(-16px);
}

.fd-phone__screen {
  background: #f8f9fb;
  border-radius: 20px;
  min-height: 340px;
  overflow: hidden;
}

.fd-phone__header {
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: #fff;
}

.fd-phone__header strong {
  display: block;
  font-size: 0.72rem;
}

.fd-phone__header span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.55);
}

.fd-phone__body { padding: 0.75rem; }

.fd-phone__row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
}

/* ─── Benefits ─── */
.fd-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.fd-benefit {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s var(--ease);
}

.fd-benefit:hover { transform: translateY(-4px); }

.fd-benefit__icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.fd-benefit h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.fd-benefit p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Layout helpers ─── */
.fd-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fd-band--warm {
  background: var(--page-muted);
}

.fd-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .fd-split { grid-template-columns: 1fr 1fr; }
  .fd-split--flip > div:first-child { order: 2; }
  .fd-split--flip > div:last-child { order: 1; }
}

.fd-final {
  background: var(--ink);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.fd-final .hp-h2 { color: #fff; }
.fd-final .hp-lede { color: rgba(255,255,255,0.7); }

.fd-final .mk-btn-xl--outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
